/* = 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;
}
/* /Browser Reset */




/* = General
-----------------------------------------------------------------------------*/

.panel, .docSize {
	width: 300px;
}
.panel {
	height: 250px;
}

.panel {
	overflow: hidden;
}
#banner,
#banner div,
#banner img,
#banner object,
#banner canvas {
	position: absolute;
}
#banner {
	/*background-color: black;*/
}
img, video, svg, object {
	display: block; /* now it doesn't adhere to line-height anymore */
}

.frame {
	box-sizing: border-box;
	border: 1px solid #000;
	pointer-events: none; /* IE11+ */
	cursor: default;
}

.gen_loader {
	top: 50%;
	left: 50%;
	margin: -16px 0 0 -16px;
	display: none;
}

.shadow1 {
	box-shadow: 0px 2px 3px 1px rgba(0, 0, 0, .3); /*x,y,blur,strength,(color,alpha)*/
}

.displayNone {
	display: none;
}
.opacity0 {
	opacity: 0;
}

canvas {
	pointer-events: none; /* IE11+ */
}

.end_texture {
	display: none;
}


.gradient {
	/*for FPO*/
	/*background: linear-gradient(to right, 
		rgba(0,0,0,0) 0%, 
		rgba(0,0,0,1) 50%);*/
	
	/* horizontal */
	/*background: linear-gradient(to right, 
		rgba(255,255,255,0) 0%, 
		rgba(255,255,255,1) 50%);*/
	
	/* radial */
	background: radial-gradient(ellipse at center,
		rgba(255,255,255,1) 0%,
		rgba(255,255,255,0) 66%);

	/* diagonal */
	/*background: linear-gradient(145deg, 
		rgba(255,236,132,0) 33%,
		rgba(255,236,132,1) 50%,
		rgba(255,236,132,0) 66%);*/
}



/* ----- General Navigation ----- */

.mainClickTag {
	cursor: pointer;
	cursor: hand;
	background-color: black; 
	opacity: 0; /*IE 10 make clickable fix*/
}
.ctaBtn {
	/* box-shadow: 0px 0px 20px 0px #FFFFFF;*/
	cursor: pointer;
	cursor: hand;
	
	top: 198px;
	left: 173px;
}
.ctaBtnSize {
	/*border-radius: 2px;*/  /*for boxShadow/glow*/
	width: 118px;
	height: 23px;
}
.ctaBtnOver {
	opacity: 0;
}

.ctaRef {
	overflow: hidden;
}	
.ctaRef .gradient {
	position: absolute;
	top: 0px;
	left: 0px;
	background: linear-gradient(145deg, 
		rgba(255,224,94,0) 33%,
		rgba(255,224,94,1) 50%,
		rgba(255,224,94,0) 66%);
	display: none;
}

/* remove standard iOS video play button */
video::-webkit-media-controls-start-playback-button {
	display: none !important;
	-webkit-appearance: none;
}
/* video play icon (for iOS <=9 only) */
.gen_overlayPlayBtn {
	position: absolute;
	width: 70px;
	height: 70px;
	background: rgba(255,255,255,0.75);
	border-radius: 100%;
	top: 50%;
	left: 50%;
	margin: -35px 0 0 -35px;
	display: none;
}
.gen_overlayPlayIcon {
	position: relative;
	top: 17px;
	left: 35%;
	width: 0;
	height: 0;
	border-top: 18px solid transparent;
	border-bottom: 18px solid transparent;
	border-left: 28px solid rgba(111, 111, 111, 0.8);
}


/* VID Panel
-----------------------------------------------------------------------------*/

#vid_panel {
	background-color: #fff;
	visibility: hidden; /* Firefox fix: "display:none" not working for svg/tweenmax */
}

#vid_cta1 .ctaBtnSize, #vid_cta1.ctaBtnSize {
	width: 167px;
	height: 34px;
}
#vid_cta1 {
	top: 174px;
	left: 523px;
}



/* VIDEO player
-----------------------------*/

#vid_vidCont {
	background-color: #000;
	/*border-bottom: 1px solid #2d2d2d;*/
}
#vid_vidCont, #vid_soundBtn {
	top: 0px;
	left: 0px;
}
#vid_vidNav {
	top: 4px;
	left: 3px;
}
#vid_vidNav, .videoObj {
	display: none;
}
#vid_pauseBtn,
#vid_playBtn,
#vid_audioOffBtn,
#vid_audioOnBtn,
#vid_soundBtn {
	width: 25px;
	height: 25px;
	background: url("vid_buttons.svg") no-repeat;
	cursor: pointer;
	cursor: hand;
	transform: scale(1.1); /* also adjust play/pauseBtn "left" */
	transform-origin: top left;
}
#vid_audioOnBtn {
	background-position: 4px 3px;
}
#vid_audioOffBtn {
	background-position: 4px -25px;
}

#vid_playBtn, #vid_pauseBtn {
	left: calc(23px * 1.1); ;
}
#vid_playBtn {
	background-position: -23px -25px;
	visibility: hidden;
}
#vid_pauseBtn {
	background-position: -23px 3px;
}

#vid_soundBtn {
	width: 300px;
	height: 26px;
	/*background-size: 150px;*/
	background-position: 75px -53px;
	background-color: rgba(0,0,0,0.4);
	display: none;
}
#vid_audioOnBtnXl {
	top: 0;
	width: 100%;
	height: 100%;
	display: none;
}
#vid_fpo {
	font-family: arial;
	font-size: 15px;
	color: white;
	opacity: .4;
	left: 10px;
	bottom: 10px;
	/*display: none;*/
}

/*#vid_progressBar {
	top: 210px;
	width: 0px;
	height: 3px;
	background-image: url(vid_bar.jpg);
}*/

#vid_replayBtn {
	top: -6px;
	left: -6px;
	width: 40px;
	height: 40px;
	background: url("vid_buttons.svg") no-repeat;
	cursor: pointer;
	cursor: hand;
	background-position: 12px -74px;
	transform: scale(1.2);
}


/* /VIDEO Panel */



/* END Panel
-----------------------------------------------------------------------------*/

#end_panel {
	background-color: #fff;
	visibility: hidden; /* Firefox fix: "display:none" not working for svg/tweenmax */
}

#end_flash {
	width: 125px;
	height: 125px;
	top: 37px;
	left: 92px;
}
#end_flash.gradient {
	/* radial */
	background: radial-gradient(ellipse at center,
		rgba(255,255,255,0) 10%,
		rgba(255,255,255,.9) 15%,
		rgba(117,178,255,.4) 40%,
		rgba(117,178,255,.5) 50%,
		rgba(255,255,255,0) 66%);
}



/* flare*/

#end_flare {top: -11px; left: 61px;}
#end_flare2 {top: 90px; left: 12px;}
#end_flare3 {top: -18px; left: 207px;}
#end_flare4 {top: 39px; left: 242px;}

.flare, .flareGrad1 {
	width: 60px;
	height: 60px;
}
.flareGrad1 {
	/* radial */
	background: radial-gradient(
		rgba(255,255,255,.9) 0%,
		rgba(255,255,255,.4) 10%,
		rgba(255,255,255,.25) 15%,
		rgba(255,255,255,0) 66%);
}
.flareGrad2, .flareGrad3, .flareGrad4 {
	/* radial */
	background: radial-gradient(
		rgba(255,255,255,.2) 0%,
		rgba(255,255,255,.1) 50%,
		rgba(255,255,255,0) 80%);
	border-radius: 50%;
	width: 60%;
	height: 5%;
	margin-top: -5%;
	margin-left: -30%;
	top: 50%;
	left: 50%;
	transform: rotate(60deg);
}
.flareGrad3 {
	transform: rotate(120deg);
}
.flareGrad4 {
	transform: rotate(180deg);
}



/* /END Panel */


/* END2 Panel
-----------------------------------------------------------------------------*/

#end2_panel {
	background-color: #fff;
	visibility: hidden; /* Firefox fix: "display:none" not working for svg/tweenmax */
}


/* /END Panel */
