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

.nav_box_cms{
	width: 800px;
	height: 40px;
	float: left;
	position: relative;
	top: 12px;
	z-index: 99;
}

ul#topnav_cms {
	margin: 0;
	padding: 4px 0px 0px 0px;
	float: left;
	width: 800px;
	list-style: none;
	position: relative; /*--Set relative positioning on the unordered list itself - not on the list item--*/
	font-size: 13px;
	font-family: Arial, Helvetica, sans-serif;
	
}
ul#topnav_cms li {
	float: left;
	margin: 0; padding: 0;
	/*border-right: 1px solid #555;*/ /*--Divider for each parent level links--*/
}
ul#topnav_cms li a {
	padding: 10px 8px;
	display: block;
	color: #887f6f;
	text-decoration: none;
}
ul#topnav_cms li:hover  a{ background-color: #5d88a2; color: white; }
/*--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_cms li span {
	float: left;
	padding: 15px 0;
	position: absolute;
	left: 0; top:38px;
	display: none; /*--Hide by default--*/
	width: 800px;
	background: #5d88a2;
	color: #fff;
	/*--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_cms li:hover span { display: block; } /*--Show subnav on hover--*/
ul#topnav_cms li span a { display: inline; color: white; } /*--Since we declared a link style on the parent list link, we will correct it back to its original state--*/
ul#topnav_cms li span a:hover {text-decoration: underline;}