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

#menuholder{
	width: 100%;
	height: 34px;
	margin: auto;
		
}
#nav-search{
	margin: auto;
	width: 775px;
}

/***Search***/
#search {
	position:absolute;
	margin-top: 7px;
	right:50%;
	margin-right: -415px;
	float: right;
	width: 200px;

}
.search input {
	float:left;
	margin: 0px 0px 0px 16px;
	background: url('../img/searchbox.gif') no-repeat;
	font-family: Arial, sans-serif;
	font-size: 12px;
	color: #999;
	border: none;
	width: 149px;
	height: 20px;
	cursor: pointer;
	
}
.submit {
	float:right;

}
/***End Search***/

ul#topnav {
	margin: 0 0 0 0; 
	padding: 0 0 0 0;
	float: left;
	width: 100%;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 1.2em;
	background: url(../img/navigation/topnav_stretch.gif) repeat-x;
}
ul#topnav2 {
	margin: auto; 
	padding: 0px 50px 0px 0px;
	width: 775px;
	left: 50%;
	float: left;
	margin-left: -410px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 1.2em;
	/*--background: url(../img/navigation/topnav_stretch.gif) repeat-x;--*/
}
ul#topnav li {
	float: left;
	margin: 0; 
	color:#333;
	/*--border-right: 1px solid #555; Divider for each parent level links--*/
}

ul#topnav li span a {
	color:#333;
	
	
	/*--border-right: 1px solid #555; /*--Divider for each parent level links--*/
}
ul#topnav li:hover a {
	color:#333;
}

ul#topnav a {
	padding: 10px 15px ;
	display: block;
	text-decoration: none;
	color:#f0f0f0;
}

#topnav li a#current{
	color:#333;
	background: #fff url(../img/navigation/topnav_active.gif) repeat-x; 
	border-left:#999 solid 1px;
	border-right:#999 solid 1px;
	/*--border-bottom:#000 solid 1px;
	height: 14px;--*/
}




ul#topnav li:hover { background: #fff url(../img/navigation/topnav_active.gif) repeat-x; }
/*--Notice the hover color is on the list item itself, not on the link. This is so it can stay highlighted even when hovering over the subnav--*/

ul#topnav li span {
	color:#000;
	float: left;
	padding: 0px 0 12px 0px;
	position: absolute;
	left: 0; top:35px;
	display: none; /*--Hide by default--*/
	width: 100%;
	height: 140px;
	background:url(../img/navigation/topnav_span_bg.gif) repeat-x;
	/*border-bottom:#cdcbcb solid thin;
	
	/*--Bottom right rounded corner
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	/*--Bottom left rounded corner
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;--*/
}


ul#topnav li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav li span a { display: inline; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav li span a:hover {text-decoration: underline;}