@charset "utf-8";

/* ===== body formatting - effect the entire document ===== */
body  {
	font: 85% Arial, Helvetica, sans-serif;
	line-height: 1.5em;
	background: url(../img/pageBack.png) repeat; 
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #fff;
	scrollbar-track-color: black;
	scrollbar-face-color: black;
	scrollbar-arrow-color: black;
	scrollbar-3dlight-color: black;
	scrollbar-highlight-color: black;
	scrollbar-shadow-color: black;
	scrollbar-darkshadow-color:	black;
}
table {
	margin-top: 20px;
}
/* ===== the main container "frame" ===== */
.twoColFixLtHdr #container {
	position: relative;
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height: 700px;
	background: url(../img/frameBack.png);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
}
/* ===== the body that contains all elements - fits inside the "frame" ===== */
.twoColFixLtHdr #body {
	position: relative;
	top: 22px;
	left: 22px;
	width: 956px;
	height: 656px;
}
/* ===== elements inside body ===== */
.twoColFixLtHdr #header {
	position: absolute;
	background: url(../img/header.jpg) no-repeat;
	width: 956px;
	height: 110px;
	padding: 0;
}
.twoColFixLtHdr #mainContent { 
	position: absolute;
	top: 132px;
	left: 20px;
	width: 716px;
	height: 500px;
}
.twoColFixLtHdr #mainContent h1 {
	padding: 0;
	margin: 0;
	font-size: 150%;
	text-transform: uppercase;
	color: #bad1ef;
}
.twoColFixLtHdr #mainContent h2, h3 {
	font-size: 110%;
	font-variant: small-caps;
	color: #bad1ef;
}
.twoColFixLtHdr #mainContent a {
	text-decoration: none;
	color: #cfcfcf;
}
.twoColFixLtHdr #mainContent a:hover {
	text-decoration: underline;
	color: #cfcfcf;
}
.twoColFixLtHdr #sidebar {
	position: absolute;
	font-size: 80%;
	line-height: 1.35em;
	top: 132px;
	left: 750px;
	width: 180px;
	height: 464px;
	padding: 20px 0px 20px 0px;
}
.twoColFixLtHdr #gallery {
	position: absolute;
	vertical-align:middle;
	top: 132px;
	left: 735px;
	width: 180px;
	height: 472px;
	padding: 20px 10px 10px 10px;
}
.twoColFixLtHdr #sidebar h1 {
	font-size: 125%;
	font-variant: small-caps;
	text-align: left;
	color: #c9e0ff;
	margin: 0;
	padding: 0;
}
.twoColFixLtHdr #sidebar ul {
	position: relative;
	left: -25px;
}
.twoColFixLtHdr #sidebar li {
	position: relative;
	width: 170px;
	line-height: normal;
	margin-bottom: 10px;
}
.twoColFixLtHdr #footer {
	position: absolute;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	color: #999;
	top: 634px;
	width: 956px;
	height: 22px;
}
.twoColFixLtHdr #footer p {
	text-align: center;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.twoColFixLtHdr #footer a {
	text-decoration: none;
	color: #cfcfcf;
}
.twoColFixLtHdr #footer a:hover {
	text-decoration: underline;
	color: #cfcfcf;
}
.twoColFixLtHdr #legal {
	position: absolute;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .9em;
	text-align: center;
	color: #666;
	top: 685px;
	width: 1000px;
	height: 20px;
	padding: 0;
	margin: 0;
}
.twoColFixLtHdr .events {
	width: 100%;
	border-bottom: 1px dashed #333;
	height: 1px;
	padding-top: 5px;
}
.twoColFixLtHdr .highlight {
	font-weight: bold;
	text-transform: uppercase;
	color: #bad1ef;
}
.twoColFixLtHdr .lead-in {
	font-size: 120%;
	text-transform: uppercase;
	font-weight: bold;
}
.twoColFixLtHdr .colorLead-in {
	font-size: 120%;
	text-transform: uppercase;
	font-weight: bold;
	color: #bad1ef;
}
.twoColFixLtHdr .team {
	font-size: 100%;
	font-weight: bold;
}
.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-top: 15px;
	margin-left: 15px;
	margin-bottom: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-top: 15px;
	margin-right: 15px;
	margin-bottom: 10px;
}
.spacing {
	margin-right: 20px;
}
.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;
}