<!--
/* 
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:14px;
	font-family:Arial,Helvetica, sans-serif;
    }
 
p a {
	color: color: #ffffff;
	text-decoration:underline!important;
}
a{
	color:color: #ffffff;
text-decoration:none;

}
p a:hover{	
text-decoration: none!important;
}

ul#nav {
	list-style: none;
	padding: 0;
	margin: 0px;
        background:#02728E;
       
}



ul#nav li a {
	display: normal;
	font-weight: bold;
	padding: 0px 0px;
	background:#2728e;
        font-family:Arial, Helvetica, sans-serif;
        position: relative;
        height:auto;

}

ul#nav li a:hover{
	background:#02728E;
	color:#ffffff;
        text-decoration: none;
        list-style: none;

	}
	
li {
	float: left;
	position: relative;
	width: 130px;
	text-align: center;
	margin-right:0px;
	border:0px solid #00000;
        text-decoration: none;
        list-style: none;

}

ul#nav li.current a{
	background:#transparent;
	}

ul#nav li.current a:hover{
	background:#transparent;
	}

li ul {
	display: none;
	position:absolute;
	width:120x;
	top: 20px;
	left: 0;
	font-weight: normal;
	padding: 0px 0 0px 0;
	margin-left:5px;
        text-decoration: none;
        list-style: none;
}

ul#nav li ul.sub li{
	border-width:0 0px 0px 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;
}
-->
