/* sid nav  ---------- */
#sideMenu  { background: #A13216; width: 145px; height: 28px; }
ul 
{
	 margin			: 0;
	 padding		: 0;
	 list-style		: none;
	 width			: 145px; /* Width of Menu Items */
	 /* height			: 40px;  Width of Menu Items */
	 background		: #D6DEE4;
	 border-bottom	: 1px solid #A13216; /* yellow */
}
ul li 
{
 	position		: relative;
}
 
li ul 
{
	 position		: absolute;
	 left			: 0px; /* Set 1px less than menu width */
	 /* height			: 40px; */
	 top			: 28; 
	 display		: none;
 }
/* Styles for Menu Items */
ul li a 
{
	 display		: block;
	 text-decoration: none;
	 color			: #777;
	 background		: #fff; /* IE6 Bug */
	/* text-transform	: uppercase; */
	 padding		: .8em;
	 border			: 1px solid #821C0D;
	 border-bottom	: 0;
	 font-weight	: bold;
	 font-size		: 11px;
	 font-family	: Tahoma, Helvetica, sans-serif;
 }
 
li a:link,  li a:visited 
{
	  background-color	: #b33817;
	  border-left		: 7px solid #c75f44;
	  color				: #fff;
}
li a:hover, li a:active 
{
	border-left			: 7px solid #de9785;
	background-color	: #c75f44;
	color				: #fff;
}
 
/* Fix IE. Hide from IE Mac \*/
* html ul li 	{ float: left; height: 1%; }
* html ul li a 	{ height: 1%; }  /* End */
ul li a:hover 	{ color: #DDDDE3; background: #c75f44; } /*  Hover Styles */  
li ul li a 		{ padding: 9px 9px 9px 9px; } /* Sub Menu Styles */  
li:hover ul, li.over ul { display: block; } /* The magic */
