/* = Browser Reset
-----------------------------------------------------------------------------*/
/* http://meyerweb.com/eric/tools/css/reset/ */

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;
}

/* HTML5 display-role reset for older browsers */
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;
}


/* = General
-----------------------------------------------------------------------------*/
#outer {
	width: 1125px;
	height: 750px;
	overflow: hidden;
}

#banner{
	width: 970px;
	display: block;
	background: #000;
}
#banner div,
#banner img {
	position: absolute;
}

img, video, svg {
	display: block; /* now it doesn't adhere to line-height anymore */
}

#ad {
    position: absolute;
    display: none;
    overflow: hidden;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all .5s ease-out;
    -webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		box-sizing: border-box;
		background: #000;
}

#ad.collapsed {
    width: 970px;
    height: 66px;
}

#ad.expanded {
    width: 970px;
    height: 418px;
}

/* ----- General Navigation ----- */
.mainClickTag {
	cursor: pointer;
	background-color: black; opacity: 0; /*IE 10 make clickable fix*/
}
.ctaBtn, .closeBtn {
	cursor: pointer;
}

#autoCloseBtn, #userCloseBtn {
    top: 2px;
  	right:4px;
    width: 18px;
    height: 18px;
		padding: 6px 6px 6px 6px;
		opacity: .8;
		pointer-events: all;
  	cursor: pointer;
		transition: opacity .6s ease;
}

#autoCloseBtn:hover, #userCloseBtn:hover {
	opacity: 1;
}

#exp_autoClickTag, #exp_userClickTag {
	top: 0px;
	left: 0px;
  height: 100%;
	width: 100%;
  pointer-events: all;
  cursor: pointer;
}


:focus {outline:none;}
::-moz-focus-inner {border:0;}
::-moz-focus-inner {border:0;}

.fadeOut {opacity: 0 !important;}
.fadeIn {opacity: 1!important;}


/* TEMO DELETE */
#wrapper {
	-ms-transform-origin: 0% 0%; /* IE 9 */
	-webkit-transform-origin: 0% 0%; /* Chrome, Safari, Opera */
	transform-origin: 0% 0%;
	-webkit-transform:scale(0.75);
	-moz-transform:scale(0.75);
	-ms-transform:scale(0.75);
	transform:scale(0.75);
	position: relative;
	width: 1500px;
	height: 1000px;
	background: url("ignSkin.jpg");
	position: relative;
}

#banner {
	position: absolute;
	left: 265px;
	top: 132px;
}

#ignContent {
	position: absolute;
	top: 204px;
	left: 255px;
	transition: all .5s ease-out;
}

#ignContent.exp {
	top: 556px;
}
/* end temp */


/*------------------------------------------------
   COLLAPSED PANEL
-------------------------------------------------*/
#col_panel {
	width: 970px;
	height: 66px;
	display: none;
}

#col_background {
  top: 0px;
  left: 0px;
}

#col_logo {
	top: 6px;
  left: 287px;
	opacity: 0;
	transition: all 1s ease;
}
#col_logo.fadeIn {
	opacity: 1;
}


/* CTA BUTTON */
#col_ctaBtn{
	top: 37px;
  right: 30px;
  width: 174px;
  height: 43px;
	opacity: 0;
  pointer-events: all;
	cursor: pointer;
	transition: all .7s ease;
}
#col_ctaBtn.fadeIn{
	top: 12px;
	opacity: 1;
}

#col_ctaTxt {
	position: absolute;
	top: 12px;
	left: 42px;
	pointer-events: none;
}

#col_ctaGlow {
	position: absolute;
  top: -9.5px;
	left: -9.5px;
	pointer-events: none;
}

#col_ctaHover {
	position: absolute;
  top: -9.5px;
	left: -9.5px;
	opacity: 0;
	transition: all .5s ease;
	pointer-events: none;
}
#col_ctaHover.fadeIn{
	opacity: 1;
}


#col_ctaBtnBorder {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 1px solid #FFF;
	box-sizing: border-box;
	pointer-events: none;
}


/* EXPAND BUTTON */
#expandBtn{
	top: 37px;
  left: 30px;
	width: 174px;
  height: 43px;
	opacity: 0;
  pointer-events: all;
	cursor: pointer;
	transition: all .7s ease;
}
#expandBtn.fadeIn{
	top: 12px;
	opacity: 1;
}

#expTxt {
	position: absolute;
	top: 12px;
	left: 50px;
	transition: all .35s ease;
	pointer-events: none;
}

#expGlow {
	position: absolute;
	top: -9.5px;
	left: -9.5px;
	pointer-events: none;
}

#expHover {
	position: absolute;
  top: -9.5px;
	left: -9.5px;
	opacity: 0;
	transition: all .5s ease;
	pointer-events: none;
}
#expHover.fadeIn{
	opacity: 1;
}

#expandBtnBorder {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
  height: 100%;
	border: 1px solid #FFF;
	box-sizing: border-box;
	pointer-events: none;
}



/*------------------------------------------------
   AUTO EXPANDED PANEL
-------------------------------------------------*/
#exp_autoPanel {
	width: 970px;
	height: 418px;
	display: none;
}

#autoVideo {
	width: 970px;
	height: 418px;
}


/*------------------------------------------------
   USER EXPANDED PANEL
-------------------------------------------------*/
#exp_userPanel {
	width: 970px;
	height: 418px;
	display: none;
}

#introVideo{
  top: 0;
  left: 0;
  width: 970px;
  height: 418px;
}


/* CTA BUTTON */
#exp_ctaBtn{
	top: 390px;
  right: 300px;
  width: 174px;
  height: 43px;
	opacity: 0;
  background: rgba(0, 0, 0, .5);
  pointer-events: all;
	cursor: pointer;
	transition: all 1s ease;
}
#exp_ctaBtn.fadeIn{
	top: 355px;
	opacity: 1;
}

#ctaTxt {
	position: absolute;
	top: 12px;
	left: 42px;
	pointer-events: none;
}

#ctaGlow {
	position: absolute;
  top: -9.5px;
	left: -9.5px;
  opacity:.69;
	pointer-events: none;
}
#ctaGlow.fadeIn{
	opacity: 1;
}

#ctaHover {
	position: absolute;
  top: -9.5px;
	left: -9.5px;
	opacity: 0;
	transition: all .6s ease;
	pointer-events: none;
}
#ctaHover.fadeIn{
	opacity: 1;
}


#ctaBtnBorder {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border: 1px solid #FFF;
	box-sizing: border-box;
	pointer-events: none;
}


/* WATCH TRAILER BUTTON */
#watchTrailerBtn{
	top: 390px;
  left: 300px;
	width: 174px;
  height: 43px;
	opacity: 0;
  background: rgba(0, 0, 0, .5);
  pointer-events: all;
	cursor: pointer;
	transition: all 1s ease;
}
#watchTrailerBtn.fadeIn{
	top: 355px;
	opacity: 1;
}

#watchTxt {
	position: absolute;
	top: 12px;
	left: 12.5px;
	pointer-events: none;
}

#watchGlow {
	position: absolute;
	top: -9.5px;
	left: -9.5px;
  opacity:.69;
	pointer-events: none;
}
#watchGlow.fadeIn{
	opacity: 1;
}

#watchHover {
	position: absolute;
  top: -9.5px;
	left: -9.5px;
	opacity: 0;
	transition: all .6s ease;
	pointer-events: none;
}
#watchHover.fadeIn{
	opacity: 1;
}

#watchBtnBorder {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
  height: 100%;
	border: 1px solid #FFF;
	box-sizing: border-box;
	pointer-events: none;
}




#vidContainer {
  position: absolute;
  top: 0;
  left:0;
  width: 970px;
  height: 418px;
  display: none;
  opacity: 0;
  pointer-events: none;
  cursor: default;
  transition: all 1.5s ease;
}

#vidContainer.videoIn {
  opacity: 1 !important;
}

#vidCloseBtn {
	position: absolute;
	top: 22px;
	right: 150px;
	padding: 5px 5px 5px 5px;
  opacity: .8;
	transition: all .5s ease;
  pointer-events: all;
	cursor: pointer;
  z-index: 1002;
}

#vidCloseBtn:hover {
	opacity: 1;
}

#lightbox {
  position: absolute;
  top: 0;
  left:0;
  width: 970px;
  height: 418px;
  background: #000;
  opacity: .69 ;
  pointer-events: none;
  cursor: default;
}


#youtubeVideo {
	position: absolute;
	top: 19px;
	left: 146px;
	width: 670px;
	height: 374px;
	display: block;
	background: #000;
  border: 1px solid #ffffdd;
  cursor: pointer;
  z-index: 1001;
  pointer-events: all;
  display: none;
}

gwd-youtube{display:block; width: 670px; height: 374px;}
gwd-youtube>.youtube-overlay{left:0;position:absolute;top:0}
gwd-youtube>.youtube-play-button{background-color:rgba(255,255,255,.3);background-position:center center;background-repeat:no-repeat; width: 670px; height: 374px;}
gwd-youtube>.youtube-play-button>.youtube-thumbnail{left:0;opacity:0;padding:0;position:absolute;top:0; width: 670px; height: 374px;}
