/* CSS Document */


ul#nav {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 100px;
	border-bottom: 1px solid #ccc;
	
	
	}
	
	ul li {
	position:relative;
	
	
	
	}
	
	li ul.sub {
	position: absolute;
	left: 63px;
	top: 0;
	display: none;
	
	
	
	
	}
	
	#nav li a {
	display: block;
	text-decoration: none;
	color:#FFFFFF;
	background-color:#2972c9;
	padding: 1px;
	border: 1px solid #ccc;
	border-bottom: 0;
	width:100px;
	margin-left:2px;
	
	}
	
	#nav li a:hover { color:#333333; background: #f9f9f9; } /* Hover Styles */
	
/*ul#nav  li {float: left; height: 1%;}
ul#nav li a { height: 1%; }

ul li.sub    {float: left; height: 1%;}
ul li.sub a{ height: 1%; }*/



* html ul li { float: none; height: 1%;}
* html ul li a { height: 1%; }



li:hover ul, li.over ul { 
	display: block;
	 }