/* Menu Style */
div.menu {
   	height: auto;
	min-height: 100%;
	
	width: 180px;
	background-color: #cccccc;
	color:#050;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 5px;
	vertical-align: top;
	font-size: 9px;
	line-height: 15px;

   	float: left;
}

div.menu ul {
	padding: 0px;	
	margin-left: 0px;
}
      
div.menu li{
	width: 180px;
	
	list-style-type:none;
	text-align:right;
	padding: 2px 0px 2px 0; 
	font-size:1.1em;
}

div.menu a {
	color:#050;
	font-weight: bold; 
	text-decoration:none;
}

div.menu a:hover {
	color:#050;
	text-decoration:underline;
}

div.menu li.selected {
	background: #bbb url("/images/menuImg.gif") repeat-y;
	width: 180px;
}

div.menu li.child {
	background-color: #ddd;
}

div.menu li.child  a {
	font-weight: normal;	
}


/* Class to highlight the parent when the child is selected*/
div.menu li.childSelected {
	background-color:#bbb;
	
}


div.menu li.selectedChild{
	background: #ddd url("/images/menuImg.gif") no-repeat;
}



	
	
