/* 
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: DimGray;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width:148px;
}

ul li {
	font: bold 8pt verdana;
	height:29px;
	background:url(left_bar_bg.jpg);
	position: relative;
	float:left;
	width:100%;
	text-align:left;
	}
	
	ul li.sub {
	font: bold 8pt verdana;
	height:29px;
	background:url(left_bar_bg_arrow.jpg);
	position: relative;
	float:left;
	text-align:left;
	width:100%;
	}
	
ul li ul li{
	font: bold 8pt verdana;
	height:100%;
	background-image:url(main-bg.jpg);
	position: relative;
	float:left;
	text-align:left;
	width:200;
	border:1px solid DimGray;


		}

ul li a{
	display:block;
	padding-top:8px;
	padding-left:2px;
	padding-bottom:8px;
	padding-right:2px;
	text-align:left;

	}

ul li a:hover {
	color: Navy;
}

ul li ul li a:hover{
		color: Navy;
}

ul ul {
	position: absolute;
	top: 0;
	display:none;
}

ul li:hover ul
{
	z-index:500;
	display: block;
	left:148px;
}