/* ==========================================================================
    BANNER STYLES - 160PX X 600PX
   ========================================================================== */


/* All styles for the banner should go in here */


/* General Styles and Resets */

*,
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    color: #000000;
    font-family: Arial, sans-serif;
    font-size: 100%;
    /* Optimal Line Height - Ref - https://www.smashingmagazine.com/2009/08/typographic-design-survey-best-practices-from-the-best-blogs/ */
    line-height: 1.48;
    border: 0;
    margin: 0;
}

a,
img {
    border: 0;
    outline: none;
}


/* Loader GIF Styles */

#loading_dc {
    position: absolute;
}

#loading_image_dc {
    position: relative;
    width: 160px;
    height: 600px;
}

#loading_image_dc img {
    position: absolute;
    top: 50%;
    left: 50%;
}


/* Stage Styles */

.display-ad-size,
#wrapper,
#wrapper #stage {
    display: block;
    margin: 0;
    padding: 0;
    width: 160px;
    height: 600px;
    overflow: hidden;
    background: #ffffff;
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#wrapper {
    position: absolute;
}

#stage {
    /* 1px border needed for many ad platforms */
    width: 158px;
    height: 598px;
    border: 1px solid #725342;
    position: absolute;
}


/* Display Classes */

.display-abs-pos {
    position: absolute;
    display: block;
    opacity: 1;
    filter: alpha(opacity=1);
}

.hide-abs-pos {
    position: absolute;
    display: block;
    opacity: 0;
    filter: alpha(opacity=0);
}

.absolute {
	position: absolute;
	z-index: 0;
}

.center {
	left: 50%;
	transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.cache {
	display: none;
}


/* Exit Classes */

#bgExit {
    background-color: rgba(255, 255, 255, 0);
    cursor: pointer;
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 49;
}

#cta {
	height: 24px;
	width: 119px;
	top: 549px;
	left: 18px;
	background-image: url("cta.jpg");
    z-index: 50;
    visibility: hidden;

    transition: 0.15s linear;
    -o-transition: 0.15s linear;
    -ms-transition: 0.15s linear;
    -moz-transition: 0.15s linear;
    -webkit-transition: 0.15s linear;
}

#cta:hover {
	background-image: url("cta-hover.jpg");
}


/* Animation Frame Classes */

#animation,
#frame1,
#frame2 {
	width: 160px;
    height: 600px;
}

#animation {
	top: -1px;
	left: -1px;
}


/* Animation Element Classes */

#frame1 {
	z-index: 1;
}


/* Place styles for individual banner elements here */


/*#exampleElement {
	position:absolute;
	top:0;
	left:0;
	display:none;
}*/


/* IE Specific Styling */

.lt-ie8 #wrapper #stage {
    /* IE7 specific styling */
}

.lt-ie9 #wrapper #stage {
    /* IE8 specific styling */
}