/* 
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,td,th {
	font-family: tahoma;
	font-size: 11px;
	color: #333333;
		behavior: url(csshover.htc);
}

p a {
	color: #000;
	text-decoration:underline!important;

}




.style2 {
color: #990000;
font-size: 15px;
font-weight: bold;
}
a:link, a:visited{
	text-decoration:none;
	color:#444444;
	outline:none;

}


a:hover{
	color:#990000;
	font-size:11px;
}

p a:hover{	text-decoration: none!important;
}



ul#nav {
	list-style: none;
	padding: 0;
	margin: 0;
}


ul#nav li a {
	display: block;
	font-weight: normal;
	padding: 2px 10px;
	background:#fff;
	text-transform:uppercase;
}

ul#nav li a:hover{
	background:#eee;
	color:#000;
	
	}
	
ul#nav li {
	float: left;
	position: relative;
	width: 100px;
	text-align: center;
	margin-right:5px;
	border:0px solid #ccc;

}

ul#nav li.current a{
	background:#fff;
	}

ul#nav li.current a:hover{
	background:#efefef;
	}

li ul {
	display: none;
	position: absolute;
	width:100px;
	top: 0;
	left: 0;
	font-weight: normal;
	padding: 1px 0 10px 0;
	margin-left:-1px;
	list-style: none;
}

ul#nav li ul.sub li{
	border-width:0px 0px 1px 0px!important;
}

ul#nav li ul.sub li a{
	font-weight: normal!important;	
}
li>ul {
	top: auto;
	left: auto;
}

li:hover ul, li.over ul {
	display: block;
}
