body {
	background-color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	padding: 0px;
}
table.mainTable {
	width: 95%;
	border: 2px solid black;
}
.headerLeftTD {
	background-color: #FFF;
	color: #333;
	font-size: 12px;
	padding: 2px;
	width: 175px;
}

.headerRightTD {
	background-color: #FFF;
	padding: 0px;
}

.navTD {
	background-color: #669;
	color: #EEE;
}

.bodyTD {
	background-color: #EEE;
	color: #333;
	padding: 3px;
}
.bodyTD h1 {
	font-size: 18px;
}
.bodyTD h2 {
	font-size: 16px;
}
.bodyTD h3 {
	font-size: 14px;
}
.bodyTD p {
	font-size: 12px;
}
.bodyTD li {
	font-size: 12px;
}
.bodyTD a {
	color: #333;
}
.bodyTD a:hover {
	text-decoration: none;
}
.bodyTD a.navBtnLink {
	color: #333;
	background-color: #669; 
	padding: 3px; 
	text-decoration:none;
}
.bodyTD a.navBtnLink:hover {
	background: #555;
}
.bodyTD span.monthDisp {
	font-size: 16px;
	font-weight: bold;
	padding-left:8px;
}
.bodyTD table {
	border-top: 1px solid #333;
	border-left: 1px solid #333;
	margin-left: 4px;
}
.bodyTD th {
	background-color: #BBB;
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	padding: 4px;
	font-size: 14px;
	color: #000;
}
.bodyTD th a {
	color: #000;
}
.bodyTD th a:hover {
	text-decoration: none;
}
.bodyTD td {
	border-right: 1px solid #333;
	border-bottom: 1px solid #333;
	padding: 3px;
	font-size: 12px;
	color: #333;
}
.bodyTD tr.odd {
	background-color: #DDD;
}
.msg {
	background-color: #347235;
	border: 1px solid #000;
	padding: 2px;
	font-weight: bold;
	color: #FFF;
	font-size: 14px;
}
.error {
	background-color: #F88017;
	border: 1px solid #000;
	padding: 2px;
	font-weight: bold;
	color: #FFF; 
	font-size: 14px;
}
.sm {
	font-size: 80%;
}
.noTMargin {
	margin-top: 0px;
	padding-left: 0px;
}
table.noBorder {
	border: 0px none;
}
table.noBorder td {
	border: 0px none;
	padding: 0px;
}
table#calendar table.noBorder {
	border: 0px none;
}
table#calendar table.noBorder td {
	border: 0px none;
	padding: 0px;
}
.smNButton {
	border: 1px solid #333;
	background-color: #BBB;
	color: #000;
	font-size: 13px;
}

.nomargin {
    margin: 0px;
}


/*
 
 MAIN FOOTER ON EVERY PAGE CSS
 
*/

#footer {
	font-weight: bold;
	font-size: 10px;
	color: #D3D3D3;
	margin: 5px;
}
#footer a {
	color: #D3D3D3;
	text-decoration: none;
}
#footer a:hover {
	cursor: pointer;
}



/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/basic_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */
.menu ul{
list-style-type:none;
padding:0;
margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menu li{
float:left;
position:relative;
z-index:100;
}

/* use the table to position the dropdown list */
.menu table{
position:absolute;
border-collapse:collapse;
z-index:80;
left:-1px;
top:25px;
}

/* style all the links */
.menu a, .menu :visited {
display:block;
font-size:12px;
width:175px;
padding:7px 0;
color:#EEE;
background:#669;
text-decoration:none;
margin-right:1px;
text-align:center;
}
/* style the links hover */
.menu :hover{
color:#EEE;
background:#555;
}

/* hide the sub level links */
.menu ul ul {
visibility:hidden;
position:absolute;
width:149px;
height:0;
}
/* make the sub level visible on hover list or link */
.menu ul li:hover ul,
.menu ul a:hover ul{
visibility:visible;
}