/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/

body {
	behavior: url(csshover.htc);
}
 
a {
	color: #fff;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width:230px;
	height:22px;
}

ul li {
	padding-top:2px;
	padding-bottom:2px;
	font: bold 10px arial, helvetica, sans-serif; padding-top:2px; padding-bottom:2px;
	
	height:100%;
	background:#003201;
	border :1px solid #075C16;
	position: relative;
	float:left;
	width:100%;
	}
	
ul li ul li{
	background:#003201;
	}

ul li a{
	display:block;
	padding: 2px 3px;
	}

ul li a:hover {
	color: #fff;
	background: #003201;
	
}

ul li ul li a:hover{
	background: #003201;
}

ul ul {
	position: absolute;
	top: 0;
	display:none;
}

ul li:hover ul{
	display: block;
	left:230px;
}