/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */


/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, 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; }
	body {
		line-height: 1; }
	ol, ul {
		list-style: none; }
	blockquote, q {
		quotes: none; }
	blockquote:before, blockquote:after,
	q:before, q:after {
		content: '';
		content: none; }
	table {
		border-collapse: collapse;
		border-spacing: 0; }


/* #Basic Styles
================================================== */
body {
		background: url('../images/bg3.jpg') no-repeat fixed bottom center #000;
		font: 14px/21px   Helvetica, Arial, sans-serif;
		color: #fff;
}


/* #Typography
================================================== */
	h1, h2, h3, h4, h5, h6 {
		color: #fff;
		text-align: left;

		font-weight: normal; }
	h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { font-weight: inherit; }
	h1 { font-size: 46px; line-height: 50px; margin-bottom: 14px;}
	h2 { font-size: 20px;
	line-height: 40px;
	margin-bottom: 10px;
	text-transform: uppercase; }
	h3 { font-size: 28px; line-height: 34px; margin-bottom: 8px; }
	h4 { font-size: 21px; line-height: 30px; margin-bottom: 4px; }
	h5 { font-size: 17px; line-height: 24px; }
	h6 { font-size: 14px; line-height: 21px; }
	.subheader { color: #777; }

	p { margin: 0 0 20px 0; }
	p img { margin: 0; }
	p.lead { font-size: 21px; line-height: 27px; color: #777;  }

	em { font-style: italic; }
	strong { font-weight: bold; color: #fff; }
	small { font-size: 80%; }

/*	Blockquotes  */
	blockquote, blockquote p { font-size: 17px; line-height: 24px; color: #777; font-style: italic; }
	blockquote { margin: 0 0 20px; padding: 9px 20px 0 19px; border-left: 1px solid #ddd; }
	blockquote cite { display: block; font-size: 12px; color: #555; }
	blockquote cite:before { content: "\2014 020"; }
	blockquote cite a, blockquote cite a:visited, blockquote cite a:visited { color: #555; }

	hr { border: solid #ddd; border-width: 1px 0 0; clear: both; margin: 10px 0 30px; height: 0; }


/* #Links
================================================== */
	a, a:visited { color: #fff; text-decoration: none; outline: 0; }
	a:hover, a:focus { color: #fff;text-decoration: underline; }
	p a, p a:visited { line-height: inherit; }


/* #Lists
================================================== */
	ul, ol { margin-bottom: 20px; }
	ul { list-style: none outside; }
	ol { list-style: decimal; }
	ol, ul.square, ul.circle, ul.disc { margin-left: 30px; }
	ul.square { list-style: square outside; }
	ul.circle { list-style: circle outside; }
	ul.disc { list-style: disc outside; }
	ul ul, ul ol,
	ol ol, ol ul { margin: 4px 0 5px 30px; font-size: 90%;  }
	ul ul li, ul ol li,
	ol ol li, ol ul li { margin-bottom: 6px; }
	li { line-height: 18px; margin-bottom: 12px; }
	ul.large li { line-height: 21px; }
	li p { line-height: 21px; }

/* #Images
================================================== */

	img.scale-with-grid {
		max-width: 100%;
		height: auto; }


/* #Buttons
================================================== */

	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		background: #eee; /* Old browsers */
		background: #eee -moz-linear-gradient(top, rgba(255,255,255,.2) 0%, rgba(0,0,0,.2) 100%); /* FF3.6+ */
		background: #eee -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.2)), color-stop(100%,rgba(0,0,0,.2))); /* Chrome,Safari4+ */
		background: #eee -webkit-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Chrome10+,Safari5.1+ */
		background: #eee -o-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* Opera11.10+ */
		background: #eee -ms-linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* IE10+ */
		background: #eee linear-gradient(top, rgba(255,255,255,.2) 0%,rgba(0,0,0,.2) 100%); /* W3C */
	  border: 1px solid #aaa;
	  border-top: 1px solid #ccc;
	  border-left: 1px solid #ccc;
	  -moz-border-radius: 3px;
	  -webkit-border-radius: 3px;
	  border-radius: 3px;
	  color: #444;
	  display: inline-block;
	  font-size: 11px;
	  font-weight: bold;
	  text-decoration: none;
	  text-shadow: 0 1px rgba(255, 255, 255, .75);
	  cursor: pointer;
	  margin-bottom: 20px;
	  line-height: normal;
	  padding: 8px 10px;
	  font-family:   Helvetica, Arial, sans-serif; }

	.button:hover,
	button:hover,
	input[type="submit"]:hover,
	input[type="reset"]:hover,
	input[type="button"]:hover {
		color: #222;
		background: #ddd; /* Old browsers */
		background: #ddd -moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); /* FF3.6+ */
		background: #ddd -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.3)), color-stop(100%,rgba(0,0,0,.3))); /* Chrome,Safari4+ */
		background: #ddd -webkit-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Chrome10+,Safari5.1+ */
		background: #ddd -o-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* Opera11.10+ */
		background: #ddd -ms-linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* IE10+ */
		background: #ddd linear-gradient(top, rgba(255,255,255,.3) 0%,rgba(0,0,0,.3) 100%); /* W3C */
	  border: 1px solid #888;
	  border-top: 1px solid #aaa;
	  border-left: 1px solid #aaa; }

	.button:active,
	button:active,
	input[type="submit"]:active,
	input[type="reset"]:active,
	input[type="button"]:active {
		border: 1px solid #666;
		background: #ccc; /* Old browsers */
		background: #ccc -moz-linear-gradient(top, rgba(255,255,255,.35) 0%, rgba(10,10,10,.4) 100%); /* FF3.6+ */
		background: #ccc -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,.35)), color-stop(100%,rgba(10,10,10,.4))); /* Chrome,Safari4+ */
		background: #ccc -webkit-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Chrome10+,Safari5.1+ */
		background: #ccc -o-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* Opera11.10+ */
		background: #ccc -ms-linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* IE10+ */
		background: #ccc linear-gradient(top, rgba(255,255,255,.35) 0%,rgba(10,10,10,.4) 100%); /* W3C */ }

	.button.full-width,
	button.full-width,
	input[type="submit"].full-width,
	input[type="reset"].full-width,
	input[type="button"].full-width {
		width: 100%;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: center; }

	/* Fix for odd Mozilla border & padding issues */
	button::-moz-focus-inner,
	input::-moz-focus-inner {
    border: 0;
    padding: 0;
	}


/* #Forms
================================================== */

	form {
		margin-bottom: 20px; }
	fieldset {
		margin-bottom: 20px; }
	input[type="text"],
	input[type="password"],
	input[type="email"],
	textarea,
	select {
		border: 1px solid #ccc;
		padding: 6px 4px;
		outline: none;
		-moz-border-radius: 2px;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		font: 13px   Helvetica, Arial, sans-serif;
		color: #777;
		margin: 0;
		width: 210px;
		max-width: 100%;
		display: block;
		margin-bottom: 20px;
		background: #fff; }
	select {
		padding: 0; }
	input[type="text"]:focus,
	input[type="password"]:focus,
	input[type="email"]:focus,
	textarea:focus {
		border: 1px solid #aaa;
 		color: #444;
 		-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
		-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
		box-shadow:  0 0 3px rgba(0,0,0,.2); }
	textarea {
		min-height: 60px; }
	label,
	legend {
		display: block;
		font-weight: bold;
		font-size: 13px;  }
	select {
		width: 220px; }
	input[type="checkbox"] {
		display: inline; }
	label span,
	legend span {
		font-weight: normal;
		font-size: 13px;
		color: #444; }

/* #Misc
================================================== */
	.remove-bottom { margin-bottom: 0 !important; }
	.half-bottom { margin-bottom: 10px !important; }
	.add-bottom { margin-bottom: 20px !important; }


/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/


/* Table of Contents
==================================================
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */



/* #Base 960 Grid
================================================== */

    .container                                  { position: relative; width: 848px; margin: 0 auto; padding: 0; }
   /* #Clearing
================================================== */

    /* Self Clearing Goodness */
    .container:after { content: "020"; display: block; height: 0; clear: both; visibility: hidden; }

    /* Use clearfix class on parent to clear nested columns,
    or wrap each row of columns in a <div class="row"> */
    .clearfix:before,
    .clearfix:after,
    .row:before,
    .row:after {
      content: '020';
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0; }
    .row:after,
    .clearfix:after {
      clear: both; }
    .row,
    .clearfix {
      zoom: 1; }

    /* You can also use a <br class="clear" /> to clear columns */
    .clear {
      clear: both;
      display: block;
      overflow: hidden;
      visibility: hidden;
      width: 0;
      height: 0;
    }
    
/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */

/* #Page Styles
================================================== */

h1 {
	color: #fff;
	font-weight: bold;
	letter-spacing: -4px;
	font-size: 60px;
}

h2 {
	color: #1eff00;
}


#main {
	width: 868px;
	padding-top: 120px;
}


.two_cols_right {
	width: 210px;
	float: right;
}

.two_cols_left {
	width: 590px;
	float: left;
}


.next_button a {
	text-align: center;
	background: url('../images/down-2.png') no-repeat scroll 0 0 transparent;
	display: block;
	width: 35px;
	margin: 0 auto;
	height: 40px;
	text-indent: -999em;
	margin-bottom: 470px;
	opacity: .7;

}

.back_button a {
	text-align: center;
	background: url('../images/up-2.png') no-repeat scroll bottom center transparent;
	display: block;
	width: 35px;
	margin: 0 auto;
	height: 40px;
	text-indent: -999em;
	opacity: .7;
	padding-top: 10px;
}

.back_button a:hover, .next_button a:hover {
	opacity: 1;
}

.scroller {
	position: fixed;
	left: 10px;
}


.scroller div {
	margin-bottom: 10px;
	cursor: pointer;
}

.hidden {
	display: none;
}
/* #Media Queries
================================================== */
	
	.fb_find {
		position: absolute;
		right: 20px!important;     
		top: 33px!important
	}
	
	.fb_find2 {
		position: absolute;    
		right: 62px!important;     
		top: 33px!important
	}
	
	
	@media only screen and (max-width: 1170px) {
		img {
			width: 600px;
			height: auto;
		}
		
		iframe, object {
			width: 600px;
			margin: 0 auto;	
		}
		
		.ce_text {
			width: 600px;
		}
		
		#contact img {
			width: auto!important;
		}
		
		.two_cols_right img {
			width: auto!important;
			clear: left;
		}
		
		
	
	.fb_find {
			right: 270px!important;
			top: 8px!important;
			
		}
	.fb_find2 {
			right: 310px!important;
			top: 8px!important;
			
		}
		
		.fb_find img {
				width: 37px!important;
			}
		
		
		.fb_find2 img {
				width: 37px!important;
			}
	}
	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
				img {
					width: auto!important;
					height: auto!important;
					margin: 0 auto;
				}
				
				#main {
					width: 740px;
					height: 5000px;
				}
				
				body {
					overflow: scroll;
					background: #000;
					color: #fff;
				}
				
				.block {
					overflow: auto;
					float: left;
				}
				
				.container {
					width: 740px;
					height: 4000px;
				}
				
				.ce_text, .ce_gallery {
					color: #fff;
					width: 600px;
					margin: 0 auto;
				}
				
				#f2 input.text, #f4 input.text  {
					width: 600px;
					margin: 0 auto;
				} 
				#f2, #f4 {
					width: 600px;
				}
				#f2 textarea, #f4 textarea {
					width: 450px;
					margin: 0 auto;
				}
				
				iframe, object {
					width: 600px;
					margin: 0 auto;
					height: 330px;
				}
				.two_cols_right {
					display: none;
				}	
				
				#team, .two_cols_left {
					width: 600px;
					margin: 0 auto;
					float: left;
				}
				
				.next_button, .back_button  {
					display: none;
				}
				
				#contact img {
					width: auto!important;
				}
				
				body {
		
				}
				
				.ce_form {
					width: 600px;
					margin: 0 auto;
					overflow: hidden;
				}	
				
				#main, .margin-to {
					padding-top: 70px;
					width: 608px!important;
					margin: 0 auto!important;
				}
				
				.fb_find, .fb_find2 {
					display: none;
					position: relative;
					right: 143px!important;
					top: 11px!important;
				}
				
				.fb_find img {
					display: none;
					width: 90px!important;
				}
	
				#socialshareprivacy2 {
					
				}
				
				.mod_socialshareprivacy {
					margin-top: 0px!important;
					margin-bottom: 10px!important;
					height: 60px!important;
					opacity: .6!important;
					margin-top: 12px!important;
					clear: left!important;
					text-align: center!important;
					overflow: hidden!important;
					margin-left: 230px!important;
				}
				
				
				.nav li {
					margin-right: 10px!important;
				}
				
				.nav li.first {
					margin-left: 10px;
				}
	
	}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
		
		img {
			/*width: 450px!important;
			height: auto!important;
			*/
			width: auto!important;
			height: auto!important;
			margin: 0 auto;
		}
		
		#main {
			width: 100%;
			//height: 5000px;
		}
		
		body {
			
			overflow: scroll;
			background: #000;
			color: #fff;
		}
		
		#main {
			padding-top: 80px;
		}
		
		.block {
			overflow: auto;
		}
		
		.container {
			max-width: 479px;
		}
		
		.ce_text {
			width: 450px!important;
			margin: 0 auto;
		}
		
		#f2 input.text, #f4 input.text  {
			width: 430px;
			margin: 0 auto;
		} 
		#f2, #f4 {
			width: 430px;
		}
		#f2 textarea, #f4 textarea {
			width: 430px;
			margin: 0 auto;
		}
		#trailer {
			width:100%;
		}
		
		iframe, object {
			width: 450px!important;
			margin: 0 auto;	
		}
		.two_cols_right {
			display: none;
		}	
		
		#team, .two_cols_left {
			width: 450px;
			margin: 0 auto;	
			float: none;
		}
		
		.next_button, .back_button  {
			display: none;
		}
		
		#contact img {
			width: auto!important;
		}
		
		.ce_form {
			overflow: hidden;
		}
		
		body {

		}
		
		.ce_form {
			width: 450px;
			margin: 0 auto;
		}
		
		#contact {
			overflow: hidden;
		}
		
		.fb_find, .fb_find2 {
			display: none;
		}
		
		.fb_find img {
			width: 62px!important;
		}
		
		.nav li {
			margin-right: 10px!important;
			font-size: 12px!important;
			float: none!important;
			width: 60%;
			float: left;
			text-align: center;
			border-bottom: 1px solid #ccc;
			padding-bottom: 10px;
		}
		
		.nav li.first {
			margin-left: 0px;
			margin-top: 20px;
		
		}
		
		.nav li.last {
			padding-bottom: 10px;
		}
		
		
		.screening-bar {
		position: absolute;
		margin-top: 295px!important;
		width: 100%;
		text-align: center;
		background: rgba(0, 0, 0, .20);
		padding-top: 5px;
		padding-bottom: 5px;
		color: #000;

		}
		.margin-to {
		padding-top: 290px!important;
		}
		
		.margin-to img {
			width: 100%!important;
		}
		#main  {
			overflow: hidden!important;
		}
		
		/*.dark_bg h2 {
			padding-top: 300px!important;
		}*/
	}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/


#f2 label, #f4 label {
	display: none;
}

#f2 input.text, #f2 input.captcha, #f4 input.text, #f4 input.captcha  {
	color: #fff;
	background: rgba(0,0,0, 0.4);
	border: 1px solid #777;
	width: 98%;
	float: left;
}

#f2 textarea, #f4 textarea {
	color: #fff;
	background: rgba(0,0,0, 0.4);
	border: 1px solid #777;
	width: 98%;
	float: left;
	height: 130px;
}


#f2 .submit_container, #f4 .submit_container {
	float: right;
	margin-right: 8px;
}

#f2 input.submit, #f4 input.submit {
	color: #fff;
	background:  repeat-x scroll 0 0 black;
	border: 1px solid #777;
	width: 200px;
	float: left;
	text-shadow: none;
	color:#1EFF00;
}

#f2, #f4 {
	padding-bottom: 350px;
}


.imprint {
	padding-bottom: 350px;
}

.black {
	background: #000;
}

@namespace url(http://www.w3.org/1999/xhtml);
*:-moz-placeholder:focus {
  color: transparent !important;
}
*[autofocus]:-moz-placeholder:focus { 
  color: #white !important;
} 

.ie #f2 label {
	display: block!important;
	width: 100%;
}

body {
	background: url('../images/bg3.jpg') no-repeat fixed center center #000!important;
	background-size: 130%!important;
	
}


@media only screen and (min-width: 1300px) {
	body.temp {
		//background-size: 100%!important;
	}
	
	
	
	

}

@media only screen and (min-width: 1700px) {
	body {
		background-size: 110%!important;
	}
	
	

}

@media only screen and (max-width: 479px) { 
	body {
		background: #000!important;
	}
}

@media only screen and (min-width: 1024px and max-width: 1500px) { 
	img {
		width: 770px!important;
		height: auto;
		
	}
}

body {
	transition: background-size 1s ease-in;
	-moz-transition: background-size 1s ease-in;
	-ms-transition: background-size 1s ease-in;
	-o-transition: background-size 1s ease-in;
	-webkit-transition: background-size 1s ease-in;
}
.fb-like {
	margin: 0 auto;
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}
#fb-root {
	text-align: center;
}

.mod_socialshareprivacy {
	margin-top: 0px;
	margin-bottom: 0px;
	width: 120px;
	margin: 0 auto;
	height: 60px;
	opacity: .6;
	margin-top: -10px;
	overflow: hidden;

}

.mod_socialshareprivacy:hover {
	opacity: 1;
}

.settings_info_menu {
	display: none;
}

.help_info.display {
	display: none;
}

.fb_find {
	position: absolute;
	right: 30px;
	top: 11px;
	
}

.fb_find2 {
	position: absolute;
	right: 80px;
	top: 11px;
	
}


.mod_socialshareprivacy img {
	width: auto!important;
}


.member img {
	width: auto!important;
}

/* Style sheet mo */


body {
	background: url('../images/bg_6.jpg') no-repeat fixed center -100px #000!important;
	background-size: 100%!important;
}

.nav {	
	width: 800px;
	margin: 0 auto;
	background: #000;
}

.nav li {
	float: left;
	margin-right: 40px;
	text-transform: uppercase;
	font-size: 12px;
}

.nav li.last {
	margin-right: 0px!important;
}


#header {
	float: left;
	height: 55px;
	width: 100%;
	background: #000;
	position: fixed;
	z-index: 100;
}

.fb_find, .fb_find2 {
	display: none;
}

#header a:hover, #header a.active  {
	color: #1eff00;
	text-decoration: none;
}

.mod_customnav {
	position: fixed;
	bottom: 20px;
	right: 10px;
}

.mod_customnav li, .mod_customnav a, .mod_customnav span {
	float: left;
	color: #CCC;
	font-size: 12px;
	text-decoration: none;
	text-transform: uppercase;
}


.mod_customnav li {
	margin-left: 5px;
	padding-left: 5px;
	border-left: 1px solid #ccc;
}

.mod_customnav li.first {
	border: 0 none!important;
}  

.screening-bar {
	position: absolute;
	margin-top: 55px;
	width: 100%;
	text-align: center;
	background: rgba(0, 0, 0, .20);
	padding-top: 5px;
	padding-bottom: 5px;
	color: #000!important;
}
.screening-bar .ce_text p {
	color: #000!important;
}

.dark_bg {

	padding-top: 10px;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
}

#main .mod_article {
background: rgba(0,0,0,0.5);
margin-bottom: 100px!important;
float: left;
width: 100%;
}

.margin-to {
	padding-top: 100px;
}

.dark_bg h2, h2 {
	padding-top: 35px;
	border-bottom: 1px solid #ccc;
	color: #fff!important;
	margin-left: 20px;
	margin-right: 20px;
}

#imprint h2 {
	margin-left: 20px;
	margin-right: 20px;
}

#imprint {
	padding-bottom: 40px;
}

.black #main { 
	padding-top: 0px!important;
}


.ce_text p, .ce_text div, .ce_form {
	padding-left: 20px;
	padding-right: 20px;
}

.mod_customnav .black {
	background: inherit!important;
}

.ce_text {
	font-size: 15px;
}

.two_cols_left {
	padding-left: 0!important;
	padding-right: 0!important;
}

.two_cols_right {
	width: 210px;
	float: right;
	padding-left: 0px!important;
}

img[src="tl_files/images/h1_h2_2.png"] {
	//display: none!important;
}

.margin-to {
	padding-top: 0px;
}


.margin-to p {
	padding: 0 0 0 0px!important;
	margin: 10px 0 0 0!important;
}

#trailer {
	margin-top: 0px;
}

#header .nav {
	margin-top: -7px;
}

#header {
	float: left;
	height: 44px;
	width: 100%;
	background: #000;
	position: fixed;
	z-index: 100;
}

.screening-bar p {
	padding-bottom: 0px!important;
	margin-bottom: 0px!important;
}

table tr {
	display: block;
}

table tr td {
	display: block;
	width: 26%!important;
	padding-left: 20px;
	float: left;
}

table tr td img {
	width: auto!important;
}

.ce_text table {
	
}

.ce_text table tr {
	display: table-row;
}

.ce_text table tr td {
	display: table-cell;
}

#team table tr td {
	width: 44%!important;
}

/*.screening-bar { 
  display: none; 
}*/