@charset "UTF-8";

/* 
	Header CSS
	Header style used to define the elements that make up the header portion of the site
*/

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

/*----------------------------------------------------------------
Logo 
Leftmost portion of the header which is setup to hold the logo graphic
------------------------------------------------------------------*/
#header #logo { 
	width:165px;
	height:95px;
	float:left;
	padding: 0px;
	background-color:#FFF;
} 

/*----------------------------------------------------------------
kodak 
Kodak Logo graphic section next to the MVP Logo
------------------------------------------------------------------*/
#header #kodak {
	width:130px;
	height:42px;
	float:right;
	padding: 0px;
	background-color:#FFF;
}

/*----------------------------------------------------------------
wwlwlogo 
Leftmost portion of the header which is setup to hold the wwlw logo graphic
------------------------------------------------------------------*/
#header #wwlwlogo { 
	width:165px;
	height:95px;
	float:left;
	padding: 0px;
	background-color:#FFF;
} 

/*----------------------------------------------------------------
wwlwmvplogo 
WWLW MVP Logo graphic section next to the WWLW Logo on the right
------------------------------------------------------------------*/
#header #wwlwmvplogo {
	width:165px;
	height:80px;
	float:right;
	padding: 0px;
	background-color:#FFF;
}

/*----------------------------------------------------------------
MetaNav 
Topmost navigation portion of the header.
* Note, most of this style is originally from the Medialogic code
------------------------------------------------------------------*/
#header #metanav {
	text-align:right; 
	padding:5px 5px 10px 0; 
	font-size:.85em;
	height:20px;
}
#header #metanav a {
	text-decoration:none
}
#header #metanav input.searchfield {
	width:100px; 
	margin:0 0 0 10px; 
	border:1px solid #cacaca; 
	padding:2px 3px;
}
#header #metanav input#search {
	background:none; 
	border:none; 
	margin-left:3px; 
	position:relative; 
	top:5px; 
}

/*----------------------------------------------------------------
Section Title
This is the title area of the header.
Note that to simulate a bottom alignment for the text, a margin-top
was added to a <p> tag which adds 22 pixels to the top. If the text
size were to change, the margin may need to be adjusted.
** This style may no longer be used, with the latest redesign.
------------------------------------------------------------------*/
#header #sectionTitle
{
	font-family:Arial, Helvetica, sans-serif;
	color:#666;
	font-size:20px;
	float:left;
	height:50px;
}
#header #sectionTitle p	/* This is an attempt to bottom align the sectionTitle */
{
	margin-top:22px;
}

/*----------------------------------------------------------------
providerSearchLink
This is the header's Provider Search Link which sits on the right 
side of the header.
------------------------------------------------------------------*/
#header #providerSearchLink
{
	text-align:right;
	height:50px;
	width:165px;
	float:right;
}
#header #providerSearchLink a {
	text-decoration:none; 
	top:12px; 
	right:40px; 
	font-size:1.2em; 
	color:#CC0000;
}
#header #providerSearchLink a span {color:#999; padding-left:5px; letter-spacing:-2px;}
#header #providerSearchLink a:hover {text-decoration:none; color:#000;}
#header #providerSearchLink a:hover span {text-decoration:none; color:#CC0000;}
#header #providerSearchLink p {	margin-top: 20px; }

/*----------------------------------------------------------------
mainNav
Main navigation bar, which sits at the bottom the header.
------------------------------------------------------------------*/
#mainNav {
	float:right;
	width:785px;
	background:#d0e503 url(../images/nav-border.gif) left bottom repeat-x;
	
}
#mainNav ul {
	list-style:none;
	background:#d0e503 url(../images/nav-border.gif) left bottom repeat-x;
	margin:0;
	border-top:1px solid #cacaca; 
	padding:0 0 0 5px;
}
#mainNav ul li {
	float:left;
	background:#d0e503;
	margin: 0 0.15em;
}
#mainNav ul li a {
	width:auto;
	padding:5px 12px;
	display: block;
	text-decoration: none;
	text-align: center;	
	font-size:1em; 	
}
#mainNav ul li a:hover {
	background-color:#e2fa00;
	text-decoration:none; 
	color:#000;
}
#mainNav ul li.current a, #mainNav ul li.current a:hover {
	background:#FFF; 
	color:#000; 
	border-bottom:1px solid #FFF; 
	border-left:1px solid #cacaca; 
	border-right:1px solid #cacaca;
}

/*----------------------------------------------------------------
navSpace
This is used for a space to the left of the mainNav. This was needed
after the mainNav was removed from the top header div, and required
a space to move the mainNav to the right.
------------------------------------------------------------------*/
#navSpace
{
	width:150px;
	height:20px;
	float:left;
}
