/*dropdown menu*/
ul {
	margin:0;
	padding:0;
	list-style: none;
	width: 165px;
	border-bottom: 1px solid #ccc;
}
		
ul li {
	position: relative;
	}
/* to place sub-menu to appear to the right of it's parent menu item when hovered over*/	
li ul {
	position: absolute;
	left: 164px;
	top: 0;
	display: none;
	}
/*style links*/	
ul li a {
	display: block;
	text-decoration: none;
	color: #334364;
	background: #fff;
	padding: 5px;
	border: 1px solid #ccc;
	border-bottom: 0;
	}
	
	/* Fix IE. Hide from IE Mac \*/
	*html ul li {float: left; }
	*html ul li a {height: 1%;}
	/*end*/
	
li:hover ul, li.over ul {
	display: block;
		
	
	}
	


#leftnav {
	width:165px;
	}


/*dropdown menu*/

		

