/* CSS Document */
body  {
	font: 11px 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: #FFFFFF;
	background-color: #8699ba;
}
#container { 
	width: 922px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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-image:url(../../images/container_bg.jpg);
} 
#header { 
	background: #FFFFFF; 
} 
#leftColumn {
	float: left; /* since this element is floated, a width must be given */
	width: 340px; /* 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 */
	margin-left: 8px;
	padding: 5px 10px;
}
#rightColumn {
	float: right; /* since this element is floated, a width must be given */
	width: 197px; /* 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 */
	padding: 5px 20px 5px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
#mainContent { 
	padding: 5px 8px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left; /* since this element is floated, a width must be given */
	width: 308px;	
	min-height: 400px;
} 
#footer {
	background-image:url(../../images/tvworkshopHover_18.jpg);
	height: 19px;
	padding-top: 8px;
	text-align: center;
	font-size: 11px;
}
#dots {
	height: 16px; 
	background-image:url(../../images/purple_dots.jpg); 
	margin: 0px 0px;
}

#playerdiv {
	background-image:url(../../images/player_bg.jpg);
	width: 315px;
	height: 267px;
}
#playertitle {
	padding: 20px 0px 20px 25px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 15px;
	color: #a9458b;		
}
#player {
	margin: 0px 10px;
}	

.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;
}
body,td,th {
	font-size: 11px;
}
a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #7e99c6;
}
a:visited {
	color: #7e99c6;
}
a:hover {
	color: #7e99c6;
}
a:active {
	color: #7e99c6;
}
.footerText {
	font-size: 11px;
	color: #FFFFFF;
}
a.footerText:link {text-decoration: none; color: #FFFFFF;}
a.footerText:visited {text-decoration: none; color: #FFFFFF;}
a.footerText:hover {text-decoration: underline; color: #FFFFFF;}
a.footerText:active {text-decoration: none; color: #FFFFFF;}

.filmText {
	font-weight: bold;
	color: #FFFFFF;
}
a.filmText:link {text-decoration: none; color: #FFFFFF;}
a.filmText:visited {text-decoration: none; color: #FFFFFF;}
a.filmText:hover {text-decoration: underline; color: #FFFFFF;}
a.filmText:active {text-decoration: none; color: #FFFFFF;}
