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: #0C0C0C;
	background-color: #202020;
	font-family: "Trebuchet MS", Arial;
	font-size: 0.9em;
	line-height: 1.1;
}
#container {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	padding: 0px;
	margin-right: auto;
	margin-left: auto;
} 
textarea {
	font-family: "Trebuchet MS", Arial;
	font-size: 1em;
}

#innerContainer {
	width: 900px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left;
	padding: 0px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images/page/container_background.gif);
} 
#header {
	padding: 0px;
	height: 160px;
	margin: 0px;
	position: relative;
	border: 0px;
} 
#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 */
}
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 250px;
	font-size: 0.9em;
	padding-bottom: 20px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
#sidebar h1{
	font-size: 1.2em;
	color: #FFFFFF;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
	background-color: #666666;
	padding: 10px;
	margin: 0px;
	position: relative;
}
#sidebar h2 {
	font-size: 1.1em;
	color: #000000;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
	margin-top: 8px;
	margin-right: 0px;
	margin-bottom: 8px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 4px;
	padding-left: 10px;
}
#sidebar p {
	padding: 0px 10px;
	margin: 8px 0px;
	font-size: 0.9em;
	color: #333333;
}
.next_event {
	position: absolute;
	top: 2px;
	left: 210px;
}
.item_box {
	background-color: #F0F0F0;
	width: 310px;
	background-image: url(../images/page/item_box_bottom.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	padding-bottom: 12px;
}
.item_box_fr {
	float: right;
	margin-left: 5px;
}
.item_box_fl {
	float: left;
	margin-right: 5px;
}
#mainContent .item_box h1 {
	font-size: 1.3em;
	color: #FFFFFF;
	padding: 10px;
	margin: 0px;
	background-image: url(../images/page/item_box_top.gif);
	height: 30px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
#mainContent .item_box p {
	margin: 0px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #000000;
	border-left-color: #000000;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
#mainContent {
	font-size: 0.9em;
	min-height: 300px;
	float: right;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	margin: 0px;
	width: 630px;
}
#mainContent h1 {
	font-size: 1.5em;
	color: #FF6600;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
	padding-top: 0px;
	padding-bottom: 4px;
	margin: 0;
}
#mainContent h2 {
	font-size: 1.2em;
	color: #333333;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #333333;
	padding-bottom: 4px;
}
#mainContent h3 {
	font-size: 1em;
	color: #000000;
	font-variant: normal;
	font-style: normal;
	background-color: #DFDFDF;
	padding: 4px;
}
#footer {
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	text-align: center;
	font-size: small;
	border-top-width: 2px;
	border-bottom-width: 5px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #666666;
	border-bottom-color: #FF9900;
} 
#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 */
}
.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;
	margin: 0px;
}
.position_relative {
	position: relative;
}
a:link {
	color: #A84300;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #A84300;
}
a:hover {
	text-decoration: none;
	color: #FF3300;
}
a:active {
	text-decoration: none;
	color: #FF3300;
}
#topLine {
	font-size: 0.8em;
	color: #FFFFFF;
	height: 20px;
	text-align: right;
	background-image: url(../images/page/top_line.gif);
	background-position: center;
}
.row_height_30 td {
	height: 30px;
	vertical-align: top;
}
.row_height_20 td {
	height: 20px;
	vertical-align: top;
}
.rowSeparator {
	margin-bottom: 0px;
	padding-bottom: 10px;
	border-bottom-width: 1px;
	border-bottom-style: dotted;
	border-bottom-color: #FF9900;
	margin-top: 0px;
	padding-top: 10px;
}
table {
	border-collapse: collapse;
}
.borders {
	border: 0px solid #FF9900;
}
.borders td {
	border: 1px dotted #FF9900;
	padding: 5px;
}
#mainContent .caption {
	padding: 5px;
	width: 192px;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 1px;
	height: 336px;
	background-image: url(../images/content/you_tube_caption.png);
}
#mainContent .caption h1 {
	margin: 0px;
	padding: 0px;
	color: #333333;
	font-size: 1em;
	border: 0px;
}
#mainContent .caption p {
}
#mainContent .caption_small {
	padding: 5px;
	width: 507px;
	float: left;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 1px;
	height: 82px;
	background-image: url(../images/content/you_tube_caption_small.png);
}
#mainContent .caption_small h1 {
	margin: 0px;
	padding: 0px;
	color: #333333;
	font-size: 1em;
	border: 0px;
}
#mainContent .caption_small p {
}
.youtube_video {
	float: left;
	width: 425px;
	padding: 0px;
	z-index: 300;
	border: 1px solid #333333;
	margin-bottom: 15px;
	height: 344px;
}
.youtube_video_small {
	float: left;
	width: 110px;
	padding: 0px;
	z-index: 300;
	border: 1px solid #333333;
	margin-bottom: 5px;
	height: 90px;
}
legend {
	font-size: 10px;
	color: #FF6600;
}
.asterisk {
	font-size: .9em;
	color: #FF6600;
	position: relative;
	top: -5px;
	left: 0px;
	font-style: normal;
}
#frmSearch{
	padding-left: 10px;
	margin-top: 0px;
	margin-bottom: 10px;
}
#frmSearch #query {
	width: 200px;
}
.text_small {
	font-size: 0.8em
}
.bottom_margin_5px {
	margin-bottom: 5px;
}
.form_textbox {
	width: 410px;
}
.form_textbox_full_width {
	width: 604px;
}
img, div {
	behavior: url('/css/iepngfix.htc');
}
#sidebar li {
	list-style-position: outside;
	margin-left: -30px;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	display: block;
	background-color: #FBA300;
	list-style-type: none;
	border-bottom-style: dotted;
	border-bottom-color: #000000;
	border-top-style: dotted;
	margin-bottom: 2px;
	border-top-color: #000000;
}
#sidebar li a {
	padding-left: 5px;
	display: block;
	line-height: 30px;
	color: #000000;
	text-decoration: none;
}
#sidebar li a:hover {
	background-color: #FFCC00;
}
#sidebar li a:active {
	background-color: #FFCC00;
}
#sidebar li.admin_home {
	background-color: #999999;
}
#sidebar li.admin_home a:hover {
	background-color: #CCCCCC;
}
#sidebar li.admin_home a:active {
	background-color: #CCCCCC;
}
form select, input, textarea{
	font-family: "Trebuchet MS", Arial;
}
.table_header {
	background-color: #FFFFDD;
	font-style: italic;
}
.highlight {
	color: #FF6600;
}
#logo {
	position: absolute;
	z-index: 1000;
	height: 98px;
	width: 113px;
	top: 55px;
	left: 135px;
}
#advertRow {
	float: right;
	padding: 0px;
	margin: 0px;
	width: 650px;
}
#topLine p {
	padding: 0px;
	margin: 0px;
	padding-top: 3px
}
#topLine a {
	color: #FFCC33;
}
#topLine a:hover {
	color: #FFCC33;
	text-decoration: underline;
}
#backgroundImage {
	background-image: url(../images/page/container_background.gif);
	width: 900px;
	padding: 0px;
}
#belowFooter {
	padding: 0px;
	margin: 0px;
	text-align: right;
	font-size: 0.7em;
	color: #FFFFFF;
}
#belowFooter a {
	color: #FFCC33;
}
#belowFooter a:hover {
	color: #FFCC33;
	text-decoration: underline;
}
.fieldset_box {
	background-color: #FFFFFF;
	width: 630px;
	background-image: url(../images/page/fieldset_box_bottom.gif);
	background-repeat: no-repeat;
	background-position: bottom;
	padding: 0px 0px 20px 0px;
	border-width: 0px;
	margin: 0px;
}
#mainContent .fieldset_box h1 {
	font-size: 0.9em;
	color: #222222;
	padding: 6px 7px 4px 7px;
	margin: 0px;
	border-width: 0px;
	background-image: url(../images/page/fieldset_box_top.gif);
	background-repeat: no-repeat;
	height: 25px;
}
#mainContent .fieldset_box p, #mainContent .fieldset_box form {
	margin: 0px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #FFC835;
	border-left-color: #FFC835;
	padding-top: 5px;
	padding-right: 9px;
	padding-bottom: 5px;
	padding-left: 9px;
}
#menu_div {
	position: relative;
	height: 32px;
	width: 900px;
	border-bottom-width: 10px;
	border-bottom-style: solid;
	border-bottom-color: #FF6600;
	z-index: 2000;
	background-color: #000000;
}
