/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
/* 	list-style:none; */
	font-weight:normal;
	margin-bottom:0px;
	/* Clear floats */
	width:50%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{	
/* 	display: block; */
	color: #000;
	text-decoration: none;
	text-align: left;
	font-size: 20px;
	font-family: verdana, sans-serif;
	padding-right: 0px;
	padding-left: 0px;
	padding-bottom: 0px;
	margin: 0px;
	position:relative;
}
#nav a{
	
	/*display: block;*/
	height: 22px;
	line-height: 22px;
	color: #000;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	font-family: verdana, sans-serif;
	padding-right: 2px;
	padding-left: 2px;
	padding-bottom: 0px;
	margin: 0px;
	
}
#nav a:hover{	
	color: #FBB117;
}

/*--- DROPDOWN ---*/
#nav ul{
	background:#f00; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */
	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	height: 12px;
	line-height: 12px;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	
}
#nav ul li{
	padding-top:0px; /* 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 */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	height: 12px;
	line-height: 12px;
	top: 44;
	width: inherit;
	text-align: left;
}
#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	color: #FBB117;
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	background-color: #F00;
	height: 12px;
	line-height: 12px;
	color: #FBB117;
	width: 100%;
	text-align: left;
}

#nav ul li a{
	background-color: #F00;
}

#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background-color: #F00;
	height: 12px;
	line-height: 12px;
	color: #FBB117;
	width: 100%;
	text-align: left;
}

#nav li:hover ul li a{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background-color: #F00;
	height: 12px;
	line-height: 12px;
	color: #FBB117;
	width: 100%;
	text-align: left;
}

#nav li a.activeted {
	display: block;
	height: 44px;
	line-height: 44px;
	color: #000;
	text-decoration: none;
	text-align: center;
	font-size: 13px;
	font-family: verdana, sans-serif;
	padding-right: 12px;
	padding-left: 12px;
	padding-bottom: 0px;
	margin: 0px;
}
