@charset "UTF-8";
/* CSS Document */

/*a fix for IE6 only - see Star Hack in Stylin' with CSS to see how the comments and * html hide this hack from other browsers.
triggers IE6 "haslayout" - google 'IE6 haslayout' for details.
without the below hack, IE6 does not draw the header until the page is resized.
the problem is triggered by the universal * selector below that resets the margins, but I need to do that, hence the hack.*/
* html * {
	zoom:100%;
	}

/*This zeros out all the default browser css*/
html,body {
	cursor:default;
	margin:0;
	padding:0;
	border:none;
	}
*:focus{
	outline:none;
	}
* {
	margin:0;
	padding:0;
	border:none;
	font-size:1em;
	font-weight:normal;
	}
ol {
	margin-left:1.4em;
	list-style:decimal;
	}
ul {
	margin-left:1.4em;
	list-style:square;
	}
img {
	border:none;
	}
	
/*Layout styles*/
a:link {
	text-decoration:none;
	}
a:visited {
	text-decoration:none;
	}
a:hover {
	text-decoration:none;
	}
a:active {
	text-decoration:none;
	}
body {
	text-align:center;  							/* IE6 needs this to center the layout in the browser window */
	background-image:url(/images/layout/bg.jpg);
	background-repeat:no-repeat;
	background-position:center top;
	background-color:#285a87;
	background-attachment:fixed;
	}
#main_wrapper {
	top:0px;
	width:1000px; 									/* widths of columns will scale proportionately as this width is changed */
	margin-left:auto;  								/* centers max'd layout in browser */
	margin-right:auto; 								/* centers max'd layout in browser */
	text-align:left; 								/* prevents page inheriting IE6 centering hack on body */
	}
#header {
	height:330px;
	}
#content {
	width:76%;
	float:left;
	background-color:#FFF;
	}
#content_inner {
	padding:0 10px 10px 10px;
	}
#left_edge {
	width:12%;
	float:left;
	background-image:url(/images/layout/left_edge.png);	
	background-position:left;
	background-repeat:repeat-y;
	min-height:400px;
	}
#right_edge {
	width:12%;
	float:left;
	background-image:url(/images/layout/right_edge.png);
	background-position:right;
	background-repeat:repeat-y;
	}
#footer {
	clear:both;
	height:200px;
	background-image:url(/images/layout/footer.png);
	background-position:center top;
	background-repeat:no-repeat;	
	}
#content_inner, #footer_inner {
	overflow:hidden; 							/* prevents oversize elements from breaking the layout */
	}	
#slideshow {
	float:right;
}
#posters {
	float:left;
}
.image_r {
	float:right;
	padding: 5px 45px 5px 10px;
	}
.image_l {
	float:left;
	padding: 5px 10px 5px 45px;
	}
.clearfloat {
	clear:both;
	}
.clear_l {
	clear:left;
	}
#column_r {
	width:200px;
	float:right;
	background-color:#b5b398;
	text-align:center;
	color:#FFF;
	font-size: .6em;
	}
#column_r_inner {
	padding: 10px 10px 10px 10px;
	}
#comingsoon {
	background-image: url(/images/pages/coming_soon.jpg);
	background-repeat: no-repeat;
	background-position: center;
	height: 100px;
	}
.center1 {
	left:50%;
	margin-left:-230px;
	margin-top:15px;
	position:relative;
	}


/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com
simply add the clearfix class to any containter that must enclose floated elements
read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */
.clearfix:after {
    content:".";              					/* the period is placed on the page as the last thing before the div closes */
	display:block;          					/* inline elements don't respond to the clear property */ 
    height:0;                  					/* ensure the period is not visible */
    clear:both;               					/* make the container clear the period */
    visibility:hidden;	     					/* further ensures the period is not visible */
	}
.clearfix {
	display:inline-block;
	}   										/* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */
dl dt {
	font-weight: bold;
	margin-top: 1em;
}
dl {
	text-align: clear;
	margin: clear;
	padding: clear;
}
dl dd {
	list-style-type: disc;
	margin-left: 2em;
}
sup {
	font-size: .9em;
}
