html, body{
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 12px;
	margin: 0;
	padding: 0;
	color: #FFFFFF;
}

.clear {
	clear: both;
}

/* Header */

#headWrapper {
	width: 100%;
	height: 163px;
	background: #2C75A3 url('images/head-bk.png') repeat-x;
}

#headConstraint {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
}

#headLogo {
	width: 322px;
	height: 63px;
	background: url('images/logo.png') no-repeat;
	margin-top: 40px;
	float: left;
}

#headSearch {
	margin-top: 50px;
	float: right;
}

form, fieldset {
	outline: 0;
	border: 0;
	margin: 0;
	padding: 0;
}

.formQuery {
	padding: 10px;
	font-size: 18px;
	color: #474747;
	width: 200px;
	border: 0;
	border-right: 1px solid #474747;
	float: left;
	outline: 0;
	height: 30px;
	text-align: left;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	}

.formSearch {
	padding: 10px;
	font-size: 18px;
	cursor: pointer;
	color: #474747;
	width: 100px;
	border: 0;
	outline: 0;
	height: 50px;
	text-align: center;
	float: left;
	display: block;
	background: #AADDFF;
	-webkit-border-top-right-radius: 10px;
	-webkit-border-bottom-right-radius: 10px;
	-moz-border-radius-topright: 10px;
	-moz-border-radius-bottomright: 10px;
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
	-webkit-appearance: none;
}

.formSearch:hover {
	background: #E4E5E5;
}

/* Main Page */

#mainPage {
	background: #2C75A3;
	background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0.15, #2C75A3),
    color-stop(0.80, #1E5170)
	);
	background-image: -moz-linear-gradient(
		center top,
		#2C75A3 15%,
		#1E5170 80%
	);
	width: 100%;
	border-bottom: 1px solid #484848;
	min-height: 400px;
	padding-bottom: 40px;
}

#contentContainer {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

#contentContainer h1 {
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 18px;
	font-weight: normal;
	color: #57C9FF;
	margin: 0;
	padding: 0;
}

#contentContainer p {
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 14px;
	font-weight: normal;
	color: #FFFFFF; 
	margin-top: 0;
}

.welcome p{
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 18px !important;
	font-weight: normal;
	color: #FFFFFF;
	line-height: 1.5;
	text-align: center;
}

.welcome span {
	color: #57C9FF;
	font-size: 24px !important;
	text-shadow: 2px 2px 3px #222222;
}

.movieGroup {
	background: #FFFFFF;
	width: 800px;
	min-height: 200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 30px;
	text-align: center;
	color: #333333;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}

.movieGroup p{
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 16px !important;
	font-weight: normal !important;
	color: #333333 !important;
	line-height: 1.5;
	text-align: center;
	padding: 10px;
}

.movieGroup img {
	margin: 10px;
	text-align: center;
	border: 1px solid #E4E5E5;
	box-shadow: -5px -5px 5px #E4E5E5;
	-moz-box-shadow: -5px -5px 5px #E4E5E5;
	-webkit-box-shadow: -5px -5px 5px #E4E5E5;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.posters {
	margin-top: 40px;
	list-style-type: none;
	display: inline-block;
}

.posters li{
	display: inline-block;
	margin-top: 10px;
	margin-right: 15px;
	margin-left: 15px;
}

.posters li p a  {
	padding: 10px;
	font-size: 14px;
	cursor: pointer;
	color: #474747;
	width: 80px;
	outline: 0;
	height: 20px;
	text-align: center;
	display: block;
	background: #AADDFF;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	z-index: 101;
	position: relative;
}

.posters li p a:hover {
	background: #E4E5E5;
}

.posters li img{
	position: absolute;
	left: 600px;
	bottom: 90px;
	width: 185px;
	height: 278px;
	display: block;
	opacity: 0;
	-webkit-transition: opacity 2s linear;
	-moz-transition: opacity 2s linear;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-reflect: below 4px -webkit-gradient(
											linear, 
											left top, 
											left bottom, 
											from(transparent), 
											color-stop(0.8, transparent), 
											to(rgba(255, 255, 255, 0.4))
											);	
}

.posters li:target img {
	z-index: 100; 
	opacity: 1; 
}

#quickInfo {
	position: relative;
}	

#quickInfo h2 {
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 30px;
	font-weight: bold;
	color: #FFFFFF;
	margin: 0;
	padding: 0;
	text-transform: uppercase;
	text-shadow: 2px 2px 3px #222222;
}

#quickInfo h2 span{
	font-size: 20px;
	font-weight: normal;
}

#quickInfo p {
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 16px;
	font-weight: normal;
	color: #FFFFFF;
	text-shadow: 2px 2px 3px #222222;
}

.overview {
	text-shadow: 2px 2px 3px #222222;
	line-height: 1.5;
	text-align: justify;
}

#trailer {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

#fanart {
	max-width: 900px;
	height: 400px;
	position: relative;
	display: block;
	z-index: 99;
	margin-left: auto;
	margin-right: auto;
	background-color: #E4E5E5;
	background-position: center;
	cursor: pointer;
	background-size: 100%;
	-moz-background-size: 100%;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	box-shadow: 0px 0px 5px #E4E5E5;
	-moz-box-shadow: 0px 0px 5px #E4E5E5;
	-webkit-box-shadow: 0px 0px 5px #E4E5E5;
}

/* Footer */

#footerWrapper {
	background: #E4E5E5;
	width: 100%;
	height: 150px;
}

#footerConstraint {
	width: 900px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 30px;
}

#footerConstraint p {
	font-family: 'Tahoma', 'Geneva', 'Trebuchet MS';
	font-size: 12px;
	font-weight: normal;
	color: #484848; 
	margin-top: 0;
}
