/* 
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: #000;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width:178px;
}

ul li {
	font: 11px/16px  Verdana, Arial, Helvetica, sans-serif, "Trebuchet MS";
	height: 26px;
	background:#BD7C44;
	border-bottom:1px solid #fff;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
	position: relative;
	float:left;
	width:100%;
	
	}
	
ul li ul li{
	background:#BD7C44;
	}

ul li a{
	display:block;
	padding-left:5px;
	
	
	
	}

ul li a:hover {
	
	background: #FF9882;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
	height: 26px;
	padding-left:5px;
	
}

ul li ul li a:hover{
	background: #FF9882;
	border-left:1px solid #fff;
}

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

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