@charset "UTF-8";
/* CSS Document */
body {
	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 */
	 background-color:#000;
}
 #container {
	width: 100%;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #000; 
	overflow-x:hidden; /*this deals with the bottom scroll bars*/
	overflow-y:auto;/*this deals with the bottom scroll bars in IE*/
}
 #banner {
	width:100%;
	margin: 0 0 0 300px;
	padding: 0;
	background-image:url(../images/layout/BoxOfficeBG.jpg);
    background-repeat:repeat-x;
}
#mainContent {
	width: 680px;
	margin: 0 0 0 300px;
	padding: 10px 0px 0px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color:#FFF;
	background-color:#000;
}

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 300px; /* 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-image:url(../images/layout/LeftNavShouldve.jpg);
	background-repeat:no-repeat;
	min-height:913px;
}

#sidebar1.img {padding-top:0; margin-top:0;}

#footer  { 
	text-align:right; 
	border-top:#FFF thin solid; 
	padding:10px 0px 30px 0px; 
	margin-top:30px;
}

.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;
}

