﻿*,

body {
	margin : 0;
	padding: 0px;
}

body, td, th, p {
	font : 11px Verdana, Arial, Helvetica, sans-serif;
	color : #666666;
}

.menu ol {
	margin: 0;
	padding: 0;
	list-style: none; /*Remove the bullets from the unordered list*/
	width: 160px; /* Width of Menu Items */
	border: 1px solid #ffffff;
} 

.menu a {
	display: block;
	text-decoration: none;
	color: #3399cc;
	background: #f5f5f5; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ffffff; /* IE6 Bug */
	}

.menu a:hover {
    color: #ff9900;
    background: #f5f5f5;
}

ol.menu li {
	position: relative;
}

/*Each sub-menu to appear to the right of its parent menu item when that item is hovered over.*/
.menu li ol {
	position: absolute;
	left: 159px; /* Set 1px less than menu width */
	top: 0;
	display: none; /*The sub-menus not visible by default.*/
}

/* IE Requirement \*/
* html ol.menu li { float: left; height: 1%; }
* html ol.menu li a { height: 1%; }
/* End */

.menu li:hover ol, .menu li.over ol { display: block; } /* Make sub-menus appear when we hover over the menu items. */
