.lastLine {
	padding-left: 6em;
}
body {
	font-family: arial, helvetica, serif;
	font-size: 12pt;
	margin: 0;
	padding: 0;
}

a { 
    text-decoration: none; 
}

li { 
	display: block;
} 

#navBar a {
}
#navBar {
	background-color: ThreeDLightShadow;
	height: 1.7em;
}

ul { /* all lists */
	background-color: ThreeDLightShadow;
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	padding: 3px 8px;
}

li:hover, li.over { /* lists nested under hovered list items */
	background-color: Highlight;
	color: HighlightText;
	-moz-radius-width: 10px;
}


li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

li ul { /* second-level lists */
	border: 1px solid #ccc;
	display: none;
	position: absolute;
	top: 1.5em;
	left: 0;
	padding: 2px;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: 0;
}

ul.subMenu li {
	float: none;
	padding: 2px 30px 2px 18px;
}

ul.subMenu li a {
	color: red;
}

ul.subMenu li:hover, 
ul.subMenu li:hover a, 
ul.subMenu li.over,
ul.subMenu li.over a, { /* lists nested under hovered list items */
	background-color: Highlight;
	color: HighlightText;
}




#content {
	clear: left;
}

