/* menu styles */

            /*Makes the right tab stay on when dropdown menu is used*/


#topNav 
{
	position:absolute;
	left:200px;
	top:67px;
	z-index:999;
}

#topNav ul 
{
	margin: 0;
	padding: 0
}

/* top level */
#topNav li 
{
	display: block;
	float: left;
	list-style: none;
	font: 18px;
	margin: 0;
	margin-right: 10px;
	padding: 0;
}

* html #topNav li
{
	width: 45px;
}

#topNav li ul li a
{
	text-align: left;
}


/* top level link */
#topNav li a 
{
	cursor:pointer;
	display: block;
	
	text-decoration: none;
	color: #333;
	font-weight:bold;
	font-size: 14px;
	height:25px;
    white-space: nowrap;

	margin: 0;
	
	padding: 7px 7px 0 7px;
	text-align: center;
}

#topNav li.current_page_item a,
#topNav li.current_page_parent a
{
	background: #e9e9e9;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}

#topNav li:hover a
{
	background: #e9e9e9;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-webkit-border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	-moz-border-radius-bottomleft: 0;
	-moz-border-radius-bottomright: 0;
}

#topNav li ul
{
	display: none;
}

#topNav li:hover ul
{
	display: block;
	position: absolute;
}

/* sub nav item */
#topNav li ul li 
{
	background:none;
	float: none;
	display: inline;
	
	margin: 0;
}

/* sub nav link */
#topNav li ul li a, 
#topNav li:hover ul li a 
{
	background: #e9e9e9;
	color: #333;
	padding: 5px 12px;
	font-size: 13px;
	font-weight:bold;
	height:auto;
	margin: 0;
	min-width: 150px;
	text-shadow: 1px 1px 1px rgba(255,255,255,1);
	
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}

#topNav li:hover ul li a:hover
{
	background:#f4ba00;
	color: #000;
}
