@charset "utf-8";
body  {
	font: 10px Arial, Helvetica, sans-serif;
	background: #000000 url(images/film-bg.jpg);
	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;
}
.film #container { 
	width: 850px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffffff;
} 
.film #header {
	BACKGROUND: #99cc00 url(images/title.jpg) no-repeat;
	MARGIN: 0px auto;
	WIDTH: 850px;
	HEIGHT: 160px;
	 /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.film #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
} 

film #mainContent {
	margin: 0;
	padding: 0;
	background-color: #FFFFFF;
	float: none;
	width: 800px;
} 

.film #footer {
	padding: 0 10px 0 20px;
	background:#99cc00;
	font-size: 10px;
} 
.film #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.film #footer a {
	color: #000000;
	text-decoration: none;
}
.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;
}
.clear {
	background-color: #FFFFFF;	
}
	
.film #sddm {
	Z-INDEX: 0; 
	MARGIN: 0px;
	background:#99cc00;
	width: 105%;
}
.film #sddm LI {
	PADDING-RIGHT: 0px;
	PADDING-LEFT: 0px;
	FLOAT: left;
	PADDING-BOTTOM: 0px;
	MARGIN: 0px;
	FONT: 12px arial;
	PADDING-TOP: 0px;
	LIST-STYLE-TYPE: none;
}
.film #sddm LI A {
	DISPLAY: block;
	BACKGROUND: #99CC00;
	MARGIN: 0px;
	COLOR: #000000;
	TEXT-ALIGN: center;
	TEXT-DECORATION: none;
	padding: 9px;
}
.film #sddm LI A:hover {
	BACKGROUND: #99FF00;
	color: #000000;
}
.film #sddm DIV {
	PADDING-RIGHT: 0px;
	PADDING-LEFT: 0px;
	BACKGROUND: #C0C0C0;
	VISIBILITY: hidden;
	PADDING-BOTTOM: 0px;
	MARGIN: 0px;
	PADDING-TOP: 0px;
	POSITION: absolute;
	border: 0px solid #000000;
}
.film #sddm DIV A {
	PADDING-RIGHT: 10px; 
	DISPLAY: block; 
	PADDING-LEFT: 10px; 
	BACKGROUND: #CCCCCC; 
	PADDING-BOTTOM: 5px; 
	MARGIN: 0px; 
	FONT: 12px arial; 
	WIDTH: auto; 
	COLOR: #9900FF; 
	PADDING-TOP: 5px; 
	WHITE-SPACE: nowrap; 
	POSITION: relative; 
	TEXT-ALIGN: left; 
	TEXT-DECORATION: none
}
.film #sddm DIV A:hover {
	BACKGROUND: #99FF00; COLOR: #9900CC
	}


