/*

Cascading Style Sheet

This one does the slides and the general page styling

*/

/*= REMOVE HORIZONTAL SCROLLBAR AND SET BG COLOUR
--------------------------------------------------------*/

html, body {
    max-width: 100%;
	overflow-x: hidden;
	line-height: 1.5em;

}


/*= REMOVE EXTRANEOUS ITEMS WHEN THE SCREEN IS LESS THAN 900 PIXELS WIDE
--------------------------------------------------------*/
@media screen and (max-width: 1000px) {
	#header .homelogo {display: none;}
	#header .IMDBIcon {display: none;}
	#lnkcontent1 .Film {display: none;}
}

/*= HEADER & NAVIGATION
--------------------------------------------------------*/


#header {
	position: fixed;
	top: 0px;
	width: 100%; 
	height: 60px; 	
	z-index: 100;
	border-bottom: solid thin #000000;
	background: #FFFFFF;
}

#header .homelogo {
	position: absolute;
	max-width: 150px;
	top: 0px; 
	left: 20px; 
	z-index: 90;
}

#header .navigation {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  z-index: 90;
}

#header .IMDBIcon {
  position: absolute;
  top: 15px;
  right: 30px;
  z-index: 90;	
}

#lnkcontent1 {
  margin: 0;
  z-index: 60;
  background: url('../img/BG.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 300px;
}

#lnkcontent1 .content1wrapper {	
  z-index: 80;
  text-align: center;
}

#lnkcontent1 .gridcontainer {
  z-index: 80;
  top: 100px;
}


#lnkcontent1 .Film {
  position: absolute;	
  right: 0px;
  margin-top: 75px;
  max-width: 300px;
}

#lnkcontent1 .lfancypiece1 {
  position: absolute;	
  margin-left: 60px;
  margin-top: -16px;
}

#lnkcontent1 .lfancypiece2 {
  position: absolute;	
  margin-left: 60px;
  margin-top: -16px;
}

#lnkcontent1 .lfancypiece3 {
  position: absolute;	
  margin-left: 60px;
  margin-top: -16px;
}

#lnkcontent1 .lfancypiece4 {
  position: absolute;	
  margin-left: 60px;
  margin-top: -16px;
}

#lnkcontent1 .lfancypiece5 {
  position: absolute;	
  margin-left: 60px;
  margin-top: -16px;
}

#lnkcontent1 .lfancypiece6 {
  position: absolute;	
  margin-left: 60px;
  margin-top: -16px;
}

#footer {  
  margin: 0;
  z-index: 60;
  background: #313131;	
  padding-bottom: 50px;
}

#footer .gridcontainer {
  z-index: 80;
  height: auto;
  padding-top: 50px;
}

#footer .fancypiece4 {
  position: absolute;	
  margin-left: -27px;
  margin-top: -7px;
}


.clear { clear: both; }


/* ==========================================================================
Print styles
========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
	color:#fff;
  }
  
  a:hover {
	  color:#fff;
	  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
  * Don't show links for images, or javascript/internal links
  */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
}

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  
.hide {
  display: none;
}
  
  h2,
  h3 {
    page-break-after: avoid;
  }
}