@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #F1E0B4; /* 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;
	margin-top: 30px;
}
.movie #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #D8B053;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #913E0A;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: 600px;
}
.movie #mainContent {
	margin: 0px 60px 0 60px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 680px;
	height: 516px;
	border: 2px solid #953F09;
} 
.movie #footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #913E0A;
}

.movie #pageTitle {
	margin-top: 5px;
	margin-left: 60px;
	font-weight: bold;
	color: #913E0A;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 3px;
}
.movie  #container  #vlinks  {
	text-align: right;
	margin-right: 60px;
	font-size: 14px;
	color: #3070B0;
}
.movie #container #vlinks a {
	font-size: 14px;
	color: #913E0A;
	text-decoration: underline;
}

.movie #container #pageTitle a {
	text-align: right;
	margin-right: 40px;
}

.movie #horiz_line {
	position: relative;
	z-index: 0;
	top: 397px;
}
.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;
}
