body {
  min-width: 768px;
}

/*
Anything related to the background and background art goes here.
*/

#oiffy-bg {
  display: block;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  -webkit-transform: translate3d(0, 0, 0);
}
#oiffy-bg-art {
  display: block;
  max-height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0; right: 0; bottom: auto; left: 0;
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
}
  #oiffy-bg-art > img {
    display: block;
    margin: 0 0 0 -510px;
    opacity: 0;
    position: relative;
    left: 50%;
  }
  #oiffy-bg-art h1 {
    display: block;
    margin: 0 0 0 -219px;
    opacity: 0;
    position: absolute;
    top: 41px; left: 50%;
    width: 439px; height: 220px;
  }
    #oiffy-bg-art h1 img {
      display: block;
      position: absolute;
      margin: 0;
      width: 100%; height: 100%;
    }
  #oiffy-bg-art .shade {
    position: absolute;
    top: 50%; right: 0; left: 0; bottom: 0;

    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 75%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(75%,rgba(0,0,0,1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 75%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 75%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 75%); /* IE10+ */
    background: linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 75%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
  }

/*
Anything billing-block related goes here
*/

#billing-block {
  display: block;
  opacity: 0;
  padding: 1.618em 0;
  position: absolute;
  top: auto; left: 50%; bottom: 0; right: auto;
  width: 768px;
  margin-left: -384px;
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
}
  .billing-line {
    font-family: 'UniversLTStd39ThUltraCn';
    font-size: 1.75em;
    letter-spacing: 1px;
    line-height: 1;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: -webkit-transform 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
  }
    .billing-line > * {
      -webkit-transition: opacity 0.5s;
      -moz-transition: opacity 0.5s;
    }
    .billing-line a {
      border: none;
      color: #fff;
      font-size: 1.618em;
      margin: 0 0.025em;
      text-decoration: none;
    }
      .billing-line a span {
        font-size: 0.618em;
      }
      .billing-line a img {
        opacity: 0.8;
      }
      .billing-line .icon {
        margin-left: 3px;
        margin-right: 3px;
      }
  .billing-container {
    position: relative;
    -webkit-transition: -webkit-transform 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
  }

/*
Content is hidden. We pluck out articles as needed, and place them
in amongst the billing block.
*/

#content {
  display: none;
}

/*
Article styles go here.
*/

article {
  display: block;
  margin: 0;
  padding: 2.75em 8px 1em;
  position: absolute;
  top: 0; left: 0;
  width: 752px;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
}
article > * {
  -webkit-transition: opacity 0.5s;
}
  article p {
    margin: 0 0 1.5em 0;
    max-width: 30em;
  }
  article h2, article h3, article h4, article h5 {
    font-size: 1em;
    margin: 0 auto 1em auto;
  }
  article a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #666;
  }
  article img {
    display: block;
    margin: 0;
  }

.article-title {
  font-family: 'UniversLTStd39ThUltraCn';
  font-size: 2.8315em;
  font-weight: normal;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0 0 1px 0;
  padding: 16px;
  text-align: left;
  text-transform: uppercase;
}

.page-title {
  color: rgba(255, 255, 255, 0.618);
  display: block;
  font-size: 3em;
  font-style: italic;
  font-weight: normal;
  line-height: 1;
}

article .close-button {
  top: 0px; right: 0px;
}

article.with-title {
  padding-top: 1em;
}

article.with-title .close-button {
  top: 50px;
}

/*
.image-link
*/
a.image-link {
  display: block;
  position: relative;
  border-bottom: none;
  width: 752px; height: 314px;
  text-align: center;
}
  a.image-link img {
    display: block;
    position: absolute;
    margin: 0;
  }
  a.image-link .shade {
    background: -webkit-linear-gradient(
      rgba(0, 0, 0, 1.0) 0%,
      rgba(0, 0, 0, 0.7) 25%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 1.0) 100%
    );
    background: -moz-linear-gradient(
      rgba(0, 0, 0, 1.0) 0%,
      rgba(0, 0, 0, 0.7) 25%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 1.0) 100%
    );
    background: -ms-linear-gradient(
      rgba(0, 0, 0, 1.0) 0%,
      rgba(0, 0, 0, 0.7) 25%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 1.0) 100%
    );
    background: linear-gradient(
      rgba(0, 0, 0, 1.0) 0%,
      rgba(0, 0, 0, 0.7) 25%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 1.0) 100%
    );
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
  }
  a.image-link .caption {
    position: relative;
    font-family: 'UniversLTStd39ThUltraCn';
    font-size: 5em;
    letter-spacing: 1px;
    border-bottom: 1px solid #999;
    text-transform: uppercase;
    top: 100px;
  }

a.image-link.playable {
  height: 314px;
}
  a.image-link.playable .shade {
    background: -webkit-linear-gradient(
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.9) 100%
    );
    background: -moz-linear-gradient(
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.9) 100%
    );
    background: -ms-linear-gradient(
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.9) 100%
    );
    background: linear-gradient(
      rgba(0, 0, 0, 0.25) 0%,
      rgba(0, 0, 0, 0.9) 100%
    );
  }
  a.image-link.playable .caption {
    top: 100px;
    -webkit-text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
    -moz-text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
    -ms-text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
    -o-text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
    text-shadow: 0px 1px 5px rgba(0, 0, 0, 1);
  }

/*
.poster-reel
*/

.poster-reel {
  position: relative;
}
  .poster-reel a.poster {
    border: none;
    display: block;
    float: left;
    position: relative;
    width: 752px; height: 314px;
  }
    .poster-reel img {
      display: block;
      margin: 0;
      width: 752px; height: 314px;
    }
    .poster-reel a.poster .title {
      font-family: 'UniversLTStd39ThUltraCn';
      font-size: 2.8315em;
      letter-spacing: 1px;
      line-height: 1;
      position: absolute;
      text-transform: uppercase;
      top: 16px; left: 16px;
    }
    .poster-reel a.poster .title.black {
      color: #000;
    }

/*
.content-reel
*/

.content-reel {
  position: relative;
}
  .content-reel .page {
    margin: 0;
    position: relative;
    width: 752px;
  }

/*
.introduced
*/

.introduced #oiffy-bg-art > img {
  opacity: 1;
  -webkit-transition: opacity 1.5s;
}
.introduced #oiffy-bg-art h1 {
  opacity: 0.8;
  -webkit-transition: opacity 1s 1s;
}
.introduced #billing-block {
  opacity: 1;
  -webkit-transition: opacity 1s 1.333s;
}

/*
.framed
*/
.framed {
  background:
    url(/images/frame-top-left.png) no-repeat 0 0,
    url(/images/frame-top-right.png) no-repeat 100% 0,
    url(/images/frame-bottom-right.png) no-repeat 100% 100%,
    url(/images/frame-bottom-left.png) no-repeat 0 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.75em 1em;
  width: 752px; height: 314px;
}
.framed.auto-height {
  height: auto;
  overflow: hidden;
}

/*
.descriptor
*/
.descriptor {
  background:
    url(/images/frame-top-left.png) no-repeat 0 0,
    url(/images/frame-top-right.png) no-repeat 100% 0,
    url(/images/frame-bottom-right.png) no-repeat 100% 100%,
    url(/images/frame-bottom-left.png) no-repeat 0 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  font-size: 1.25em;
  padding: 0.5em 0;
  text-align: center;
  width: 752px; height: 314px;
}
  .descriptor h3 {
    font-size: 1.5em;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 0;
  }
  .descriptor .tilde {
    margin: 0 auto 0.25em;
  }
  .descriptor > * {
    margin-left: auto; margin-right: auto;
  }

/*
.quotes
*/
.quotes {
  text-align: center;
}
  .quotes blockquote {
    padding-left: 1em;
    padding-right: 1em;
  }

/*
.blockquote
*/

blockquote {
  font-size: 1.5em;
  font-style: italic;
  margin: 0 0 1.5em 0;
  max-width: 30em;
}
  blockquote footer {
    color: #666;
    font-size: 0.666em;
    margin-top: 0.333em;
  }

/*
#modal
*/
#modal {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1000;
}
  #modal-container {
    background: #000 url(images/oiffy-test-pattern.png) no-repeat 0 0;
    background-size: 100% 100%;
    padding: 0;
    position: absolute;
    top: 50%; left: 50%;
    -webkit-box-shadow:
      0px 0px 64px rgba(0, 0, 0, 0.5),
      0px 0px 32px rgba(0, 0, 0, 1);
    -moz-box-shadow:
      0px 0px 64px rgba(0, 0, 0, 0.5),
      0px 0px 32px rgba(0, 0, 0, 1);
    -ms-box-shadow:
      0px 0px 64px rgba(0, 0, 0, 0.5),
      0px 0px 32px rgba(0, 0, 0, 1);
    -o-box-shadow:
      0px 0px 64px rgba(0, 0, 0, 0.5),
      0px 0px 32px rgba(0, 0, 0, 1);
    box-shadow:
      0px 0px 64px rgba(0, 0, 0, 0.5),
      0px 0px 32px rgba(0, 0, 0, 1);
  }
  #modal .close-button {
    position: absolute;
    top: -32px; right: -8px; left: auto;
    opacity: 1;
  }

/*
.close-button
*/
.close-button {
  background: transparent;
  border: none;
  cursor: pointer; cursor: hand;
  display: block;
  outline: none;
  padding: 6px;
  position: absolute;
  top: 0px; right: 0px;

  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;

  -webkit-transition: opacity 0.25s;
}
  .close-button canvas {
    display: block;
  }
  .close-button:active canvas {
    opacity: 0.5;
  }

/*
.contact-form
*/
.contact-form {
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform 0.333s;
}
  .contact-form.sent {
    -webkit-transform: translate3d(0, -314px, 0);
  }

  .contact-form .fields {
    width: 720px; height: 314px;
  }
  .contact-form .sending {
    font-style: italic;
  }

  .contact-form .resolve {
    display: block;
    width: 720px; height: 258px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.25em;
    text-align: center;
  }
  .contact-form .resolve h3 {
    font-size: 1.5em;
    font-style: italic;
    font-weight: normal;
    margin-bottom: 0;
  }
  .contact-form .resolve .tilde {
    margin: 0 auto 0.25em;
  }
  .contact-form .resolve > * {
    margin-left: auto; margin-right: auto;
  }

/*
iTunes Button
*/
.itunes-button {
  display: block;
  width: 110px; height: 43px;
  border: none;
}
  .itunes-button img {
    display: block;
    margin: 0;
    opacity: 0.75;
  }
  .itunes-button:hover  img {
    opacity: 1;
  }

figcaption {
  position: absolute;
  top: auto; right: 0; bottom: 0; left: 0;

  background: rgba(0, 0, 0, 0.75);
}