@charset "UTF-8";
body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 15px 0 0 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.twoColElsLtHdr #container { 
	width: 775px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

.twoColElsLtHdr #header { 
	background: #1d62af; 
	padding: 0;
	margin:0;
	text-align:center;
	color:#FFFFFF;
	height:110px;
} 

.twoColElsLtHdr #header h1 {
	margin: 0px;
	padding: 25px 0 0 0;
	font-size:18px;
}

.twoColElsLtHdr #header h2 {
	margin: 0px;
	padding: 10px 0;
	font-size:14px;
	font-weight:normal;
}

.twoColElsLtHdr #sidebar1 {
	float: left; 
	width: 180px; /* since this element is floated, a width must be given */
	background: #1d62af; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px;
	margin:0px;
	color:#CCCCCC;
}

.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

ul#navlist
{
padding: 0px;
border-top: 0px;
margin: 0px;
font: bold 12px verdana,helvetica,arial,sans-serif;
background: #1d62af;
}

ul#navlist li
{
list-style: none;
margin: 0px 0px 2px 0px;
border: 0px;
}

ul#navlist li a
{
display: block;
padding: 4px 8px 4px 8px;
border: 0px;
border-right: 20px solid #aaaabb;
background: #ccccdd;
text-decoration: none;
text-align: right;
}

ul#navlist li a:link { color: #666677; }
ul#navlist li a:visited { color: #666677; }
ul#navlist li a:hover {border-color: #FFCF05;color: #1d62af;background: #FFFFFF;}

ul#navlist li #current
{
border-color: #FFCF05;
color: #1d62af;
background: #FFFFFF;
}

/*END OF NAVIGATION*/

#nextevent h3 { color:#FFFFFF; border-bottom:1px solid #FFCF05; border-top:1px solid #FFCF05}

#nextevent p {
font-weight: 300;
color:#EBEBEB
}

#nextevent a { color:#FFCF05; text-decoration:none}

#nextevent a:hover { color:#FFCF05; text-decoration: underline}


/* mainContent */

.twoColElsLtHdr #mainContent {
	margin: 0 15px 20px 200px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 

.twoColElsLtHdr #mainContent th {
	font-size: 11px;
	color: #1d62af;
	background-color: #CCCCCC;
}

.twoColElsLtHdr #mainContent td {font-size:11px; color:#000000; background-color:#FFFFFF}
.twoColElsLtHdr #mainContent td.small {font-size:9px; font-weight:bold}
.twoColElsLtHdr #mainContent td.column { background-color:#CCCCCC; color:#1d62af}

.indent {margin-left:15px;}

.twoColElsLtHdr #footer { 
	padding:0px; 
	background:#DDDDDD;
	border-top:1px solid #000000;
	text-align:center;
} 
.twoColElsLtHdr #footer p {
	margin: 0;
	padding: 5px 0;
	font-size:9px;
	color:#666666;
	line-height:14px;
}

/* Miscellaneous classes for reuse */

.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;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
/*Firefox image outline when clicked*/
a {outline: none;}