/*********************************************************
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: 985px;
	
	padding-left:0px;
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:27px;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	font-family: helvetica, verdana, tahoma, arial;
	font-size: 12px;
	display:block;
	color:white;
	font-weight:bolder;
	text-decoration:none;
	text-align:left;
	background:transparent;
	white-space:nowrap;
}
.dropdown a:hover{
	color: #ffffff;
	background-color:#7d7d7d;
    text-decoration:none;
}
.dropdown ul {
	top:27px;
}
.dropdown li ul a{
	width:100%;
}
.dropdown li ul {
	background-color:#3e3e3e;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:100%;
    border-top:1px solid black;
    margin:0px;
}
.dropdown li ul li a{
    
}
.dropdown a.popout {
	/* totally optional popout indicator */
	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;
}

