/* ######### 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;
	border-bottom: 1px solid #0a72c1;
	z-index: 1000;
}

#container .ddsubmenustyle li{
	border: 1px solid #0a72c1;
	border-width:1px 1px 0px 1px;
	padding: 0;
}

#container .ddsubmenustyle li a{
	display: block;
	width: 160px; 
	background-color: #b94802;
	color: #fff;
	text-decoration: none;
	padding: 8px 10px;
	font-weight: bold;
}

* 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: #0a72c1;
	color:#fff;	
}

/* ######### Neutral CSS  ######### */

.downarrowpointer { /*CSS for "down" arrow image added to top menu items*/
	display: none;
}
.rightarrowpointer { /*CSS for "right" arrow image added to drop down menu items*/
	position: absolute;
	padding-top: 7px;
	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 ######### */



/*----------------------------------------- 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/sidenav-off.png') repeat-x top;
	color: #fff;
	font: bold 13px "Lucida Sans", tahoma, arial; 
	text-decoration: none;
	margin-bottom: 2px;
	line-height: 44px;
	padding: 0 10px 0 30px;	
}

#side_nav .openheader a, #side_nav .menuheader a:hover, #side_nav .menuheader a.selected {
	background: url('../images/sidenav-on.png') repeat-x top;
	text-decoration: none;
	color: #fff;
}

#side_nav ul { /*CSS for UL of each sub menu*/
	list-style-type: none;
	padding:0px 0px 10px 15px;
	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: #b94802 !important;
}
#side_nav ul li .closedsubheader { /*Closed state CSS for sub menu header*/
	background: url('../images/arrow.gif') no-repeat left center !important;
	font-weight: bold;
}
#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:#b94802;
}
#side_nav ul li a:hover { /*hover state CSS*/
	background: url('../images/arrow.gif') no-repeat left center; /*custom bullet list image*/
	color: #777;
	cursor: pointer;
}
#side_nav ul ul li a {
	color: #b94802;
	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 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: #777;
}
