@charset "utf-8";
/* CSS Document */

/* ----------------Colors---------------
red	ff173d
orange	ffb300
gray    636363
------------------------------------- */

body{
	background-color:#ffffff;
	width:100%;
	text-align:center;
	font-family:"Lucida Grande", Helvetica, Verdana, Arial, sans-serifs;
}

 
/* ------------Generic Styles --------------------*/
.floatright {
	float:right;
	margin: 0 0 0 1em;
}

.floatleft {
	float:left;
	margin: 0 1em 0 0;
}

.clear {
	clear:both;
}

.style1 {
	color: #F6AB20
}

br {
	height: 1em;
}


/*-------------Structure--------------*/
#container { /* centers content*/
	width:901px;
	margin-left:auto;
	margin-right:auto;
	
}

#navigation { /*search bar, buttons, and top of content box*/
	background-image: url(../images/navigation_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 116px;
	width: 901px;
	margin-top:2%;
}

#header { /*logo and red rounded box*/
	background-image: url(../images/header_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 166px;
	width: 901px;
}

#photoOne { /*first square photo, fades in/out through images*/
	background-repeat: no-repeat;
	background-position: center top;
	height: 137px;
	width: 137px;
	margin-left: 50px;
	margin-right: 0px;
	border: 0px;
	display:inline;
}


#photoTwo { /*second square photo, fades in/out through images*/
	background-repeat: no-repeat;
	background-position: center top;
	height: 137px;
	width: 137px;
	margin: 0px;
	display:inline;
}


#photoThree { /*third square photo, fades in/out through images*/
	background-repeat: no-repeat;
	background-position: center top;
	height: 137px;
	width: 137px;
	margin: 0px;
	display:inline;
}


#content { /*tiled horizontal stripe*/
	background-image: url(../images/content_bg_stripe.png);
	background-repeat: repeat-y;
	background-position: center top;
	min-height: 423px;
	height:inherit;
	width: 901px;
}

#content b {
	letter-spacing: 1.5px;
}

.FontForCopy {
	text-decoration:none;
	font-style:normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	color: #636363;
	letter-spacing:0.06em;
	word-spacing:0.06em;
	text-align:left;
	margin-top:17px;
	line-height: 1.2em;
}

#divCopy {
	margin-bottom:20px;
	margin-left: 50px;
	padding:0px;
	display: inline;
	width: 380px;
	float:left;
	margin-top:10px;
}

#divVideo {
	margin-left:40px;	
	padding: 0px;
	display: inline;
	width: 350px;
	float:left;
	margin-top:20px;
}

#divsubheader {
	margin-top:10px;
	margin-left:50px;
	margin-bottom:20px;
	display:inline;
	float:left;
	width:100%;
}

#divPromo {
	margin-top:41px;
	margin-bottom:40px;
	margin-left:10px;
	margin-right:10px;
	width:680px;
	float:left;
	display:inline;
}

#footer { /*small navigation and copyright*/
	background-image: url(../images/footer_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	height: 133px;
	width: 901px;
	letter-spacing:0.1em;
	margin-bottom:30px;
}


/*------------------Navigation------------------*/

#navigation > ul {
	margin-left: 10px;
	margin-top: 20px;
}

#navigation ul > li {
	float: left;
	list-style-type: none;
	height: 50px;
	background-image: url(../images/normal_left.png);
	background-repeat: no-repeat;
	background-position: left top;
	line-height: 32px;
	padding-left: 15px;
	font-size: 13px;
	font-family: "Lucida Grande", Helvetica, Verdana, Arial, sans-serif;
	color: #FFF;
	margin-right: 4px;
	letter-spacing: .5px;
	position:relative;	/*Allows child <ul>s to be positioned absolutely*/
}

#navigation ul > li > a {
	display: block;
	background-image: url(../images/normal_right.png);
	background-repeat: no-repeat;
	background-position: right top;
	padding-right: 15px;
	text-decoration: none;
	color: #FFF;
}

#navigation ul > li > a:focus { /*Override to get rid of image outlines on click*/
	-mozilla-outline-style: none;
	outline: none;
}

#navigation ul > li:hover {
	background-image: url(../images/active_single_left.png);
}

#navigation ul > li.multi:hover {
	background-image: url(../images/active_multi_left.png);
}

#navigation ul > li:hover > a {
	color: #FF173D;
	background-image: url(../images/active_right.png);
	background-repeat: no-repeat;
	background-position: right top;
}



/*--------------------------2nd Level Navigation --------*/

#navigation > ul > li ul.submenu {
	display:none;	/*Hides the Submenus by default*/
}

#navigation > ul > li:hover > ul.submenu {
	display:block;	/*displays the submenus when the main menu item on hover of the main menu item*/
	position:absolute;	/*positions the submenu relative to the main menu - see relative positioning above*/
	left:19px;	/*aligns the first element of the submenu with the arrow point*/
	top:46px;	/*moves the submenu under the main menu*/
	width:300px;	/*expands the <ul> so child <li>s don't float underneath each other*/
}

#navigation > ul > li:hover > ul.submenu > li {
	float:left;
	height:1.25em;	/*sets the height of the border line*/
	padding-left:7px;
	margin-right:7px;
	line-height:1.25em;	/*centers the text vertically within the <li>*/
	background-image:none;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FF0000;
}

#navigation > ul > li:hover > ul.submenu > li:first-child {
	border:none;
	padding-left:0px;
}


#navigation > ul li:hover > ul.submenu > li > a {
	padding:0;
	margin:0;
	background-image:none;
	display:block;
	color:#636363;
	font-weight: bold;
	font-size: 13px;
}

#navigation > ul li:hover > ul.submenu > li > a:hover {
	color:#FF173D;
}


/*---------------------------Footer-------------------------*/

#footer ul li {
    float: left;
    list-style-type: none;
	text-decoration: none;
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: #FF173D;
    margin-right: 5px;
	margin-top: 50px;
    padding-left: 10px;
	font-family: "Century Gothic", Helvetica, Verdana, Arial, sans-serif;
	font-size: 11px;
}

#footer ul {
	width:761px;
}
	
#footer ul li:first-child {
    border:none;
    padding-left: 20px;
}

#footer p {
	float: left;
	color: #636363;
	margin-left: 20px;
	margin-top:9px;
	font-size: 10px;
	font-family: Georgia, "Times New Roman", Times, serif;
	width:726px;
	text-align: left;
}

#adigCorpsLogo {
	float:right;
	text-align:right;
	margin-right:15px;
	margin-top:45px;
	width:140px;
}


/*---------------------------------Links-------------------------------*/

#footer a:link{
	color:#636363;
	text-decoration:none;
}

#footer a:visited{
	color:#636363;
	text-decoration:none;
}

#footer a:hover{
	color:#FF173D;
}

.link{
	color:#636363;
	text-decoration:none;
	float:left;
	margin: 0 1em 0 0;
}

a:focus { /*Override to get rid of image outlines in Firefox*/
	-mozilla-outline-style: none; 
	outline: none;
}

a:active { /*Override to get rid of image outlines on click in Firefox*/
	-mozilla-outline-style: none;
	outline: none;
}

#content a:link{
	color:#ff173d;
	text-decoration: none;
	border-bottom: 2px dotted #ff173d;
	font-size: 14px;
	font-weight: bold;
}

#content a:visited{
	color:#ff173d;
	text-decoration: none;
	border-bottom: 2px dotted #ff173d;
	font-size: 14px;
	font-weight: bold;
}

#content a:hover{
	color:#ff173d;
	text-decoration: none;
	text-decoration: none;
	border-bottom: 2px dotted #ff173d;
	font-size: 14px;
	font-weight: bold;
}

#backgroundPopup {  
	display:none;  
	position:fixed;  
	_position:absolute; /* hack for internet explorer 6*/  
	height:100%;  
	width:100%;  
	top:0;  
	left:0;  
	background:#000000;  
	border:1px solid #cecece;  
	z-index:1;  
}  

#popupContact {  
	display:none;  
	position:fixed;  
	_position:absolute; /* hack for internet explorer 6*/  
	height:300px;  
	width:400px;    
	border:2px solid #cecece;  
	z-index:2;  
	padding:12px;  
	font-size:13px;
	background-color:#000000; 
}  
 
#popupContactClose {  
	font-size:14px;  
	line-height:14px;  
	right:6px;  
	top:4px;  
	position:absolute;  
	color:#6fa5fd;  
	font-weight:700;  
	display:block;  
}  

#button {  
	text-align:center;  
	margin:100px;  
}



