@font-face {
	font-family: "96 Sans";
	font-display: swap;
	font-weight: 700;
	src: local('☺︎'), url("96Sans-Bold-subset.woff") format("woff");  /*This weight is required for the CTA button copy*/
}
html, body {  
	font-family: "96 Sans", Arial, Helvetica, sans-serif;
	font-size: 16px;
	box-sizing: border-box;
}
div {
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100%;
}
*, *:before, *:after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
#ad {
	display: block;
	height: 250px;/*100%;*/
	left: 0px;
	background-color: #ffffff;
	overflow: hidden;
	position: absolute;
	top: 0px;
	width: 300px;/*100%;*/
}
#ad:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border: black 1px solid;
	pointer-events: none;
}
a {
	cursor: pointer;
}

#logo {
	height: 25px;
	left: 8px;
	position: absolute;
	top: 13px;
	width: 120px;
	transform: scale(.905);
	z-index: 92;
}
#prog-logo{
	fill:#fff;
}

#direct-tag {
	display: none;  /*Note: Change display to 'visible' to enable "DIRECT" tagline*/
}

#commercial-tag {
	display: none;  /*Note: Change display to 'visible' to enable "COMMERCIAL" tagline*/
}

/* --  common animations  --------------------------------------------------------  */
/* global animation timing */
[class*="fade"], [class*="zoom"], [class*="slide"]{
	transition: all .5s ease-in-out;
}
.fadein:not(.out),
body .fadeout.out {
	opacity: 0;
}
.fadein.in,
.fadeout {
	opacity: 1;
}
.zoomin:not(.out),
body .zoomout.out {
	transform: scale(.00000000001);  /*animation bug - doesn't run if "0"*/
}
.zoomin.in,
.zoomout {
	transform: scale(1);
}
.slidein:not(.out),
body .slideout.out {
	transform: translateX(-100%);
}
.slidein.in,
.slideout {
	transform: translateX(0);
}

/* --  utilities  --------------------------------------------------------  */

.center {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-line-pack: space-evenly;
	    align-content: space-evenly;
	    -ms-flex-align: center;
	        align-items: center;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	    -ms-flex-pack: space-evenly;
	        justify-content: space-evenly;
}
.center > * {
	position: static;
	margin: auto;
}

/* --  content start  --------------------------------------------------------  */

#background {
	height: 500px;
	left: -150px;
	overflow: hidden;
	position: absolute;
	top: -125px;
	width: 600px;
	transform: scale(.5);
}

#copy1, #copy2 {
	height: 250px;
	left: 0px;
	overflow: hidden;
	position: absolute;
	top: 0px;
	width: 300px;
}

#copy1 {
	opacity: 1;
}
#copy1.out {
	opacity: 0;
	transition: all 1s ease-out;
}

#copy2 {
	opacity: 0;
}
#copy2.in {
	opacity: 1;
	position: absolute;
	transition: all 1.5s ease-in;
}


/* --  content ends  ---------------------------------------------------------  */

/* --  CTA  ------------------------------------------------------------------  */ 

#cta {
	bottom: 19px;
	height: 28px;
	left: 14px;
	width: 128px;
}

.cta-button { 
	display: block; 
	text-align: center; 
	background:#fff; 
	/* background:#FF8A39;  Orange button fill */
	color: #2D2D2D;
	border-radius: 5px;
	padding: 9px;
	font-size: 13px;
	/* -webkit-transition: all .3s ease-in-out;
			transition: all .3s ease-in-out; */
}

/* hover effects for button */
.cta-button:hover {
	-webkit-transform: scale(1.05);
	        transform: scale(1.05); 
	background: #E2E2E2;
	/* background: #C05711;  Orange button hover state*/
	/* color: #fff; */
} 

/* if you need to define click area */
#bgExitArea { 
	cursor: pointer; 
	left: 0;
	opacity: 0;
	position: absolute;
	z-index: 100;
	/*opacity: .5;*/		/* for testing */
	/*background: red;*/	/* for testing */
}
