@charset "UTF-8";
body  {
	padding: 0;
	color: #000000;
	font-family: Helvetica, Arial;
	font-size: 62.5%;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#container {
	width: 987px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* this overrides the text-align: center on the body element. */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	padding: 0px;
} 
#header {
	height: 81px;
	width: 987px;
	padding: 0;
	background-repeat: no-repeat;
	background-image: url(../images/header.jpg);
	margin: 0px;
} 
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Helvetica, Arial;
	padding-top: 31px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 582px; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image: url(../images/flash_bg.jpg);
	background-repeat: no-repeat;
}
#mainContent {
	margin: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: right;
	background-image: url(../images/content_bg.jpg);
	background-repeat: no-repeat;
	padding-top: 81px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	font-family: Helvetica;
	font-size: 12px;
	height: 358px;
	width: 405px;
}  
#footer {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0px;
	color: #919191;
	text-align: center;
	font: 1.2em Arial, Helvetica, sans-serif;	
}

#container #mainContent #image_1 {
	float: left;
	width: 188px;
	margin: 0px;
	padding: 0px;
}
#container #mainContent #image_1 div {
	width: 209px;
	float: right;
	clear: both;
}
#ticker {
	font-family: Helvetica, Arial;
	font-size: 12px;
	padding-left: 41px;
	padding-bottom: 10px;
	clear: both;
}
#container #mainContent #image_2 img {
	float: right;
	width: 209px;
}
#container #mainContent div {
	float: right;
}
a:link {
	text-decoration: underline;
	color:#919191;
}
a:hover {
	text-decoration: underline;
	color: #666666;
}
a:visited{
	text-decoration: underline;
	color:#919191;
}
a:visited:hover {
	text-decoration: underline;
	color: #999999;
}

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

