/* ===== Primary Site Styles =====
   Author: Falko Birner
   ===============================
*/
/* =============================================================================
   Project Variables
   ========================================================================== */
/* =============================================================================
   Standard Project Variables
   ========================================================================== */
/* =============================================================================
   Mixins
   ========================================================================== */
/* =============================================================================
   Standard Mixins
   ========================================================================== */
/* =============================================================================
   Plugins
   ========================================================================== */
/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
  border-radius: 5px;
  background-color: #444444;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
  color: #fff;
  max-width: 300px;
}
/* Use this next selector to style things like font-size and line-height: */
.tooltipster-default .tooltipster-content {
  font-size: 1em;
  line-height: 1.4;
  padding: 8px 10px;
  overflow: hidden;
}
.tooltipster-default .tooltipster-content img {
  float: left;
  margin-right: 10px;
  margin-bottom: 5px;
  border: 2px solid #444444;
  max-width: 70px;
  max-height: 70px;
}
.tooltipster-default .tooltipster-content a {
  color: #002f5d;
  font-weight: bold;
}
/* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
.tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
  /* border-color: ... !important; */
}
/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
  cursor: help;
  margin-left: 4px;
}
/* This is the base styling requici-color-1 to make all Tooltipsters work */
.tooltipster-base {
  padding: 0;
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 9999999;
  pointer-events: none;
  width: auto;
  overflow: visible;
}
.tooltipster-base .tooltipster-content {
  overflow: hidden;
}
/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
  display: block;
  text-align: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tooltipster-arrow span,
.tooltipster-arrow-border {
  display: block;
  width: 0;
  height: 0;
  position: absolute;
}
.tooltipster-arrow-top span,
.tooltipster-arrow-top-right span,
.tooltipster-arrow-top-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid;
  bottom: -8px;
}
.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-top-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-top: 9px solid;
  bottom: -8px;
}
.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom-right span,
.tooltipster-arrow-bottom-left span {
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-bottom: 8px solid;
  top: -8px;
}
.tooltipster-arrow-bottom .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  border-left: 9px solid transparent !important;
  border-right: 9px solid transparent !important;
  border-bottom: 9px solid;
  top: -8px;
}
.tooltipster-arrow-top span,
.tooltipster-arrow-top .tooltipster-arrow-border,
.tooltipster-arrow-bottom span,
.tooltipster-arrow-bottom .tooltipster-arrow-border {
  left: 0;
  right: 0;
  margin: 0 auto;
}
.tooltipster-arrow-top-left span,
.tooltipster-arrow-bottom-left span {
  left: 6px;
}
.tooltipster-arrow-top-left .tooltipster-arrow-border,
.tooltipster-arrow-bottom-left .tooltipster-arrow-border {
  left: 5px;
}
.tooltipster-arrow-top-right span,
.tooltipster-arrow-bottom-right span {
  right: 6px;
}
.tooltipster-arrow-top-right .tooltipster-arrow-border,
.tooltipster-arrow-bottom-right .tooltipster-arrow-border {
  right: 5px;
}
.tooltipster-arrow-left span,
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid;
  top: 50%;
  margin-top: -7px;
  right: -8px;
}
.tooltipster-arrow-left .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-left: 9px solid;
  margin-top: -8px;
}
.tooltipster-arrow-right span,
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid;
  top: 50%;
  margin-top: -7px;
  left: -8px;
}
.tooltipster-arrow-right .tooltipster-arrow-border {
  border-top: 9px solid transparent !important;
  border-bottom: 9px solid transparent !important;
  border-right: 9px solid;
  margin-top: -8px;
}
/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */
.tooltipster-fade {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}
.tooltipster-fade-show {
  opacity: 1;
}
.tooltipster-grow {
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-backface-visibility: hidden;
}
.tooltipster-grow-show {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-swing {
  opacity: 0;
  -webkit-transform: rotateZ(4deg);
  -moz-transform: rotateZ(4deg);
  -o-transform: rotateZ(4deg);
  -ms-transform: rotateZ(4deg);
  transform: rotateZ(4deg);
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
}
.tooltipster-swing-show {
  opacity: 1;
  -webkit-transform: rotateZ(0deg);
  -moz-transform: rotateZ(0deg);
  -o-transform: rotateZ(0deg);
  -ms-transform: rotateZ(0deg);
  transform: rotateZ(0deg);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 1);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -ms-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  -o-transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
  transition-timing-function: cubic-bezier(0.23, 0.635, 0.495, 2.4);
}
.tooltipster-fall {
  top: 0;
  -webkit-transition-property: top;
  -moz-transition-property: top;
  -o-transition-property: top;
  -ms-transition-property: top;
  transition-property: top;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-fall.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  top: 0px !important;
  opacity: 0;
}
.tooltipster-slide {
  left: -40px;
  -webkit-transition-property: left;
  -moz-transition-property: left;
  -o-transition-property: left;
  -ms-transition-property: left;
  transition-property: left;
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.15);
}
.tooltipster-slide.tooltipster-dying {
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  -ms-transition-property: all;
  transition-property: all;
  left: 0px !important;
  opacity: 0;
}
/* CSS transition for when contenting is changing in a tooltip that is still open. The only properties that will NOT transition are: width, height, top, and left */
.tooltipster-content-changing {
  opacity: 0.5;
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
  transform: scale(1.1, 1.1);
}
/*! fancyBox v2.1.3 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top;
}
.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}
.fancybox-skin {
  position: relative;
  background: #fff;
  color: #444;
  text-shadow: none;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
.fancybox-outer,
.fancybox-inner {
  position: relative;
}
.fancybox-inner {
  overflow: hidden;
}
.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}
.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}
.fancybox-image,
.fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}
#fancybox-loading {
  background-image: url('../../images/fancybox/fancybox_sprite.png');
}
#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060;
}
#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('../../images/fancybox/fancybox_loading.gif') center center no-repeat;
}
.fancybox-close {
  position: absolute;
  top: 0;
  right: -43px;
  cursor: pointer;
  z-index: 8040;
  width: 36px;
  height: 36px;
  line-height: 35px;
  text-align: center;
  font-size: 2.16666667em;
  font-family: FontAwesome;
  background-color: #ffffff;
  color: #0067af;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
}
.fancybox-close:before {
  content: "\f00d";
}
.fancybox-close:hover {
  color: #ffffff;
  background-color: #0067af;
  text-decoration: none;
}
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url('../../images/fancybox/blank.gif');
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-nav:hover span {
  color: #ffffff;
  background-color: #0067af;
  text-decoration: none;
}
.fancybox-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  margin-top: -22px;
  cursor: pointer;
  z-index: 8040;
  opacity: 0;
  width: 38px;
  height: 54px;
  font-family: FontAwesome;
  font-size: 3.83333333em;
  text-align: center;
  line-height: 54px;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.fancybox-prev span {
  left: 10px;
}
.fancybox-prev span:before {
  content: "\f104";
}
.fancybox-next span {
  right: 10px;
}
.fancybox-next span:before {
  content: "\f105";
}
.fancybox-nav:hover span {
  opacity: 1;
}
.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}
/* Overlay helper */
.fancybox-lock {
  overflow: hidden;
}
.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url('../../images/fancybox/fancybox_overlay.png');
}
.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}
.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font-size: 1.16666667em;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}
.fancybox-opened .fancybox-title {
  visibility: visible;
}
.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}
.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap;
}
.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}
.fancybox-title-inside-wrap {
  padding-top: 15px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
/* Thumbs */
#fancybox-thumbs {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 8050;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  background-image: url("../../images/singleones/logo_fancy.png");
  background-repeat: no-repeat;
  background-position: 20px 50%;
}
#fancybox-thumbs.bottom {
  bottom: 0;
}
#fancybox-thumbs.top {
  top: 2px;
}
#fancybox-thumbs ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
#fancybox-thumbs ul li {
  float: left;
  padding: 2px;
}
#fancybox-thumbs ul li a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 6px solid #444444;
  background: #111;
  outline: none;
  opacity: 0.8;
}
#fancybox-thumbs ul li a:hover {
  opacity: 1;
  border-color: #fff;
}
#fancybox-thumbs ul li.active a {
  border-color: #002f5d;
  opacity: 1;
}
#fancybox-thumbs ul li img {
  display: block;
  position: relative;
  border: 0;
  padding: 0;
}
/* iCheck plugin Square skin, green
----------------------------------- */
.icheckbox,
.iradio {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
  float: left;
  margin-right: 5px;
  height: 21px;
  width: 21px;
  line-height: 18px;
  text-align: center;
  font-size: 1em;
  font-family: FontAwesome;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.icheckbox {
  border: 1px solid #a1a1a1;
  background-color: #ffffff;
  color: #0067af;
  -moz-box-shadow: 2px 2px 0 #ececec inset;
  -webkit-box-shadow: 2px 2px 0 #ececec inset;
  box-shadow: 2px 2px 0 #ececec inset;
}
.icheckbox.hover {
  border-color: #0067af;
  border-width: 2px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.icheckbox.checked {
  border-color: #0067af;
  border-width: 2px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.icheckbox.checked:before {
  content: "\f00c";
}
.icheckbox.disabled {
  cursor: not-allowed;
  border-color: #c7c7c7;
  color: #b4b4b4;
  border-width: 2px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.icheckbox.disabled:before {
  content: "\f00d";
}
.icheckbox.disabled.checked {
  border-color: #c7c7c7;
  border-width: 2px;
}
.icheckbox.disabled.checked:before {
  content: "\f00c";
}
.iradio {
  border: 1px solid #a1a1a1;
  background-color: #ffffff;
  color: #0067af;
  line-height: 16px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  -moz-box-shadow: 2px 2px 0 #ececec inset;
  -webkit-box-shadow: 2px 2px 0 #ececec inset;
  box-shadow: 2px 2px 0 #ececec inset;
}
.iradio.hover {
  border-color: #0067af;
  border-width: 2px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.iradio.checked {
  border-color: #0067af;
  border-width: 2px;
  font-size: 1em;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.iradio.checked:before {
  content: "\f111";
}
.iradio.disabled {
  cursor: not-allowed;
  border-color: #c7c7c7;
  color: #b4b4b4;
  border-width: 2px;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.iradio.disabled:before {
  content: "\f00d";
}
.iradio.disabled.checked {
  border-color: #c7c7c7;
  border-width: 2px;
}
.iradio.disabled.checked:before {
  content: "\f111";
}
/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}
.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}
/**** Isotope CSS3 transitions ****/
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.isotope {
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
/**** disabling Isotope CSS3 transitions ****/
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.isotope-container {
  margin-left: -40px;
  overflow: visible !important;
}
.grid-elements {
  margin-left: 40px;
  width: 360px;
  margin-bottom: 30px;
}
.grid-elements.width2 {
  width: 760px;
}
body.dragging {
  user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  -webkit-user-select: none;
}
.customscroll {
  overflow: hidden;
  position: relative;
}
.customscroll > .wrapper {
  overflow-y: auto;
  width: 9999px;
}
.customscroll > .placeholder {
  background-color: transparent;
  display: block;
  position: absolute;
  right: 2px;
  width: 12px;
  z-index: 10;
}
.customscroll > .placeholder > .track {
  bottom: 0;
  display: none;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 6px;
}
.customscroll > .placeholder > .track.hover {
  background-color: #e6e6e6;
  background-color: rgba(0, 0, 0, 0.1);
}
.customscroll > .placeholder > .track > .grip {
  background-color: #999999;
  height: 12px;
}
.customscroll > .placeholder > .track,
.customscroll > .placeholder > .track > .grip {
  border-radius: 10px;
}
.fancy-scroll {
  overflow-y: hidden;
}
.fancy-scroll:after {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(100%, #ffffff));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* IE10+ */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
  /* IE6-9 */
  background-size: 100% auto;
  bottom: 0;
  content: "";
  display: block;
  height: 20%;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 1;
}
/* Sticky Content */
.stickem {
  width: 300px;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.stickit {
  position: fixed;
  top: 0;
}
.stickit-end {
  bottom: 20px;
  position: absolute;
}
/* =============================================================================
   Icon Font
   ========================================================================== */
/*!
 *  Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('fonts/fontawesome-webfont.eot?v=4.0.3');
  src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-asc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-desc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-reply-all:before {
  content: "\f122";
}
.fa-mail-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
/* =============================================================================
   Icon Master
   ========================================================================== */
/* glue: 0.3 hash: aa19c94ee8 */
.sprite-standard-biw_logo {
  background-image: url('../images/masters/standard.png');
  background-repeat: no-repeat;
}
.sprite-standard-biw_logo {
  background-position: -10px -10px;
  width: 153px;
  height: 103px;
}
/* =============================================================================
   Generic
   ========================================================================== */
/*! normalize.css v1.1.3 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
button,
html,
input,
select,
textarea {
  font-family: sans-serif;
}
body {
  margin: 0;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.83em 0;
}
h3 {
  font-size: 1.17em;
  margin: 1em 0;
}
h4 {
  font-size: 1em;
  margin: 1.33em 0;
}
h5 {
  font-size: .83em;
  margin: 1.67em 0;
}
h6 {
  font-size: .67em;
  margin: 2.33em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: 700;
}
blockquote {
  margin: 1em 40px;
}
dfn {
  font-style: italic;
}
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000000;
}
p,
pre {
  margin: 1em 0;
}
code,
kbd,
pre,
samp {
  font-family: monospace,serif;
  _font-family: 'courier new', monospace;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: none;
}
q:after,
q:before {
  content: '';
  content: none;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
dl,
menu,
ol,
ul {
  margin: 1em 0;
}
dd {
  margin: 0 0 0 40px;
}
menu,
ol,
ul {
  padding: 0 0 0 40px;
}
nav ol,
nav ul {
  list-style: none;
  list-style-image: none;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
svg:not(:root) {
  overflow: hidden;
}
figure,
form {
  margin: 0;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}
input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ==========================================================================
   HTML5 Boilerplate styles - h5bp.com (generated via initializr.com)
   ========================================================================== */
/* Reset Space (Added) */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
hr {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
html,
button,
input,
select,
textarea {
  color: #444444;
  font-family: Arial, Helvetica, sans-serif;
}
html {
  font-size: 12px;
  line-height: 1.4;
}
body {
  overflow-y: scroll;
}
::-moz-selection {
  background: #002f5d;
  text-shadow: none;
  color: #fff;
}
::selection {
  background: #002f5d;
  text-shadow: none;
}
audio,
canvas,
img,
video {
  vertical-align: middle;
}
textarea {
  resize: vertical;
}
.browsehappy {
  background: #fff37e;
  color: #000;
  padding: 15px;
}
/* Added */
a {
  color: #0067af;
  text-decoration: none;
}
a:hover {
  color: #0067af;
  text-decoration: underline;
}
a:active,
a:hover,
a:focus {
  outline: 0;
}
ul,
ol {
  list-style: none;
  list-style-image: none;
}
em {
  font-style: normal;
}
/* =============================================================================
   Base
   ========================================================================== */
/* =============================================================================
   Base Headlines
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  line-height: 1.1;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 15px;
  position: relative;
  color: #002f5d;
  text-transform: uppercase;
}
h1.bold,
h2.bold,
h3.bold,
h4.bold,
h5.bold,
h6.bold {
  font-weight: 700;
}
h1.left-icon i,
h2.left-icon i,
h3.left-icon i,
h4.left-icon i,
h5.left-icon i,
h6.left-icon i {
  position: absolute;
  top: 0;
  right: 100%;
  margin-right: 8px;
  border: 2px solid #ffffff;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  font-size: 55%;
  padding: 8px;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #444444;
}
h1 i,
h2 i,
h3 i,
h4 i,
h5 i,
h6 i {
  margin-right: 5px;
  color: #b4b4b4;
}
h1.subheadline,
h2.subheadline,
h3.subheadline,
h4.subheadline,
h5.subheadline,
h6.subheadline {
  margin-top: -5px;
  color: #8f8f8f;
}
h1.subheadline a,
h2.subheadline a,
h3.subheadline a,
h4.subheadline a,
h5.subheadline a,
h6.subheadline a {
  color: #8f8f8f;
}
.box-shadow h1,
.box-shadow h2,
.box-shadow h3,
.box-shadow h4,
.box-shadow h5,
.box-shadow h6 {
  text-transform: none;
}
h1.grey,
h2.grey,
h3.grey,
h4.grey,
h5.grey,
h6.grey {
  color: #696969;
  text-transform: none;
}
h1 {
  font-size: 1.66666667em;
}
h2 {
  font-size: 1.5em;
}
h3 {
  font-size: 1.25em;
}
h4 {
  font-size: 1.08333333em;
}
h5 {
  font-size: 0.91666667em;
}
h6 {
  font-size: 0.83333333em;
}
/* =============================================================================
   Base Forms
   ========================================================================== */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  top: 1px;
}
legend {
  display: none;
}
fieldset {
  position: relative;
}
fieldset p {
  margin-bottom: 15px !important;
}
fieldset p.no-margin-bottom {
  margin-bottom: 0 !important;
}
label {
  display: block;
  margin-bottom: 4px;
  cursor: pointer;
}
label.error {
  color: #8e1115;
}
input[type=text],
input[type=password],
input[type=file],
textarea,
select {
  padding: 8px;
  border: 1px solid #c7c7c7;
  width: 100%;
  background-color: #ffffff;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -moz-box-shadow: 2px 2px 0 #f7f7f7 inset;
  -webkit-box-shadow: 2px 2px 0 #f7f7f7 inset;
  box-shadow: 2px 2px 0 #f7f7f7 inset;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=text].error,
input[type=password].error,
input[type=file].error,
textarea.error,
select.error {
  border-color: #8E1115;
  -moz-box-shadow: 1px 1px 2px rgba(142, 17, 21, 0.15) inset;
  -webkit-box-shadow: 1px 1px 2px rgba(142, 17, 21, 0.15) inset;
  box-shadow: 1px 1px 2px rgba(142, 17, 21, 0.15) inset;
}
input[type=text].disabled,
input[type=password].disabled,
input[type=file].disabled,
textarea.disabled,
select.disabled {
  background-color: #ececec;
  color: #444;
  font-weight: bold;
  border-color: #dadada;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input[type=text]:focus,
input[type=password]:focus,
input[type=file]:focus,
textarea:focus,
select:focus {
  background-color: #fff;
  border-color: #0067af;
  outline: 0 none;
  -moz-box-shadow: 0 0 2px 1px rgba(0, 103, 175, 0.2);
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 103, 175, 0.2);
  box-shadow: 0 0 2px 1px rgba(0, 103, 175, 0.2);
}
input[type=text].blur,
input[type=password].blur,
input[type=file].blur,
textarea.blur,
select.blur {
  color: #a1a1a1;
}
textarea {
  height: 120px;
}
select {
  color: #444444;
  padding: 6px;
  padding-bottom: 7px;
  height: auto;
}
.double-input {
  margin-bottom: 0;
}
.double-input dt,
.double-input dd {
  float: left;
  margin-left: 4%;
  width: 48%;
  font-weight: normal;
  margin-bottom: 0;
}
.double-input dt {
  margin-left: 0;
}
/* =============================================================================
   Base Textlayout
   ========================================================================== */
p {
  line-height: 1.5;
  margin-bottom: 25px;
}
p.small {
  font-size: 0.91666667em;
  color: #696969;
  margin-bottom: 20px;
}
p.big-font {
  font-size: 1.33333333em;
}
p.small-margin-bottom {
  margin-bottom: 12.5px;
}
.big-letter {
  float: left;
  font-size: 4em;
  line-height: normal;
  margin: -8px 5px -8px -2px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 300;
}
.letter-bold {
  font-weight: 700;
}
small {
  font-size: 1.08333333em;
  color: #444444;
  font-family: Arial, Helvetica, sans-serif;
}
.bold {
  font-weight: 700;
}
.blue {
  color: #002f5d;
}
hr {
  display: block;
  height: 0;
  border: 0;
  border-bottom: 1px solid #ececec;
  margin: 0;
  padding: 0;
  clear: both;
  margin-bottom: 25px;
}
hr.dashed {
  border-bottom-width: 1px;
  border-style: dashed;
  border-color: #dadada;
}
hr.colored {
  border-width: 4px;
  border-color: #002f5d;
}
.box-shadow hr {
  margin-left: -20px;
  margin-right: -20px;
  border-color: #002f5d;
  margin-left: -15px;
  margin-right: -15px;
}
sup {
  font-weight: 300;
}
code {
  background-color: #F7F7F9;
  border: 1px solid #E1E1E8;
  display: block;
  padding: 10px;
  font-size: 1.08333333em;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  margin-bottom: 25px;
}
q,
p.blockquote {
  display: block;
  position: relative;
  quotes: none;
  font-family: Arial, Helvetica, sans-serif;
  padding-bottom: 10px;
  padding-left: 22px;
  padding-right: 22px;
  padding-top: 10px;
  font-size: 1.5em;
  border-left: 5px solid #dadada;
  margin-bottom: 25px;
}
q cite,
p.blockquote cite {
  color: #8f8f8f;
  display: block;
  font-size: 1em;
  font-style: normal;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 5px;
}
q cite:before,
p.blockquote cite:before {
  content: "— ";
}
.label {
  display: inline-block;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  background-color: #444444;
  color: #ffffff !important;
  font-size: 0.91666667em;
  padding: 2px 4px;
  line-height: normal;
  font-weight: bold;
}
.label.colored {
  background-color: #002f5d;
}
.link-to-content {
  display: none;
}
.content-dummy {
  background-color: #ccc;
  display: block;
  padding: 5px;
  margin-bottom: 25px;
}
/* =============================================================================
   Base Lists
   ========================================================================== */
ol {
  list-style-type: decimal;
  margin-left: 22px;
  line-height: normal;
  margin-bottom: 17px;
}
ol li {
  margin-bottom: 8px;
}
ol ol {
  margin-bottom: 5px;
  margin-top: 10px;
}
ol ol li {
  list-style-type: lower-alpha;
  margin-bottom: 5px;
}
dl {
  margin-bottom: 25px;
}
dt {
  font-weight: bold;
}
dd {
  margin-bottom: 5px;
}
.normal-list {
  list-style-type: none;
  margin-bottom: 17px;
}
.normal-list li {
  margin-bottom: 8px;
  padding-left: 12px;
  position: relative;
  line-height: normal;
}
.normal-list li:before {
  position: absolute;
  left: 0;
  font-size: 0.91666667em;
  top: 1px;
  color: #0067af;
  content: "\f101";
  font-family: FontAwesome;
}
.normal-list li ul {
  margin-bottom: 5px;
  margin-top: 10px;
  margin-left: 10px;
}
.normal-list li ul li {
  margin-bottom: 5px;
  padding-left: 12px;
  position: relative;
}
.normal-list.extra-margin {
  margin-bottom: 10px;
}
.normal-list.extra-margin li {
  margin-bottom: 15px;
}
.item-text-list li {
  margin-bottom: 15px;
}
.item-text-list li:first-child {
  border-top: 0;
  padding-top: 0;
}
.item-text-list li p {
  margin-bottom: 4px;
  color: #696969;
  line-height: 1.3;
}
.item-text-list li p a {
  font-size: 0.91666667em;
  color: #696969;
  font-weight: 700;
  display: block;
}
.item-text-list li .read-on {
  font-size: 0.91666667em;
}
.blank-list {
  margin-bottom: 17px;
}
.blank-list li {
  margin-bottom: 8px;
}
/* =============================================================================
   Base Messages
   ========================================================================== */
/* Alert Messages */
.alert {
  padding: 15px;
  border: 1px solid transparent;
  padding-left: 35px;
  position: relative;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.alert i {
  margin-right: 5px;
  font-size: 1.33333333em;
  position: absolute;
  left: 15px;
  top: 17px;
}
.alert.success {
  background-color: #DFF0D8;
  border-color: #D6E9C6;
  color: #3C763D;
}
.alert.info {
  background-color: #D9EDF7;
  border-color: #BCE8F1;
  color: #31708F;
}
.alert.warning {
  background-color: #FCF8E3;
  border-color: #FAEBCC;
  color: #8A6D3B;
}
.alert.danger {
  background-color: #F2DEDE;
  border-color: #EBCCD1;
  color: #A94442;
}
/* Small Status Message */
.alert-small {
  display: block;
  position: relative;
  margin-bottom: 5px;
}
.alert-small i {
  margin-right: 5px;
  font-size: 1.16666667em;
}
.alert-small.success {
  color: #3C763D;
}
.alert-small.info {
  color: #31708F;
}
.alert-small.warning {
  color: #8A6D3B;
}
.alert-small.danger {
  color: #A94442;
}
/* =============================================================================
   Base Tables
   ========================================================================== */
.contenttable {
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 25px;
}
.contenttable p {
  margin-bottom: 0;
}
.contenttable td,
.contenttable th {
  padding: 8px;
  border: 1px solid #c7c7c7;
  text-align: left;
}
.contenttable td {
  text-align: left;
}
.contenttable h1,
.contenttable h2,
.contenttable h3,
.contenttable h4,
.contenttable h5 {
  margin-bottom: 0;
  font-weight: 400;
}
/* ==========================================================================
   Base Animations
   ========================================================================== */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.spin {
  -moz-animation: spin 0.8s linear infinite;
  -o-animation: spin 0.8s linear infinite;
  -webkit-animation: spin 0.8s linear infinite;
  -ms-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}
@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in {
  -moz-animation: fade-in 2s ease 0.2s 1 normal forwards;
  -o-animation: fade-in 2s ease 0.2s 1 normal forwards;
  -webkit-animation: fade-in 2s ease 0.2s 1 normal forwards;
  -ms-animation: fade-in 2s ease 0.2s 1 normal forwards;
  animation: fade-in 2s ease 0.2s 1 normal forwards;
}
@keyframes gummy {
  0% {
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  25% {
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -moz-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.gummy {
  -moz-animation: gummy 0.4s ease 1 normal forwards;
  -o-animation: gummy 0.4s ease 1 normal forwards;
  -webkit-animation: gummy 0.4s ease 1 normal forwards;
  -ms-animation: gummy 0.4s ease 1 normal forwards;
  animation: gummy 0.4s ease 1 normal forwards;
}
.row {
  display: block;
  width: 103.33333333%;
  margin: 0 -1.66666667%;
  *zoom: 1;
}
.row .border-right {
  border-right: 1px solid #b4b4b4;
  padding-right: 1.66667%;
  margin-right: -1px;
}
.grid-1 {
  float: left;
  width: 5%;
  margin: 0 1.66666667%;
}
.grid-2 {
  float: left;
  width: 13.33333333%;
  margin: 0 1.66666667%;
}
.grid-3 {
  float: left;
  width: 21.66666667%;
  margin: 0 1.66666667%;
}
.grid-4 {
  float: left;
  width: 30%;
  margin: 0 1.66666667%;
}
.grid-5 {
  float: left;
  width: 38.33333333%;
  margin: 0 1.66666667%;
}
.grid-6 {
  float: left;
  width: 46.66666667%;
  margin: 0 1.66666667%;
}
.grid-7 {
  float: left;
  width: 55%;
  margin: 0 1.66666667%;
}
.grid-8 {
  float: left;
  width: 63.33333333%;
  margin: 0 1.66666667%;
}
.grid-9 {
  float: left;
  width: 71.66666667%;
  margin: 0 1.66666667%;
}
.grid-10 {
  float: left;
  width: 80%;
  margin: 0 1.66666667%;
}
.grid-11 {
  float: left;
  width: 88.33333333%;
  margin: 0 1.66666667%;
}
.grid-12 {
  float: left;
  width: 96.66666667%;
  margin: 0 1.66666667%;
}
/* =============================================================================
   Objects
   ========================================================================== */
/* =============================================================================
   Standard Buttons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 9px 36px 9px 14px;
  line-height: normal;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  width: auto;
  overflow: visible;
  position: relative;
  background: none;
  border: 0;
  font-size: 1.25em;
  color: #ffffff;
  font-weight: 300;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0067af;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.btn span {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  overflow: hidden;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  right: 8px;
}
.btn span em {
  position: absolute;
  left: -36px;
  width: 54px;
  height: 18px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.btn span em i {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
}
.btn span em i:before {
  content: "\f101";
}
.btn span em:before {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
  content: "\f101";
}
.btn span em:after {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
  content: "\f101";
}
.btn span:hover em {
  left: 0;
}
.btn.small {
  font-size: 1.08333333em;
  padding: 7px 30px 7px 10px;
}
.btn.small span {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -8.5px;
  overflow: hidden;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  right: 7px;
}
.btn.small span em {
  position: absolute;
  left: -30px;
  width: 45px;
  height: 15px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.small span em i {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
}
.btn.small span em i:before {
  content: "\f101";
}
.btn.small span em:before {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
  content: "\f101";
}
.btn.small span em:after {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
  content: "\f101";
}
.btn.small span:hover em {
  left: 0;
}
.btn.big {
  font-size: 1.41666667em;
  padding: 9px 40px 9px 18px;
}
.btn.big span {
  display: block;
  width: 21px;
  height: 21px;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -12.5px;
  overflow: hidden;
  -moz-border-radius: 21px;
  -webkit-border-radius: 21px;
  border-radius: 21px;
}
.btn.big span em {
  position: absolute;
  left: -42px;
  width: 63px;
  height: 21px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.big span em i {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
}
.btn.big span em i:before {
  content: "\f101";
}
.btn.big span em:before {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
  content: "\f101";
}
.btn.big span em:after {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
  content: "\f101";
}
.btn.big span:hover em {
  left: 0;
}
.btn.mega {
  font-size: 2.16666667em;
  padding: 9px 50px 9px 22px;
}
.btn.mega span {
  display: block;
  width: 26px;
  height: 26px;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  -moz-border-radius: 26px;
  -webkit-border-radius: 26px;
  border-radius: 26px;
  right: 12px;
}
.btn.mega span em {
  position: absolute;
  left: -52px;
  width: 78px;
  height: 26px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.btn.mega span em i {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
}
.btn.mega span em i:before {
  content: "\f101";
}
.btn.mega span em:before {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
  content: "\f101";
}
.btn.mega span em:after {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
  content: "\f101";
}
.btn.mega span:hover em {
  left: 0;
}
.btn.no-style,
.btn.no-style:hover {
  background: none !important;
  color: #696969;
  padding: 9px 14px;
  top: 2px;
}
.btn.no-style:hover,
.btn.no-style:hover:hover {
  text-decoration: underline;
  background: none !important;
}
.btn.no-style:active,
.btn.no-style:hover:active {
  top: 2px;
}
.btn.disabled,
.btn.disabled:hover {
  background-color: #dadada !important;
  color: #a1a1a1;
  border-color: #b4b4b4;
  text-shadow: none;
  cursor: not-allowed;
}
.btn.disabled span,
.btn.disabled:hover span {
  border-color: #b4b4b4;
}
.btn.disabled span em,
.btn.disabled:hover span em {
  left: 0;
}
.btn.disabled:active,
.btn.disabled:hover:active {
  top: 0;
}
.btn:hover {
  background-color: #0085e2 !important;
  text-decoration: none;
  color: #ffffff;
}
.btn:active {
  top: 1px;
}
.btn-list {
  margin-bottom: 25px;
}
.btn-list li {
  float: left;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px dotted #c7c7c7;
}
.btn-list li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}
/* =============================================================================
   Object Media
   ========================================================================== */
.single-image {
  margin-bottom: 25px;
}
.single-image img {
  max-width: 100%;
}
.single-image span {
  font-size: 1.08333333em;
  margin-top: 3%;
  line-height: normal;
  display: block;
}
.big-image {
  display: block;
  padding: 3%;
  border: 1px solid #dadada;
  position: relative;
  background-color: #ffffff;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  margin-bottom: 25px;
}
.big-image img {
  max-width: 100%;
}
.big-image span {
  font-size: 1.08333333em;
  margin-top: 3%;
  line-height: normal;
  display: block;
}
.big-image:hover span {
  text-decoration: none;
}
.image-link {
  display: block;
  padding: 3%;
  border: 1px solid #169fff;
  position: relative;
  background-color: #ffffff;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
  margin-bottom: 25px;
}
.image-link img {
  max-width: 100%;
}
.image-link span {
  display: block;
  margin-top: 3%;
  font-size: 1em;
  color: #444444;
}
.image-link i {
  display: block;
  position: absolute;
  bottom: 5%;
  right: 6%;
  color: #ffffff;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.image-link:hover {
  border-color: #0067af;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.image-link:hover i {
  color: #0067af;
}
.video-link {
  display: block;
  padding: 3%;
  border: 1px solid #169fff;
  position: relative;
  background-color: #ffffff;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
  margin-bottom: 25px;
}
.video-link img {
  max-width: 100%;
}
.video-link span {
  display: block;
  margin-top: 3%;
  font-size: 1em;
  color: #444444;
}
.video-link i {
  display: block;
  position: absolute;
  bottom: 5%;
  right: 6%;
  color: #ffffff;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.video-link:hover {
  border-color: #0067af;
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.video-link:hover i {
  color: #0067af;
}
.video-link i {
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  font-size: 4.16666667em;
  left: 50%;
  top: 50%;
  margin-left: -25px;
  margin-top: -25px;
}
/* =============================================================================
   Object Gallery
   ========================================================================== */
.gallery {
  margin-left: -1.55%;
  margin-bottom: 25px;
}
.gallery > li {
  float: left;
  margin-left: 1.5%;
  margin-bottom: 1.5%;
  width: 31.83%;
  position: relative;
}
.gallery > li > a {
  margin-bottom: 0;
}
/* =============================================================================
   Object Contact Person
   ========================================================================== */
.contact-person {
  margin-left: -4%;
  margin-bottom: 10px;
}
.contact-person > li {
  position: relative;
  width: 46%;
  margin-left: 3.9%;
  float: left;
  margin-bottom: 15px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.contact-person > li h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25em;
  font-weight: bold;
  margin-bottom: 0;
}
.contact-person > li .position {
  display: block;
  color: #7c7c7c;
  font-size: 1.08333333em;
  margin-bottom: 5px;
}
.contact-person > li .icon-list {
  margin-bottom: 0;
}
.contact-person > li.with-image {
  padding-left: 130px;
  padding-top: 4px;
  min-height: 132px;
}
.contact-person > li.with-image img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 130px;
  background-color: #ffffff;
  border: 1px solid #dfdedf;
  padding: 5px;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
/* =============================================================================
   Object Icon List
   ========================================================================== */
.icon-list {
  margin-bottom: 25px;
}
.icon-list li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}
.icon-list li:last-child {
  margin-bottom: 0;
}
.icon-list li small {
  display: block;
  color: #444444;
}
.icon-list li i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em;
  width: 20px;
  height: 18px;
  line-height: 17px;
  text-align: center;
}
.icon-list li i.fa-check {
  color: #6c9108;
}
.icon-list li i.fa-times {
  color: #d40600;
}
.icon-list li i.fa-envelope-o {
  line-height: 17px;
}
/* =============================================================================
   Object Box
   ========================================================================== */
.box {
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 25px;
}
.box .number-list:last-child,
.box .normal-list:last-child,
.box .icon-link-list:last-child,
.box .contact-person:last-child,
.box p:last-child {
  margin-bottom: 0;
}
.box.no-padding {
  padding: 0;
}
.box .box-teaser-image {
  margin: -20px;
  display: block;
  text-align: center;
}
.box .box-teaser-image img {
  max-width: 100%;
}
.box .box-teaser-image.box-teaser-image-top {
  margin-bottom: 15px;
}
.box .box-teaser-image.box-teaser-image-left {
  margin-right: 0;
}
.box .box-teaser-image.box-teaser-image-right {
  margin-left: 0;
}
.box.colored {
  background-color: #002344;
  color: #ffffff;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.grid-3 .box {
  padding: 15px;
}
.main-nav-slider .box {
  border: 0;
  padding: 20px;
  margin-bottom: 20px;
}
.main-nav-slider .box p {
  font-size: 13px;
  color: #696969;
  margin-bottom: 15px;
}
.main-nav-slider .box p:last-child {
  margin-bottom: 0;
}
.main-nav-slider .box .btn {
  background-color: #002f5d;
}
.main-nav-slider .box .btn:hover {
  background-color: #00203f !important;
}
.main-nav-slider .box.no-margin-bottom {
  margin-bottom: 0;
}
.box-shadow {
  background-color: #ffffff;
  padding: 20px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 25px;
  border-top: 7px solid #002f5d;
  background-color: #d3e6ff;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.box-shadow .number-list:last-child,
.box-shadow .normal-list:last-child,
.box-shadow .icon-link-list:last-child,
.box-shadow .contact-person:last-child,
.box-shadow p:last-child {
  margin-bottom: 0;
}
.box-shadow.no-padding {
  padding: 0;
}
.box-shadow .box-teaser-image {
  margin: -20px;
  display: block;
  text-align: center;
}
.box-shadow .box-teaser-image img {
  max-width: 100%;
}
.box-shadow .box-teaser-image.box-teaser-image-top {
  margin-bottom: 15px;
}
.box-shadow .box-teaser-image.box-teaser-image-left {
  margin-right: 0;
}
.box-shadow .box-teaser-image.box-teaser-image-right {
  margin-left: 0;
}
.box-shadow.colored {
  background-color: #002344;
  color: #ffffff;
  background-position: right bottom;
  background-repeat: no-repeat;
}
.grid-3 .box-shadow {
  padding: 15px;
}
.main-nav-slider .box-shadow {
  border: 0;
  padding: 20px;
  margin-bottom: 20px;
}
.main-nav-slider .box-shadow p {
  font-size: 13px;
  color: #696969;
  margin-bottom: 15px;
}
.main-nav-slider .box-shadow p:last-child {
  margin-bottom: 0;
}
.main-nav-slider .box-shadow .btn {
  background-color: #002f5d;
}
.main-nav-slider .box-shadow .btn:hover {
  background-color: #00203f !important;
}
.main-nav-slider .box-shadow.no-margin-bottom {
  margin-bottom: 0;
}
.box-shadow hr,
.box-shadow p {
  margin-bottom: 15px;
}
/* =============================================================================
   Object Misc
   ========================================================================== */
iframe {
  display: block;
  margin-bottom: 25px;
}
.hint {
  display: inline-block;
  cursor: help;
  color: #0067af;
  font-size: 80%;
}
a:hover .arrow-circle em {
  left: 0;
}
.fancybox-html-content {
  width: 650px;
  padding: 20px 30px;
}
.next-motion {
  display: block;
  margin-bottom: 10px;
}
.next-motion img {
  max-width: 100%;
}
.guide {
  padding: 50px;
}
/* =============================================================================
   Object Tabs
   ========================================================================== */
.tabs {
  background-color: #444444;
}
.tabs li {
  float: left;
}
.tabs li a {
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  color: #ffffff;
  background-color: #0067af;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.tabs li a:hover {
  background-color: #0085e2;
  text-decoration: none;
}
.tabs li a.active {
  background-color: #ffffff;
  color: #444444;
}
.tabs-content {
  padding: 20px;
  position: relative;
}
/* =============================================================================
   Object Read On
   ========================================================================== */
.read-on {
  display: inline-block;
  position: relative;
}
.read-on i {
  margin-right: 0;
}
/* =============================================================================
   Object Social Media Icons
   ========================================================================== */
.social-media-icons {
  margin-bottom: 25px;
}
.social-media-icons li {
  float: left;
}
.social-media-icons li a {
  display: block;
  line-height: 40px;
  height: 40px;
  width: 40px;
}
.social-media-icons li a i {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 2em;
  color: #ffffff;
  display: block;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.social-media-icons li a i.fa-facebook {
  background-color: #3b5998;
}
.social-media-icons li a i.fa-twitter {
  background-color: #00aced;
}
.social-media-icons li a i.fa-google-plus {
  background-color: #e64724;
}
.social-media-icons li a i.fa-instagram {
  background-color: #517fa4;
}
.social-media-icons li a i.fa-xing {
  background-color: #d4d600;
}
.social-media-icons li a:hover {
  text-decoration: none;
}
.social-media-icons li a:hover i {
  opacity: 0.8;
}
.main-nav .social-media-icons {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1010;
  margin-bottom: 0;
}
.site-footer .social-media-icons {
  position: absolute;
  bottom: 0;
  right: 0;
  margin-bottom: 0;
  display: none;
}
/* =============================================================================
   Object Breadcrumb
   ========================================================================== */
.breadcrumb {
  margin-bottom: 10px;
}
.breadcrumb li {
  float: left;
  font-size: 1em;
  margin-right: 4px;
  color: #ffffff;
}
.breadcrumb li a {
  color: #ffffff;
}
.breadcrumb li a i {
  margin-right: 4px;
}
.breadcrumb li:first-child a i {
  display: none;
}
.content-header-inner .breadcrumb {
  float: left;
  margin-left: 10px;
  margin-top: 20px;
}
/* =============================================================================
   GUI
   ========================================================================== */
/* =============================================================================
   General
   ========================================================================== */
html {
  background-image: url("../images/singleones/stripes/grey.png");
}
body {
  min-width: 1000px;
}
.row .border-right {
  border-right: 1px solid #b4b4b4;
  padding-right: 1.66667%;
  margin-right: -1px;
}
.date {
  display: block;
  color: #002f5d;
  font-size: 0.91666667em;
}
.accordion h4 {
  background-color: #ececec;
  margin-bottom: 5px;
  font-size: 1em;
  padding: 10px;
  cursor: pointer;
  text-transform: none;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.accordion h4:hover,
.accordion h4.trigger_active {
  background-color: #002f5d;
  color: #ffffff;
}
.accordion p {
  margin-bottom: 10px;
}
.search {
  position: relative;
  text-align: right;
}
.search input {
  width: 100%;
  padding-right: 40px;
}
.search .btn {
  padding: 8px 10px;
  padding-bottom: 9px;
  position: absolute;
  right: 0;
  top: 0;
}
.f3-widget-paginator {
  height: 20px;
}
.f3-widget-paginator li {
  float: left;
  margin-right: 5px;
}
.f3-widget-paginator li.current {
  display: inline-block;
  padding: 9px 36px 9px 14px;
  line-height: normal;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  width: auto;
  overflow: visible;
  position: relative;
  background: none;
  border: 0;
  font-size: 1.25em;
  color: #ffffff;
  font-weight: 300;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0067af;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  padding: 4px 8px;
  background-color: #c7c7c7;
  color: #444444;
  font-size: 1.08333333em;
}
.f3-widget-paginator li.current span {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  overflow: hidden;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  right: 8px;
}
.f3-widget-paginator li.current span em {
  position: absolute;
  left: -36px;
  width: 54px;
  height: 18px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li.current span em i {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
}
.f3-widget-paginator li.current span em i:before {
  content: "\f101";
}
.f3-widget-paginator li.current span em:before {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
  content: "\f101";
}
.f3-widget-paginator li.current span em:after {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
  content: "\f101";
}
.f3-widget-paginator li.current span:hover em {
  left: 0;
}
.f3-widget-paginator li.current.small {
  font-size: 1.08333333em;
  padding: 7px 30px 7px 10px;
}
.f3-widget-paginator li.current.small span {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -8.5px;
  overflow: hidden;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  right: 7px;
}
.f3-widget-paginator li.current.small span em {
  position: absolute;
  left: -30px;
  width: 45px;
  height: 15px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li.current.small span em i {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
}
.f3-widget-paginator li.current.small span em i:before {
  content: "\f101";
}
.f3-widget-paginator li.current.small span em:before {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
  content: "\f101";
}
.f3-widget-paginator li.current.small span em:after {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
  content: "\f101";
}
.f3-widget-paginator li.current.small span:hover em {
  left: 0;
}
.f3-widget-paginator li.current.big {
  font-size: 1.41666667em;
  padding: 9px 40px 9px 18px;
}
.f3-widget-paginator li.current.big span {
  display: block;
  width: 21px;
  height: 21px;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -12.5px;
  overflow: hidden;
  -moz-border-radius: 21px;
  -webkit-border-radius: 21px;
  border-radius: 21px;
}
.f3-widget-paginator li.current.big span em {
  position: absolute;
  left: -42px;
  width: 63px;
  height: 21px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li.current.big span em i {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
}
.f3-widget-paginator li.current.big span em i:before {
  content: "\f101";
}
.f3-widget-paginator li.current.big span em:before {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
  content: "\f101";
}
.f3-widget-paginator li.current.big span em:after {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
  content: "\f101";
}
.f3-widget-paginator li.current.big span:hover em {
  left: 0;
}
.f3-widget-paginator li.current.mega {
  font-size: 2.16666667em;
  padding: 9px 50px 9px 22px;
}
.f3-widget-paginator li.current.mega span {
  display: block;
  width: 26px;
  height: 26px;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  -moz-border-radius: 26px;
  -webkit-border-radius: 26px;
  border-radius: 26px;
  right: 12px;
}
.f3-widget-paginator li.current.mega span em {
  position: absolute;
  left: -52px;
  width: 78px;
  height: 26px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li.current.mega span em i {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
}
.f3-widget-paginator li.current.mega span em i:before {
  content: "\f101";
}
.f3-widget-paginator li.current.mega span em:before {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
  content: "\f101";
}
.f3-widget-paginator li.current.mega span em:after {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
  content: "\f101";
}
.f3-widget-paginator li.current.mega span:hover em {
  left: 0;
}
.f3-widget-paginator li.current.no-style,
.f3-widget-paginator li.current.no-style:hover {
  background: none !important;
  color: #696969;
  padding: 9px 14px;
  top: 2px;
}
.f3-widget-paginator li.current.no-style:hover,
.f3-widget-paginator li.current.no-style:hover:hover {
  text-decoration: underline;
  background: none !important;
}
.f3-widget-paginator li.current.no-style:active,
.f3-widget-paginator li.current.no-style:hover:active {
  top: 2px;
}
.f3-widget-paginator li.current.disabled,
.f3-widget-paginator li.current.disabled:hover {
  background-color: #dadada !important;
  color: #a1a1a1;
  border-color: #b4b4b4;
  text-shadow: none;
  cursor: not-allowed;
}
.f3-widget-paginator li.current.disabled span,
.f3-widget-paginator li.current.disabled:hover span {
  border-color: #b4b4b4;
}
.f3-widget-paginator li.current.disabled span em,
.f3-widget-paginator li.current.disabled:hover span em {
  left: 0;
}
.f3-widget-paginator li.current.disabled:active,
.f3-widget-paginator li.current.disabled:hover:active {
  top: 0;
}
.f3-widget-paginator li.current:hover {
  background-color: #0085e2 !important;
  text-decoration: none;
  color: #ffffff;
}
.f3-widget-paginator li.current:active {
  top: 1px;
}
.f3-widget-paginator li a {
  display: inline-block;
  padding: 9px 36px 9px 14px;
  line-height: normal;
  text-align: left;
  vertical-align: middle;
  cursor: pointer;
  width: auto;
  overflow: visible;
  position: relative;
  background: none;
  border: 0;
  font-size: 1.25em;
  color: #ffffff;
  font-weight: 300;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0067af;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  padding: 4px 8px;
  font-size: 1.08333333em;
}
.f3-widget-paginator li a span {
  display: block;
  width: 18px;
  height: 18px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  overflow: hidden;
  -moz-border-radius: 18px;
  -webkit-border-radius: 18px;
  border-radius: 18px;
  right: 8px;
}
.f3-widget-paginator li a span em {
  position: absolute;
  left: -36px;
  width: 54px;
  height: 18px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li a span em i {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
}
.f3-widget-paginator li a span em i:before {
  content: "\f101";
}
.f3-widget-paginator li a span em:before {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
  content: "\f101";
}
.f3-widget-paginator li a span em:after {
  float: left;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 18px;
  content: "\f101";
}
.f3-widget-paginator li a span:hover em {
  left: 0;
}
.f3-widget-paginator li a.small {
  font-size: 1.08333333em;
  padding: 7px 30px 7px 10px;
}
.f3-widget-paginator li a.small span {
  display: block;
  width: 15px;
  height: 15px;
  border: 1px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -8.5px;
  overflow: hidden;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  right: 7px;
}
.f3-widget-paginator li a.small span em {
  position: absolute;
  left: -30px;
  width: 45px;
  height: 15px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li a.small span em i {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
}
.f3-widget-paginator li a.small span em i:before {
  content: "\f101";
}
.f3-widget-paginator li a.small span em:before {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
  content: "\f101";
}
.f3-widget-paginator li a.small span em:after {
  float: left;
  width: 15px;
  height: 15px;
  line-height: 14px;
  text-align: center;
  font-size: 15px;
  content: "\f101";
}
.f3-widget-paginator li a.small span:hover em {
  left: 0;
}
.f3-widget-paginator li a.big {
  font-size: 1.41666667em;
  padding: 9px 40px 9px 18px;
}
.f3-widget-paginator li a.big span {
  display: block;
  width: 21px;
  height: 21px;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -12.5px;
  overflow: hidden;
  -moz-border-radius: 21px;
  -webkit-border-radius: 21px;
  border-radius: 21px;
}
.f3-widget-paginator li a.big span em {
  position: absolute;
  left: -42px;
  width: 63px;
  height: 21px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li a.big span em i {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
}
.f3-widget-paginator li a.big span em i:before {
  content: "\f101";
}
.f3-widget-paginator li a.big span em:before {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
  content: "\f101";
}
.f3-widget-paginator li a.big span em:after {
  float: left;
  width: 21px;
  height: 21px;
  line-height: 20px;
  text-align: center;
  font-size: 21px;
  content: "\f101";
}
.f3-widget-paginator li a.big span:hover em {
  left: 0;
}
.f3-widget-paginator li a.mega {
  font-size: 2.16666667em;
  padding: 9px 50px 9px 22px;
}
.f3-widget-paginator li a.mega span {
  display: block;
  width: 26px;
  height: 26px;
  border: 2px solid #ffffff;
  position: absolute;
  top: 50%;
  margin-top: -15px;
  overflow: hidden;
  -moz-border-radius: 26px;
  -webkit-border-radius: 26px;
  border-radius: 26px;
  right: 12px;
}
.f3-widget-paginator li a.mega span em {
  position: absolute;
  left: -52px;
  width: 78px;
  height: 26px;
  top: 0;
  font-family: FontAwesome;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.f3-widget-paginator li a.mega span em i {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
}
.f3-widget-paginator li a.mega span em i:before {
  content: "\f101";
}
.f3-widget-paginator li a.mega span em:before {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
  content: "\f101";
}
.f3-widget-paginator li a.mega span em:after {
  float: left;
  width: 26px;
  height: 26px;
  line-height: 25px;
  text-align: center;
  font-size: 26px;
  content: "\f101";
}
.f3-widget-paginator li a.mega span:hover em {
  left: 0;
}
.f3-widget-paginator li a.no-style,
.f3-widget-paginator li a.no-style:hover {
  background: none !important;
  color: #696969;
  padding: 9px 14px;
  top: 2px;
}
.f3-widget-paginator li a.no-style:hover,
.f3-widget-paginator li a.no-style:hover:hover {
  text-decoration: underline;
  background: none !important;
}
.f3-widget-paginator li a.no-style:active,
.f3-widget-paginator li a.no-style:hover:active {
  top: 2px;
}
.f3-widget-paginator li a.disabled,
.f3-widget-paginator li a.disabled:hover {
  background-color: #dadada !important;
  color: #a1a1a1;
  border-color: #b4b4b4;
  text-shadow: none;
  cursor: not-allowed;
}
.f3-widget-paginator li a.disabled span,
.f3-widget-paginator li a.disabled:hover span {
  border-color: #b4b4b4;
}
.f3-widget-paginator li a.disabled span em,
.f3-widget-paginator li a.disabled:hover span em {
  left: 0;
}
.f3-widget-paginator li a.disabled:active,
.f3-widget-paginator li a.disabled:hover:active {
  top: 0;
}
.f3-widget-paginator li a:hover {
  background-color: #0085e2 !important;
  text-decoration: none;
  color: #ffffff;
}
.f3-widget-paginator li a:active {
  top: 1px;
}
.logo-print {
  display: none;
}
/* =============================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed;
  width: 100%;
  z-index: 20;
  top: 0;
  left: 0;
  border-top: 4px solid #002f5d;
}
.fancybox-lock .site-header {
  left: -8px;
}
.site-header .site-header-inner {
  background-color: #ffffff;
  border-bottom: 3px solid #002f5d;
  height: 168px;
  max-width: 1022px;
  min-width: 1022px;
  margin: 0 auto;
  position: relative;
  /*&.scrolled {
      .boxShadow(0 0 3px rgba(0,0,0,0.2));
    }*/
}
.site-header .site-header-inner .brand {
  background-image: url('../images/masters/standard.png');
  background-repeat: no-repeat;
  background-position: -10px -10px;
  width: 153px;
  height: 103px;
  margin-bottom: 0;
  position: absolute;
  top: 15px;
  left: 20px;
}
.site-header .site-header-inner .brand a {
  display: block;
  height: 103px;
  text-indent: -9999px;
}
.site-header .site-header-inner .meta-nav {
  position: absolute;
  right: 20px;
  top: 10px;
  z-index: 20;
  font-size: 0.91666667em;
}
.site-header .site-header-inner .meta-nav > ul {
  float: left;
}
.site-header .site-header-inner .meta-nav > ul > li {
  float: left;
  margin-left: 4px;
  color: #a1a1a1;
  position: relative;
}
.site-header .site-header-inner .meta-nav > ul > li > a {
  color: #a1a1a1;
}
.site-header .site-header-inner .meta-nav > ul > li:hover .dropdown-holder {
  top: 12px;
}
.site-header .site-header-inner .meta-nav > ul > li:hover .dropdown-holder .dropdown {
  top: 0;
  opacity: 1;
}
.site-header .site-header-inner .meta-nav > ul.languages > li > a {
  color: #002f5d;
}
.site-header .site-header-inner .main-nav {
  position: absolute;
  left: 0;
  bottom: 0;
  padding-left: 20px;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.site-header .site-header-inner .main-nav > ul > li {
  float: left;
  margin-right: 5px;
}
.site-header .site-header-inner .main-nav > ul > li > a {
  display: block;
  font-size: 1.08333333em;
  color: #444444;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.site-header .site-header-inner .main-nav > ul > li > a.active {
  background-color: #002f5d;
  text-decoration: none;
  color: #ffffff;
}
.site-header .site-header-inner .main-nav > ul > li:hover > a {
  background-color: #002f5d;
  text-decoration: none;
  color: #ffffff;
}
.site-header .site-header-inner .main-nav > ul > li:hover .dropdown-holder {
  top: 30px;
}
.site-header .site-header-inner .main-nav > ul > li:hover .dropdown-holder .dropdown {
  opacity: 1;
}
.site-header .site-header-inner .search {
  position: absolute;
  right: 20px;
  top: 70px;
}
.site-header .site-header-inner .search input {
  width: 180px;
}
.site-header .site-header-inner .search input:focus {
  width: 240px;
}
.dropdown-holder {
  position: absolute;
  top: -9999px;
  width: 100%;
  left: 0;
  padding-top: 3px;
}
.dropdown-holder .dropdown {
  position: relative;
  opacity: 0;
  background-image: url("../images/singleones/transperancies/white_95.png");
  padding: 30px 20px;
  min-height: 340px;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
  -moz-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}
.dropdown-holder .dropdown .grid-5 {
  margin-top: -2px;
}
.dropdown-holder .dropdown img {
  position: absolute;
  right: 0;
  top: 0;
  max-height: 100%;
}
.languages .dropdown-holder .dropdown img {
  position: relative;
  right: auto;
  top: auto;
  float: left;
  margin-right: 4px;
}
.meta-nav .dropdown-holder {
  left: auto;
  right: 0;
  width: 95px;
}
.meta-nav .dropdown-holder .dropdown {
  padding: 10px;
  min-height: inherit;
}
.meta-nav .dropdown-holder .dropdown ul {
  width: 100%;
}
.meta-nav .dropdown-holder .dropdown ul li a {
  display: block;
  padding: 4px;
  color: #696969;
}
.meta-nav .dropdown-holder .dropdown ul li a.active {
  font-weight: 700;
  color: #002f5d;
}
/* =============================================================================
   GUI Hero
   ========================================================================== */
.hero {
  height: 400px;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
  margin-bottom: 15px;
}
.hero img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.hero .more-info {
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 5;
}
.hero .hero-items {
  position: absolute;
  width: 235px;
  height: 400px;
  right: 20px;
  top: 0;
  z-index: 10;
}
.hero .hero-items li {
  position: absolute;
  top: 0;
  width: 400px;
  -moz-transform: translateX(-100%) rotate(-90deg);
  -o-transform: translateX(-100%) rotate(-90deg);
  -webkit-transform: translateX(-100%) rotate(-90deg);
  -ms-transform: translateX(-100%) rotate(-90deg);
  transform: translateX(-100%) rotate(-90deg);
  -moz-transform-origin: 400px 0;
  -o-transform-origin: 400px 0;
  -webkit-transform-origin: 400px 0;
  -ms-transform-origin: 400px 0;
  transform-origin: 400px 0;
}
.hero .hero-items li a {
  display: block;
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 1.33333333em;
  font-weight: 700;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.hero .hero-items li a i {
  margin-right: 8px;
  font-size: 1.66666667em;
  position: relative;
  top: 3px;
}
.hero .hero-items li a:hover {
  text-decoration: none;
}
.hero .hero-items li.items a {
  background-color: #dadada;
  color: #444444;
}
.hero .hero-items li.items a:hover {
  background-color: #002f5d;
  color: #ffffff;
}
.hero .hero-items li.item-active {
  height: 43px;
  left: -747px;
}
.hero .hero-items li.item-active a {
  height: 43px;
  line-height: 43px;
  background: none;
  background-image: url("../images/singleones/transperancies/white_95.png");
  color: #002f5d;
}
.hero .hero-items li.item-active a:hover {
  color: #002f5d;
  background: none;
  background-image: url("../images/singleones/transperancies/white_95.png");
}
.hero .hero-items.width-2 li.item-2 {
  left: 0;
  height: 235px;
}
.hero .hero-items.width-2 li.item-2 a {
  height: 235px;
  line-height: 235px;
}
.hero .hero-items.width-2 li.item-3 {
  left: 240px;
  height: 235px;
}
.hero .hero-items.width-2 li.item-3 a {
  height: 235px;
  line-height: 235px;
}
.hero .hero-items.width-2 li.item-4 {
  left: 480px;
  height: 235px;
}
.hero .hero-items.width-2 li.item-4 a {
  height: 235px;
  line-height: 235px;
}
.hero .hero-items.width-2 li.item-5 {
  left: 720px;
  height: 235px;
}
.hero .hero-items.width-2 li.item-5 a {
  height: 235px;
  line-height: 235px;
}
.hero .hero-items.width-2 li.item-6 {
  left: 960px;
  height: 235px;
}
.hero .hero-items.width-2 li.item-6 a {
  height: 235px;
  line-height: 235px;
}
.hero .hero-items.width-3 li.item-2 {
  left: 0;
  height: 115px;
}
.hero .hero-items.width-3 li.item-2 a {
  height: 115px;
  line-height: 115px;
}
.hero .hero-items.width-3 li.item-3 {
  left: 120px;
  height: 115px;
}
.hero .hero-items.width-3 li.item-3 a {
  height: 115px;
  line-height: 115px;
}
.hero .hero-items.width-3 li.item-4 {
  left: 240px;
  height: 115px;
}
.hero .hero-items.width-3 li.item-4 a {
  height: 115px;
  line-height: 115px;
}
.hero .hero-items.width-3 li.item-5 {
  left: 360px;
  height: 115px;
}
.hero .hero-items.width-3 li.item-5 a {
  height: 115px;
  line-height: 115px;
}
.hero .hero-items.width-3 li.item-6 {
  left: 480px;
  height: 115px;
}
.hero .hero-items.width-3 li.item-6 a {
  height: 115px;
  line-height: 115px;
}
.hero .hero-items.width-4 li.item-2 {
  left: 0;
  height: 75px;
}
.hero .hero-items.width-4 li.item-2 a {
  height: 75px;
  line-height: 75px;
}
.hero .hero-items.width-4 li.item-3 {
  left: 80px;
  height: 75px;
}
.hero .hero-items.width-4 li.item-3 a {
  height: 75px;
  line-height: 75px;
}
.hero .hero-items.width-4 li.item-4 {
  left: 160px;
  height: 75px;
}
.hero .hero-items.width-4 li.item-4 a {
  height: 75px;
  line-height: 75px;
}
.hero .hero-items.width-4 li.item-5 {
  left: 240px;
  height: 75px;
}
.hero .hero-items.width-4 li.item-5 a {
  height: 75px;
  line-height: 75px;
}
.hero .hero-items.width-4 li.item-6 {
  left: 320px;
  height: 75px;
}
.hero .hero-items.width-4 li.item-6 a {
  height: 75px;
  line-height: 75px;
}
.hero .hero-items.width-5 li.item-2 {
  left: 0;
  height: 55px;
}
.hero .hero-items.width-5 li.item-2 a {
  height: 55px;
  line-height: 55px;
}
.hero .hero-items.width-5 li.item-3 {
  left: 60px;
  height: 55px;
}
.hero .hero-items.width-5 li.item-3 a {
  height: 55px;
  line-height: 55px;
}
.hero .hero-items.width-5 li.item-4 {
  left: 120px;
  height: 55px;
}
.hero .hero-items.width-5 li.item-4 a {
  height: 55px;
  line-height: 55px;
}
.hero .hero-items.width-5 li.item-5 {
  left: 180px;
  height: 55px;
}
.hero .hero-items.width-5 li.item-5 a {
  height: 55px;
  line-height: 55px;
}
.hero .hero-items.width-5 li.item-6 {
  left: 240px;
  height: 55px;
}
.hero .hero-items.width-5 li.item-6 a {
  height: 55px;
  line-height: 55px;
}
.hero .hero-items.width-6 li.item-2 {
  left: 0;
  height: 43px;
}
.hero .hero-items.width-6 li.item-2 a {
  height: 43px;
  line-height: 43px;
}
.hero .hero-items.width-6 li.item-3 {
  left: 48px;
  height: 43px;
}
.hero .hero-items.width-6 li.item-3 a {
  height: 43px;
  line-height: 43px;
}
.hero .hero-items.width-6 li.item-4 {
  left: 96px;
  height: 43px;
}
.hero .hero-items.width-6 li.item-4 a {
  height: 43px;
  line-height: 43px;
}
.hero .hero-items.width-6 li.item-5 {
  left: 144px;
  height: 43px;
}
.hero .hero-items.width-6 li.item-5 a {
  height: 43px;
  line-height: 43px;
}
.hero .hero-items.width-6 li.item-6 {
  left: 192px;
  height: 43px;
}
.hero .hero-items.width-6 li.item-6 a {
  height: 43px;
  line-height: 43px;
}
/* =============================================================================
   GUI Content
   ========================================================================== */
body > .content {
  max-width: 1022px;
  min-width: 1022px;
  margin: 0 auto;
  position: relative;
  padding-top: 175px;
  background-color: #ffffff;
}
.inner-content {
  padding: 20px;
  padding-bottom: 80px;
}
.inner-content.lehrstellenboerse {
  background-image: url("../images/singleones/lehrstellenboerse_bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  padding-top: 40px;
}
.sub-nav {
  padding-top: 20px;
  margin-bottom: 25px;
}
.sub-nav > ul > li {
  border-bottom: 1px solid #dadada;
}
.sub-nav > ul > li:first-child {
  border-top: 1px solid #dadada;
}
.sub-nav > ul > li > a {
  display: block;
  padding: 10px 10px;
  padding-left: 20px;
  line-height: normal;
  position: relative;
  color: #565656;
  font-size: 1.08333333em;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.sub-nav > ul > li > a i {
  left: 0;
  position: absolute;
  top: 4px;
  font-size: 2em;
  display: block;
  opacity: 0;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.sub-nav > ul > li > a:hover,
.sub-nav > ul > li > a.active {
  color: #002f5d;
  text-decoration: none;
}
.sub-nav > ul > li > a:hover i,
.sub-nav > ul > li > a.active i {
  left: 5px;
  opacity: 1;
}
.sub-nav > ul > li ul {
  margin-left: 22px;
  margin-bottom: 10px;
}
.sub-nav > ul > li ul li {
  margin-bottom: 4px;
}
.sub-nav > ul > li ul li a {
  display: block;
  color: #696969;
  padding-left: 12px;
  position: relative;
}
.sub-nav > ul > li ul li a i {
  left: 0;
  position: absolute;
  top: 1px;
  display: block;
  opacity: 0;
  -moz-transition: all 0.15s;
  -o-transition: all 0.15s;
  -webkit-transition: all 0.15s;
  -ms-transition: all 0.15s;
  transition: all 0.15s;
}
.sub-nav > ul > li ul li a:hover,
.sub-nav > ul > li ul li a.active {
  color: #002f5d;
  text-decoration: none;
}
.sub-nav > ul > li ul li a:hover i,
.sub-nav > ul > li ul li a.active i {
  left: 2px;
  opacity: 1;
}
.dropdown .sub-nav {
  padding-top: 0;
}
.dropdown .sub-nav > ul > li > a {
  text-transform: uppercase;
  font-size: 1em;
}
.lehrstellenboerse .sub-nav {
  padding-top: 0;
}
/* =============================================================================
   Footer
   ========================================================================== */
.site-footer {
  height: 35px;
  background-image: url("../images/singleones/transperancies/blue_80.png");
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  color: #ffffff;
  z-index: 20;
}
.fancybox-lock .site-footer {
  left: -8px;
}
.site-footer .site-footer-inner {
  max-width: 1022px;
  min-width: 1022px;
  margin: 0 auto;
  position: relative;
}
.site-footer .site-footer-inner .bottom-meta {
  position: absolute;
  right: 20px;
  top: 0;
  height: 35px;
  line-height: 35px;
}
.site-footer .site-footer-inner .bottom-meta li {
  float: left;
  margin-left: 10px;
}
.site-footer .site-footer-inner .bottom-meta li a {
  line-height: 35px;
  font-size: 1.25em;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
}
.site-footer .site-footer-inner .external-links {
  position: absolute;
  left: 0;
  top: 0;
}
.site-footer .site-footer-inner .external-links li {
  float: left;
  margin-right: 10px;
}
.site-footer .site-footer-inner .external-links li a {
  display: block;
  line-height: 35px;
  color: #ffffff;
  font-size: 0.91666667em;
  font-weight: 700;
}
/* =============================================================================
   Standard Delete & Extend Classes
   ========================================================================== */
/* =============================================================================
   Base Delete & Extend Classes
   ========================================================================== */
.no-margin {
  margin: 0;
}
.no-margin-bottom {
  margin-bottom: 0;
}
.margin-bottom {
  margin-bottom: 25px;
}
.margin-bottom-10 {
  margin-bottom: 10px;
}
.display-inline {
  display: inline-block;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.small-margin-bottom {
  margin-bottom: 10px;
}
.small-margin-top {
  margin-top: -10px;
}
.padding-top-10 {
  padding-top: 10px;
}
.padding-top-20 {
  padding-top: 20px;
}
.padding-top-30 {
  padding-top: 30px;
}
.padding-top-40 {
  padding-top: 40px;
}
.padding-top-50 {
  padding-top: 50px;
}
.padding-top-60 {
  padding-top: 60px;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/* ==========================================================================
   IE Fixes
   ========================================================================== */
/* ==========================================================================
   IE Fixes
   ========================================================================== */
.lt-ie9 .sub-nav > ul > li > a i {
  left: 5px;
  display: none;
}
.lt-ie9 .sub-nav > ul > li > a:hover i,
.lt-ie9 .sub-nav > ul > li > a.active i {
  display: block;
}
.lt-ie9 .sub-nav > ul > li ul li a i {
  left: 2px;
  display: none;
}
.lt-ie9 .sub-nav > ul > li ul li a:hover i,
.lt-ie9 .sub-nav > ul > li ul li a.active i {
  display: block;
}
/* ==========================================================================
   Media Queries
   ========================================================================== */
@media only screen and (max-width: 1340px) {
  /* Small Devices 1340 */
  .content-header .content-header-inner h1 {
    font-size: 2.5em;
  }
  .content-header .content-header-inner p {
    font-size: inherit;
  }
  .content-header.subsite .content-header-inner h1 {
    font-size: 38px;
  }
  .tabs li a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1220px) {
  /* Small Devices 1220 */
  .content-wrapper > .content {
    padding-left: 0;
    padding-top: 80px;
  }
  .sidebar {
    position: fixed;
    width: 100%;
    height: 80px;
    padding-bottom: 2px;
    background-image: url("../images/singleones/transperancies/black_10.png");
    z-index: 1000;
  }
  .sidebar .sidebar-inner {
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
  }
  .sidebar .sidebar-inner .brand {
    border-bottom: 0;
    border-right: 1px solid #ececec;
    width: 170px;
    height: 80px;
    background-size: 75% auto;
  }
  .sidebar .sidebar-inner .main-nav > ul {
    position: absolute;
    width: 100%;
    height: 80px;
  }
  .sidebar .sidebar-inner .main-nav > ul > li {
    float: left;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.top > a {
    border-left: 0;
    height: 30px;
    line-height: normal;
    padding: 0 8px;
    padding-top: 50px;
    text-align: center;
    font-size: 1.08333333em;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    -webkit-transition: all 0.15s;
    -ms-transition: all 0.15s;
    transition: all 0.15s;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.top > a i {
    left: 50%;
    margin-left: -26px;
    top: 5px;
    font-size: 2.33333333em;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    -webkit-transition: all 0.15s;
    -ms-transition: all 0.15s;
    transition: all 0.15s;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.top > a.active {
    background-color: #001224;
    border-color: #002f5d;
    color: #ffffff;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.top > a.active i {
    color: #ffffff;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.top.last {
    margin-bottom: 20px;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.bottom > a {
    border-left: 0;
    height: 30px;
    line-height: normal;
    padding: 0 8px;
    padding-top: 50px;
    text-align: center;
    font-size: 1.08333333em;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    -webkit-transition: all 0.15s;
    -ms-transition: all 0.15s;
    transition: all 0.15s;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.bottom > a i {
    left: 50%;
    margin-left: -26px;
    top: 5px;
    font-size: 2.33333333em;
    -moz-transition: all 0.15s;
    -o-transition: all 0.15s;
    -webkit-transition: all 0.15s;
    -ms-transition: all 0.15s;
    transition: all 0.15s;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.bottom > a.active {
    background-color: #001224;
    border-color: #002f5d;
    color: #ffffff;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.bottom > a.active i {
    color: #ffffff;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.bottom.last {
    margin-bottom: 20px;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.bottom > a {
    padding: 0 8px;
    height: 80px;
    line-height: 80px;
  }
  .sidebar .sidebar-inner .main-nav > ul > li.bottom > a i {
    display: none;
  }
  .sidebar .sidebar-inner .main-nav > ul > li:hover .main-nav-slider {
    left: 0;
    top: 80px;
    z-index: 1002;
  }
  .main-nav-slider {
    width: 100%;
    padding: 20px;
    height: 100px;
    left: 0;
    top: -60px;
    -moz-transition: top 0.3s;
    -o-transition: top 0.3s;
    -webkit-transition: top 0.3s;
    -ms-transition: top 0.3s;
    transition: top 0.3s;
    display: none;
  }
  .choose-language {
    display: none;
  }
  .site-footer {
    margin-left: 0;
  }
  .main-nav .social-media-icons {
    display: none;
  }
  .site-footer .social-media-icons {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 0;
    display: block;
  }
}
@media only screen and (max-width: 1024px) {
  /* Small Devices 1220 */
  body {
    font-size: 0.95em;
  }
  .site-header {
    position: absolute;
  }
  .site-footer {
    position: relative;
  }
}
@media only screen and (max-width: 800px) {
  /* Small Devices 800 */
  .content-header {
    padding: 30px;
  }
  .content-header.subsite {
    padding: 20px 30px 25px 40px;
  }
  .main-content {
    padding: 30px;
  }
}
@media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* =============================================================================
   Base Includes End
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.cf:before,
.cf:after {
  content: " ";
  display: table;
}
.cf:after {
  clear: both;
}
.cf {
  *zoom: 1;
}
