.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:32px;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 90px;
	font-size: 14px;
	display:block;
	padding:0px;
	color:#003366;
	text-decoration:none;
	margin: 0px;
	text-align: center;
	height: 32px;
	width: 135px;
	background-image: url(../imagefiles/menu-black.gif);
	background-repeat: no-repeat;
	background-position: -1px top;
}
.dropdown a:visited {
	color: #003366;
}
.dropdown a:hover{
	color: #0033CC;
	text-decoration: none;
	background-image: url(../imagefiles/menu-black.gif);
	background-repeat: no-repeat;
	background-position: -1px -32px;
}
.dropdown ul {
	top:32px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:135px;
	/*
		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;
	font-size: 12px;
	background-image: url(../imagefiles/menu-black.gif);
	background-repeat: no-repeat;
	background-position: center -64px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
}
.dropdown li ul a:hover{
	background-image: url(../imagefiles/menu-black.gif);
	background-repeat: no-repeat;
	background-position: left -96px;
}
.dropdown li ul {
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:145px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:136px;
}
.dropdown li ul li a{
}
.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(../imagefiles/menu-black.gif);
	background-position:right -64px;
	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;
	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;
}
