@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;
}
#container { 
	width: 780px;  /* 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;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header {
	height: 100px;
	padding: 5px;
	background-color: #DDDDDD;
	background-image: url(../logo/logo300b.png);
	background-repeat: no-repeat;
	background-position: 200px;
} 
#left-ad {
	float: left;
	text-align: left;
	width: 100px;
}
#right-ad {
	float: right;
	text-align: right;
	width: 250px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	background: #EBEBEB; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 0px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px; /* 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 */
	background: #EBEBEB;
	margin: 4px;
	padding: 5px;
}
#mainContent {
	margin: 0 200px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#date-title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FF0000;
	text-align: center;
	background-color: #999;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}
#model-video {
	text-align: center;
}
#model-name {
	font-size: 18px;
	color: #FF0000;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	background-color: #366;
	margin-top: 2px;
	margin-bottom: 2px;
}
#display-info {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000;
	background-color: #360;
	padding: 4px;
}
#display-title {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height: 28px;
	font-weight: bold;
	color: #00F;
}
#display-text {
	float: right;
	width: 150px;
}
#footer {
	background:#DDDDDD;
	text-align: center;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#copyright {
	font-size: 12px;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#address {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
}
#footer-link {
	font-family: Arial, Helvetica, sans-serif;
	margin-right: 5px;
	margin-left: 5px;
}
.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;
}
