﻿/* 
Title: Vertical CSS menu with a behavior file.
Author: Stefan Vervoort amended by ET
Blog: http://www.divitodesign.com/blog/ 
Article: http://www.divitodesign.com/blog/2008/01/vertical-css-menu-with-a-behavior-file/
*/

body {
	behavior: url(csshoverv2.htc);
}
 
a {
	color: #000;
	text-decoration: none;
}

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

ul li {
	font: bold 14px/15px arial, helvetica, sans-serif;
	height: 100%;
	background: #ffefc2;
	border-bottom: 1px solid #4a2885;
	position: relative;
	float: left;
	width: 100%;
}
	
ul li ul li{
	background:#ffcf8b;
	}

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

ul li a:hover {
	color: #a00;
	background: #ffd3d4;
	border-right:1px solid #fff;
	border-left:1px solid #fff;
}

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

ul ul {
	position: absolute;
	top: -35px;
	display: none;
}

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