/*  CSS for Homepage's Vertical Drop-down Menu  */


#left_content ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-left: 10px;
	width: 140px; /* Width of Menu Items */
	}

/* main menu */
#left_content ul li {
	position: relative;
	border-top:1px dashed #DEDEBD;
	}

#left_content ul li ul {
	border:1px solid #666633;
}

#left_content ul li ul li {
	border-top:1px solid #DEDEBD;
}

	
#left_content li ul {
	position: absolute;
	left: 130px; /* Set less than menu width */
	top: 0;
	display: none;
	}

/* Styles for Menu Items */
#left_content ul li a {
	display: block;
	text-decoration: none;
	/*color: #777;*/
	color: #757548;
	font-family: verdana, arial;
	font-weight: bold;
	font-size:11px;	
	background: #F6F6F5; /* IE6 Bug */
	padding: 5px;
	border-bottom: 0;
	}
	
/* submenu */
#left_content ul li ul li a {
	background: #E6E6E5; /* IE6 Bug */
	padding: 2px 5px;  /* Sub Menu Styles */
}

#left_content #coa a:hover {
	color: #F6F6F5;
	background: #669999; /* IE6 Bug */
	}
	
#left_content #wat a:hover {
	color: #F6F6F5;
	background: #333366; /* IE6 Bug */
	}

#left_content #cli a:hover {
	color: #F6F6F5;
	background: #336699; /* IE6 Bug */
	}
	
#left_content #pop a:hover {
	color: #F6F6F5;
	background: #cc6600; /* IE6 Bug */
	}

#left_content #eco a:hover {
	color: #F6F6F5;
	background: #cc9933; /* IE6 Bug */
	}

#left_content #ene a:hover {
	color: #F6F6F5;
	background: #993300; /* IE6 Bug */
	}

#left_content #bio a:hover {
	color: #F6F6F5;
	background: #996600; /* IE6 Bug */
	}

#left_content #agr a:hover {
	color: #F6F6F5;
	background: #663366; /* IE6 Bug */
	}

#left_content #for a:hover {
	color: #F6F6F5;
	background: #336600; /* IE6 Bug */
	}

#left_content #env a:hover {
	color: #F6F6F5;
	background: #663300; /* IE6 Bug */
	}

#left_content .spcollect a:hover {
	color: #F6F6F5;
	background: #999966; /* IE6 Bug */
}

/* Fix IE. Hide from IE Mac \*/
* html #left_content ul li { float: left; height: 1%; }
* html #left_content ul li a { height: 1%; }
/* End */

#left_content ul li a:hover { color: #E2144A; background: #FFFFFF; } /* Hover Styles */

   
#left_content li:hover ul, #left_content li.over ul { display: block; } /* The magic */

