/*------------------------------------*\
	NAV
\*------------------------------------*/
#nav{
	list-style:none;
	font-weight:bold;
	background: #000000;
	margin-bottom:10px;
	/* Clear floats */
	float:left;
	position:relative;
	z-index:5;
}
#nav li{
	float:left;
	position:relative;
}
#nav a{
	display: block; 
	color: #FFF; 
	padding: 10px 30px 10px 30px;
	text-decoration:none; 
	text-transform:uppercase;
	vertical-align:center;
	font: 8pt Arial, Helvetica, Sans-serif; 
	border-right: solid 1px #333; 
}
#nav a:hover{
}

/*--- 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: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;) */
	text-align:left;
	text-transform:none;
}
#nav ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced questions */
	float:none;
	text-align:left;
	text-transform:none;
}
#nav ul a{
	white-space:nowrap;
	text-transform:none; /* Stop text wrapping and creating multi-line dropdown questions */
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	border-bottom: 0px;
}
#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. */
	background:#666;
}
#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;
	text-transform:none;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#333;
}


/* SINGLE DROPDOWN FUNCTIONALITY */
#menu, #menu ul{ 
	padding:0; 
	margin:0
}
#menu a{
	display:block;
}
#menu li{
	display:block; 
	float:left;
}
#menu li ul li{
	float:none;
}
#menu li ul{
	display:none; position:absolute; z-index:1
}
#menu li:hover ul{
	display:block;
}

/* SINGLE DROPDOWN STYLING */
#menu{}
#menu a{
	color:#09F;
}
#menu a:hover{
	color:#0CF;
}
#menu li{
	background-color:#FFF; 
	border:solid 1px #CCC;  
	margin-left:-1px; 
	padding:4px 10px 4px 10px;
}
#menu li:hover{
	color:#09F; 
	background-color:#F0F0F0;
}

/* SINGLE DROPDOWN FUNCTIONALITY */
#options, #options ul{ 
	padding:0; 
	margin:0
}
#options a{
	display:block;
}
#options li{
	display:block; 
	float:left;
}
#options li ul li{
	float:none;
}
#options li ul{
	display:none; 
	position:absolute;
	z-index:1;
}
#options li:hover ul{
	display:block;
}

/* SINGLE DROPDOWN STYLING */
#options{}
#options a{
	color:#09F; 
}
#options a:hover{
	color:#0CF;
}
#options li ul.optionsMenu li{
	background-color:#FFF; 
	border:solid 1px #CCC;  
	margin-left:-1px; 
	padding:4px 10px 4px 10px;
	width:100px;
	text-align:left;
}
#options li ul.optionsMenu li a{
	margin: 0;
	padding: 0;
	line-height: 18px;
}
#options li.image{
	margin-left:-1px; 
	background-color:transparent;
	width:16px;
	padding:1px;
	border:0px;
	text-align:center; 
}
#options li:hover{
	color:#09F;
}
#options ul.optionsMenu ul{
	display: none;
	visibility: none;
}
#options ul.optionsMenu li:hover > ul {
	display: block;
}

/* MENU WITH CHILD */
#menu1{
	list-style: none;
	padding: 0;
	background-color: #FFF;
}
#menu1 li{
	float:left;
	background-color:#FFF; 
	border:solid 1px #CCC;  
	margin-left:-1px; 
	padding:4px 10px 4px 10px;
	width:100px;
	text-align:left;
}
#menu1 li a{
	display: block;
	margin: 0;
	padding: 0;
	line-height: 18px;
}
#menu1 ul{
	position: absolute;
	list-style: none;
	padding: 0px;
}
#menu1 ul li{
	clear:left;
}
#menu1 li:hover ul{
	display: block;
}
.clearfix{
	clear:both;
}
/* SINGLE DROPDOWN STYLING - buttom */

#options li.button{
	margin-left:-1px; 
	background-color:transparent;
	padding:1px;
	border:0px;
	text-align:center; 
	font-weight:plain;
	width:150;
}
 