/* 
Title: Vertical CSS menu with a behavior file.
Author: Kensoft Limited
Blog: http://www.kensoftweb.com
*/

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

ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width:100%;
}

ul li {
	font: bold 12px/16px Verdana, Arial, Helvetica, sans-serif;
	height:30px;
	background:#72A23C;
	border-bottom:1px solid #fff;
	position: relative;
	float:left;
	width:100%;
	}
	
ul li a{
	display:block;
	padding: 7px 5px;
	}

ul li a:hover {
	color: #FFFF00;
	background: #718129;
	text-decoration: none;
	border-right:0px solid #fff;
	border-left:0px solid #fff;
	}

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