@charset "utf-8";
@import "text.css";
@import "menu.css";

/* CSS Document */
body  {
	background: #000000;
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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 */
}

#container {
	position:absolute;
	top:50%;
	left:50%;
	margin: 0; /* the auto margins (in conjunction with a width) center the page */
	margin-top:-296px;
	margin-left:-387.5px;
	width: 775px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	min-height:592px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
} 

#left-box {
	width:214px;
	height:492px;
	background-position:top left;
	background-repeat:no-repeat;
	float:left;
	margin:0px;
	padding:0px;
}

#left-box #flash {
	position:relative;
	left:46px;
	top:35px;
	width: 144px;
	height:143px;
	background:transparent;
	z-index:4;
}

#flashHome {
	position:relative;
	left:-5px;
	top:55px;
	width: 144px;
	height:143px;
	background:transparent;
	z-index:4;
}

#content-box {
	width:408px;
	min-height:492px;
	background-color:#FFFFFF;
	float:left;
	margin:0px;
	padding:0px;
}

#content-box #title-box {
	width:408px;
	height:93px;
	margin:0px;
	padding:0px;
}

#content-box #main-content {
	margin:0px;
	padding:0px 10px 3px 4px;
}

#right-box {
	width:153px;
	height:492px;
	float:right;
	margin:0px;
	padding:0px;
	text-align:left;
	background-color:#FFFFFF;
	background-image:url(../images/menu-background.jpg);
	background-position:bottom right;
	background-repeat:no-repeat;
}

#bottom-box {
	width:775px;
	height:100px;
	float:left;
	clear:both;
	margin:0px;
	padding:0px;
}

#bottom-box #footer {
	text-align:center;
	font:8pt Verdana, Arial, Helvetica, sans-serif;
	color:#FFFFFF;
	background-color:#000000;
}

.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;
}
