/* 
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(scripts/csshover.htc);
}
 
a {
	color: #4b636c;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width:145px;
}

ul li {
	font: bold 11px/16px arial, helvetica, sans-serif;
	height:100%;
/*	background:#E1E1E1;*/
	border-bottom:1px solid #fff;
	position: relative;
	float:left;
	width:100%;
	}
	
ul li ul li{
	background:#E1E1E1;
	}

ul li a{
	display:block;
	padding: 2px 3px;
	}

ul li a:hover {
	color: #4b636c;
	background: #a7c5d6;
/*	border-right:1px solid #fff;
	border-left:1px solid #fff;*/
}

ul li ul li a:hover{
	background: #a7c5d6;
	border-left:1px solid #fff;
}

ul ul {
	position: absolute;
	top: 0;
	display:none;
}

ul li:hover ul{
	display: block;
	left:145px;
}