.side {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 11px;
	margin-left: 2px;
	margin-top: 1px;}

.side ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 193px; /* Width of Menu Items */
	border-bottom: 1px solid #999999;

	
	}
	
.side ul li {
	position: relative;
	}
	
.side li ul {
	position: absolute;
	left: 192px; /* Set 1px less than menu width */
	top: 0;
	width: 240px;
	display: none;
	}

/* Styles for Menu Items */
.side ul li a {
	display: block;
	text-decoration: none;
	color: #000000;
	background: #F4F4F4; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #999999; /* IE6 Bug */
	border-bottom: 0;
	width:181px;
	}
	
.side ul li ul li a {
	width:228px;

}	
.side ul li a:hover{
 background: #fff;
 color: #cc0000;
 font-weight: bold;
 }	
/* Holly Hack. IE Requirement \*/
* html .side ul li { float: left; height: 1%; }
* html .side ul li a { height: 1%; }
/* End */

.side li:hover ul, li.over ul { display: block;} /* The magic */