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

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

ul li {
	font: 10pt Calibri;
	height:100%;
	background:#ffffff;
	border-bottom:0px solid #fff;
	position: relative;
	float:left;
	width:100%;
	}
	
ul li ul li{
	
	background:#f0f0f0;
	}

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

ul li a:hover {

	color: #000000;
	background: #ffffff;
	border-right:0px solid #fff;
	border-left:0px solid #fff;
}

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

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

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