/*********************************************************
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: 458px;
	background-color:#000000;
	padding-left:10px;
}
ul.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	
}
ul.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	/*min-width: 90px;
	font-family: helvetica, verdana, tahoma, arial;
	text-transform: uppercase;
	font-size: 16px;
	display:block;
	padding:0px 10px 0px 10px;
	color:#0099CC;
	text-decoration:none;*/
}
ul.dropdown a:hover{
	/*color: #00ccff;
	background-color: #121212;*/
}
ul.dropdown ul {
	top:32px;
}
ul.dropdown li.submenu ul a{
	/* The width of the dropdown and popout menu */
	/*width:125px
	background-color:#0a0a0a;;*/
	/*
		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;
}
ul.dropdown li.submenu ul {
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:133px;
}
ul.dropdown li.submenu ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:133px;
	height:auto!important;
	background:none!important;
	background-color:#e5f4fb!important;
}
ul.dropdown li.submenu ul li a{
	display:block;
	width:119px!important;
	border-left: solid 1px #ADADAD;
	border-right: solid 1px #ADADAD;
	border-bottom: solid 1px #ADADAD;
	height:auto!important;
	padding:4px 0 4px 15px!important;
	font-size:12px!important;
	text-align:left;
	background:none!important;
	background-color:#e5f4fb!important;
	color:#005696!important;
}
ul.dropdown li.submenu ul li a:hover{
	width:119px!important;
	background-color:#beda9a!important;
}
ul.dropdown li.last, ul.dropdown li.last ul{
	width:139px!important;
}
ul.dropdown li.last ul li{
	width:139px!important;
	background-color:#e5f4fb!important;
}
ul.dropdown li.last ul li a{
	width:124px!important;
	padding:4px 0 4px 15px!important;
}
ul.dropdown li.last ul li a:hover{
	display:block;
	width:124px!important;
}
ul.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!
************************************************************/
ulu.dropdown {
	margin:0;
	padding:0;
	list-style-type:none;
}
ul.dropdown ul{
	margin:0;
	padding:0;
	list-style-type:none;
}
ul.dropdown a {
	display:block;
}
ul.dropdown li{
	float:left;
	position:relative;
	display: block;
}
ul.dropdown ul {
	position:absolute;
	display:none;
}
ul.dropdown li ul a{
	float:left;
}
ul.dropdown li ul {
	float:left;
}
ul.dropdown li ul li{
	float:left;
	position:relative;
}
ul.dropdown ul ul{
	top:0;
	left:100%;
}
ul.dropdown li ul ul {
	width:auto;
	margin: -1px 0px 0px 0px;
	float:left;
}
ul.dropdown li:hover ul ul, ul.dropdown li:hover ul ul ul, ul.dropdown li:hover ul ul ul ul{
	display:none;
}
ul.dropdown li:hover ul, ul.dropdown li li:hover ul, ul.dropdown li li li:hover ul, ul.dropdown li li li li:hover ul{
	display:block;
}
