@charset "UTF-8";
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 */
	color: #FFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(images/index_bk.jpg);
}
#container {
	width: 1030px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/index_container_back.jpg);
	background-repeat: repeat-y;
	padding: 0 35px;
}
#header {
	padding-top: 15px;
	padding-right: 50px;
	padding-bottom: 0;
	padding-left: 50px;
}
#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 */
}
#header #logo {
	background-image: url(images/index_logo.jpg);
	float: left;
	height: 192px;
	width: 205px;
}
#header #menu ul {
	list-style-type: none;
	text-align: center;
}
#header #menu ul li a {
	display: inline-block;
	float: none;
	padding: 8px;
	text-transform: uppercase;
	text-decoration: none;
	color: #FFF;
	font-weight: normal;
	line-height: 20px; /* ie 35px; */
}
#header #menu ul li a:hover, #header #menu ul li .current {
	color: #Fbd00e;
}
#mainContent {
	padding: 10px 25px;
}
#mainContent .text {
	margin:15px;
	font-size: 14px;
	text-align: justify;
}
#mainContent .text a {
	color:#FFE851;
}
#mainContent .text a:hover {
	color: #36C;
}
#mainContent #splash #screen {
	float: left;
	text-align: center;
	padding-left: 10px;
}
#mainContent #splash #screen #trailer a:hover, #mainContent #splash #screen #movie a:hover {
	background-position: 0px 0px;
}
#mainContent #splash #screen #trailer a, #mainContent #splash #screen #movie a {
	height: 54px;
	width: 228px;
	background-image: url(images/index_view_trailer.jpg);
	background-repeat: no-repeat;
	display:block;
	float:left;
	margin:5px 20px;
	background-position: 0px -53px;
}
#mainContent #splash #screen #movie a {
	height: 54px;
	width: 190px;
	background-image: url(images/index_view_full.jpg);
	background-repeat: no-repeat;
}
#mainContent #splash #screen a:hover {
	color:#FFF;
}
#mainContent #splash #screen #blogclick a:hover {
	background-position: 0px 0px;	
}
#mainContent #splash #screen #blogclick {
	width: 250px;
	display: block;
	/* background-image: url(images/index_blogclick.jpg);
	background-repeat: no-repeat; */
	height: 40px;
	margin-right: 150px;
	margin-left: 150px;
	background-position: 0px -39px;
}
#mainContent #splash #screen a {
	margin: 10px;
	color:#Fbd00e;
	text-decoration:none;
}
#footer {
	background-image: url(images/index_container_bot.jpg);
	background-repeat: no-repeat;
	min-height:75px;
	padding-top: 30px;
	width: 1100px;
} 
#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 */
	font-size: 12px;
	color: #000;
}
#footer a {
	color: #000;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	padding: 0 5px;
}
#footer a:hover {
	color: #FFF;
	 
}
#container #mainContent .text .right {
	text-align: right;
}
