/* ######### Drop Down ULs CSS ######### */


#container .ddsubmenustyle li {
	border:1px solid #ccc;
	border-width:1px 1px 0px 1px;
}

#container .ddsubmenustyle li a {
	display: block;
	width: 160px; 
	color: #333;
	background-color: #fff;
	text-decoration: none;
	padding: 4px 5px;
}

* html #container .ddsubmenustyle li { /*IE6 CSS hack*/
	display: inline-block;
	width: 170px; 
}

#container .ddsubmenustyle li a:hover {
	background-color: #674722;
	color: #fff;	
}


/*----------------------------------------- COLLAPSE EXPAND MENU -------------------------------------------*/
#side_nav {
	width: 100%;
	margin: 0 0 15px 0;
}

#side_nav .menuheader { /*CSS class for menu headers in general (expanding or not!)*/
	display: block;
	width: 170px;
	font-weight: bold;
	margin-bottom: 3px;
	cursor:pointer;
}

#side_nav .menuheader a {
	display: block;
	width: 180px;
	background: #674722 url('../images/navi_top_bulletoff.gif') no-repeat left center;
	color: #fff;
	text-decoration: none;
	margin-bottom: 3px;
	padding: 10px 5px 10px 18px;
	background-position: 3px center;
}

#side_nav .menuheader a:hover, #side_nav .menuheader a.selected {
	background: #674722 url('../images/navi_top_bulleton.gif') no-repeat left center;
	text-decoration: none;
	color: #fff;
	background-position: 3px center;
}

#side_nav .openheader a { /*CSS class to apply to expandable header when it's expanded*/
	background: #674722 url('../images/navi_top_bulleton.gif') no-repeat left center;
	color:#fff;
	font-weight:bold;
	background-position: 3px center;
}

#side_nav ul { /*CSS for UL of each sub menu*/
	list-style-type: none;
	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;
}
