/* CSS Document */
body  {
	font-size: small;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: black;
	background-color: #999;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: white;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid black;
	overflow: hidden;
} 
#header {
	background-color: #DDDDDD;
	margin: 0;
	padding: 0;
	height: 150px;
}
#maintable {
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	overflow: hidden;
}
#leftnav {
	background-color: #F03;
	color: white;
	width: 150px;
	text-decoration: none;
}
#leftnav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#leftnav ul li {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#maincolumn {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	width: 630;
}
#fullpg {
	margin: 10px;
}


#leftnav a {
	color: white;
	text-decoration: none;
	font-weight: bold;
	display: block;
}
#leftnav a:hover {
	background-color: #eeeeee;
	font-weight: bold;
	color: black;
	font-size: small;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
	background-color: #FC9;
}
#navigation {
	background-color: red;
	color: white;
}
#navigation table {
	margin: 0 auto;
	padding: 0;
	border: none;
	text-align: center;
}
#navigation td {
	width: 12%;
}
#navigation a {
	color: white;
	font-size: small;
	font-weight: bold;
	text-decoration: none;
	display: block;
}
#footer a {
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #FFF;
	text-decoration: none;
}

#navigation a:hover {
	background-color: yellow;
	color: black;
}
#navigation a:focus {
	background-color: yellow;
	color: black;
}
#mainContent {
	padding-top: 3px;
	padding-right: 0;
	padding-bottom: 3px;
	padding-left: 0;
} 
#footer {
	background-color: black;
	color: white;
	clear: both;
	height:50px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	overflow: hidden;
} 
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	clear: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	clear:left;
	margin-right: 8px;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 200%;
	font-style: italic;
}
h2, h3 {
	font-family: Arial, Helvetica, sans-serif;
	
}
h2 {
	font-size: 160%;
	margin-bottom: 0px;
	padding-bottom: 0px;
	font-style: normal;
	color: #000;
}
p {
	margin-top: 5px;
	margin-bottom: 0px;
	font-size: small;
	margin-right: 10px;
}

h3 {
	font-size: 140%;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#mainpage {
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
#leftnav ul li subhead {
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	font-size: x-small;
}
.errmsg {
	color: red;
	font-weight: bold;
	font-style: italic;
}
.first {
	margin-top: 0;
	padding-top: 0;
}
form fieldset {
	margin-bottom: 10px;
	padding: 5px;
}
form legend {
	font-variant: small-caps;
	font-weight: bold;
	font-style: italic;
	color: #000;
}
.bk2top {
	text-align: right;
}
.profile {
	clear: right;
	overflow: auto;
	margin: 5px;
}
.cutline {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-style: italic;
	text-align: left;
}
.odd {
	background-color: #ffffe6;
}
.even {
	background-color: #f2f2f2;
}
#calendardata {
	font-size: small;
	font-family: Tahoma, Geneva, sans-serif;
	margin: 20px;
	padding-top: 3px;
	padding-right: 20px;
	padding-bottom: 3px;
	padding-left: 20px;
}
.calendarpageprofile {
	margin-right: 15px;
	margin-left: 15px;
	padding-right: 5px;
	padding-left: 5px;
}

