/*********************************************************
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: 95%;
margin-left: 0;
padding-left: 10px;
margin-bottom: -10px;
padding-bottom: 40px;
background-repeat: no-repeat;
	background-image: url(../test4.gif);
background-position: right;
}



.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	line-height:32px;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 150px;
	font-family: helvetica, verdana, tahoma, arial;
	text-transform: uppercase;
	font-size: 20px;
	font-weight: 900;
	display:block;
	padding: 0px 0px 0px 10px;
	color:#ff0000;
	text-decoration:none;

}
.dropdown a:hover{
	color: #ff0088;

	background-repeat: no-repeat;
}
.dropdown ul {

	top:190px;
}

.dropdown li ul {
	border-top: solid 1px #333333;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:220px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:220px;
}
.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;
}
.dropdown li ul a{

	font-size: 14px;
	/* The width of the dropdown and popout menu */
	width :220px;
	background-color:#ffffff;
	}
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/

.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;
	width: 130px;
	padding-left: 20px;
}
.dropdown ul {
	position:absolute;
	display:none;
}
.dropdown li ul a{
	float:left;
	width: 230px;
}
.dropdown li ul {
width: 200px;
	float:left;
}
.dropdown li ul li{
width: 200px;
	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;
}
