/* CSS Document */

/* FastFreds.com */

/* COLORS & CORRESPONDING RGB HEXADECIMAL NUMBERS 

#000000 - Black
#e88600 - Orange/mango
#ca9f2f - Gold/helmet
#e5c098 - Text background
#2f3648 - Dark Ocoee Rock
#ffffff - White


Supporting documentation located at /css/CCSD_OFFICIAL_COLORS_20100623.pdf */

@charset "utf-8";
body {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	background: #2f3648;
	margin: 15px 0 0 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;
}
.homepage #container {
	position: relative;
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	height:860px;
	background: #ca9f2f;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border: #FFF solid; 
}
.homepage #container #header {
	position: absolute;
	top: 0;
	left: 0;
	width: 1000px;
	height: 200px;
	background: #ffffff;
	margin: 0;
	padding: 0;
}
.homepage #container #header #searchBox {
	position: absolute;
	top: 160px;
	left: 275px;
	margin: 0;
	padding: 0;
}

.homepage #container #leftColumn {
	position: absolute;
	top: 215px;
	left: 15px;
	width: 580px;
	background: #d0c877;
	margin: 0;
	padding: 5px;
	font-size: 10px;
}
.homepage #container #leftColumn h1 {
	font-size: 18px;
	margin: 0;
	padding: 5px;
}
.homepage #container #leftColumn h2 {
	font-size: 16px
	margin: 0;
	padding: 5px;
}
.homepage #container #leftColumn h3 {
	font-size: 14px;
	margin: 0;
	padding: 5px;
}
.homepage #container #leftColumn p {
	font-size: 12px;
	margin: 0;
	padding: 5px;
}
.homepage #container #leftColumn #videoClip {
	width: 320px;
	height: 240px;
	margin: 0;
	padding: 5px;
	float: left;	
}
.homepage #container #leftColumn #videoClipRt {
	width: 320px;
	height: 240px;
	margin: 0;
	padding: 5px;
	float: right;	
}
.homepage #container #googleAd {
	position: absolute;
	top: 215px;
	left: 620px;
	width: 160px;
	height: 600px;
	background: #d0c877;
	margin: 0;
	padding: 0;
}	
.homepage #container #menu {
	position: absolute;
	top: 215px;
	left: 795px;
	width: 180px;
	height: 590px;
	background: #d0c877;
	margin: 0;
	padding: 5px;	
}
.homepage #container #menu ul {
	margin: 0;
	padding: 0 0 0 5px;
}
.homepage #container #menu li {
	list-style-type: none;
	font-size: 12px;
	padding: 5px 0 0 0;
}