/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
#dropdown-holder {
	/*
		This is just the holder and how you want what is behind the
		main menu links too look like
	*/
	width: 97%;
	background-color:#acacac;
	padding-left:20px;
	
}

#navBg{width:100%;padding:2px 0 0 0;background-color: #acacac;filter:Alpha(Opacity=60);}
#nav{position:relative;width:100%;padding:1px 0 1px 0;text-align:center;font-weight:bold;}
#nav a:link, #nav a:visited {color:#FFF;text-transform:uppercase;padding:0 5px;text-decoration:none;} 
#nav a:hover, #nav a:active, #nav a.navOn {color:#fbf2a3; text-transform:uppercase;padding:0 5px;} 
.navOn {color:#fbf2a3; font-weight:bold;}

.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:20px;
	z-index:1000;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 90px;
	font-family: Calibri, helvetica, verdana, tahoma, arial;
	text-transform: uppercase;
	font-size: 15px;
	display:block;
	color:#0099CC;
	text-decoration:none;
	margin-right:10px;
	padding: 0 5px;
}

.dropdown a:hover{
	color: #00ccff;
	background-color: #7D7D7D;
}
.dropdown ul {
	top:32px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:175px;
	background-color:#7D7D7D;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	
	filter:alpha(opacity=90);-moz-opacity:.90;opacity:.90;*/
	margin:0;
}
.dropdown li ul {
	border-top: solid 1px #333333; /* #333333 */
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:187px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:175px;
	
}
.dropdown li ul li a{
	border-bottom: solid 1px #000000;
	border-top: solid 1px #333333;
	border-left: solid 1px #000000;
	border-right: solid 1px #333333;
	
}
.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(../images/popout.gif);
	background-position:center right;
	background-repeat:no-repeat;
}

/************************************************************
ONLY EDIT BELOW IF YOU REALLY KNOW WHAT YOUR DOING!
************************************************************/
.dropdown {
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown ul{
	margin:0;
	padding:0;
	list-style-type:none;
}
.dropdown a {
	display:block;
}
.dropdown li{
	float:left;
	position:relative;
	display: block;
}
.dropdown ul {
	position:absolute;
	display:none;
}
.dropdown li ul a{
	float:left;
}
.dropdown li ul {
	float:left;
}
.dropdown li ul li{
	float:left;
	position:relative;
}
.dropdown ul ul{
	top:0;
	left:100%;
}
.dropdown li ul ul {
	width:auto;
	margin: -1px 0px 0px 0px;
	float:left;
}
.dropdown li:hover ul ul, .dropdown li:hover ul ul ul, .dropdown li:hover ul ul ul ul{
	display:none;
}
.dropdown li:hover ul, .dropdown li li:hover ul, .dropdown li li li:hover ul, .dropdown li li li li:hover ul{
	display:block;
}
.clear {
	clear: both;
}