/*------------------------------------*\
	NAV
\*------------------------------------*/
.menu_hover_wrapper {
    height: auto;
    left: 307px;
    position: absolute;
    top: 142px;
    width: 87px;
    z-index: 1000;
}




#nav{
	float:left;
	width:100%;
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	margin:0;
padding:0;
}
#nav li{
	float:left; 
	margin-right:10px;
	position:relative;
	display:block;
}


#nav li a{
	display:block;
	padding:7px 16px;
	color:#fff;
	text-decoration:none;
    font-size: 13px;
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
}
#nav li a:hover{
	color:#FFFF00;

	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	opacity:0; /* Set initial state to transparent */
	-webkit-transition:0.25s linear opacity; /* Make the dropdown fade-in in Webkit */
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */

	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	display:block;
    font-size: 13px;
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	opacity:1; /* Fade to opaque */
	border:1px solid #F6D662;
}

#nav li:hover ul li{ /* Display the dropdown on hover */
	background-image:url(menu-hover-bkground.png);
	background-repeat:repeat;
	margin-left:-40px;
	padding:0px 6px;
	margin-right:0px;
	width:auto;
}

#nav li:hover ul li a{ /* Display the dropdown on hover */
	width:290px;
	margin:0 auto 0;
	border-bottom:1px solid #FFF;
	text-align:left;
	text-decoration:none;
}


#nav li:hover a{ /* Set styles for top level when dropdown is hovered */

	
	text-decoration:none;
}
#nav li:hover ul a{ /* Override some top level styles when dropdown is hovered */
	text-decoration:none;
	-webkit-transition:-webkit-transform 0.075s linear;
}
#nav li:hover ul li a:hover{ /* Set styles for dropdown when items are hovered */
	

	
	text-decoration:none;

}

