@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	background-image: url(images/CurtainTile.jpg);
}
.twoColFixLtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FD0977;
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px outset #666666;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLtHdr #adsense {
	float: right;
	margin-top: 160px;
	margin-left: 4px;
	background: #EEEEEE;
	border: 2px solid #FD0977;
	width: 306px;
	height: 256px;
} 
.twoColFixLtHdr #header {
	background-color: #FFFFFF;
	padding: 0;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* 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 */
	height: 600px;
	padding: 0px 10px 15px 20px;
	background-color: #FD0977;
	color: #00172F;
}
.twoColFixLtHdr #mainContent {
	margin: 10px 0 0 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 10px 20px 0 20px;
	width:850px;
	height:610px;
	background-color: #FEBCD3;
	top:0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #4B0174;
	background-image:url('images/ContentTop.gif');
	background-repeat:no-repeat;
	background-position:top right;
}
.twoColFixLtHdr #mainContent div{
	height:600px;
	padding-top:10px;
	padding-left: 20px;
	overflow-y:auto;
}
.twoColFixLtHdr #mainContent th{
	background-color:#FD0977;
	color: #00172F;
	padding: 2px 4px 2px 4px;
}
.twoColFixLtHdr #mainContent td{
	border-color: #FD0977;
	border-width: thin;
	border-style: solid;
	padding: 2px 4px 2px 4px;
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #FAFEA5;
	border-color: #660000;
	border-style: outset;
	border-width: 2;
} 
.twoColFixLtHdr #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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
td.button_normal {
	background-color: #FD0977;
	background-image: url('images/MovieButtonNormal.gif');
	background-repeat: no-repeat;
	width:170px;
	height:36px;
	text-align: center;
	margin-bottom:10px;
	cursor:default;
	color:#FEFAAB;
	font-weight:bold;
}
td.button_over {
	background-color: #FD0977;
	background-image: url('images/MovieButtonOver.gif');
	background-repeat: no-repeat;
	width:170px;
	height:36px;
	text-align: center;
	margin-bottom:10px;
	cursor: pointer;
	color:#26710D;
	font-weight:bold;
}
td.button_click {
	background-color: #FD0977;
	background-image: url('images/MovieButtonClicked.gif');
	background-repeat: no-repeat;
	width:170px;
	height:36px;
	text-align: center;
	margin-bottom:10px;
	cursor: default;
	color:#A90112;
	font-weight:bold;
}
