/*dropdown menu*/
ul {
	margin:0;
	padding:0;
	list-style: none;
	width: 127px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}
		
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: 126px;
	top: 0;
	display: none;
	}
/*style links*/	
ul li a {
	display: block;
	text-decoration: none;
	color: #333333;
	padding: 2px;
	border: 1px solid #333333;
	font-weight: bold;
	text-indent: 10px;
	font-size: 10px;
	background-color: #CCCCCC;
	}
	
	/* 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;
	font-size: 10px;
	color: #CC0066;
	}
	


#leftnav {
	width:165px;
	font: 12px Verdana, Arial, Helvetica, sans-serif;
	border-top: 1px none #336666;
	border-right-color: #336666;
	border-left-color: #336666;
	background-color: #CCCCCC;
	background-image: url(images/tile4.jpg);
	background-repeat: repeat;
	}
