@CHARSET "ISO-8859-1";

ul.leftMenu, ul.leftMenu ul, ul.leftMenu li, ul.leftMenu a
{
	display: block;		/* make these objects blocks so they're easier
				   to deal with */
	margin: 0;
	padding: 0;		/* get rid of padding/margin values that these
				   elements may have by default */
}

ul.leftMenu
{
	border-top: 1px #99FF00 solid;
	border-bottom: 1px white solid;
	padding-top: 26px;
	margin-bottom: 26px;
}

ul.leftMenu, ul.leftMenu li, ul.leftMenu ul
{
	list-style: none;	/* proper browsers don't require this because
				   block elements (see previous rule set) cannot
				   take any list-style property. meaning 
				   existing list-style properties are removed
				   when they are set to display: block. IE7 
				   seems to ignore this fact under certain
				   situations so we explicitly set it here
				   even though it's, technically, incorrect 
				   CSS (but it will validate). */
}
ul.leftMenu ul
{
	display: block;		/* hide the sub-menus until needed */
	margin:2px 0px 10px 10px;
	
	border: none;
}
ul.leftMenu li
{
	position: relative;	/* so sub-menus position relative to their 
				   parent LI element */
	border-top: 1px white solid;
}

ul.leftMenu ul li
{
	border-top: 1px white dotted;
}

ul.leftMenu li a, ul.leftMenu li a:link, ul.leftMenu li a:visited
{
	padding: 2px -5px 3px 5px;	/* 2px top, 3px bottom always seems to
				   provide the most visually balanced 
				   padding */
				   
	font: bold 11px Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	line-height:26px;
	text-decoration: none;
}
 ul.leftMenu li a:hover, ul.leftMenu li a:active
{
	text-decoration: none;
  	background: #99CC66;
	color:#044a1a;
	background-color: #99CC66;
 }
ul.leftMenu li
{
	background-color: #044a1a;	/* default background color of menu items */
	margin-right: 0px;
	width: 100%;
}

ul.leftMenu li a
{
	width: 100%;
	text-indent: 20px;
}

ul.leftMenu li a:hover
{
	background-color: #99CC66;
	margin-right: 10px;
}


