/*********************************************************
I TRIED TO MAKE THIS EASY TO STYLE! SEE NOTES BELOW
**********************************************************/
#dropdown-holder {
    background:#4d6738;
	/*
		This is just the holder and how you want what is behind the
		main menu links too look like
	*/
    z-index: 5;
	width:715px;
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
    line-height: 40px;
    background-color:#4d6738;
    z-index: 6;
	width:715px;
	margin:0;
	padding:0;
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width: 107px;
	display:block;
	padding:0px 13px 0px 20px;
	color:#FFF;
	text-decoration:none;
    border-right: 1px solid #FFF;
}

.dropdown a.end {
    border: 0;
}

.dropdown a:hover{
	background-color:#8dab29;
}

.dropdown ul {
    margin: 0;
    padding: 0 1em;
}

.dropdown li ul {
    padding: 0;
    border: 0;
    z-index: 100;
    width:87px;
}

.dropdown li {
    height: 40px;
    line-height: 40px;
 	font-size:.63em;
    text-align: left;
	background-color: #4d6738;
}

.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:135px;
	background: #4d6738;
    z-index: 100;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	filter:alpha(opacity=99);-moz-opacity:.99;opacity:.99;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
    text-align: left;
	width:147px;
    padding: 0;
	font-size:.9em;
    height: 25px;
    line-height: 25px;
    z-index: 100;
}

.dropdown li ul li a:hover {
    background: #8dab29;
    text-decoration: none;
}
.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;
	list-style-type:none;
}
.dropdown ul{
	margin: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;
    margin-left: -1px !important;
}
.dropdown li ul li{
	float:left;
	position:relative;
}
.dropdown ul ul{
	top:0;
	left:100%;
}
.dropdown li ul ul {
	width:auto;
	margin: -2px 0px 0px -5px;
	float:left;
    border-top: 1px solid #FFF;
}
.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;
}
