/*********************************************************
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: 576px;
	/* background-color:#000000; */
	padding-left:10px;
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:32px; 
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	/* min-width: 80px; */
	width: 90px;
	font-family: helvetica, verdana, tahoma, arial;
	text-transform: uppercase;
	font-size: 11px;
	display:block;
	padding:0px 0px 0px 00px;
	color:White;
	background-color: #3f3f3f;
	text-decoration: none;
	font-weight: bold;
	text-align:center;
	background-image: url(MenuOff.png);
}
.dropdown a:hover{
	color: white;
	/*  background-color: #ed0e0e; */
	background-image: url(MenuOn.png);
	text-decoration: none;
}
.dropdown ul {
	top:32px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:200px;
	height:30px;
	color: white;
	text-align: left;
	font-family: helvetica, verdana, tahoma, arial;
	font-size: 11px;
	text-decoration: none;
	font-weight: normal;

	background-image: none;
	background-color:#3f3f3f;
}
.dropdown li ul a:hover{
	/* The width of the dropdown and popout menu */
	width:200px;
	height:30px;
	color: white;
	text-align: left;
	font-family: helvetica, verdana, tahoma, arial;
	font-size: 11px;
	text-decoration: none;
	font-weight: normal;

	background-image: none;
	background-color:#b80000;
}

.dropdown li ul {
	border-top: solid 1px #333333;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:90px;
	height:30px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:90px;
	height:30px;
}
.dropdown li ul li a{
	border-bottom: solid 1px #000000;
	border-top: solid 1px #333333;
	border-left: solid 1px #000000;
	border-right: solid 1px #333333;
}

/************************************************************
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;
}
