@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #000000;
	vertical-align: top;
}
#container {
	width: 880px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000; /* this overrides the text-align: center on the body element. */
}
#header {
	background-color: #FFF;
	text-align: center;
}
#navbar {
	font-family: "Comic Sans MS", sans-serif;
	color: #FFF;
	background-color: #036;
	font-weight: bold;
	height: 25px;
	padding-top: 5px;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-top-color: #CCC;
	border-right-color: #CCC;
	border-bottom-color: #CCC;
	border-left-color: #CCC;
}


#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	margin-top: 30px;
	text-align: left;
}
#footer {
	padding: 0 10px;
	background-color: #036;
	color: #ffffff;
	font-family: "Comic Sans MS", cursive;
	text-align: center;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-top-style: solid;
	border-top-color: #CCC;
	font-weight: bold;
}
#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 */
}
.floatLeft {
	float: left;
	padding-top: 4px;
	padding-right: 12px;
	padding-bottom: 4px;
	padding-left: 0px;
}
.floatRight {
	float: right;
	padding-top: 8px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 12px;
}
#mainContent a:link {
	color: #03C;
}
#mainContent a:visited {
	color: #369;
}
#mainContent a:hover {
	color: #06F;
}
#mainContent a:active {
	color: #06F;
}
#mainContent .red {
	color: #C00;
}
italic {
	font-style: italic;
}
#eventbox {
	background-color: #E8E8E8;
	float: left;
	width: 500px;
	border: 1px solid #036;
	color: #000;
	padding: 6px;
}
.bold {
	font-weight: bold;
}

