/* CSS Document */

.left_menu{
	width: 216px;
	float:left;
	font-family: Arial;
	font-weight:bold;
}
.left_menu .menuheader{ /*CSS class for menu headers in general (expanding or not!)*/
	font-size:13px;
	font-weight:bold;
	color: #FFFFFF;
	padding: 13px 5px 1px 10px; /*header text is indented 10px*/
	cursor: pointer;
	padding-left:35px;
	float: left;
	height: 20px;
	width: 172px;
}

.left_menu .menuheader a
{
	color:#FFFFFF;
	text-decoration:none;
}

.left_menu .menuheader a:hover
{
	color:#FFFFFF;
	text-decoration:none;
}

.left_sub_menu
{
	width:157px;
	font-size:11px;
	font-weight:bold;
	color:#ffffff;
	line-height:18px;
	padding:0px 0px 0px 51px;
	float: left;
}


.left_sub_menu a
{
	width:152px;
	float:left;
	color:#b0dbd7;
	text-decoration:none;
	margin-bottom:6px;
}

.left_sub_menu a:hover
{
	width:152px;
	float:left;
	color:#ffffff;
	text-decoration:underline;
}

.left_menu h3
{
	padding:0px;
	margin:0px;
	width:175px;
}

.left_menu .openheader{ /*CSS class to apply to expandable header when it's expanded*/
	background:url(../images/bullet.gif) no-repeat top left;
	background-position:15px;
}

.left_menu ul{ /*CSS for UL of each sub menu*/
list-style-type: none;
margin: 0;
padding: 0;
margin-bottom: 8px; /*bottom spacing between each UL and rest of content*/
}

.left_menu ul li{
padding-bottom: 2px; /*bottom spacing between menu items*/
}

.left_menu ul li a{
color: #A70303;
background: url(arrowbullet.gif) no-repeat center left; /*custom bullet list image*/
display: block;
padding: 2px 0;
padding-left: 19px; /*link text is indented 19px*/
text-decoration: none;
font-weight: bold;
border-bottom: 1px solid #dadada;
font-size: 90%;
}

.left_menu ul li a:visited{
color: #A70303;
}

.left_menu ul li a:hover{ /*hover state CSS*/
color: #A70303;
background-color: #F3F3F3;
}

