@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* =Presentational Styles
----------------------------------------------------------------------------- */
/* =Typography
----------------------------------------------------------------------------- */
body {
  font-family: "jaf-facitweb", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

/* =Images
----------------------------------------------------------------------------- */
.btn {
  border: 2px solid #3A3A36;
  padding: 0px 7px;
  text-transform: uppercase;
  color: #3A3A36;
  font-size: 11px;
  font-weight: 700;
  -moz-transition-property: background-color;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  background: none;
}
.btn:hover {
  background-color: #3A3A36;
  color: #f3f4f4;
}

.prev, .next {
  position: fixed;
  top: 45%;
  padding: 10px 15px;
  line-height: 37px;
  height: 56px;
  vertical-align: middle;
  -moz-transition-property: left, right;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  z-index: 5;
  background: rgba(243, 244, 244, 0.7);
  border-width: 1px;
  -webkit-transform: translate(0, 0);
}
.prev:hover, .next:hover {
  border-color: #a1a19b;
  background-color: rgba(243, 244, 244, 0.7);
  color: #3A3A36;
}
.prev:hover img, .next:hover img {
  opacity: .4;
}

.prev {
  left: -75px;
}
.prev img {
  padding: 0 0 0 15px;
}
.prev:hover {
  left: -2px;
}

.next {
  right: -47px;
}
.next img {
  padding: 0 15px 0 0px;
}
.next:hover {
  right: -2px;
}

.controls .btn {
  margin-right: 5px;
}
.controls .btn.last {
  margin-right: 0;
}

.xray {
  height: 26px;
}

.refresh {
  background: url(../images/icon-refresh.png) no-repeat 50% 3px;
  width: 30px;
  text-indent: -9999px;
  height: 26px;
}
.refresh:hover {
  background-position: 50% -26px;
}

.btn-submit {
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  outline: 0;
}

/* =Layout / Assets
----------------------------------------------------------------------------- */
.su-lion {
  width: 80px;
  margin: 50px;
}

/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(58, 58, 54, 0.98);
  text-align: center;
  z-index: 10;
  overflow: hidden;
}

/* Overlay closing cross */
.overlay .overlay-close {
  width: 80px;
  height: 80px;
  position: absolute;
  right: 50px;
  top: 50px;
  overflow: hidden;
  border: none;
  color: #fff;
  outline: none;
  z-index: 100;
  opacity: .7;
}
.overlay .overlay-close:hover {
  opacity: 1;
}

/* Menu style */
/* Effects */
.site-wrapper {
  -webkit-transition: -webkit-transform 0.5s;
  -moz-transition: -moz-transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
  border: 0;
  height: 100%;
}

.site-wrapper.overlay-open {
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  overflow: hidden;
}

/* Effects */
.overlay-contentscale {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  -moz-transition: -moz-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

.overlay-contentscale.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  -moz-transition: -moz-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

@media screen and (max-height: 30.5em) {
  .overlay nav {
    height: 70%;
    font-size: 34px;
  }

  .overlay ul li {
    min-height: 34px;
  }
}
/* =Basic Grid
----------------------------------------------------------------------------- */
.grid-100, .full {
  width: 100%;
}

.grid-95 {
  width: 95%;
}

.grid-90 {
  width: 90%;
}

.grid-85 {
  width: 85%;
}

.grid-80 {
  width: 80%;
}

.grid-75 {
  width: 75%;
}

.grid-70 {
  width: 70%;
}

.grid-65 {
  width: 65%;
}

.grid-60 {
  width: 60%;
}

.grid-55 {
  width: 55%;
}

.grid-50, .half {
  width: 50%;
}

.grid-45 {
  width: 45%;
}

.grid-40 {
  width: 40%;
}

.grid-35 {
  width: 35%;
}

.grid-30 {
  width: 30%;
}

.grid-33, .third {
  width: 33.33%;
}

.grid-25 {
  width: 25%;
}

.grid-20 {
  width: 20%;
}

.grid-15 {
  width: 15%;
}

.grid-10 {
  width: 10%;
}

.grid-5 {
  width: 5%;
}

.grid-0 {
  display: none;
}

/* =Media Queries
----------------------------------------------------------------------------- */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .container {
    width: 100%;
  }

  [class*='grid-'] {
    width: 100%;
  }
}
html, body {
  height: 100%;
}

body {
  margin: 0;
  background-color: #f3f4f4;
  font-size: 14px;
  line-height: 22px;
  color: #4d4d4d;
}

html {
  -webkit-font-smoothing: antialiased;
}

b, strong {
  color: #3A3A36;
  font-weight: bold;
}

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

.section {
  text-align: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section.main {
  margin-bottom: 45px;
}

.container {
  width: 80%;
  max-width: 1024px;
  text-align: left;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}
.container.w1080 {
  width: 1080px;
  max-width: 1080px;
}
.container.w620 {
  width: 620px;
  max-width: 620px;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.center {
  text-align: center;
}

.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.cf {
  *zoom: 1;
}

.clear-pad {
  padding: 0 !important;
}

.clear-margin {
  margin: 0 !important;
}

hr {
  height: 1px;
  border: 0;
  background: #cccccc;
  margin: 30px 0;
}

a {
  text-decoration: none;
  color: #C30F31;
  -moz-transition-property: color;
  -webkit-transition-property: color;
  transition-property: color;
  -moz-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
a:hover {
  color: #7c0a1f;
}

/* =Masthead
----------------------------------------------------------------------------- */
.masthead {
  background: #3A3A36;
  height: 60px;
  color: #fff;
  text-transform: uppercase;
  line-height: 60px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 0 0 40px;
}
.masthead .sub-title {
  font-weight: 300;
  color: #999999;
}
.masthead a {
  color: #fff;
}
.masthead .star {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 5px;
}

.client {
  color: #b3b3b3;
  font-size: 12px;
  overflow: hidden;
  max-width: 80%;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.hamburger {
  margin: 0 0 0 40px;
  opacity: .7;
}
.hamburger:hover {
  opacity: 1;
}

/* =Content
----------------------------------------------------------------------------- */
h1 {
  color: #3A3A36;
  font-size: 107px;
  font-weight: 700;
  line-height: 115px;
  margin-bottom: 25px;
}

h2 {
  color: #fff;
  font-weight: 400;
  font-size: 60px;
  text-transform: uppercase;
  line-height: 75px;
  letter-spacing: 1px;
}

.intro {
  width: 700px;
  margin: 60px auto 0;
  font-size: 16px;
  line-height: 25px;
}
.intro.admin h1 {
  font-size: 52px;
  font-weight: normal;
  line-height: normal;
}
.intro.admin h2 {
  margin-left: 3px;
  color: #666666;
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  letter-spacing: normal;
  text-transform: none;
}
.intro.admin ul {
  margin-top: 20px;
  padding-left: 30px;
  list-style-type: disc;
}
.intro.admin ul ul {
  margin-top: 5px;
  margin-bottom: 10px;
}
.intro.newBusiness .get-started {
  display: inline-block;
  margin: 0 auto 50px;
}
.intro.newBusiness .logo, .intro.newBusiness .contact {
  border-top: 2px solid #cccccc;
}
.intro.newBusiness .logo {
  border-right: 2px solid #cccccc;
  padding: 25px 40px 0 0;
}
.intro.newBusiness .contact {
  padding: 40px 0 0 40px;
  font-size: 14px;
  line-height: 23px;
}
.intro.newBusiness .contact a {
  color: inherit;
}
.intro p {
  margin: 0 0 15px 0;
}

.rule {
  margin: 20px 0;
}

/* =Nav
----------------------------------------------------------------------------- */
.nav-content {
  width: 500px;
  height: 317px;
  margin: 0 auto 40px;
  overflow: hidden;
  position: relative;
}

.nav {
  text-align: left;
  float: left;
  width: 500px;
  height: 317px;
  overflow: hidden;
  overflow-y: scroll;
}
.nav li {
  border-bottom: 1px solid #666666;
  background: url(../images/nav-arrow.png) no-repeat 10px 50%;
  padding: 0 0 0 30px;
}
.nav li a {
  color: #fff;
  font-size: 20px;
  padding: 15px 0;
  display: inline-block;
}
.nav li a:hover {
  color: #b3b3b3;
}
.nav li span {
  color: #b3b3b3;
  font-size: 16px;
}
.nav li.back {
  padding: 0;
  background: none;
}
.nav li.back a {
  color: #b3b3b3;
  padding: 5px 10px;
  margin: 10px 0;
  font-size: 11px;
  text-transform: uppercase;
}
.nav li.back a:hover {
  color: #e6e6e6;
}
.nav li:last-child {
  border-bottom: none;
}
.nav.publications {
  top: 0;
  left: 0;
}

.nav-stretch {
  width: 500px;
  position: absolute;
  top: 0;
  left: 0;
}

.breadcrumbs {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  height: 40px;
}

.page-breadcrumbs {
  font-size: 20px;
  margin: 0 0 40px 0;
  min-height: 22px;
}
.page-breadcrumbs .current {
  color: #C30F31;
}

/* =jScrollPane
----------------------------------------------------------------------------- */
.jspVerticalBar {
  opacity: 0;
  width: 10px;
  background: transparent;
  -webkit-transition: opacity 0.25s;
  -moz-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
.jspVerticalBar .jspTrack {
  background: #bec3c3;
  border-radius: 5px;
}
.jspVerticalBar .jspTrack .jspDrag {
  width: 6px;
  margin-left: 2px;
  background: #2d2d2a;
  border-radius: 5px;
}

.touch .active .jspVerticalBar {
  opacity: 1;
}

.no-touch .active:hover .jspVerticalBar {
  opacity: 1;
}

/* =Publications
----------------------------------------------------------------------------- */
.pub-img-container {
  position: relative;
}

.browser-bar {
  height: 55px;
}

.active-ad .relative {
  position: relative;
  height: 100%;
  width: 100%;
}

.active-ad .relative img {
  position: absolute;
  top: 0;
  left: 0;
}

.box {
  position: fixed;
  top: 200px;
  left: 50px;
  background: red;
  width: 50px;
  height: 50px;
}

.sticky-footer-wrapper {
  min-height: 100%;
  margin: 0 auto -80px;
}

footer, .push {
  height: 80px;
}

.footer {
  background-color: #cccccc;
  font-size: 12px;
  line-height: 18px;
  padding: 20px 0;
}
.footer a {
  display: inline-block;
  color: #C30F31;
}
.footer .btn {
  padding-top: 5px;
  padding-bottom: 5px;
  color: #3A3A36;
  margin-left: 8px;
}
.footer .btn:hover {
  color: #fff;
}

.login-form, .encoder-form {
  position: relative;
  width: 280px;
  margin: 0 auto;
}
.login-form legend, .encoder-form legend {
  margin-bottom: 10px;
}
.login-form label, .encoder-form label {
  display: block;
  float: left;
  clear: left;
  margin: 5px 0;
}
.login-form label b, .encoder-form label b {
  display: block;
  float: left;
  width: 80px;
  margin-right: 20px;
}
.login-form label input, .encoder-form label input {
  float: left;
  width: 180px;
}
.login-form label input[type="text"], .login-form label input[type="password"], .login-form label input[type="number"], .encoder-form label input[type="text"], .encoder-form label input[type="password"], .encoder-form label input[type="number"] {
  padding: 5px;
  border: 1px solid #b3b3b3;
  outline: 0;
}
.login-form label input[type="text"]:hover, .login-form label input[type="text"]:focus, .login-form label input[type="password"]:hover, .login-form label input[type="password"]:focus, .login-form label input[type="number"]:hover, .login-form label input[type="number"]:focus, .encoder-form label input[type="text"]:hover, .encoder-form label input[type="text"]:focus, .encoder-form label input[type="password"]:hover, .encoder-form label input[type="password"]:focus, .encoder-form label input[type="number"]:hover, .encoder-form label input[type="number"]:focus {
  border: 1px solid gray;
}
.login-form input[type="submit"], .encoder-form input[type="submit"] {
  margin: 10px 0 0 100px;
}
.login-form .login-error, .login-form .form-error, .encoder-form .login-error, .encoder-form .form-error {
  color: red;
  margin-top: 10px;
}
.login-form .form-output, .encoder-form .form-output {
  margin-top: 20px;
}

.expander.inactive:before {
  font-size: 10px;
  content: "▼";
}
.expander.active:before {
  font-size: 10px;
  content: "▲";
}
