
html, body {  
	font-family: 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: 90px;/*100%;*/
	left: 0px;
	overflow: hidden;
	position: absolute;
	top: 0px;
	width: 728px;/*100%;*/
}
#ad:after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	border: black 1px solid;
	pointer-events: none;
}
a {
	cursor: pointer;
}
#logo {
	height: auto;
	right: 0;
	position: absolute;
	top: 14px;
	width: 170px;
	z-index: 90;
}
#prog-logo{
	width: 130px;
	fill:#2d2d2d;
}

/* --  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: flex;
	align-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
.center > * {
	position: static;
	margin: auto;
}

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


#bg {
	position: absolute;
	top: 0;
}

#msg {
	position: absolute;
	top: 0;
	left: 250px;
}

#baker1 {
	position: absolute;
	top: 0;
	opacity: 0;
}

#baker1.in {
	opacity: 1;
}

#baker1.out {
	opacity: 0;
}

#baker2 {
	position: absolute;
	top: 0;
	opacity: 0;
}

#baker2.in {
	opacity: 1;
}

#baker2.out {
	opacity: 0;
}

#baker3 {
	position: absolute;
	top: 0;
	opacity: 0;
}

#baker3.in {
	opacity: 1;
}

#baker3.out {
	opacity: 0;
}

#baker4 {
	position: absolute;
	top: 0;
	opacity: 0;
}

#baker4.in {
	opacity: 1;
}

#baker4.out {
	opacity: 0;
}

#baker5 {
	position: absolute;
	top: 0;
	opacity: 0;
}

#baker5.in {
	opacity: 1;
}

#baker5.out {
	opacity: 0;
}

#baker6 {
	position: absolute;
	top: 0;
	opacity: 0;
}

#baker6.in {
	opacity: 1;
}

#baker6.out {
	opacity: 0;
}


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

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

#cta {
	bottom: 13px;
	height: 36px;
	right: 0;
	width: 170px;
	z-index: 110;
}
.button {
	width: 134px;
}
#cta-button, #cta-button > * {
	transition: all .3s ease-in-out;
}
.cta-button-bg			{fill:#ff8a39;}
.cta-button-textgroup	{fill:#ffffff;}

/* hover effects for button */
#cta-button:hover {
	 transform: scale(1.05); 
}
#cta-button:hover .cta-button-bg 		{fill: #BA652A;}
#cta-button:hover .cta-button-textgroup	{fill: #ffffff;}

/* 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 */
}
