/* Navigation Built by: www.blueflameinteractive.com, learned from a few sources: www.andybudd.com, AListApart.com, Suckerfish.com, Tanfa.co.uk */
#navigation { /*Sets Global type style for all navs, including dropdown */
	font: normal .7em Arial, Helvetica, sans-serif;
}

#navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 140px; /* Width of Menu Items */
	/*border-bottom: 1px solid #ccc;*/
	}

#navigation ul li {
	position: relative;
	}
	
#navigation li ul {
	position: absolute;
	left: 99%; /* Set Slightly less */
	top: 0;
	display: none;
	background-color:#fff;
	}

/* Styles for Menu Items */
#navigation ul li a {
	display: block;
	text-decoration: none;
	font-weight:bold;
	color: #777;
	/*background: #fff;  IE6 Bug */
	padding: 5px;
	height:20px;
	line-height:20px;
	border-bottom: 1px solid #000066;
	/*border: 1px solid #ccc;
	border-bottom: 0;*/
	}

/* Fix IE. Hide from IE Mac \*/
* html #navigation ul li { float: left; height: 1%; }
* html #navigation ul li a { height: 1%; }
* html #navigation ul li { display:inline; }

/* End */

#navigation ul li a:hover {  /* Hover Styles */
	color: #000066;
	background: #D9E0D8; 
	background: url(images/navBKGD.png) no-repeat;
 }
#navigation li ul li a { /* Sub Menu Styles */
	padding: 4px 5px;
	font-weight:normal;
	border-top: 1px solid #000066;
	border-right: 1px solid #000066;
	border-bottom: 2px solid #000066;
	border-left: 1px solid #000066;
} 

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