/**
 * style.css
 *
 * Adapted from HTML5 Boilerplate
 * html5boilerplate.com
 */

/**
 * Reset
 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }
ins { background-color: #abb; color: #000; text-decoration: none; }
mark { background-color: #abb; color: #000; font-style: italic; font-weight: bold; }
del { text-decoration: line-through; }
abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; }
table { border-collapse: collapse; border-spacing: 0; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
input, select { vertical-align: middle; }

/**
 * Font normalization 
 */

body { font:13px/1.4 sans-serif; *font-size:small; }
select, input, textarea, button { font:99% sans-serif; }
pre, code, kbd, samp { font-family: monospace, sans-serif; }

/**
 * Base styles
 */

html { overflow-y: scroll; }

a:hover, a:active { outline: none; }

ul, ol { margin-left: 3em; }
ol { list-style-type: decimal; }

small { font-size: 85%; }
strong, th { font-weight: bold; }
em { font-style: italic; }

input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }
button, input, select, textarea { margin: 0; }

::-moz-selection{ background: #abb; color:#fff; text-shadow: none; }
::selection { background:#abb; color:#fff; text-shadow: none; }

a:link { -webkit-tap-highlight-color: #abb; }
button {  width: auto; overflow: visible; }
.ie7 img { -ms-interpolation-mode: bicubic; }

/**
 * General styles
 */

body {
	background: #c7b683 url("../img/footer-bkg.png");
}

body, select, input, textarea {
	color: #444;
	font-family: 'Gill Sans MT', 'Gill Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 { font-weight: bold; }
h1 {
	text-align: center;
	font-size: 255%; /* 32px (approx) */
	font-weight: normal;
	color: #a99b70;
	border-bottom: 1px solid #eee; padding-bottom: 10px; margin-bottom: 30px;
}
h2 {
	font-size: 197%; /* 26px */
	line-height: 1;
	color: #567;
	margin-bottom: .5em;
}

blockquote {
	background: transparent url("../img/open-quote.png") no-repeat;
	padding: 10px 20px 0 20px;
}
blockquote p {
	font-style: italic;
}
blockquote .cite {
	text-align: right;
}
blockquote cite {
	font-weight: bold;
}

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }

/**
 * Containers
 */

/*--- Container ---*/
	#container {
		background: #fff url("../img/header-bkg.png") repeat-x;
		overflow: hidden;
		padding-bottom: 20px; 
	}
	ul,ol,
	#container p {
		font-size: 	123.1%; /* 16px */
		color: #444;
		margin-bottom: 1em;
	}
	#container strong {
		color: #222;
	}
/*--- END Container ---*/

/*--- Header ---*/
	header, #main {
		margin: 0 auto;
	}

	header {
		min-height: 90px;
		padding-top: 50px;
		overflow: hidden;
	}
		.ie6 header { height: 90px; }
	#logo a {
		float: left;
		width: 264px;
		height: 74px;
		display: block;
		text-indent: -999em;
		overflow: hidden;
		background: transparent url("../img/logo.png") no-repeat;
		text-align: left;
		direction: ltr;
	}
		.ie6 #logo a { background-image: url("../img/logo-ie6.png"); }
	#logo a span { color: #f00; }
	nav {
		float: right;
		font-size: 123.1%; /* 16px */
		line-height: 1.5;
	}
		.lt8 nav { padding-top: 10px; }
	nav a,
	nav a:active,
	nav a:visited {
		display: inline-block;
		color: #666;
		text-decoration: none;
		margin-left: 1em;
		padding: 0 20px .15em;
		white-space: nowrap;
	}
	/* IE<8 applies :active instead of :focus when an anchor has focus.
	http://24ways.org/2007/css-for-accessibility */
	nav a:focus,
	nav a:hover,
		.lt8 nav a:active,
	nav a.current-page:focus,
	nav a.current-page:hover,
		.lt8 nav a.current-page:active,
	nav a.current-page {
		background-color: #d3cca3;
		color: #fff;
		-moz-border-radius: 20px;
		-webkit-border-radius: 20px;
		border-radius: 20px;
		-webkit-transition: all 0.2s ease;
		-moz-transition: all 0.2s ease;
		-o-transition: all 0.2s ease;
		-ms-transition: all 0.2s ease;
		transition: all 0.2s ease;
		-moz-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
		-webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
		box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1);
		text-shadow: 0px 0px 3px rgba(0,0,0,0.1);
	}
		.ie6 nav a.current-page { color: #fff !important; }
	nav a.current-page { /* If the "a" element is not specified, it will not apply to visited links. */
		background-color: #cdd;
		color: #fff;
	}
/*--- END Header ---*/

/*--- Main Content ---*/
	#main { overflow: visible; }
/*--- END Main Content ---*/

/*--- Footer ---*/
	footer {
		color: #fff;
		text-align: center;
		padding-bottom: 10em;
		background: url("../img/footer-border-bkg.png") center 0 repeat-x; 
	}
	footer p {
		padding-top: 107px;
		background: url("../img/footer-border-img.png") right 6px no-repeat;
		text-shadow: 0px 1px 0px rgba(0,0,0,0.2), 0px 0px 5px rgba(0,0,0,0.3);
	}
/*--- END Footer ---*/

/**
 * Page-specific styles
 */

/*--- index.php ---*/
	a.splash-btn {
		display: block;
		width: 9.5em;
		font-size: 197%; /* 26px */
		text-shadow: 0px -1px 0px rgba(0,0,0,0.5);
		color: #fff;
		text-decoration: none;
		margin: 0 0 10px;
		padding: 10px 5px 10px 60px;
		-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
		-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
		box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		position: relative;
		z-index: 2;
		background: #a99b70 url("../img/splash-btn-icons.png") no-repeat;
		-webkit-transition: all 0.2s ease;
		-moz-transition: all 0.2s ease;
		-o-transition: all 0.2s ease;
		-ms-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	a.splash-btn:hover,
	a.splash-btn:focus,
	.lt8 a.splash-btn:active {
		background-color: #000;
		color: #fff; /* for IE */
	}
		.ie6 a.splash-btn:visited { color: #fff; }
	#trailer { background-position: 12px 14px; }
	#movie { background-position: 13px -60px; }
	.testimonials { margin-top: 40px; }
/*--- END index.php ---*/

/*--- about.php ---*/
	section { clear: both; padding-top: 40px; }
		.lt8 section { padding-top: 10px; }
	section.first { padding-top: 0; }
	section img {
		padding: 10px;
		border: 1px solid #ddd;
		-moz-box-shadow: 0px 1px 5px rgba(0,0,0,0.25);
		-webkit-box-shadow: 0px 1px 5px rgba(0,0,0,0.25);
		box-shadow: 0px 1px 5px rgba(0,0,0,0.25);
		margin-bottom: 20px;
	}
/*--- END about.php ---*/

/*--- participants.php ---*/
	#intro .instruction { display: none; color: #fff; }
	#participants a { text-decoration: none; }
	.participant a { cursor: default; }
	.participant a.link { cursor: pointer; }
	#container .link-txt {
		position: relative;
		left: 0;
		color: #8bd;
		line-height: 18px;
		display: block;
		padding-left: 30px;
		min-height: 20px;
		background: url("../img/arrow-right.png") 0 0 no-repeat;
		-webkit-transition: left 0.2s ease;
		-moz-transition: left 0.5s ease;
		-o-transition: left 0.5s ease;
		-ms-transition: left 0.5s ease;	
		transition: left 0.2s ease;
	}
	#container a:hover .link-txt,
	#container a:focus .link-txt {
		left: 10px;
		text-decoration: underline;
		color: #036;
		background-position: 0 -60px;
	}
	.link-popup { display: none; }
/*--- END participants.php ---*/

/*--- trailer.php ---*/
	/* Elastic video: webdesignerwall.com/tutorials/css-elastic-videos */
	.video-container {
		position: relative;
		padding-bottom: 56.25%;
		overflow: hidden;
	}
		.ie6 .video-container { height: 0; }
	.video-container iframe,  
	.video-container object,  
	.video-container embed {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
/*--- END trailer.php---*/

/*--- download.php ---*/
	#download-details .details {
		margin-bottom: 10px;
		padding: 0 0 10px 0;
		border: 1px solid #c9bb90;
		background: #eeb;
		-moz-box-shadow: 0 2px 5px rgba(0,0,0,0.3);
		-webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.3);
		box-shadow: 0 2px 5px rgba(0,0,0,0.3);
	}
	#download-details h2 {
		font-size: 153.9%; /* 20px */
		padding: 5px 0;
		margin: 0 0 10px 0;
		text-align: center;
		background: #c9bb90;
		color: #fff;
		text-shadow: 0px -1px 0px rgba(0,0,0,0.2);
	}
	#download-details p {
		padding: 0 30px;
		margin: 0;
	}
	#download-details a {
		display: block;
		width: 9.5em;
		font-size: 123.1%; /* 16px */
		font-weight: bold;
		text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
		color: #fff;
		text-decoration: none;
		margin: 0 0 10px;
		padding: 10px 5px 10px 60px;
		-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
		-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
		box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
		-moz-border-radius: 10px;
		-webkit-border-radius: 10px;
		border-radius: 10px;
		position: relative;
		z-index: 2;
		background: #a99b70 url("../img/splash-btn-icons.png") no-repeat;
		-webkit-transition: all 0.2s ease;
		-moz-transition: all 0.2s ease;
		-o-transition: all 0.2s ease;
		-ms-transition: all 0.2s ease;
		transition: all 0.2s ease;
	}
	#download-details a small { 
		display: block; 
		font-weight: normal; 
		line-height: 1; 
		position: relative;
		top: -.2em;
	}
	#download-details a small span { display: none; }
	#download-details a:hover,
	#download-details a:focus {
		background-color: #000;
		color: #fff; /* for IE */
	}
	#download-details #trailer { background-position: 12px 14px; }
	#download-details #movie { background-position: 13px -59px; }
	#download-payment form {
		width: 148px;
		margin: 0 auto;
	}
	#download-payment form img { border: 0; padding: 0; }
/*--- END download.php ---*/

/*--- download/index.php ---*/
	#download-dialog {
		position: relative;
		border: 1px solid #ccc;
		padding: 20px 50px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-moz-box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
		-webkit-box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
		box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
		background: #ffffff;
		background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%);
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5));
		background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
		background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
		background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
		background: linear-gradient(top, #ffffff 0%,#e5e5e5 100%);
	}
	#download-dialog h1 {
		font-size: 197%; /* 26px */
		color: #444;
		border-bottom-color: #ddd;
		text-align: center;
	}
	#download-dialog.error h1 { color: #c00; }
	#download-dialog form { font-size: 	123.1%; /* 16px */ }
	#download-dialog form,
	#result-message {
		display: inline-block;
		position: relative;
		left: 50%;
	}
	#download-dialog p {
		margin-bottom: 0.5em;
		color: #444;
		text-shadow: 0px 1px 1px #fff;
	}
	#download-dialog .instructions p {
		margin-bottom: 0;
		color: #999;
		text-align: center;
	}
	#download-dialog .instructions { padding-top: 20px; }
	#download-dialog label,
	#download-dialog input,
	#download-dialog select,
	#result-message p {
		display: block;
		position: relative;
		left: -50%;
	}
	#download-dialog input,
	#download-dialog select {
		padding: 0;
		margin: 0 0 8px;
		width: 12em;
	}
	#download-dialog #submit-btn {
		font-size: 120%;
		margin: 20px auto 0;
		width: auto;
		padding: 0 .5em;
	}
/*--- END download/index.php ---*/

/*--- subtitles/index.php ---*/
	ul.subtitles li {
		list-style: none;
		background: url("../img/subtitle-file.png") 0 center no-repeat;
		padding-left: 26px;
	}
/*--- END subtitles/index.php ---*/

/**
 * Media queries
 */

/*--- Styles for IE <9 (since they don't understand media queries) ---*/
	.lt9 header, .lt9 #main { width: 960px; }
	.lt9 nav {
		max-width: 695px;
		text-align: right;
	}
	.lt8 nav {
		width: 635px;
		padding-right: 60px;
		position: relative;
	}
	.lt9 nav a.nav-icon {
		float: right;
		width: 30px;
		height: 30px;
		display: block;
		text-indent: -999em;
		overflow: hidden;
		background: #ccc url("../img/fb.png") no-repeat center center;
		text-align: left;
		direction: ltr;
		padding: 0;
		margin-left: 2em;
		position: relative;
		top: -3px;
	}
	.lt8 nav a.nav-icon {
		position: absolute;
		top: 8px;
		right: 0;
	}
	.lt9 nav a.nav-icon:focus,
	.lt9 nav a.nav-icon:hover,
	.lt9 nav a.nav-icon:active {
		background-color: #3c5a98;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-moz-box-shadow: inset 0 0 0 rgba(0,0,0,0);
		-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0);
		box-shadow: inset 0 0 0 rgba(0,0,0,0);
		text-shadow: 0 0 0 rgba(0,0,0,0);
	}
	/*--- Page-specific styles ---*/
		/* index.php */
			.lt9 #splash {
				position: relative;
				width: 960px; height: 422px;
			}
			.lt9 #splash img {
				position: absolute;
				z-index: 1;
			}
			.lt9 a.splash-btn {
				float: right; clear: both;
				position: relative;
				top: 260px;
				right: 40px;
				background-color: #a99b70;
				border: 1px solid #000;
			}
			.lt9 a.splash-btn:hover,
			.lt9 a.splash-btn:focus {
				background-color: #000;
				border: 1px solid #000;
			}
		/* about.php */
			.lt9 #about img { margin-bottom: 0; }
			.lt9 #about-project img { float: left; margin-right: 30px; }
			.lt9 #about-filmmaker img { float: right; margin-left: 30px; }
		/* participants.php */
			.lt9 #intro {
				width: 290px;
				float: right;
				margin-top: 10em;
			}
			.lt9 #intro .instruction {
				position: relative;
				left: 20px;
				display: block;
				font-size: 123.1%; /* 16px */
				color: #afd8d8;
				padding-left: 30px;
				min-height: 20px;
				background: url("../img/arrow-left.png") 0 center no-repeat;
			}
			.lt9 #participants {
				position: relative;
				width: 660px;
				overflow: visible;
				z-index: 1;
			}
				.ie6 #participants { width: 665px; }
			.lt9 .participant-txt {
				position: absolute; 
				left: 690px;
				top: 210px;
				width: 0;
				overflow: hidden;
				background-color: #fff;
			}
			.lt9 #container .link-txt { display: none; }
			.lt9 #container .link-popup {
				display: none;
				background: #transparent;
				color: #fff;
				font-size: 12px;
				text-align: center;
				width: 160px;
				padding: 5px 0;
				border: 0;
			}
			.lt9 #container a:hover .link-popup,
			.lt9 #container a:focus .link-popup { 
				display: block;
				position: absolute;
				left: -20px;
				top: -32px;
				background: #a99b70;
				border: 1px solid #875;
				z-index: 100;
			}
			.lt9 a:hover .participant-txt,
			.lt9 a:focus .participant-txt,
			.ie6 a:active .participant-txt { width: 270px; }
			.lt9 .participant-img,
			.lt9 .participant-img img {
				display: block;
				float: left;
			}
			.lt9 .participant-img {
				position: relative;
				margin: 0 10px 10px 0;
				width: 120px; height: 120px;
				background: url("../img/participants-gray.jpg") no-repeat;
				overflow: visible;
				z-index: 1;
			}
			.lt9 #apf .participant-img { background-position: 0		0; }
			.lt9 #ar	 .participant-img { background-position: -130px	0; }
			.lt9 #aw	 .participant-img { background-position: -260px	0; }
			.lt9 #cw	 .participant-img { background-position: -390px	0; }
			.lt9 #ccm .participant-img { background-position: 0		-130px; }
			.lt9 #ddc .participant-img { background-position: -130px	-130px; }
			.lt9 #ds	 .participant-img { background-position: -260px	-130px; }
			.lt9 #hz	 .participant-img { background-position: -390px	-130px; }
			.lt9 #pos .participant-img { background-position: 0		-260px; }
			.lt9 #pm	 .participant-img { background-position: -130px	-260px; }
			.lt9 #pmr .participant-img { background-position: -260px	-260px; }
			.lt9 #rc	 .participant-img { background-position: -390px	-260px; }
			.lt9 #sm	 .participant-img { background-position: 0		-390px; }
			.lt9 #sb	 .participant-img { background-position: -130px	-390px; }
			.lt9 #tb	 .participant-img { background-position: -260px	-390px; }
			.lt9 #vds .participant-img { background-position: -390px	-390px; }
			.lt9 #jfa .participant-img { background-position: 0		-520px; }
			.lt9 #mag .participant-img { background-position: -130px	-520px; }
			.lt9 #rs	 .participant-img { background-position: -260px	-520px; }
			.lt9 #mz	 .participant-img { background-position: -390px	-520px; }
			.lt9 .participant-img img {
				visibility: hidden;
			}
			.lt9 a:hover .participant-img img,
			.lt9 a:focus .participant-img img,
			.lt8 a:active .participant-img img { visibility: visible; }
				.ie6 a:hover, .ie6 a:focus, .ie6 a:active { border: 0; } /* makes the above rule work for some reason */
		/* download.php */
			.lt9 #download-details {
				width: 300px;
				float: right;
			}
			.lt9 #download-details div {
				margin-bottom: 10px;
				padding: 0 0 10px 0;
				border: 1px solid #c9bb90;
				background: #eeb;
				-moz-box-shadow: 0 2px 5px rgba(0,0,0,0.3);
				-webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.3);
				box-shadow: 0 2px 5px rgba(0,0,0,0.3);
			}
			.lt9 #download-details h2 {
				font-size: 153.9%; /* 20px */
				padding: 5px 0;
				margin: 0 0 10px 0;
				text-align: center;
				background: #c9bb90;
				color: #fff;
				text-shadow: 0px -1px 0px rgba(0,0,0,0.3);
			}
			.lt9 #download-details a {
				font-size: 153.9%; /* 20px */
				width: auto;
			}
			.lt9 #download-details #trailer { background-position: 12px 10px; }
			.lt9 #download-details #movie { background-position: 13px -53px; }
			.lt9 #download-details p {
				padding: 0 30px;
				margin: 0;
			}
			.lt9 #download-payment {
				clear: none;
				width: 600px;
				padding: 0;
			}
		/* download */
			.lt9 #download-dialog {
				width: 500px;
				margin: 0 auto;
			}
			.lt9 #download-dialog form {
				display: block;
				left: 0;
			}
			.lt9 #download-dialog label,
			.lt9 #download-dialog input,
			.lt9 #download-dialog select {
				left: 0;
			}
			.lt9 #download-dialog label {
				float: left;
				width: 180px;
				padding-right: 20px;
				text-align: right;
			}
			.lt9 #download-dialog input,
			.lt9 #download-dialog select {
				margin-left: 200px;
			}
			.lt9 #download-dialog #submit-btn {
				margin-left: 200px;
			}
	/*--- END Page-specific styles ---*/
/*--- END of styles for IE <9 ---*/

@media screen and (min-width: 1000px) {
	header, #main { width: 960px; }
	nav {
		max-width: 695px;
		text-align: right;
	}
	nav a.nav-icon {
		float: right;
		width: 30px;
		height: 30px;
		display: block;
		text-indent: -999em;
		overflow: hidden;
		background: #ccc url("../img/fb.png") no-repeat center center;
		text-align: left;
		direction: ltr;
		padding: 0;
		margin-left: 2em;
		position: relative;
		top: -3px;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
	}
	nav a.nav-icon:focus,
	nav a.nav-icon:hover,
	nav a.nav-icon:active {
		background-color: #3c5a98;
		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;
		-moz-box-shadow: inset 0 0 0 rgba(0,0,0,0);
		-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0);
		box-shadow: inset 0 0 0 rgba(0,0,0,0);
		text-shadow: 0 0 0 rgba(0,0,0,0);
	}
	/*--- Page-specific styles ---*/
		/* index.php */
			#splash {
				position: relative;
				width: 960px; height: 422px;
			}
			#splash img {
				position: absolute;
				z-index: 1;
			}
			a.splash-btn {
				float: right; clear: both;
				position: relative;
				top: 260px;
				right: 40px;
				background-color: rgba(200,200,200,0.5);
			}
		/* about.php */
			#about img { margin-bottom: 0; }
			#about-project img { float: left; margin-right: 30px; }
			#about-filmmaker img { float: right; margin-left: 30px; }
		/* participants.php */
			#intro {
				width: 290px;
				float: right;
				margin-top: 10em;
			}
			#intro .instruction {
				position: relative;
				left: 20px;
				display: block;
				font-size: 123.1%; /* 16px */
				color: #afd8d8;
				padding-left: 30px;
				min-height: 20px;
				background: url("../img/arrow-left.png") 0 center no-repeat;
			}
			#participants {
				position: relative;
				width: 660px;
				overflow: visible;
			}
			.participant-txt {
				position: absolute; 
				left: 690px; top: 210px;
				width: 270px;
				background-color: #fff;
				z-index: -1;
				opacity: 0;
				-webkit-transition: all 0.5s ease-in-out;
				-moz-transition: all 0.5s ease-in-out;
				-o-transition: all 0.5s ease-in-out;
				-ms-transition: all 0.5s ease-in-out;	
				transition: all 0.5s ease-in-out;
			}
			#container .link-txt { display: none; }
			#container .link-popup {
				display: block;
				position: absolute;
				left: -20px;
				bottom: -50px;
				background: #a99b70;
				color: #fff;
				font-size: 12px;
				text-align: center;
				opacity: 0;
				width: 160px;
				padding: 5px 0;
				-moz-border-radius: 5px;
				-webkit-border-radius: 5px;
				border-radius: 5px;
				-moz-box-shadow: 2px 0px 2px rgba(255,0,0,0.5);
				-webkit-box-shadow: 0px 0px 100px 100px rgba(255,255,255,0.3);
				box-shadow: 0px 3px 3px rgba(0,0,0,0.5);
				-webkit-transition: all 0.5s ease-out;
				-moz-transition: all 0.5s ease-out;
				-o-transition: all 0.5s ease-out;
				-ms-transition: all 0.5s ease-out;
				transition: all 0.5s ease-out;
				text-shadow: 0px 0px 3px rgba(0,0,0,0.1);
			}
			#container a:hover .link-popup,
			#container a:focus .link-popup { 
				bottom: -42px;
				z-index: 100;
				opacity: 1;
			}
			a:hover .participant-txt,
			a:focus .participant-txt { z-index: 100; opacity: 1; }
			.participant-img,
			.participant-img img {
				display: block;
				float: left;
			}
			.participant-img {
				margin: 0 10px 10px 0;
				width: 120px; height: 120px;
				background: url("../img/participants-gray.jpg") no-repeat;
				overflow: visible;
			}
			#apf .participant-img { background-position: 0		0; }
			#ar	 .participant-img { background-position: -130px	0; }
			#aw	 .participant-img { background-position: -260px	0; }
			#cw	 .participant-img { background-position: -390px	0; }
			#ccm .participant-img { background-position: 0		-130px; }
			#ddc .participant-img { background-position: -130px	-130px; }
			#ds	 .participant-img { background-position: -260px	-130px; }
			#hz	 .participant-img { background-position: -390px	-130px; }
			#pos .participant-img { background-position: 0		-260px; }
			#pm	 .participant-img { background-position: -130px	-260px; }
			#pmr .participant-img { background-position: -260px	-260px; }
			#rc	 .participant-img { background-position: -390px	-260px; }
			#sm	 .participant-img { background-position: 0		-390px; }
			#sb	 .participant-img { background-position: -130px	-390px; }
			#tb	 .participant-img { background-position: -260px	-390px; }
			#vds .participant-img { background-position: -390px	-390px; }
			#jfa .participant-img { background-position: 0		-520px; }
			#mag .participant-img { background-position: -130px	-520px; }
			#rs	 .participant-img { background-position: -260px	-520px; }
			#mz	 .participant-img { background-position: -390px	-520px; }
			.participant-img img {
				opacity: 0;
				-webkit-transition: opacity 0.2s ease-out;
				-moz-transition: opacity 0.2s ease-out;
				-o-transition: opacity 0.2s ease-out;
				-ms-transition: opacity 0.2s ease-out;	
				transition: opacity 0.2s ease-out;
			}
			a:hover .participant-img img,
			a:focus .participant-img img { opacity: 1; }
			.participant-img {
				position: relative;
				z-index: 10;
				-webkit-transition: all 0.5s ease-out;
				-moz-transition: all 0.5s ease-out;
				-o-transition: opacity 0.5s ease-out;
				-ms-transition: opacity 0.5s ease-out;	
				transition: all 0.5s ease-out;
			}
			a:hover .participant-img {
				z-index: 20;
				-moz-box-shadow: 0px 0px 100px 100px rgba(255,255,255,0.3);
				-webkit-box-shadow: 0px 0px 100px 100px rgba(255,255,255,0.3);
				box-shadow: 0px 0px 100px 100px rgba(255,255,255,0.3);
			}
		/* download.php */
			#download-details {
				width: 300px;
				float: right;
			}
			#download-details a {
				font-size: 153.9%; /* 20px */
				width: auto;
			}
			#download-details #trailer { background-position: 12px 10px; }
			#download-details #movie { background-position: 13px -53px; }
			#download-payment {
				clear: none;
				width: 600px;
				padding: 0;
			}
		/* download */
			#download-dialog {
				width: 500px;
				margin: 0 auto;
			}
			#download-dialog form {
				display: block;
				left: 0;
			}
			#download-dialog label,
			#download-dialog input,
			#download-dialog select {
				left: 0;
			}
			#download-dialog label {
				float: left;
				width: 180px;
				padding-right: 20px;
				text-align: right;
			}
			#download-dialog input,
			#download-dialog select {
				margin-left: 200px;
			}
			#download-dialog #submit-btn {
				margin-left: 200px;
			}
	/*--- END Page-specific styles ---*/
}

@media screen and (max-width: 999px) {
	#container { padding-left: 20px; padding-right: 20px; }
	header { overflow: visible; margin-bottom: 50px; }
	#logo a { max-width: 100%; }
	#logo a, nav { float: none; margin: 0 auto; text-align: center; }
	nav { clear: both; padding: 0; }
	nav a,
	nav a:active,
	nav a:visited { margin: 0; margin-bottom: 5px; }
	.nav-icon span {
			width: 15px;
			height: 15px;
			padding-left: 20px;
			background: transparent url("../img/fb-mini.png") no-repeat left .3em;
	}
	h1 { text-align: left; }
	/*--- Page-specific styles ---*/
		/* index.php */
			#splash img { max-width: 100%; margin-bottom: 20px; }
			a.splash-btn { margin: 0 auto 5px; }
		/* about.php */
			section { padding-right: 20px; } /* Compensates for image padding */
			section img { max-width: 100%; }
		/* participants.php */
			.participant { clear: both; padding-top: 20px; margin-top: 20px; border-top: 1px solid #eee; }
			.first-participant { padding-top: 0; margin-top: 0; border-top: 0; }
			.participant img { float: left; margin-right: 20px; }
			.participant-txt p { margin-left: 140px; }
		/* download.php */
			#download-details { position: relative; }
			#download-details .buttons {
				position: relative;
				left: 50%;
				display: inline-block;
			}
			#download-details a {
				position: relative;
				left: -50%;
				float: left;
				height: 2.6em;
				padding-top: 1em;
				padding-bottom: 0;
			}
			#download-details #movie {
				float: left;
				height: 3em;
				padding-top: .6em;
				margin-right: 10px;
			}
	/*--- END Page-specific styles ---*/
}

@media screen and (max-width: 500px) {
	/* download.php */
		#download-details a { clear: left; }
}

@media screen and (max-width: 480px) {
	#logo a {
		width: 199px; height: 55px;
		background-image: url("../img/logo-small.png");
	}
	h1 { font-size: 24px; }
	h2 { font-size: 20px; }
	h2 .sub { font-size: 16px; }
	ol, ul,
	#container p { font-size: 14px; }
	nav a,
	nav a:active,
	nav a:visited { display: block; clear: both; margin-bottom: 2px; }
	footer {
		padding-bottom: 5em;
		background-image: url("../img/footer-border-bkg-mobile.png"); 
	}
	footer p { 
		padding-top: 56px;
		background-image: url("../img/footer-border-img-mobile.png");
		background-position: right 3px;
		font-size: 10px;
	}
	/*--- Page-specific styles ---*/
		/* index.php */
			a.splash-btn {
				width: 100%;
				padding: 10px 0;
				text-indent: 3em;
				font-size: 20px;
				font-weight: bold;
			}
			#trailer { background-position: 17px 10px; }
			#movie { background-position: 18px -63px; }
		/* participants.php */
			.participant-txt p { margin-left: 0; }
			.participant img { float: none; margin: 0; }
		/* download pages */
			#download-dialog { padding: 20px; }
	/*--- END Page-specific styles ---*/
}

/**
 * Print styles
 */
 
@media print {
	* { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important;
	-ms-filter: none !important; }
	a, a:visited { color: #000 !important; text-decoration: underline; }
	a[href]:after { content: " (" attr(href) ")"; }
	abbr[title]:after { content: " (" attr(title) ")"; }
	a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
	pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
	thead { display: table-header-group; }
	tr, img { page-break-inside: avoid; }
	@page { margin: 0.5cm; }
	p, h2, h3 { orphans: 3; widows: 3; }
	h2, h3{ page-break-after: avoid; }
	nav { display: none !important; }
	#logo a {
		background: transparent url("../img/logo.png") center center no-repeat !important;
		float: none;
		width: 100%;
	}
	.link-txt { display: none !important; }
	.participant { padding-top: 2em !important; }
	.participant img { float: left; margin-right: 20px; }
	.participant a[href]:after { content: attr(href); margin-left: 140px; }
	.participant a[href^="#"]:after { content: ""; }
}
