/* common styles */
img {
  position: absolute; /* position images absolutely by default */
  margin: 0;
  border: none;
}

/* Deal with retina only sprites */
img.retina {
  transform: scale(0.5);
  transform-origin: top left;
}

/* make sure to reset the origin when centering images */
img.retina.center {
  transform-origin: unset;
}

.center {
  display: block;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}

.vcenter {
  display: block;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}

body {
  margin: 0;
  background: #fff;
  padding: 0;
  color: #fff;
}

/* position divs absolutely by default */
div {
  position: absolute;
}

#banner {
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box; /* Firefox, other Gecko */
  box-sizing: border-box; /* Opera/IE 8+ */
  opacity: 0; /* start with a zero opacity for loading */
  background: #fff;
  overflow: hidden;
}

#banner:hover {
  cursor: pointer;
}

#border {
  outline: #000 1px solid;
  outline-offset: -1px;
}

/* end common styles */

/* CSS Variables */
:root {
  --ad-width: 728px;
  --ad-height: 90px;
}

#banner {
  background-color: #5c8727;
  width: var(--ad-width);
  height: var(--ad-height);
}

#border {
  top: 0;
  left: 0;
  width: var(--ad-width);
  height: var(--ad-height);
}

.full-text {
  top: 0;
  left: -3px;
}

.full-image {
  top: 0;
  left: 0;
}
/*
Icon classes can be used entirely standalone. They are named after their original file names.

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
.icon-cta {
  background-image: url(assets/txtsprite.png);
  background-position: 0px 0px;
  width: 1456px;
  height: 180px;
}
.icon-logo {
  background-image: url(assets/txtsprite.png);
  background-position: 0px -181px;
  width: 1456px;
  height: 180px;
}
.icon-txt1a {
  background-image: url(assets/txtsprite.png);
  background-position: 0px -362px;
  width: 1456px;
  height: 180px;
}
.icon-txt1b {
  background-image: url(assets/txtsprite.png);
  background-position: 0px -543px;
  width: 1456px;
  height: 180px;
}
.icon-txt2a {
  background-image: url(assets/txtsprite.png);
  background-position: 0px -724px;
  width: 1456px;
  height: 180px;
}
.icon-txt2b {
  background-image: url(assets/txtsprite.png);
  background-position: 0px -905px;
  width: 1456px;
  height: 180px;
}
