@charset "utf-8";
/* CSS Document */
body {
	margin: 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: #4c4e4e;
	background-color: #FFFFFF;
	background-image: url(/site12/images/body_bg_2_12.gif);
	background-repeat: repeat-x;
	background-position: center top;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.9em;
	line-height: 1.4em;
}
*{
	padding:0;
	margin: 0px;
}
a, a:visited {
	color: #0093c6;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
 #container {
	width: 965px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
 #header {
	float: right;
	width: 730px;
	padding-top: 0;
	padding-bottom: 2em;
	height: 80px;
} 
 #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
 #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 235px;
	margin: 0px;
	padding: 0px;
}
 #mainContent {
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 235px;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 35px;
} 
 #mainContent p,  #mainContent h2, #mainContent ul, #mainContent ol  {
	margin-bottom: 1em;
} 
#footer {
	background-color: #FFF;
	background-image:url(/site12/images/footer_bg.gif);
	background-repeat: no-repeat;
	background-position: center top;
	line-height: 1.8em; 
	font-size: .75em; 
	padding-top: 20px;
        padding-right: 10px;
        padding-bottom: 20px;
        padding-left: 10px;
 }

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
#mainContent h1 {
	color: #0093c6;
	font-size: 1.5em;
	font-weight: bold;
	margin-left: -20px;
	margin-bottom: 1em;
}

#mainContent p {
	margin-bottom: 1em;
}
#mainContent h2 {
	font-size: 1.3em;
	font-weight: bold;
	padding-top: 1.5em;
	padding-bottom: 0px;
}

#mainContent h3 {
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom:0;
}

#mainContent h4 {
	font-size: 1em;
	font-weight: bold;
	margin-bottom:0;
}
#mainContent ol, #mainContent ul {
	padding-left:35px;
}

#mainContent li{
	margin:0;
}

#mainContent #eventList h2 {
	font-size: 1.3em;
	font-weight: bold;
	color: #FFF;
	height: 37px;
	background-image: url(images/rounded_corners.gif);
	background-repeat: no-repeat;
	margin-left: -12px;
	padding-left: 18px;
	padding-top: 8px;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

