@charset "UTF-8";
/* CSS Document */
/*----------Color Guide---------------------
#FFFFFF : white
#F49321 : burnt orange
#F3EB40 : reddish yellow
#F4CA5E : yellowish red
#F2B81C : orange
#F3D61C : light orange
#1EC4F4 : teal
#CDEBF2 : light blue
#DB3827 : amber
#1E1012 : umber
#362C5C : dark blue
#20212A : cobalt
*/
/***************************************
BASE STYLES
****************************************/
/*limited reset*/
html, body, div, section, article, aside, header, hgroup, footer, nav, h1, h2, h3, h4, h5, h6, p, blockquote, address, time, span, em, strong, img, ol, ul, li, figure, canvas, video, th, td, tr {
	margin: 0;
	padding: 0;
	border: 0;
}
/* display rule for older browsers that don't recognize html5 */
address, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

/* General Styles */
/*this subtracts the padding and border from calculations of an element width: see css-tricks.com/box-sizing/*/
html {
	box-sizing: border-box;	
}
/*this applies box-sizing to psuedo elements*/
*, *:before, *:after {
	box-sizing: inherit;
}
body {
	font-family: Arial, Verdana, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: 300;
	color: #fff;
	margin: 0;
	padding: 0;
	line-height: 1.5em;
	background: #112A84;
}
/* -- added pseudo-element (after) to force body element to encompass floated elements --*/
body::after {
	content: '';
	display: block;
	clear: both;
}
/* position all forms */
form * {
	position: relative;
	behavior: url(PIE.htc);/* use CSS3 PIE behaviors to enhance css3 rendition in IE 6-9 (uses .htaccess file to work with Apache server) */
}
	
/*reset all input text fields */
input[type=text] {
	-webkit-appearance: none;
	-moz-appearance: none;
	border: none;
	background: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	padding: 0;
	margin: 0;
}
/* elements should have padding and border included in the element's total width and height */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Sections */
section { 
	position: relative; 
	width: 100%; 
	background: rgba(30, 16, 18, 0.5);
	border-radius: 12px;
}
section::after { /*add psuedo-element to force section to cover any floated elements*/
	content: '';
	display: block;
	clear: both;
}
.section_bottom {
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
}

/*  Headings  */
#container h1, h2 {
	display: none;
}
#container_subscribe_pg2 h1, h2 {
	display: none;
}
/* anchor elements */
a img{
	border: none;
	display: block;
}

p { margin: 0 0 1em 0; }

/***************************************
LAYOUT STYLES
****************************************/

div#container {
	max-width: 1200px;
	min-width: 375px;
	margin: 0 auto;
}
header#main_header {
	width: 100%;
	height: 220px;
	background: url(../_images/index/home_background_header_ps.png) no-repeat left top;
}
div#index_transparency {
	height: 130px;
	width:	105px;
	position: absolute;
	top: 0;
	left: 100px;
	z-index: 10;
}
div#index_transparency a {
	width: 100%;
	height: 100%;
	display: block;
}
div#wrapper {
	margin-top: -80px;
    width: 100%;
}
footer#footer {
	width: 100%;
	padding: 1em 1em 3em 0em;
	background:  rgba(30, 16, 18, 0.95);
	border-radius: 15px;
}
/***************************************
GENERAL TYPOGRAPHY AND COLOR STYLES
****************************************/

/* Text */
h1 { margin: 0 0 1em 0; font-size: 2.8em; font-weight: 700; }
h2 { margin: 0 0 .5em .5em; font-size: 1.6em; font-weight: 400; line-height: 1.1em; color: #000; }
h3 { margin: 0 0 .5em .5em; padding: .21em 0 0 0; font-size: 1.3em; font-weight: 400; color: #000; }
h4 { margin: 0 0 .5em .5em; padding: .21em 0 0 0; font-size: 1em; font-weight: 400; color: #000; }
h5 { margin: 0 0 1.5em 0; font-size: 1em; font-weight: 700; }
h6 { margin: 0 0 1.5em 0; font-size: .9em; font-weight: 700; }



a { color: #fff; text-decoration: none; }
a:hover { color: #F3EB40; }
a:visited { color: #CDEBF2; }


/* ---------------- header specific styles ----------------*/

header#main_header ul {
	margin: 0 10 0 0;
	list-style-type: none;
	float: right;
}
header#main_header ul li {
	float: left;
	padding: 0.2em;
	display: block;
	text-decoration: none;
}

/* -------------Search Box ---------------*/

#movie_search_box, #people_search_box {
	position: relative;
	width: 20%;
	height: 30px;
	float: right;
	clear: both;
	zoom: 1;
}
#movie_search_box {
	margin: 30px 0px 10px 0px;
}
#movie_title, #people_query {
	color: #999;
}

.search_input {
	position: absolute;
	right: 54px;
}
/*.search_input { for some reason, this just stopped working consistently, so referred to input another way*/
input[type="text"] {
	border: none;
	
	background-color: #DDD;
	background-color: -web-kit-linear-gradient(#FFF, #DDD);
	background: -moz-linear-gradient(#FFF, #DDD);
	background: -ms-linear-gradient(#FFF, #DDD);
	background: -o-linear-gradient(#FFF, #DDD);
	background: linear-gradient(#FFF, #DDD);
	-pie-background: linear-gradient(#FFF, #DDD);
	
	-webkit-box-shadow: inset 0px 2px 3px #666, inset 0px -5px 3px #EEE;
	-moz-box-shadow: inset 0px 2px 3px #666, inset 0px -5px 3px #EEE;
	box-shadow: inset 0px 2px 3px #666, inset 0px -5px 3px #EEE;
	
	padding: 5px 0 0 5px;
	color: #999;
}
.search_input:hover {
	outline: solid gold;
}
.search_input:focus {
	outline: solid yellow;
}
#submit_movie_title, #submit_person {
	position: absolute;
	right: 3px;
	bottom: 5px;
	/*left: 2px;*/
	width: 50px;
	height: 26px;
	border: none;
	
	background: #F49321;
	background: -web-kit-linear-gradient(#BF6E1A, #FFAD23 50%, #F49321 51%, #BF6E1A);
	background: -moz-linear-gradient(#BF6E1A, #FFAD23 50%, #F49321 51%, #BF6E1A);
	background: -ms-linear-gradient(#BF6E1A, #FFAD23 50%, #F49321 51%, #BF6E1A);
	background: -o-linear-gradient(#BF6E1A, #FFAD23 50%, #F49321 51%, #BF6E1A);
	background: linear-gradient(#BF6E1A, #FFAD23 50%, #F49321 51%, #BF6E1A);
	-pie-background: linear-gradient(#BF6E1A, #FFAD23 50%, #F49321 51%, #BF6E1A);
	
	-webkit-border-radius: 0 10px 10px 0;
	-moz-border-radius: 0 10px 10px 0;
	border-radius: 0 10px 10px 0;
	
	border-left: 1px solid rgba(0,0,0,.2);
	
	color: white;
	font-size: 1.2em;
}
#submit_movie_title:hover, #submit_person:hover {
	background: -web-kit-linear-gradient(#CC3A12, #FFBF7B 50%, #F4B14D 51%, #F26E1A);
	background: -moz-linear-gradient(#CC3A12, #FFBF7B 50%, #F4B14D 51%, #F26E1A);
	background: -ms-linear-gradient(#CC3A12, #FFBF7B 50%, #F4B14D 51%, #F26E1A);
	background: -o-linear-gradient(#CC3A12, #FFBF7B 50%, #F4B14D 51%, #F26E1A);
	background: linear-gradient(#CC3A12, #FFBF7B 50%, #F4B14D 51%, #F26E1A);
	-pie-background: linear-gradient(#CC3A12, #FFBF7B 50%, #F4B14D 51%, #F26E1A);
}
/*------------- tooltip functionality ---------------------------*/
#remember_me {
	font-family: Arial;
	font-size: .85em;
	text-decoration: none;
	color: #FFF;
}
#whats_this {
	position: relative;
	top: -3em;
	left: 2.5em;
	font-family: Arial;
	font-size: .75em;
	text-decoration: none;
	color: #FFF;
	display: block;
}
div.tooltip_content {
	font-family: Arial;
	font-size: .75em;
	color: #FFF;
	padding: 20px;
	position: absolute;
	max-width: 15em;
	background-color: rgba(0,0,0,.85);
	-webkit-border-radius: 12px;
	border-radius: 12px;
	display: none;
	opacity: 0.0;
}
/* ---------------- navigation specific styles ---------------*/
section#nav-container { border-radius: 12px; }

header#explore {
	width: 100%;
	height: 35px;
	background: rgba(0, 0, 0, .3);
	border-radius: 12px;
	background-image: url(../_images/index/heading_explore.png);
	background-repeat: no-repeat;
}
nav ul.nav {
	width: 100%;
	height: 200px;
	position: relative;
	margin-top: 12px;
	list-style-type: none;
}
nav ul.nav li a.current {
	width: 100%;
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 2em;
	color: #FFFFFF;
	font-weight: bold;
	text-decoration: none;
}
nav ul.nav li a.movies, .nav li a.movies:active {
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 2em;
	color: #FFFFFF;
	text-decoration: none;
}
.nav_arrow {
	padding-left: 17px;
	background: url(../_images/index/nav_movie_rgt_arrow.png) no-repeat right;
}
nav ul.nav li a.movies:hover {
	background-color: rgba(204,51,51,.3);
}
/* movie tab - dropdown menu */
nav ul.nav ul {
	position: absolute;
	width: 35%;
	top: 5px;
	right: .5em;
	display: none;
}
nav ul.nav ul li {
	display: block;
	line-height: 1.5em;
	padding: 5px;
}
nav ul.nav ul li:first-child {
	padding-top: 0;
}
nav ul.nav ul li a {
	display: block;
	height: 25px;
	color: #fff;
	list-style: none;
	text-decoration: none;
}
nav ul.nav ul li a:hover {
	border: 1px solid #F3EB40;
	background-color: rgba(204,51,51,.3);
}

/* other tabs */
nav ul.nav li a.stars, .nav li a.stars:active {
	margin-top: 30px;
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 2em;
	color: #FFFFFF;
	text-decoration: none;
}
nav ul.nav li a.stars:hover {
	background-color: rgba(204,51,51,.3);
}
nav ul.nav li a.best_of, .nav li a.best_of:active {
	margin-top: 30px;
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 2em;
	color: #FFFFFF;
	text-decoration: none;
	margin-bottom: 43px;/*added as a placeholder for 'International" link*/
}
nav ul.nav li a.best_of:hover {
	background-color: rgba(204,51,51,.3);
}
nav ul.nav li a.international, .nav li a.international:active {
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 1.5em;
	color: #FFFFFF;
	text-decoration: none;
}
nav ul.nav li a.international:hover {
	font-weight: bold;
}
nav ul.nav li a.directors, .nav li a.directors:active {
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 1.5em;
	color: #FFFFFF;
	text-decoration: none;
}
nav ul.nav li a.directors:hover {
	font-weight: bold;
}
nav ul.nav li a.producers, .nav li a.producers:active {
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 1.5em;
	color: #FFFFFF;
	text-decoration: none;
}
nav ul.nav li a.producers:hover {
	font-weight: bold;
}
nav ul.nav li a.vote, .nav li a.vote:active {
	padding: 5px 0px 5px .5em;
	display: block;
	font-size: 1.5em;
	color: #FFFFFF;
	text-decoration: none;
}
nav ul.nav li a.vote:hover {
	font-weight: bold;
}