@charset "UTF-8";

body {
	font: 12px Arial, Helvetica, sans-serif;
	margin: 30px; /* 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: #666666;
}

p, li {
	line-height: 17px;
}

ul {
	list-style-type: square
}

h1, h2, h3, h4, h5, h6{
	line-height: 130%;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #666666;
}

h1 {
	font-size: 22px;
}

h2 {
	font-size:18px;
}

#container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	background: #fff url(../images/header_banner_1.png) no-repeat top left;
	padding: 0 10px 0 20px;
	height: 120px;
}

#header h1 {
	margin: 0;
	padding: 76px 0 0 130px;
	font-size: 24px;
	font-family:"Times New Roman", Times, serif;
	font-weight: normal;
	color: #fff;
}

#nav {
	float: right;
	color: white;
	vertical-align: top;
	margin: 10px;
	letter-spacing: 1px;
}

#nav a {
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}

#nav a:hover {
	color: #FFCC00;
}

#sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
}

#sidebar1 li {
	list-style-type: square;
	list-style-position: outside;
	padding: 0;
	margin: 0 0 0 -15px;
}

#sidebar1 h4 {
	color: #FF9900;
	font-size: 13px;
	padding: 0;
	margin: 0;
}

#sidebar1 h5 {
	font-size: 12px;
	padding: 0;
	margin: 10px 0 0 0;
}


#mainContent2 {
	margin: 30px 0;
	padding: 0 20px;
	background: url(../images/rule.jpg) repeat-y left top;
	min-height: 100px;
	
}

#mainContent h2 {
	padding: 0 0 6px 0;
	margin: 0;
	font-size: 16px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
	color: #000;
}

#mainContent p {
	padding: 0 0 10px 0;
	margin: 0;
}

#leftcol {
	float: left;
	width: 520px;
	margin-bottom: 20px;
}

.leftcol-l {
	float: left;
	width: 235px;
	margin-bottom: 20px;
}

.leftcol-r {
	float: right;
	width: 235px;
	margin-bottom: 20px;
}

.leftcol-l-2 {
	float: left;
	width: 200px;
	margin-bottom: 20px;
	border: 1px black solid;
}

.leftcol-r-2 {
	float: right;
	width: 200px;
	margin-bottom: 20px;
	border: 1px black solid;
}

.event_listing_1 {
	border-bottom: 2px #FF9900 solid;
	padding: 0;
	margin: 4px 0 4px 0;
}

.event_listing_1 h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-weight: normal;
}

#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	height: 70px;
}

#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;
}

.city-date {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
}
.img-margin-left {
	margin-left: 10px;
}

.img-margin-right {
	margin-right: 10px;
}

