/*********************************************************
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: 983px;
	float:left;
	background-color: #FFFFFF;
	padding-left:0px;
}
.dropdown {
	/*
		OVER ALL LINE HEIGHT
	*/
	
	/*line-height:20px;
	margin-left:3px;*/
	
}
.dropdown a {
	/* The minimum width of the "MAIN" links on top */
	min-width:28px;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: capitalize;
	font-size: 12px;
	text-align:left;
	display:block;
	padding:3px 10px 3px 10px;
	color:#969696;
	text-decoration:none;
	
}
.dropdown a:hover{
	color: #ffffff;
	/*background-color:#171717;*/
	
	}
.dropdown ul {
	top:32px;
}
.dropdown li ul a{
	/* The width of the dropdown and popout menu */
	width:134px;
	background-color:#FF9900;
	color:#FFFFFF;
	padding-right:20px; 
	padding-top:5px;
	padding-bottom:5px;
	/*
		Optional thought i'd make the drop down and popout transparent
		This line is also what is killing the CSS validation
	*/
	filter:alpha(opacity=80);-moz-opacity:.80;opacity:.80;
	
}
.dropdown li ul {
	border-top: solid 1px #ffffff;
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:166px;
}
.dropdown li ul li{
	/* time for some math  {a}:width + {a}:padding + {a}:border */
	width:166px;
}
.dropdown li ul li a{
	border-bottom: solid 1px #ffffff;
	border-top: solid 0px #ffffff;
	border-left: solid 1px #ffffff;
	border-right: solid 1px #ffffff;
	background-color: #225279;
	font-size:11px;
}

.dropdown a.popout {
	/* totally optional popout indicator */
	background-image: url(../images/popout_2.gif);
	background-position:center right;
	background-repeat:no-repeat;
	background-color:#713154;
}
a.cmi_drop:link, a.cmi_drop:visited{
	background-color:#cc4e14;
	background-image: url(../images/drop_arrow.gif);
	background-repeat:no-repeat;
	background-position:right;
}

a.cmi_drop1:link, a.cmi_drop1:visited{
background-color:#cc4e14;	
}

a.cmi_drop1:hover{
	color: #FFFFFF;
	background-color:#ff8042;

}
.dropmenu_divider{width:4px;
	height:auto;
	font-family: Arial, Helvetica, sans-serif;
	text-transform: capitalize;
	font-size: 12px;
	padding-top:-2px;
	color:#FDB900;
	}


a.cmi_navigation_1:link, a.cmi_navigation_1:visited{
	font-family: "Trebuchet MS"; 
	color:#ffffff;
	font-size:12px;
	font-weight:bold; 
	list-style:none; text-decoration:none;
	text-transform:uppercase;

	}
a.cmi_navigation_1:hover{
	color:#ffffff; text-decoration:underline; 
	/*background-image:url(../images/top_line.jpg);
	background-repeat:no-repeat; background-position:top left;*/	
	text-decoration:none;
		}
.heading
{
	background-image:url(../images/top_line.jpg);
	background-repeat:repeat-x; background-position:top;
	color:#ffffff;
}	
.current
{
	color:#ffffff;
}

/************************************************************
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;
	font-weight:normal;
	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;
}
