/*********************************************************
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
	*/

	
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/

	
	
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	
	height: 33px;

	
}

.dropdown a:hover {
		text-decoration:none;
}

.dropdown li {
	
}

.dropdown li a:hover{
	
	
}

.dropdown ul li {


}

.dropdown ul li a {

}


.dropdown ul li a:hover{


	
}

.dropdown ul {
	
}

.dropdown li ul a {
	/* The width of the dropdown and popout menu */
	width:160px;
	background-color:#633d31;
	font-size: 14px;
	text-align: left;
	text-decoration: none;
	font-weight: normal;
	padding: 10px;
	border-bottom: 1px;
	border-style: dotted;
	border-color: #967551;
	color: #d6c26a;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	
}
.dropdown li ul {
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:160px;

	
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:160px;
}
.dropdown li ul li a{
	height:  20px;
	color: #d6c26a;
}
.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(../menu/popout.gif);
	background-position:center right;
	background-repeat:no-repeat;
}

/************************************************************
ONLY EDIT BELOW IF YOU REALLY KNOW WHAT YOUR DOING!
************************************************************/
.dropdown {

	list-style-type:none;
}
.dropdown ul{
	
	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;

	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;
}
