@charset "utf-8";

/* BE SURE TO INCLUDE THE CSS RESET */
/*------------------------------------*\
	NAV
\*------------------------------------*/
#menu_garnish{
	position:absolute;
	top:-20px;
	left:0px;
}
#nav{
	list-style:none;
	margin:0px;
	/* Clear floats */
	width:100%;
	font-weight:bolder;
	position:absolute;
	z-index:100;
	left: 0px;
	padding:0px;
	bottom:0px;
}
#nav li{
	float:left;
	position:relative;
	font: 18px Arial, Helvetica, sans-serif;
}
#nav a{
	display: block;
	height: 28px;
	padding: 7px 25px 0px 25px;
	color: #00A0AF;
	/*background-color:rgba(141,198,63,1);*/
	text-decoration: none;
	font: 18px Arial, Helvetica, sans-serif;
	text-transform: capitalize;
}
#nav a:hover{
	color: rgba(193,216,47,1);
	/*background:#FFF;*/
	text-decoration: none;
	font: 18px Arial, Helvetica, sans-serif;
}

/*--- DROPDOWN ---*/
#nav ul{
	/*background:#fff;*/ /* 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-color: #39B54A;*/ /* 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;
	left: -9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	margin: 0px;
	padding: 0px;
}
#nav ul li{
	padding:0px 17px 0px 0px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
	font: 18px Arial, Helvetica, sans-serif;
}
#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 */
	
}
#menubox{
	position:relative;
	margin-left:15px;
	background-color:rgba(193,216,47,1);
	-webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;

}
#nav ul li{
	color:rgba(51,51,255,1);
}
#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: rgba(0,160,175,1);
	text-decoration: none;
	font: 18px Arial, Helvetica, sans-serif;	/*background-color: rgba(193,216,47,1);*/
}
#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. */
	text-decoration:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	width: 100%;
	/*background-color: rgba(193,216,47,1);*/
	color: rgba(240,245,203,1);
}

/* 2ND LEVEL DROP-DOWN MENU */
#nav li > ul li ul { display:block; }
#nav li > ul li:hover > ul { display:block; position:absolute; top:0px; left:100%; }
#nav li > ul li:hover ul li  {list-style:none; float:none; margin-left:1px; padding:0px; }
#nav li > ul li:hover ul li a { display:block; background:#fff; }
#nav li > ul li:hover ul li a:hover { background:#330e4a; };
