@charset "UTF-8";
/* BE SURE TO INCLUDE THE CSS RESET FOUND IN THE DEMO PAGE'S CSS */
/*------------------------------------*\
	NAV
\*------------------------------------*/
#navcontainer {width:549px; height:42px; float:right;}
#nav{ width:549px; height:42px; margin:0 0 0 -30px;
	/*list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	 Clear floats 
	float:left;
	width:100%;
	/* Bring the nav above everything else--uncomment if needed.
	position:relative;
	z-index:5;
	*/
}
#nav li{
	float:left;
	position:relative;
	list-style:none;
}
#nav a.nav1{ background:url(../images/nav1.jpg) no-repeat; width:53px; height:42px;	display:block; float:left; margin:0 30px 0 0; }
#nav a.nav2{ background:url(../images/nav2.jpg) no-repeat; width:53px; height:42px;	display:block; float:left; margin:0 30px 0 0; }
#nav a.nav3{ background:url(../images/nav3.jpg) no-repeat; width:75px; height:42px;	display:block; float:left; margin:0 30px 0 0; }
#nav a.nav4{ background:url(../images/nav4.jpg) no-repeat; width:76px; height:42px;	display:block; float:left; margin:0 30px 0 0; }
#nav a.nav5{ background:url(../images/nav5.jpg) no-repeat; width:47px; height:42px;	display:block; float:left; margin:0 30px 0 0; }
#nav a.nav6{ background:url(../images/nav6.jpg) no-repeat; width:65px; height:42px;	display:block; float:left; margin:0 30px 0 0; }

#nav a.nav1 span {display:none;}
#nav a.nav2 span {display:none;}
#nav a.nav3 span {display:none;}
#nav a.nav4 span {display:none;}
#nav a.nav5 span {display:none;}
#nav a.nav6 span {display:none;}

#nav a:hover.nav1{ background:url(../images/nav1.jpg) no-repeat; background-position: 0px -42px; }
#nav a:hover.nav2{ background:url(../images/nav2.jpg) no-repeat; background-position: 0px -42px; }
#nav a:hover.nav3{ background:url(../images/nav3.jpg) no-repeat; background-position: 0px -42px; }
#nav a:hover.nav4{ background:url(../images/nav4.jpg) no-repeat; background-position: 0px -42px; }
#nav a:hover.nav5{ background:url(../images/nav5.jpg) no-repeat; background-position: 0px -42px; }
#nav a:hover.nav6{ background:url(../images/nav6.jpg) no-repeat; background-position: 0px -42px; }



/*--- DROPDOWN ---*/
#nav ul{
	background:#000; /* 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;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}
#nav ul li{
	border:solid 1px #dfb82a;
	padding:5px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
	background-color:#ededed;
	margin:0 0 1px 0;
	display:block;
}
#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:-40px; top:42px; /* Bring back on-screen when needed */
}
#nav li:hover a.nav1{ background:url(../images/nav1.jpg) no-repeat; background-position: 0px -42px; }
#nav li:hover a.nav3{ background:url(../images/nav3.jpg) no-repeat; background-position: 0px -42px; }
#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. */
	font-family:Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#666;
	text-decoration:underline;
	display:block;
	
}
#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. */
	color:#333}
