/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/

.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:16px;
	text-align: left;
}
.dropdown a {
	font-family: helvetica, verdana, tahoma, arial;
	font-size: 10px;
	line-height:16px;
	display:block;
	padding:0px 3px 2px 5px;
	color:#FFF;
	text-decoration:none;
	background: #036;
	width: 90px;
	border-right: 1px solid #000;
}
.dropdown li.lastheading a {
	border-right-style: none;
	border-left-style: none;
}

.dropdown a:hover{
	color: #000;
	background-color: #069;
}
.dropdown ul {
	top:17px;
	z-index:90010;
}
.dropdown li.last a{
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:96px;
	font-size: 10px;
	line-height: 16px;
	font-weight: bold;
	/*
		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;
	border-top: 1px solid #000;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.dropdown li ul {
	border-top: 1px solid #000;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:96px;
	text-align:left;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:96px;
}
.dropdown li ul li a{
	border-top: 1px solid #000;
}

.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;
}

