/* 
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(/inc/csshover.htc);
}
 
#mstyle ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width:200px;
	z-index:200;
}

#mstyle ul li {
	font: bold 11px/16px arial, helvetica, sans-serif;
	height:100%;
	background:#a80000;
	position: relative;
	float:left;
	width:100%;
	}
	
#mstyle ul li ul li{
	background:#a80000;
	border: thin solid #999;
	}

#mstyle ul li a{
	display:block;
	}

#mstyle ul li a:hover {
	color: #a00;
	background: #EEE;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
}

#mstyle ul li ul li a:hover{
	background: #EEE;
	border-left:1px solid #fff;
}

#mstyle ul ul {
	position: absolute;
	top: 0;
	display:none;
}

#mstyle ul li:hover ul{
	display: block;
	left:200px;
}