/* tabl.css */

#navigation { /* navigation container */
	clear: both;
	height: 20px;
	background: transparent;
	margin: 0px 0px 0px 230px;
	padding: 0px 0px 5px 0px;
	list-style: none;
}

#navigation ul { /* all lists */
	margin: 0;
	padding: 0;
	list-style: none;}

#navigation li { /* all list items */
	float: left;
	width: 100px; /* width needed or else Opera goes nuts */}

#navigation li ul { /* second-level lists */
	position: absolute;
	border: 1px solid #000;
	width: 100px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */}

#navigation li ul ul { /* third-and-above-level lists */
	margin: -15px 0px 0px 90px;
}

#navigation li a { /* all linked list items */
	width: 100px;
	padding: 2px 0px 2px 0px;
	display: block;
	background: transparent;
	background-image: url("");
	background-repeat: no-repeat;
	color: #E5E5E5;
	font-family: Verdana, Helvetica, sans-serif;
	font-size: 11px;
	text-align: center;
	text-decoration: none;
	FONT-WEIGHT: none;}

#navigation li ul a { /* all linked second-level list items */
	width: 100px;
	padding: 0px 0px 0px 0px;
	display: block;
	background: #E5E5E5;
	background-image:  url("");
	background-repeat:repeat-x;
	color: #0B7BC2;
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	font-size: 11px;
	text-align: center;
	text-indent: 0px;
	FONT-WEIGHT: none;
	text-decoration: none;}

#navigation li:hover ul ul, #navigation li.sfhover ul ul {
	left: -999em;
}

#navigation li a:hover { /* linked list item hover */
	background: transparent;
	background-image:  url("");
	background-repeat: no-repeat;
	position: relative;
	top: 1px;
	color: white;}

#navigation li ul a:hover { /* linked list item hover */
	background: white;
	top: 0px;
	color: black;}

#navigation li:hover ul, #navigation li li:hover ul, #navigation li.sfhover ul, #navigation li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}

.navSpacer {
	height: 10px;}