/**
 * OVERVIEW
 * 
 * IMPORTS
 * reset, core, patterns, plugins
 * 
 * LAYOUT
 * Grid / Elements (icons, slideshow, other, ...)
 * Header / Main / Footer
 * Content elements (no overrides from main)
 * Pages (page overrides)
 * 
 * Hooks (IE, ...)
 * Print
 */
/**
 * GUIDELINES
 * 
 * CLASSES
 * Naming: lorem-ipsum
 * Abbreviations: Emmet - http://docs.emmet.io/cheat-sheet/ | example: .va-m
 * 
 * MEDIAQUERIES
 * @media @mobile, @tabletMini, @tablet, @desktop, @desktopSmall, @wide ...
 */
/* =============================================================================
   IMPORTS
   ========================================================================== */
/* CSS Reset */
/*
 * Esign reset.less
 * Adapted version of:
 * - Eric Meyer reset
 * - Boilerplate Normalize.css
 * - Normalize opentype
 */
html {
  overflow-y: scroll;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
cite,
code,
del,
dfn,
em,
img,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dd,
dl,
dt,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  line-height: 1;
  font-family: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
time,
section {
  display: block;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url('../js/polyfills/boxsizing.htc');
}
/* HTML5 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
/* TYPE */
a:focus {
  outline: thin dotted;
}
ol,
ul {
  list-style: none;
}
q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
/**
 * Turn on proper supercript numerals
 */
sup {
  top: -0.5em;
}
/**
 * Turn on proper subscript numerals
 */
sub {
  bottom: -0.25em;
}
figure {
  margin: 0;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
svg:not(:root) {
  overflow: hidden;
}
/**
 * Turn on small caps for upper and lowercase letters
 */
abbr {
  text-transform: uppercase;
}
time {
  display: block;
}
/* FORMS */
button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
  *overflow: visible;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
/* TABLE */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* Core */
/* Preboot.less
 * Variables and mixins to pre-ignite any new web development project
 * ------------------------------------------------------------------ */
.a-c {
  text-align: center;
}
.a-l {
  text-align: left;
}
.a-r {
  text-align: right;
}
.desktop-a-l {
  text-align: left;
}
.desktop-a-c {
  text-align: center;
}
.desktop-a-r {
  text-align: right;
}
.left {
  float: left;
}
.right {
  float: right;
}
.tt-u {
  text-transform: uppercase;
}
.tt-l {
  text-transform: lowercase;
}
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
}
.clearfix:after {
  clear: both;
}
/* Image replacement */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}
/* Hide from both screenreaders and browsers: h5bp.com/u */
.hidden {
  display: none !important;
  visibility: hidden;
}
/* Hide only visually, but have it available for screenreaders: h5bp.com/v */
.vh {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: h5bp.com/p */
.vh.focusable:active,
.vh.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
/* Hide visually and from screenreaders, but maintain layout */
.invisible {
  visibility: hidden;
}
/* User select */
.text-truncate {
  text-overflow: ellipsis;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}
/* ------------------------ */
/* LESS mixin for CSS arrow */
/* ------------------------ */
/* Usage
 * .arrow(size, color, direction, offset, border-size, border-color); 
 */
/* Where
 * Size is the with of the arrow
 * Color is the color of the arrow (plain color required)
 * Direction is the orientation of the arrow (top, right, bottom, left)
 * Offset is the position of the arrow on its axis (px / em)
 * Border-size is the width of the border if there is one (optional; default "0")
 * Border-color is the color of the border if there is one (optional; default "inherit"); 
 */
/* Extra
 * Drop-shadows can be used on the element to create a shadow on the arrow as well 
 */
/* Styled patterns and elements */
@font-face {
  font-family: 'abril_fatface';
  src: url('../fonts/abrilfatface-regular-webfont.eot');
  src: url('../fonts/abrilfatface-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/abrilfatface-regular-webfont.woff2') format('woff2'), url('../fonts/abrilfatface-regular-webfont.woff') format('woff'), url('../fonts/abrilfatface-regular-webfont.ttf') format('truetype'), url('../fonts/abrilfatface-regular-webfont.svg#abril_fatfaceregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'aleolight';
  src: url('../fonts/aleo-light-webfont-webfont.eot');
  src: url('../fonts/aleo-light-webfont-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/aleo-light-webfont-webfont.woff2') format('woff2'), url('../fonts/aleo-light-webfont-webfont.woff') format('woff'), url('../fonts/aleo-light-webfont-webfont.ttf') format('truetype'), url('../fonts/aleo-light-webfont-webfont.svg#_.regular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'sofia_pro_softmed';
  src: url('../fonts/sofiaprosoftmed-webfont.eot');
  src: url('../fonts/sofiaprosoftmed-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/sofiaprosoftmed-webfont.woff2') format('woff2'), url('../fonts/sofiaprosoftmed-webfont.woff') format('woff'), url('../fonts/sofiaprosoftmed-webfont.ttf') format('truetype'), url('../fonts/sofiaprosoftmed-webfont.svg#sofia_pro_softmedium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'sofia_pro_softlight';
  src: url('../fonts/sofiaprosoftlight-webfont.eot');
  src: url('../fonts/sofiaprosoftlight-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/sofiaprosoftlight-webfont.woff2') format('woff2'), url('../fonts/sofiaprosoftlight-webfont.woff') format('woff'), url('../fonts/sofiaprosoftlight-webfont.ttf') format('truetype'), url('../fonts/sofiaprosoftlight-webfont.svg#sofia_pro_softlight') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Typography.less
 * Headings, body text, lists, code, and more for a versatile and durable typography system
 * ---------------------------------------------------------------------------------------- */
/* BODY */
p {
  line-height: 1.5em;
  margin-bottom: 1.5em;
}
p.small {
  font-size: 20px;
  font-size: 2rem;
}
@media only screen and (min-width: 767px) {
  p.large {
    font-size: 30px;
    font-size: 3rem;
  }
}
p.white {
  color: #ffffff;
}
p.mb0 {
  margin-bottom: 0;
}
strong {
  font-family: "sofia_pro_softmed";
  font-size: inherit;
  color: #fe504f;
}
em {
  font-style: italic;
  font-weight: inherit;
}
a {
  color: #fe504f;
  text-decoration: none;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  font-weight: inherit;
  font-style: inherit;
}
a:hover,
a:focus {
  color: #fe0403;
}
a.tdn {
  text-decoration: none;
}
a.tdn:hover,
a.tdn:focus {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
/* HEADINGS */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "aleolight";
  color: #444444;
  line-height: 1.2em;
  margin: 0 0 0.8em;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  text-decoration: none;
  outline: none;
  font-weight: inherit;
  color: #fe504f;
}
h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover,
h1 a:focus,
.h1 a:focus,
h2 a:focus,
.h2 a:focus,
h3 a:focus,
.h3 a:focus,
h4 a:focus,
.h4 a:focus,
h5 a:focus,
.h5 a:focus,
h6 a:focus,
.h6 a:focus {
  color: #fe0403;
}
h1,
.h1 {
  font-size: 36px;
  font-size: 3.6rem;
}
h1.white,
.h1.white {
  color: #ffffff;
}
@media only screen and (min-width: 767px) {
  h1,
  .h1 {
    font-size: 48px;
    font-size: 4.8rem;
  }
}
h2,
.h2 {
  font-size: 18px;
  font-size: 1.8rem;
}
h2.white,
.h2.white {
  color: #ffffff;
}
@media only screen and (min-width: 767px) {
  h2,
  .h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
h3,
.h3 {
  font-size: 17px;
  font-size: 1.7rem;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 767px) {
  h3,
  .h3 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
@media only screen and (min-width: 767px) {
  h4,
  .h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
/* LISTS */
ul,
ol {
  margin: 0 0 1.5em 0;
}
ul li,
ol li {
  line-height: 1.5em;
  padding: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}
ul {
  list-style: disc;
}
ul ul {
  list-style: circle;
}
ul.social {
  margin: 0;
  padding: 0;
  list-style: none;
  zoom: 1;
}
ul.social ul {
  list-style: none;
}
ul.social li {
  list-style: none;
  list-style-image: none;
  padding: 0;
  background: none;
}
ul.social:before,
ul.social:after {
  display: table;
  content: "";
}
ul.social:after {
  clear: both;
}
ul.social li {
  float: left;
}
ul.social {
  margin: 20px 0 20px -5px;
}
ul.social li {
  margin: 0 0 5px 5px;
}
ul.social a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: block;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  background: #fe504f;
  text-decoration: none;
  text-align: center;
  overflow: hidden;
}
ul.social .twitter {
  background: #2DAAE1;
}
ul.social .twitter:hover,
ul.social .twitter:focus {
  background: #1d94c9;
}
ul.social .facebook {
  background: #3C5B9B;
}
ul.social .facebook:hover,
ul.social .facebook:focus {
  background: #314a7e;
}
ul.social .pinterest {
  background: #CB2027;
}
ul.social .pinterest:hover,
ul.social .pinterest:focus {
  background: #a81a20;
}
ul.social .linkedin {
  background: #0173B2;
}
ul.social .linkedin:hover,
ul.social .linkedin:focus {
  background: #015989;
}
ul.lined {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.lined ul {
  list-style: none;
}
ul.lined li {
  list-style: none;
  list-style-image: none;
  padding: 0;
  background: none;
}
ul.lined li {
  border-bottom: 1px solid #E3E3E3;
  padding: 5px 0;
}
ul.lined li:first-child {
  padding-top: 0;
}
ul.lined li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
ol {
  list-style: decimal;
}
.unstyled,
nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.unstyled ul,
nav ul ul {
  list-style: none;
}
.unstyled li,
nav ul li {
  list-style: none;
  list-style-image: none;
  padding: 0;
  background: none;
}
nav ul {
  zoom: 1;
}
nav ul:before,
nav ul:after {
  display: table;
  content: "";
}
nav ul:after {
  clear: both;
}
dl {
  margin: 0 0 40px;
}
/* MISC */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #fe504f;
  margin: 70px 0 40px;
}
blockquote {
  line-height: inherit;
}
/*
 * Tables.less
 * Tables for, you guessed it, tabular data
 * ---------------------------------------- */
table {
  width: 100%;
  padding: 0;
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  margin: 0 0 1.5em;
}
table th,
table td {
  padding: 11px 6px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
  line-height: 1.5em;
}
table th {
  font-weight: bold;
  border-bottom: 2px solid #ddd;
}
/* Forms.less
 * Base styles for various input types, form layouts, and states
 * ------------------------------------------------------------- */
form {
  margin: 0;
}
legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
  color: #fff;
  font-size: 18px;
}
button,
input,
select,
textarea,
.button {
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
label,
.label,
input,
select,
textarea {
  font-family: "sofia_pro_softlight", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5em;
  font-weight: normal;
  vertical-align: middle;
  color: #444444;
}
label,
.label {
  display: block;
  margin-bottom: 8px;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
  border: none;
}
input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
}
input[type="text"],
input[type="search"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  padding: 6px;
  margin-bottom: 2px;
  display: block;
  background: #fff;
  height: 35px;
  line-height: inherit;
  width: 100%;
  border: 1px solid transparent;
}
input[type="text"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #d2cecb;
}
input[type="email"] {
  display: block;
}
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
  width: 100%;
  height: 185px;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  *margin-top: 0;
  *height: 13px;
  *width: 13px;
  line-height: normal;
  border: none;
}
input[type="file"] {
  background-color: #fff;
  padding: initial;
  border: initial;
  line-height: initial;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
button,
input[type="reset"],
input[type="submit"],
.button,
a.button {
  font-family: 'sofia_pro_softmed';
  display: inline-block;
  clear: both;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  outline: none;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 13px 30px;
  margin: 10px 0 0;
  background: #fe504f;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}
button.white,
input[type="reset"].white,
input[type="submit"].white,
.button.white,
a.button.white {
  background-color: #ffffff;
  color: #fe504f;
}
button.white:hover,
input[type="reset"].white:hover,
input[type="submit"].white:hover,
.button.white:hover,
a.button.white:hover,
button.white:focus,
input[type="reset"].white:focus,
input[type="submit"].white:focus,
.button.white:focus,
a.button.white:focus,
button.white:active,
input[type="reset"].white:active,
input[type="submit"].white:active,
.button.white:active,
a.button.white:active {
  background: #fe504f;
  color: #ffffff;
}
button i,
input[type="reset"] i,
input[type="submit"] i,
.button i,
a.button i {
  margin: -5px 6px 0 5px;
}
button:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.button:hover,
a.button:hover,
button:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.button:focus,
a.button:focus,
button:active,
input[type="reset"]:active,
input[type="submit"]:active,
.button:active,
a.button:active {
  background: #fe0403;
  color: #ffffff;
}
button:active,
input[type="reset"]:active,
input[type="submit"]:active,
.button:active,
a.button:active {
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
button::-moz-focus-inner,
input[type="reset"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
.button::-moz-focus-inner,
a.button::-moz-focus-inner {
  border: 0;
}
button.large,
input[type="reset"].large,
input[type="submit"].large,
.button.large,
a.button.large {
  font-size: 22px;
  font-size: 2.2rem;
  padding: 22px 68px;
  font-family: 'sofia_pro_softmed';
}
button,
input[type="text"],
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="email"],
input[type="tel"],
textarea {
  -webkit-appearance: none;
}
button:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
.button:focus,
a.button:focus,
select:focus {
  outline: none;
  *outline: inherit;
  -webkit-box-shadow: 0 0 1px 1px rgba(200, 200, 200, 0.1);
  -moz-box-shadow: 0 0 1px 1px rgba(200, 200, 200, 0.1);
  box-shadow: 0 0 1px 1px rgba(200, 200, 200, 0.1);
}
::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
}
::-moz-placeholder {
  color: #999;
  font-style: italic;
}
:-ms-input-placeholder {
  color: #999;
  font-style: italic;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #999;
  font-style: italic;
}
/*::-ms-reveal { display: none; } /* Hide reveal password ie 10+ */
::-ms-clear {
  display: none;
}
/* Hide clear text field ie 10+ */
input[type="search"] {
  -webkit-appearance: none;
}
/* Remove the rounded corners */
::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
/* Hide the cancel button */
::-webkit-search-results-button {
  -webkit-appearance: none;
}
/* Hide the magnifying glass */
::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
/* Hide number input spinner */
::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
/* Style file upload button */
/* forms */
form .row {
  margin-bottom: 0;
}
form ul {
  list-style: none;
}
fieldset {
  width: auto;
}
fieldset p,
fieldset ul,
fieldset li {
  zoom: 1;
}
fieldset p:before,
fieldset ul:before,
fieldset li:before,
fieldset p:after,
fieldset ul:after,
fieldset li:after {
  display: table;
  content: "";
}
fieldset p:after,
fieldset ul:after,
fieldset li:after {
  clear: both;
}
fieldset ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
fieldset ul ul {
  list-style: none;
}
fieldset ul li {
  list-style: none;
  list-style-image: none;
  padding: 0;
  background: none;
}
fieldset li {
  margin: 0 0 10px;
}
fieldset li.error input {
  border-color: #fe0403;
}
.a-c .button,
.a-c a.button {
  float: none;
  clear: none;
  display: inline-block;
}
/* Plugins */
/* Validation engine */
.formError {
  z-index: 990;
}
.formError .formErrorContent {
  z-index: 991;
}
.formError .formErrorArrow {
  z-index: 996;
}
.formErrorInsideDialog.formError {
  z-index: 5000;
}
.formErrorInsideDialog.formError .formErrorContent {
  z-index: 5001;
}
.formErrorInsideDialog.formError .formErrorArrow {
  z-index: 5006;
}
.inputContainer {
  position: relative;
  float: left;
}
.formError,
.formError * {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  margin: 0 0 0 -128px;
}
.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}
.formError .formErrorContent {
  background: #fe504f;
  position: relative;
  color: #fff;
  width: 150px;
  border: 1px solid #fe504f;
  padding: 4px 10px 4px 10px;
  white-space: nowrap;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}
.formError .formErrorArrowBottom {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}
.formError .formErrorArrow div {
  font-size: 0px;
  height: 1px;
  background: #fe504f;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
  border-left: 1px solid #fe504f;
  border-right: 1px solid #fe504f;
  -webkit-box-shadow: 0 0 1px 1px rgba(200, 200, 200, 0.2);
  -moz-box-shadow: 0 0 1px 1px rgba(200, 200, 200, 0.2);
  box-shadow: 0 0 1px 1px rgba(200, 200, 200, 0.2);
}
.formError .formErrorArrowBottom div {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.formError .formErrorArrow .line10 {
  width: 15px;
  border: none;
}
.formError .formErrorArrow .line9 {
  width: 13px;
  border: none;
}
.formError .formErrorArrow .line8 {
  width: 11px;
}
.formError .formErrorArrow .line7 {
  width: 9px;
}
.formError .formErrorArrow .line6 {
  width: 7px;
}
.formError .formErrorArrow .line5 {
  width: 5px;
}
.formError .formErrorArrow .line4 {
  width: 3px;
}
.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #fe504f;
  border-right: 2px solid #fe504f;
  border-bottom: 0 solid #ddd;
}
.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #fe504f;
}
.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #fe504f;
}
/*! fancyBox v2.1.4 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: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.fancybox-opened {
  z-index: 8030;
}
.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}
.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,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
  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: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}
.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-prev {
  left: 0;
}
.fancybox-next {
  right: 0;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}
.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}
.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}
.fancybox-nav:hover span {
  visibility: visible;
}
.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;
  margin-right: 0 !important;
}
.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: auto;*/

}
/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  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: 10px;
}
.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8);
}
/* =============================================================================
   LAYOUT
   ========================================================================== */
@media only screen and (min-width: 767px) {
  html,
  body {
    height: 100%;
  }
}
html {
  font-size: 62.5%;
}
body {
  font-family: "sofia_pro_softlight", sans-serif;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.5em;
  font-weight: normal;
  color: #444444;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.page-wrap {
  position: relative;
}
@media only screen and (min-width: 767px) {
  .page-wrap {
    height: auto;
    min-height: 100%;
    z-index: 2;
  }
}
/* typekit async loading (all elements using @ typekit font) */
.wf-loading body {
  visibility: hidden;
}
::-moz-selection {
  background-color: rgba(254, 4, 3, 0.2);
  color: inherit;
}
::selection {
  background-color: rgba(254, 4, 3, 0.2);
  color: inherit;
}
/* =============================================================================
   GRID
   ========================================================================== */
.container {
  margin: 0 20px;
  position: relative;
  z-index: 5;
  zoom: 1;
  padding: 30px 0 10px;
}
.container:before,
.container:after {
  display: table;
  content: "";
}
.container:after {
  clear: both;
}
@media only screen and (min-width: 767px) {
  .container {
    margin: 0 10px;
    padding: 100px 0 80px;
  }
}
@media only screen and (min-width: 980px) {
  .container {
    width: 980px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1350px) {
  .container {
    width: 1130px;
  }
}
.row {
  zoom: 1;
  margin: 0 0 20px -20px;
}
.row:before,
.row:after {
  display: table;
  content: "";
}
.row:after {
  clear: both;
}
.row.g0 {
  margin-left: 0;
  margin-bottom: 0;
}
.row.g0 .one-half,
.row.g0 .two-third,
.row.g0 .one-third,
.row.g0 .three-fourth,
.row.g0 .one-fourth {
  padding-left: 0;
}
.row.g0 img {
  width: 100%;
}
@media only screen and (min-width: 767px) {
  
}
@media only screen and (min-width: 980px) {
  .row.g80 {
    margin-left: -80px;
  }
  .row.g80 .one-half,
  .row.g80 .two-third,
  .row.g80 .one-third,
  .row.g80 .three-fourth,
  .row.g80 .one-fourth {
    padding-left: 80px;
  }
}
.one-half,
.two-third,
.one-third,
.three-fourth,
.one-fourth {
  float: left;
  display: block;
  width: 100%;
  padding-left: 20px;
}
@media only screen and (min-width: 767px) {
  .one-half.margin,
  .two-third.margin,
  .one-third.margin,
  .three-fourth.margin,
  .one-fourth.margin {
    margin-left: 25%;
  }
}
@media only screen and (min-width: 767px) {
  .one-half {
    width: 50%;
  }
}
@media only screen and (min-width: 767px) {
  .two-third {
    width: 66.66%;
  }
}
@media only screen and (min-width: 767px) {
  .one-third {
    width: 33.33%;
  }
}
@media only screen and (min-width: 600px) {
  .three-fourth {
    width: 50%;
  }
}
@media only screen and (min-width: 767px) {
  .three-fourth {
    width: 75%;
  }
}
@media only screen and (min-width: 600px) {
  .one-fourth {
    width: 50%;
  }
}
@media only screen and (min-width: 767px) {
  .one-fourth {
    width: 25%;
  }
}
.center {
  text-align: center;
}
.hide {
  display: none;
}
/* =============================================================================
   ELEMENTS
   ========================================================================== */
/* ICONS */
.icon {
  background-image: url('../images/template-sprite.png');
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  .icon {
    background-image: url('../images/template-sprite@2x.png');
    background-size: 300px 50px;
  }
}
.icon-hamburger,
.icon-hamburger:before,
.icon-hamburger:after {
  width: 24px;
  position: absolute;
  height: 1px;
  border-top: 3px solid #fe504f;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.icon-hamburger {
  position: relative;
}
.icon-hamburger:before,
.icon-hamburger:after {
  content: "";
  margin-left: 0;
}
.icon-hamburger:before {
  margin-top: 3px;
}
.icon-hamburger:after {
  margin-top: 9px;
}
/* SLIDESHOW */
.cycle-slideshow {
  width: 100%;
  position: relative;
}
.cycle-pager {
  width: 100%;
  text-align: center;
}
.cycle-pager span {
  border: 2px solid #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  height: 20px;
  width: 20px;
  display: inline-block;
  cursor: pointer;
  margin: 0 3px;
  line-height: 14px;
  font-size: 36px;
  color: #fff;
  overflow: hidden;
  text-indent: -500px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.cycle-pager span:hover,
.cycle-pager span:focus {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}
.cycle-pager span:hover,
.cycle-pager span:focus,
.cycle-pager .cycle-pager-active {
  text-indent: 0;
}
/* OTHER */
/* google maps mw */
.gm-style img {
  max-width: inherit;
}
/* responsive video */
iframe {
  max-width: 100%;
  height: auto;
}
.video-container {
  position: relative;
  padding: 0 0 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 0 15px;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* equal height */
.equal-h,
.equal-h > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.equal-h {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}
.equal-h:before,
.equal-h:after {
  display: none;
}
html.no-flexbox .equal-h {
  height: 100%;
}
/* vertical align */
.va-wrap,
.va-m,
.va-b {
  display: table;
  width: 100%;
  height: 100%;
}
.va-wrap {
  table-layout: fixed;
}
.va-m,
.va-b {
  display: table-cell;
}
.va-m {
  vertical-align: middle;
}
.va-b {
  vertical-align: bottom;
}
/* blocklink */
.blocklink {
  cursor: pointer;
}
/* styling lists */
.list-type-1 {
  text-align: left;
  list-style: none;
  display: inline-block;
  font-size: 25px;
  font-size: 2.5rem;
  max-width: 750px;
}
.list-type-1 li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}
.list-type-1 li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  height: 3px;
  width: 18px;
  background: #fe504f;
}
.list-type-1.alt li:before {
  background: #ffffff;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
.list-type-2 {
  display: inline-block;
  text-align: left;
}
.list-type-2 .list-head {
  background-color: #edebe5;
  padding: 5px 20px 15px;
  margin-bottom: 1em;
  text-align: center;
}
@media only screen and (min-width: 767px) {
  .list-type-2 .list-head {
    text-align: left;
  }
}
.list-type-2 .list-head .number {
  margin: 0;
  font-family: "abril_fatface";
  font-size: 40px;
  font-size: 4rem;
  color: #fe504f;
}
@media only screen and (min-width: 767px) {
  .list-type-2 .list-head .number {
    font-size: 60px;
    font-size: 6rem;
  }
}
.list-type-2 .list-body {
  padding: 0 3px;
}
/* =============================================================================
   HEADER
   ========================================================================== */
.page-header {
  height: 520px;
  background: #d2cecb url('../images/background.jpg') no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@media only screen and (min-width: 767px) {
  .page-header {
    height: 97vh;
  }
}
@media only screen and (min-width: 980px) {
  .page-header h1 {
    font-size: 60px;
    font-size: 6rem;
    margin-bottom: 0.6em;
  }
  .page-header p {
    font-size: 28px;
    font-size: 2.8rem;
  }
}
.arrow {
  position: relative;
  z-index: 1;
}
.arrow::before {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 22px;
  background: transparent url('../images/pijl.png');
  top: 80px;
  left: 50%;
  margin-left: -7.5px;
}
.logo {
  text-decoration: none;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
.logo img {
  display: block;
}
.logo:hover,
.logo:focus {
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-nav {
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  color: #444444;
}
.main-nav a {
  text-decoration: none;
  color: #777777;
  padding: 9px 0 9px 45px;
  display: block;
  border-top: 1px solid #f4f4f4;
}
.main-nav a:hover,
.main-nav a:focus,
.main-nav li.active a {
  color: #444444;
}
.main-nav .trigger {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 9px 0 9px 45px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.main-nav .trigger .icon-hamburger {
  position: absolute;
  left: 0;
  top: 12px;
}
.main-nav .nav-wrap {
  display: none;
  margin: 0 0 15px;
}
@media only screen and (min-width: 767px) {
  .main-nav li {
    float: left;
    margin: 0 0 0 20px;
  }
  .main-nav a {
    border-top: 0;
    padding: 0;
  }
  .main-nav .trigger {
    display: none;
  }
  .main-nav .nav-wrap {
    margin: 0 0 0 -20px;
    display: block;
  }
}
/* =============================================================================
   MAIN
   ========================================================================== */
.main {
  padding: 0 0;
}
@media only screen and (min-width: 767px) {
  .main {
    padding: 0 0;
  }
}
/* =============================================================================
   FOOTER
   ========================================================================== */
.page-footer {
  position: relative;
  color: #b4b4b4;
}
.page-footer p {
  line-height: 1.3em;
}
.page-footer a {
  color: #b4b4b4;
}
.page-footer a:hover,
.page-footer a:focus {
  color: #fe504f;
}
.page-footer .row {
  margin-bottom: 0;
}
@media only screen and (min-width: 767px) {
  .page-footer {
    height: 60px;
    margin: 0 0;
    z-index: 5;
  }
}
.page-footer .container {
  padding-bottom: 0.5em;
}
.logo {
  width: 100%;
  padding-left: 20px;
}
.logo a.esign {
  width: 104px;
  height: 20px;
  background-image: url('../images/logo-esign.png');
  text-indent: -9999px;
  -khtml-opacity: 0.6;
  -moz-opacity: 0.6;
  opacity: 0.6;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -ms-transition: 1s;
  -o-transition: 1s;
  transition: 1s;
  display: inline-block;
  outline: none;
}
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  .logo a.esign {
    background-image: url('../images/logo-esign@2x.png');
    background-size: 104px 20px;
  }
}
.logo a.esign:hover {
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
@media only screen and (min-width: 767px) {
  .logo {
    width: 25%;
    text-align: right;
    float: left;
    display: block;
  }
}
/* =============================================================================
   CONTENT
   ========================================================================== */
.center-block {
  text-align: center;
  zoom: 1;
  margin: 20px 0;
}
.center-block:before,
.center-block:after {
  display: table;
  content: "";
}
.center-block:after {
  clear: both;
}
.center-block .button {
  float: none;
  display: inline-block;
}
.box {
  margin: 0 0 20px;
  padding: 15px 15px 5px;
  zoom: 1;
  background: #E7E4DB;
}
.box:before,
.box:after {
  display: table;
  content: "";
}
.box:after {
  clear: both;
}
.box ul,
.box p {
  margin-bottom: 1em;
}
.box.error {
  background: #fe0403;
  color: #fff;
}
.box.success {
  background: #d2cecb;
  display: none;
}
section {
  position: relative;
}
article {
  zoom: 1;
  margin: 0 0 20px;
}
article:before,
article:after {
  display: table;
  content: "";
}
article:after {
  clear: both;
}
article a img {
  display: block;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
article a:hover img,
article a:focus img {
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  opacity: 0.8;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}
.map {
  width: 100%;
  height: 350px;
  background: #efefef;
  margin: 0 0 40px;
}
.accent {
  background-color: #fe504f;
  color: #ffffff;
}
.accent.alt {
  background-color: #edebe5;
  color: #444444;
}
/* =============================================================================
   PAGES
   ========================================================================== */
/* =============================================================================
   HOOKS
   ========================================================================== */
.lt-ie9 .logo img {
  max-width: inherit;
}
.lt-ie8 {
  /* box model ie7 clear fix */

}
.lt-ie8 .row {
  float: left;
  width: 100%;
  clear: both;
}
/* =============================================================================
   PRINT
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .ir {
    text-indent: 0;
    overflow: visible;
    direction: inherit;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 2cm 0.5cm 1cm;
  }
}
