

/*********************************************************
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: 100%;
	padding-left:10px;
	
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:48px;
	
}
.dropdown a {

	/* The minimum width of the "MAIN" links on top */
	font-family:Arial, Helvetica, sans-serif;	
	font-weight:normal;
	text-transform: uppercase;
	font-size: 12px;
	display:block;
	padding:0px 9px 0px 9px;
	color:#badcff;
	text-decoration:none;
}
.dropdown a:hover{
	color: #fff;
	background:url(../images/menu-bg-hover.jpg) 140px;
}
.dropdown ul {
	top:32px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:170px;
	background:#004e97;
	text-transform:capitalize;
	/*
		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:.80;
}
.dropdown li ul {
	
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:156px;
	margin-top:0px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:190px; 
	line-height:28px;
}
.dropdown li ul li a{
	border: solid 1px #004e97;
	border-top:none;
}

.dropdown li ul li a:hover{
	background:#003e84;
}
.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; 
	background:url(../images/menu-separator.jpg) no-repeat right;
}
.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; 
	background-image:none;
}
.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;
}
