/*

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;}
	#talentcontent1 .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;	
}

#talentcontent1 {
  margin: 0;
  z-index: 60;
  background: url('../img/BG.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  padding-bottom: 300px;
}


#talentcontent1 .gridcontainer {
  z-index: 80;
  top: 100px;
}


#talentcontent1 .Film {
  position: absolute;	
  right: 0px;
  margin-top: 75px;
  max-width: 300px;
}

#talentcontent1 .fancypiece1 {
  position: absolute;	
  margin-left: 70px;
  margin-top: -7px;
}

#talentcontent1 .TButton {
  margin: auto;
  max-width: 200px; 
  padding-bottom: 20px;
}

/* #talentcontent1 .TButtonimg { 
  -moz-box-shadow: 0px 10px 10px rgba(0, 0, 0,0.3);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, .3);
} */

#talentcontent1 .Headshotimg {
  display: inline-block;
  width:200px;
  max-height:250px;
  height: auto;
}

ul.img-grid {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

ul.img-grid li {
  display: inline-block;
  height: 250px;
  margin: 0 1em 1em 0;
  position: relative;
  width: 200px;
}

ul.img-grid li:hover span.text-content {
  opacity: 1;
}

span.text-content {
  background: rgba(216,188,114,0.8);
  color: white;
  cursor: pointer;
  display: table;
  height: 250px;
  left: 0;
  position: absolute;
  top: 0;
  width: 200px;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}

span.text-content span {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

#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;
  }
}