/* 
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);
	font-size:10px;
	font-family:Arial, Helvetica, sans-serif;
	letter-spacing: .1em;
	font-weight: lighter;
}
 
p a {/*margin and padding does nothing*/
	color:#000;
	text-decoration:underline!important;

}
a{/*TEXT COLOUR!*/
	color:#900;
	text-decoration:none;
	}
p a:hover{	text-decoration: none!important;
}

ul#nav {/*no padding*/
	list-style: none;
	margin-top:0px;
	margin-right:12px;/*shifts whole block over*/
}


ul#nav li a {/*Inactive Block*/
	display: block;
	font-weight: bold;
	padding:10px 5px 10px 0px;/*increases size of entire block --- second one is direction: right! */
	width:172px; /*163*/	
	margin-top:10px;/*space between items*/
}

ul#nav li a:hover{/*hover block!*/
	background:#900;
	color:#fff;	text-decoration:none;

	}
	
ul#nav li {
	float:none; /*this makes it horiz or vertical menu*/
	position: relative;
	border:0px solid #ccc;
}

ul#nav li.current a{
	background:#ddd;	
	}

ul#nav li.current a:hover{
	background:#888;

	}

li ul {/*ignore*/
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	font-weight: normal;
	padding: 1px 1px 0px 0;
	margin-left:-1px;

}

ul#nav li ul.sub li{
	border-width:0 1px 1px 1px!important;
}

ul#nav li ul.sub li a{
	font-weight: normal!important;

}
li>ul {
	top: auto;
	left: auto;
	
}

li:hover ul, li.over ul {
	text-decoration:none;
	display: block;
	
	
}
