/* UNIVERAL BODY LAYOUT */
body { 
	scrollbar-face-color: BFDBEE;
	scrollbar-arrow-color: ffffff;
	scrollbar-track-color: ffffff;
	scrollbar-shadow-color: BFDBEE;
	scrollbar-highlight-color: BFDBEE;
	scrollbar-3dlight-color: BFDBEE;
	scrollbar-darkshadow-color: BFDBEE;
	background-color: #ffffff; 
	background-attachment: fixed;
	background-image: url(images/BG.gif);
	background-repeat: repeat-y;
}

.tableborder {
	border-right-width: 5px;
	border-right-style: solid;
	border-right-color: #F9B347;
}

.navigation {
	background-attachment: fixed;
	background-image: url(images/navigation.gif);
	background-repeat: no-repeat;
}

/* FONTS */
.white_8pt {
	font-family: arial;
	font-size: 8pt;
	color: #ffffff;
}
.white_9pt {
	font-family: arial;
	font-size: 9pt;
	color: #ffffff;
	font-weight: bold;
}

/* NAVIGATION */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: arial;
	font-size: 9pt;
	color: #ffffff;
	font-weight: bold;
	width: 190px; /* Width of Menu Items */
	}
	
ul li {
	position: relative;
	}
	
li ul {
	position: absolute;
	left: 190px; /* Set 1px less than menu width */
	top: 0;
	display: none;
	background: #0D1A38;
	}

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding: 5px;
	}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

ul li a:hover { color: #0D1A38; background: #FFB642; } /* Hover Styles */
		
li ul li a { padding: 1px 5px; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */