/* ######### Drop Down ULs CSS ######### */


#container .ddsubmenustyle, #container .ddsubmenustyle ul { /*topmost and sub ULs, respectively*/
	font: 12px tahoma, arial, serif;
	margin: 0;
	padding: 0px;
	position: absolute;
	left: 0;
	top: 0;
	list-style-type: none;
	background-color: white;
	/*border: 1px solid black;*/
	border-bottom-width: 0;
	z-index: 1000;
}

#container .ddsubmenustyle li{
	/*border-right:1px solid white;*/
	margin:1px;
	padding:0px 0px 1px 0px;
	background-color: #333;
}



#container .ddsubmenustyle li a{
	display: block;
	width: 160px; /*width of menu (not including side paddings)*/
	color: #333;
	background-color: #fff;
	/*background:url(../images/trans_blue.png);*/
	text-decoration: none;
	padding: 4px 5px;
	/*border-bottom: 1px solid black;*/
}


* html #container .ddsubmenustyle li { /*IE6 CSS hack*/
	display: inline-block;
	width: 170px; /*width of menu (include side paddings of LI A*/
}


#container .ddsubmenustyle li a:hover {
	background-color: #e1ab1a;
	color:#fff;
	
}
/* ######### Neutral CSS  ######### */

.downarrowpointer { /*CSS for "down" arrow image added to top menu items*/
	padding-left: 4px;
	border: 0;
}
.rightarrowpointer { /*CSS for "right" arrow image added to drop down menu items*/
	position: absolute;
	padding-top: 3px;
	left: 100px;
	border: 0;
}
.ddiframeshim {
	position: absolute;
	z-index: 500;
	background: transparent;
	border-width: 0;
	width: 0;
	height: 0;
	display: block;
}
/* ######### Matt Black Strip Main Menu Bar CSS ######### */


.mattblackmenu ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	background: transparent;
	width: auto;

}
.mattblackmenu li {
	display: inline;
	padding:0px;
	margin: 0px;
	display: block;

}
.mattblackmenu li a {
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
		
}

.mattblackmenu li a span{
	float: left;
	display: block;
	text-decoration: none;
	margin: 0;
	background: none;
		
}

/*----------------------------------------- COLLAPSE EXPAND MENU -------------------------------------------*/
#side_nav {
	width: 100%;	
	margin-bottom: 20px;
}
#side_nav .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
	margin-bottom:3px;
	cursor:pointer;
}

#side_nav .menuheader a {
	display: block;
	background: url(../images/sidenava.png) no-repeat left center;
	/*background-color: #666;*/
	color: #333;
	font-weight: bold;
	text-decoration: none;
	margin-bottom: 3px;
	width: 247px;
	padding: 5px 5px 5px 15px;
	/*font: 13px tahoma, arial, serif;*/
}
#side_nav .menuheader a:hover, #side_nav .menuheader a.selected {
	background: url(../images/sidenavb.png) no-repeat left center;
	/*background-color: #f9a61a;*/
	text-decoration: none;
	color: #FFF;
	font-weight: bold;

}


#side_nav ul { /*CSS for UL of each sub menu*/
	list-style-type: none;
	/*background-color: #def5b8;*/
	padding:0px 0px 0px 10px;
	margin:0px;
}
#side_nav ul li {
	display: inline;
}
#side_nav ul li .opensubheader { /*Open state CSS for sub menu header*/
	background: url('../images/arrow.gif') no-repeat left center !important;
	color: #333 !important;
}
#side_nav ul li .closedsubheader { /*Closed state CSS for sub menu header*/
	background: url('../images/arrow.gif') no-repeat left center !important;
	color: #333 !important;
}
#side_nav ul li a {
	background: url('../images/arrow.gif') no-repeat left center; /*custom bullet list image*/
	display: block;
	padding: 5px 0;
	padding-left: 18px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	color:#333;
}
#side_nav ul li a:hover { /*hover state CSS*/
	background: url('../images/arrow.gif') no-repeat left center; /*custom bullet list image*/
	color: #333;
	cursor: pointer;
}
#side_nav ul ul li a {
	color: #333;
	background: url('../images/arrow_grey.gif') no-repeat left center; /*custom bullet list image*/
	display: block;
	padding: 4px 0;
	padding-left: 18px; /*link text is indented 19px*/
	text-decoration: none;
	font-weight: normal;
	border: none;
	margin: 0;
	cursor: pointer;
}
#side_nav ul ul {
	padding-left:5px;
}
#side_nav ul li a:visited {
	color: #333;
}
#side_nav ul ul li a.selected, #side_nav ul ul li a:hover { /*hover state CSS*/
	background: url('../images/arrow_grey.gif') no-repeat left center;
	color: #333;
}
