/*********************************************************
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
	*/
	position:relative;
	float:right;
	width: 400px;
	height: 30px;
	color: #3f4d4d;
	font-weight: bold;	
	text-align:right;
	margin-top:8px;
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:30px;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	
	font-family: helvetica, verdana, tahoma, arial;
	text-transform: lowercase;
	font-size: 20px;
	display:block;
	color:#3f4d4d;
	text-decoration:none;
}
.dropdown a.popout {
	 padding-left:20px;
	 width:180px;
	 font-size: 14px;
}

.dropdown ul {
	
	  display: block;
	  position: relative;
	  float: left;
}
.dropdown li a:hover 
{ 
	color:#c90000;
}


.dropdown li:hover li a:hover 
{ 
	color:#ffffff;
	background-image:url(../images/nav-bk-green-ro.png);
	filter:alpha(opacity=90);-moz-opacity:.90;opacity:.90;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:190px;
	color:#ffffff;
	padding-right:10px;
	font-size: 14px;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	background-image:url(../images/nav-bk-green.png);
}
.dropdown li ul {
	border-top: solid 1px #3f4d4d;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:147px;
	text-align:left;
}
.dropdown li ul li a{
	border-bottom: solid 1px #3f4d4d;
	border-top: solid 1px #9abbbc;
}


/************************************************************
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;
}
