/*dropdown menu*/
ul {
	margin:0;
	padding:0;
	list-style: none;
	width: 167px;
	border-bottom: 1px solid #D78E32;
}
		
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: 166px;
	top: 0;
	display: none;
	}
/*style links*/	
ul li a {
	display: block;
	text-decoration: none;
	color: #61A193;
	background: #FFF2D7;
	padding: 2px;
	border: 1px solid #D78E32;
	border-bottom: 1px;
	font-weight: bold;
	}
	
	/* 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;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	background: #A5C8C1 url(images/tile4.jpg) repeat;
	border-top: 1px none #336666;
	border-right-color: #336666;
	border-bottom-color: #336666;
	border-left-color: #336666;
	}
