/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* CSS variables */

:root {
  --gap: 2.127659574%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

@font-face{
    font-family: 'FontAwesome';
    src: url(//263750.fs1.hubspotusercontent-na1.net/hubfs/263750/raw_assets/public/Sues/Sues%202022/ADC2022/fonts/fa-solid-900.woff),
        url(//263750.fs1.hubspotusercontent-na1.net/hubfs/263750/raw_assets/public/Sues/Sues%202022/ADC2022/fonts/fa-solid-900s.ttf),
        url(//263750.fs1.hubspotusercontent-na1.net/hubfs/263750/raw_assets/public/Sues/Sues%202022/ADC2022/fonts/fa-solid-900s.woff2);
    font-weight: normal;
    display: block;
}

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/


/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */
.blueButton {
    background: #007CFF !important;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.25)!important;
    border-radius: 100px!important;
    align-items: center!important;
    padding: 10px 20px!important;
    gap: 10px!important;
    text-transform: capitalize !important;
    top: 0px!important;
}
.mash-menu .mash-list-items.right {
    float: none!important;
}
ul.mash-list-items > li > a {
    font-family: 'Bozon-Regular'!important;
    font-style: normal!important;
    font-weight: 600!important;
    font-size: 16px !important!important;
    line-height: 19px!important;
    color: #222222!important;
    padding-right: 50px !important;
}
nav.mash-menu.separator {
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
/*!* Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license(Font:SIL OFL 1.1,CSS:MIT License) */@font-face {
    font-family:'FontAwesome';src:url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.eot?v=4.1.0');src:url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('https://static.hsappstatic.net/content_shared_assets/static-1.3779/fonts/fontawesome-webfont.svg?v=4.1.0#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
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .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: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    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)
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    100% {
        -webkit-transform: rotate(359deg);
        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: #fff
}

.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-photo:before,.fa-image:before,.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-navicon:before,.fa-reorder:before,.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-desc:before {
    content: "\f0dd"
}

.fa-sort-up:before,.fa-sort-asc: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-mail-reply-all:before,.fa-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"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-institution:before,.fa-bank:before,.fa-university:before {
    content: "\f19c"
}

.fa-mortar-board:before,.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-square:before,.fa-pied-piper:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before {
    content: "\f1c5"
}

.fa-file-zip-o:before,.fa-file-archive-o:before {
    content: "\f1c6"
}

.fa-file-sound-o:before,.fa-file-audio-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,.fa-rebel:before {
    content: "\f1d0"
}

.fa-ge:before,.fa-empire:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,.fa-weixin:before {
    content: "\f1d7"
}

.fa-send:before,.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-send-o:before,.fa-paper-plane-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}
@font-face {
  font-family: 'Bozon-Regular';
  src: url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regular-webfont.eot') format('eot'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regular-webfont.woff') format('woff'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regular-webfont.ttf') format('truetype'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-Regular.otf') format('otf');
  }
@font-face {
  font-family: 'Bozon-Regular-Italic';
  src: url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regularitalic-webfont.eot') format('eot'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regularitalic-webfont.woff') format('woff'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regularitalic-webfont.ttf') format('truetype'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-RegularItalic.otf') format('otf');
  }
@font-face {
  font-family: 'Bozon-Bold';
  src: url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-Bold-webfont.eot') format('eot'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-Bold-webfont.woff') format('woff'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-Bold-webfont.ttf') format('truetype'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-Bold.otf') format('otf');
  }
@font-face {
  font-family: 'Bozon-DemiBold';
  src: url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-DemiBold.eot') format('eot'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-DemiBold.woff') format('woff'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-DemiBold.ttf') format('truetype'),
  url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-DemiBold.otf') format('otf');
  }
@-ms-viewport{
  width: device-width;
}
/* These includes are optional, but helpful. */
/* Images */

img {
    max-width: 100%;
    border: 0;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom; /* Suppress the space beneath the baseline */
}

/* Videos */

video {
    max-width: 100%;
    height: auto;
}

/* Embed Container (iFrame, Object, Embed) */

.hs-responsive-embed {
    position: relative;
    height: auto;
    overflow: hidden;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.hs-responsive-embed iframe, .hs-responsive-embed object, .hs-responsive-embed embed {
    width: 100%;
    height: 100%;
    border: 0;
}

.hs-responsive-embed,
.hs-responsive-embed.hs-responsive-embed-youtube,
.hs-responsive-embed.hs-responsive-embed-wistia,
.hs-responsive-embed.hs-responsive-embed-vimeo {
    padding-bottom: 2%;
}

.hs-responsive-embed.hs-responsive-embed-instagram {
    padding-bottom: 116.01%;
}

.hs-responsive-embed.hs-responsive-embed-pinterest {
    height: auto;
    overflow: visible;
    padding: 0;
}

.hs-responsive-embed.hs-responsive-embed-pinterest iframe {
    position: static;
    width: auto;
    height: auto;
}

iframe[src^="http://www.slideshare.net/slideshow/embed_code/"] {
    width: 100%;
    max-width: 100%;
}

@media (max-width: 568px) {
    iframe {
        max-width: 100%;
    }
}

/* Forms */

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select {
    padding: 6px;
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Menus */

.hs-menu-wrapper ul {
    padding: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal ul {
    list-style: none;
    margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    display: inline-block;
    margin-bottom: 20px;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul:before {
    content: " ";
    display: table;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul:after {
    content: " ";
    display: table;
    clear: both;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    float: left;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
    display: inline-block;
    padding: 10px 20px;
    white-space: nowrap;
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children {
    position: relative;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: absolute;
    z-index: 10;
    left: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-item-has-children ul.hs-menu-children-wrapper {
    left: 180px;
    top: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}

.row-fluid-wrapper:last-child .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
    margin-bottom: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch {
    position: relative;
    margin-bottom: 20px;
    min-height: 7em;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul {
    margin-bottom: 0;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children {
    position: static;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: none;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper {
    display: block;
    visibility: visible;
    opacity: 1;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:before {
    content: " ";
    display: table;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper:after {
    content: " ";
    display: table;
    clear: both;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li {
    float: left;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
    display: inline-block;
    padding: 10px 20px;
    white-space: nowrap;
    max-width: 140px;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical {
    width: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical ul {
    list-style: none;
    margin: 0;
}

.hs-menu-wrapper.hs-menu-flow-vertical li a {
    display: block;
    white-space: nowrap;
    width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul {
    margin-bottom: 20px;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-menu-depth-1 > a {
    width: auto;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li a {
    padding: 10px 20px;
    text-decoration: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children {
    position: relative;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.4s;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 180px;
}

.hs-menu-wrapper.hs-menu-flow-vertical > ul li.hs-item-has-children:hover > ul.hs-menu-children-wrapper {
    opacity: 1;
    visibility: visible;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li a {
    min-width: 140px;
    width: auto;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul {
    max-width: 100%;
    overflow: hidden;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    display: none;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper {
    display: block;
    visibility: visible;
    opacity: 1;
    position: static;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-2 > a {
    padding-left: 4em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-3 > a {
    padding-left: 6em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-4 > a {
    padding-left: 8em;
}

.hs-menu-wrapper.hs-menu-flow-vertical.hs-menu-show-active-branch li.hs-menu-depth-5 > a {
    padding-left: 140px;
}

.hs-menu-wrapper.hs-menu-not-show-active-branch li.hs-menu-depth-1 ul {
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.18);
}

@media (max-width: 568px) {
    .hs-menu-wrapper, .hs-menu-wrapper * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 100%;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal ul {
        list-style: none;
        margin: 0;
        display: block;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal > ul {
        display: block;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
        float: none;
    }

    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a,
    .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
    .hs-menu-wrapper.hs-menu-flow-horizontal.hs-menu-show-active-branch > ul li.hs-item-has-children.active-branch > ul.hs-menu-children-wrapper > li a {
        display: block;
        max-width: 100%;
        width: 100%;
    }
}

.hs-menu-wrapper.hs-menu-flow-vertical.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper,
.hs-menu-wrapper.hs-menu-flow-horizontal.no-flyouts > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
    visibility: visible;
    opacity: 1;
}

/* Space Module */

.widget-type-space {
    visibility: hidden;
}

/* Blog Author Section */

.hs-author-listing-header {
    margin: 0 0 .75em 0;
}

.hs-author-social-links {
    display: inline-block;
}

.hs-author-social-links a.hs-author-social-link {
    width: 24px;
    height: 24px;
    border-width: 0px;
    border: 0px;
    line-height: 24px;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    display: inline-block;
    text-indent: -99999px;
}

.hs-author-social-links a.hs-author-social-link.hs-social-facebook {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/facebook-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-linkedin {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/linkedin-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-twitter {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/twitter-24x24.png");
}

.hs-author-social-links a.hs-author-social-link.hs-social-google-plus {
    background-image: url("//static.hubspot.com/final/img/common/icons/social/googleplus-24x24.png");
}

/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */

/* Wrapper */
.hs_cos_wrapper_type_image_slider {
    display: block;
    overflow: hidden
}

/* Browser Resets */
.hs_cos_flex-container a:active,
.hs_cos_flex-slider a:active,
.hs_cos_flex-container a:focus,
.hs_cos_flex-slider a:focus  {outline: none;}
.hs_cos_flex-slides,
.hs_cos_flex-control-nav,
.hs_cos_flex-direction-nav {margin: 0; padding: 0; list-style: none;}

/* FlexSlider Necessary Styles
*********************************/
.hs_cos_flex-slider {margin: 0; padding: 0;}
.hs_cos_flex-slider .hs_cos_flex-slides > li {display: none; -webkit-backface-visibility: hidden; position: relative;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.hs_cos_flex-slider .hs_cos_flex-slides img {width: 100%; display: block; border-radius: 0px;}
.hs_cos_flex-pauseplay span {text-transform: capitalize;}

/* Clearfix for the .hs_cos_flex-slides element */
.hs_cos_flex-slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .hs_cos_flex-slides {display: block;}
* html .hs_cos_flex-slides {height: 1%;}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */

/* FlexSlider Default Theme
*********************************/
.hs_cos_flex-slider {margin: 0 0 60px; background: #fff; border: 0; position: relative; -webkit-border-radius: 4px; -moz-border-radius: 4px; -o-border-radius: 4px; border-radius: 4px; zoom: 1;}
.hs_cos_flex-viewport {max-height: 2000px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;}
.loading .hs_cos_flex-viewport {max-height: 300px;}
.hs_cos_flex-slider .hs_cos_flex-slides {zoom: 1;}

.carousel li {margin-right: 5px}


/* Direction Nav */
.hs_cos_flex-direction-nav {*height: 0;}
.hs_cos_flex-direction-nav a {width: 30px; height: 30px; margin: -20px 0 0; display: block; background: url(//static.hsappstatic.net/content_shared_assets/static-1.3935/img/bg_direction_nav.png) no-repeat 0 0; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 0; -webkit-transition: all .3s ease;}
.hs_cos_flex-direction-nav .hs_cos_flex-next {background-position: 100% 0; right: -36px; }
.hs_cos_flex-direction-nav .hs_cos_flex-prev {left: -36px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next {opacity: 0.8; right: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-prev {opacity: 0.8; left: 5px;}
.hs_cos_flex-slider:hover .hs_cos_flex-next:hover, .hs_cos_flex-slider:hover .hs_cos_flex-prev:hover {opacity: 1;}
.hs_cos_flex-direction-nav .hs_cos_flex-disabled {opacity: .3!important; filter:alpha(opacity=30); cursor: default;}

/* Direction Nav for the Thumbnail Carousel */
.hs_cos_flex_thumbnavs-direction-nav {
    margin: 0px;
    padding: 0px;
    list-style: none;
    }
.hs_cos_flex_thumbnavs-direction-nav {*height: 0;}
.hs_cos_flex_thumbnavs-direction-nav a {width: 30px; height: 140px; margin: -60px 0 0; display: block; background: url(//static.hsappstatic.net/content_shared_assets/static-1.3935/img/bg_direction_nav.png) no-repeat 0 40%; position: absolute; top: 50%; z-index: 10; cursor: pointer; text-indent: -9999px; opacity: 1; -webkit-transition: all .3s ease;}
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-next {background-position: 100% 40%; right: 0px; }
.hs_cos_flex_thumbnavs-direction-nav .hs_cos_flex_thumbnavs-prev {left: 0px;}
.hs-cos-flex-slider-control-panel img { cursor: pointer; }
.hs-cos-flex-slider-control-panel img:hover { opacity:.8; }
.hs-cos-flex-slider-control-panel { margin-top: -30px; }



/* Control Nav */
.hs_cos_flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;}
.hs_cos_flex-control-nav li {margin: 0 6px; display: inline-block; zoom: 1; *display: inline;}
.hs_cos_flex-control-paging li a {width: 11px; height: 11px; display: block; background: #666; background: rgba(0,0,0,0.5); cursor: pointer; text-indent: -9999px; -webkit-border-radius: 20px; -moz-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; box-shadow: inset 0 0 3px rgba(0,0,0,0.3);}
.hs_cos_flex-control-paging li a:hover { background: #333; background: rgba(0,0,0,0.7); }
.hs_cos_flex-control-paging li a.hs_cos_flex-active { background: #000; background: rgba(0,0,0,0.9); cursor: default; }

.hs_cos_flex-control-thumbs {margin: 5px 0 0; position: static; overflow: hidden;}
.hs_cos_flex-control-thumbs li {width: 25%; float: left; margin: 0;}
.hs_cos_flex-control-thumbs img {width: 100%; display: block; opacity: .7; cursor: pointer;}
.hs_cos_flex-control-thumbs img:hover {opacity: 1;}
.hs_cos_flex-control-thumbs .hs_cos_flex-active {opacity: 1; cursor: default;}

@media screen and (max-width: 860px) {
  .hs_cos_flex-direction-nav .hs_cos_flex-prev {opacity: 1; left: 0;}
  .hs_cos_flex-direction-nav .hs_cos_flex-next {opacity: 1; right: 0;}
}

.hs_cos_flex-slider .caption {
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    font-size: 2em;
    line-height: 1.1em;
    color: white;
    padding: 0px 5% 0px 5%;
    width: 100%;
    bottom: 0;
    text-align: center;
}

.hs_cos_flex-slider .superimpose .caption {
    color: white;
    font-size: 3em;
    line-height: 1.1em;
    position: absolute;
    padding: 0px 5% 0px 5%;
    width: 90%;
    top: 40%;
    text-align: center;
    background-color: transparent;
}

@media all and (max-width: 400px) {
    .hs_cos_flex-slider .superimpose .caption {
        background-color: black;
        position: static;
        font-size: 2em;
        line-height: 1.1em;
        color: white;
        width: 90%;
        padding: 0px 5% 0px 5%;
        top: 40%;
        text-align: center;
    }

    /* beat recaptcha into being responsive, !importants and specificity are necessary */
    #recaptcha_area table#recaptcha_table {width: 300px !important;}
    #recaptcha_area table#recaptcha_table .recaptcha_r1_c1 {width: 300px !important;}
    #recaptcha_area table#recaptcha_table .recaptcha_r4_c4 { width: 67px !important;}
    #recaptcha_area table#recaptcha_table #recaptcha_image {width:280px !important;}
}

.hs_cos_flex-slider h1,
.hs_cos_flex-slider h2,
.hs_cos_flex-slider h3,
.hs_cos_flex-slider h4,
.hs_cos_flex-slider h5,
.hs_cos_flex-slider h6,
.hs_cos_flex-slider p {
    color: white;
}

/* Thumbnail only version of the gallery */
.hs-gallery-thumbnails li {
    display: inline-block;
    margin: 0px;
    padding: 0px;
    margin-right:-4px;
}
.hs-gallery-thumbnails.fixed-height li img {
    max-height: 150px;
    margin: 0px;
    padding: 0px;
    border-width: 0px;
}


/* responsive pre elements */

pre {
    overflow-x: auto;
}

/* responsive pre tables */

table pre {
    white-space: pre-wrap;
}

/* adding minimal spacing for blog comments */
.comment {
    margin: 10px 0 10px 0;
}

/* make sure lines with no whitespace don't interefere with layout */
.hs_cos_wrapper_type_rich_text,
.hs_cos_wrapper_type_text,
.hs_cos_wrapper_type_header,
.hs_cos_wrapper_type_section_header,
.hs_cos_wrapper_type_raw_html,
.hs_cos_wrapper_type_raw_jinja,
.hs_cos_wrapper_type_page_footer {
    word-wrap: break-word;
}
/* HTML 5 Reset */

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

audio, canvas, video {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

audio:not([controls]) {
    display: none;
}

/* Support migrations from wordpress */

.wp-float-left {
    float: left;
    margin: 0 20px 20px 0;
}

.wp-float-right {
    float: right;
    margin: 0 0 20px 20px;
}

/* Responsive Google Maps */

#map_canvas img, .google-maps img {
    max-width: none;
}

/* line height fix for reCaptcha theme */
#recaptcha_table td {line-height: 0;}
.recaptchatable #recaptcha_response_field {min-height: 0;line-height: 12px;}

body,html{
  font-family:'Bozon-Regular', sans-serif !important;
  font-size:18px;
  line-height:160%;
  margin:0 !important;
  padding:0 !important;
  color:#222222;
}
img{
  max-width:100%;
  height:auto;
}

.p1,.p2{
  font-size:30px !important;
  text-shadow: 1px 1px 1px #222222;
  color:#FFFFFF;
  margin:0 auto;
  position:absolute;
  width:100vw;
  }
.p1{top:25%;}
.p2{top:60%;}

#slideWrap{
  height:399px !important;
}

.slides{
  width:100%;
  margin:0 auto !important;
  float:none !important
  overflow:hidden;
  position:relative;
  height:399px;
  border-top:2px solid #007cff;
}

.slides ul{
  list-style:none;
  position:relative;
  display: block;
  list-style-type: none;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0;
}
@-webkit-keyframes anim_slides {
    0% {opacity:1;}
    100% {opacity:1;}
}
@-moz-keyframes anim_slides {
    0% {opacity:1;}
    100% {opacity:1;}
}
.slides ul li {
    opacity:0;
    position:absolute;
    top:0;
    -webkit-animation-name: anim_slides;
    -webkit-animation-duration: 18.0s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: anim_slides;
    -moz-animation-duration: 18.0s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: normal;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
}
.slides ul  li:nth-child(2), .slides ul  li:nth-child(2) div {
    -webkit-animation-delay: 4.0s;
    -moz-animation-delay: 4.0s;
}
.slides ul  li:nth-child(3), .slides ul  li:nth-child(3) div {
    -webkit-animation-delay: 8.0s;
    -moz-animation-delay: 8.0s;
}
.slides ul  li:nth-child(4), .slides ul  li:nth-child(4) div {
      -webkit-animation-delay:12.0s;
    -moz-animation-delay: 12.0s;
}
.slides ul  li:nth-child(5), .slides ul  li:nth-child(5) div {
    -webkit-animation-delay: 16.0s;
    -moz-animation-delay: 16.0s;
}
.slides ul  li:nth-child(6), .slides ul  li:nth-child(6) div {
    -webkit-animation-delay: 20.0s;
    -moz-animation-delay: 20.0s;
}
.slides ul  li:nth-child(7), .slides ul  li:nth-child(7) div {
    -webkit-animation-delay: 24.0s;
    -moz-animation-delay: 24.0s;
}
.slides ul  li:nth-child(8), .slides ul  li:nth-child(8) div {
    -webkit-animation-delay: 28.0s;
    -moz-animation-delay: 28.0s;
}
.slides ul li img{
  display:block;
  width: 100vw;
  height:399px;
}
@-webkit-keyframes anim_titles {
  0%   {
    transform: scale(.5);
  }
  50% {
    transform: scale:(1);
    opacity:1;}
  100% {
    transform: scale(2);
    opacity:1;
  }
}
@-moz-keyframes anim_titles {
  0%   {
    transform: scale(.5);
  }
  50% {
    transform: scale:(1);
    opacity:1;
  }
  100% {
    transform: scale(2);
    opacity:1;
  }
}

.slides ul li div {
    color:#FFFFFF;
    font-size:35px;
    position:absolute;
    top:42%;
    width:100%;
    font-weight:600;
    text-shadow: 2px 2px 2px #222222;
    line-height:100%;
    padding:0;
    margin:0;
    -webkit-animation-name: anim_titles;
    -webkit-animation-duration: 2.0s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-direction: normal;
    -webkit-animation-delay: 0;
    -webkit-animation-play-state: running;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-name: anim_titles;
    -moz-animation-duration: 2.0s;
    -moz-animation-timing-function: linear;
    -moz-animation-iteration-count: 1;
    -moz-animation-direction: normal;
    -moz-animation-delay: 0;
    -moz-animation-play-state: running;
    -moz-animation-fill-mode: forwards;
}
.mobileHero{
  height:400px;
  background-image: url("https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Sues2019/ADC19/newHero/rotatingHero%20425x300-08.jpg");
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding:120px 0 0 0;
  display:none;
  }


p{
	line-height:160%;
}
h1, h2, h3, h5{
  font-family: 'Bozon-Bold', sans-serif;
  font-weight:bold;
  line-height:140%;
  color:#007CFF;
}
h1{
	font-size:2.5rem;
  margin-top:15px;
}
h2{
	font-size:1.5em;
	}
h3{
	font-size:1.3em;
	}
h4{
	font-size:1em;
	padding: 0;
	margin: 15px 0 5px 0;
	color:#222222;
	font-family: 'Bozon-Regular', sans-serif;
  line-height:140%;
	}
h5{
	font-size:1em;
  margin:0 0 10px 0;
  color:#000;
	}
strong{
  font-family: 'Bozon-DemiBold', sans-serif;;
}
a{
	color:#007CFF;
	}
a:hover{
	color:#00CFF9;
	}
a:visited{
	color: #681aea;
	}
ul, ol, li{
	margin:0;
	padding:0;
	}
.homepage h1{
  font-size:2.2em;
}
.content h1{
  font-size:1.75rem;
  margin:20px 0 15px 0;
}
.content h2{
  font-size:1.5rem;
  margin:15px 0 10px 0;
}
.share i{
  color:#d3d3d3;
  font-size:35px;
  letter-spacing:1px;
  padding:0;
  margin:0;
}
.highlight{
  background: #efefef;
  padding: 20px 20px 10px 20px;
  border-radius: 10px;
  margin-bottom:20px;
	}
.highlight h4{
  font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
  font-weight:600;
  text-align:center;
  margin:10px 0 15px 0;
}
.highlight ul{
  line-height:140%;
}
.highlight li{
  padding-bottom:10px;
}
.content li{
	margin-left:30px;
	}
.fab, .fas{
  color:#fff;
  font-size:50px;
  padding: 0 6px 20px 6px;
}
#quote {
  position: relative;
  border: 5px solid rgb(179, 140, 244);
  border-radius: 30px;
  box-shadow: 5px 5px 10px #777;
  padding:20px 40px;
  margin:30px 0;
}
#quote:before {
  content: ' ';
  width: 0;
  height: 0;
  position: absolute;
  right: 25px;
  bottom: -35px;
  border: 15px solid;
  border-color: rgb(179, 140, 244) transparent transparent rgb(179, 140, 244);
}
#quote:after {
  content: ' ';
  width: 0;
  height: 0;
  position: absolute;
  right: 26px;
  bottom: -24px;
  border: 12px solid;
  border-color: #fff transparent transparent #fff;
}
#mainQuoteWrap{
  margin: 0 auto !important;
  float:none !important;
  width:100%;
}
#quoteMain {
  position: relative;
  border: 5px solid rgb(179, 140, 244);
  border-radius: 30px;
  box-shadow: 5px 5px 10px #777;
  padding:20px 40px;
}
#quoteMain:before {
  content: ' ';
  width: 0;
  height: 0;
  position: absolute;
  right: 25px;
  bottom: -35px;
  border: 15px solid;
  border-color: rgb(179, 140, 244) transparent transparent rgb(179, 140, 244);
}
#quoteMain:after {
  content: ' ';
  width: 0;
  height: 0;
  position: absolute;
  right: 26px;
  bottom: -24px;
  border: 12px solid;
  border-color: #fff transparent transparent #fff;
}
.author{
  color: #909090;
  text-align: left;
  width:50%;
  margin: 20px 0 0 20px;
}
.banner h1, .banner h2{
  color:#fff;
  padding:0;
  margin:0;
  line-height:150%;
}
.banner h1{
  font-size:2.5rem;
}
.banner h2{
  font-size:30px;
  font-family: 'Bozon-Regular';
}
.foot, .foot ul li{
  color:#d3d3d3;
  font-size:.9em;
  font-weight:300;
}
.foot ul li{
  list-style-type:none;
  margin-left:-40px !important;
  line-height:150%;
}
.foot a{
  color:#d3d3d3;
  text-decoration:none;
}
.foot a:hover{
  text-decoration:underline;
}
.foot a:visited{
  color:#909090;
}
.bottomNav{
  text-align:center;
  line-height:200%;
  font-size:.9rem;
}
.bottomNav ul li{
text-align:center;
  list-style-type:none;
  color: #007CFF;
  font-weight:300;
}
.bottomNav h4{
  margin-bottom:40px;
}
.module h3{
  margin:0;
  padding:5px 0;
}

.errorPage .hs-button{color:#ffffff !important;width:100%;margin:10px 0 0 20px;}
.errorPage .hs-search-module{
  z-index:5000 !important;
  width:300px;
  margin:0 auto !important;
  float:none !important;
}
.errorPage .hs-form{
  width:100%;
  padding:0 0 0 0 !important ;
  margin:20px 0;
}
.spaceWrap{
  background-image: url("https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Sues2019/ADC19/heroRotating/space.jpg");
  background-color: #000;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding:120px 0 0 0;
  }
.naut {
  width: 100px;
  height: 100px;
  position: relative;
  -webkit-animation: mymove 5s infinite;
  animation: mymove 10s infinite;
}

@-webkit-keyframes mymove {
  from {left: 0px;}
  to {left: 2000px;}
}

@keyframes mymove {
  from {left: 0px;}
  to {left: 2000px;}
}

.horizontalSpacer{
height:45px;
}

#menuWrap{
  background:#fff;
  position:fixed;
  top:0;
  z-index:500;
  height:75px;
  padding-top:10px;
}
.carousel-cell{
  width:100%;
  padding:0 20px;
  margin-top:20px;
}

.power{
  font-size:1.75rem;
  padding:10px 0;
  margin:0 auto !important;
  float:none !important;
  text-shadow:none;
  border-radius:4px;
  color:#fff;
  text-align:center;
  position:relative;
  top:0;
}


.ml4 {
  position: relative;
  font-weight: 900;
  font-size: 4.5em;
  height:150px;
  color:#ffffff;
  letter-spacing:1px;
}
.ml4 .letters {
  position: absolute;
  margin: auto;
  left: 0;
  top: 0.3em;
  right: 0;
  opacity: 0;
}
.container-fluid {
    width: 100%;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: auto;
    margin-left: auto;
}
.mainColumn{
  padding: 0 0 0 30px;
}
#caseStudySideBar img{
  width:100%;
  margin:20px 0;
}
.caseStudyImg{
  width:100%;
  height:300px;
}
.megaSpan2{
  padding: 0;
  margin: 0 20px 10px 2px;
}
.headWrap{
	background:#ffffff;
	}
.bottomNavWrap{
	background:#efefef;
	padding:60px 0;
}
.heroInnerWrap{
  max-width:1140px;
  margin: auto !important;
  float:none !important;
}
.bannerWrap, .bannerWrap2, .colorStripe, .bannerWrapEnroll{
  background: #00ffd4;
  background: -moz-linear-gradient(-45deg,  #00ffd4 0%, #00cff9 27%, #007cff 59%, #681aea 100%);
  background: -webkit-linear-gradient(-45deg,  #00ffd4 0%,#00cff9 27%,#007cff 59%,#681aea 100%);
  background: linear-gradient(135deg,  #00ffd4 0%,#00cff9 27%,#007cff 59%,#681aea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffd4', endColorstr='#681aea',GradientType=1 );
}
.bannerWrapEnroll{height:250px;}
.colorStrip{
  height:20px;
}
.bannerWrap{
  height:150px;
}
.bannerWrap2{
  height:250px;
  text-align:center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.4);
}
.banner{
  padding:0;
  text-align:center;
  color:#ffffff;
  line-height:140%;
  letter-spacing:1px;
  padding:20px 0 0 0;
}
.contentWrap{
  padding:40px 0 60px 0;
  background:#ffffff;
}
.greyWrap, .sliderWrap{
	background:#efefef;
	}
.sliderWrap{
	text-align:center;
	padding:50px 0 0 0;
	}
.blueWrap{
  background-image: url("https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Sues2019/ADC19/town.svg");
  background-repeat: no-repeat, repeat;
  background-color: #007CFF;
  background-position:center bottom;
  background-size: 1500px;
}
.purpleWrap{
	background:#681AEA;
}
.greyWrap, .blueWrap, .purpleWrap, .whiteWrap, .heroWrap{
  padding:80px 0 60px 0;
  text-align:center;
}
.purpleWrap, .blueWrap, .purpleWrap h1, .blueWrap h1{
  color:#ffffff;
  }
.footWrap{
  background:#222222;
  padding:40px;
  text-align:center;
  color:#ffffff !important;
  }

.foot .span2{
  margin-left:27px !important;
}

.head,.nav,.banner,.content,.bottomNav, .foot, .mega, .innerWrap{
  max-width: 1280px;
  margin: auto !important;
  float:none !important;
}
.blueWrapInner{
	max-width:1000px;
	margin: auto auto 120px auto !important;
	float:none !important;
	}
.innerWrap2{
  max-width:1000px;
  margin:80px auto !important;
  float:none !important;
}
.head{
  padding:10px 0 0 0;
}
.card{
  background:#ffffff;
  padding:15px;

}
.card .blueButton, .mintButton{
  width:200px;
}

.module{
  margin:20px 0;
  border:1px solid black;
  height:570px;
  background:#ffffff;
  box-shadow: 3px 3px 5px #888888;
}
.moduleImg img{
  width:100% !important;
}
.moduleText{
  padding:15px;
}


.hs-button{
  background:#681BEA !important;
  color:#fff;
  letter-spacing:1px;
  font-weight:bold;
  border:0;
  border-radius:2px;
  font-size:1rem;
  text-transform:uppercase;
  padding:5px 30px !important;
  text-align:center;
  line-height:200% !important;
}
.hs-submit{
  text-align:center;
  margin-top:30px;
}
.blueButton, .whiteButton, .purpleButton, .mintButton{
  font-size: 16px !important;
  border: none;
  outline: none;
  padding: 8px 40px 5px 40px;
  float:none;
  font: inherit;
  margin: 0;
  letter-spacing:1px;
  font-weight:bold;
  border-radius:2px;
  text-transform:uppercase;
  text-align:center;
}
.mintButton{
	background-color:#00ffd4;
	color:#007Cff;
	margin:0 auto;
  text-transform:uppercase;
	}
#menuWrap .blueButton{ margin:0 auto;}

.blueButton{
	background-color:#007Cff;
	color:#ffffff;
  text-transform:uppercase;
	}
.blueButton{	margin:10px auto 0 auto;}
.purpleButton{
	background-color:#681aea;
	color:#ffffff;
	margin:0 auto;
  text-transform:uppercase;
	}
.card .blueButton{
  margin:20px auto;
  text-transform:none;
}
.whiteButton{
	background:#ffffff;
	color: #007Cff;
	margin:20px auto 0 auto;
}


.sidebarForm2{
padding:0 !important;
  background:#efefef;
}
.sidebarForm2 textarea{
  height:200px !important;
}
.form, .sidebarForm{
  margin-top:20px;
  background:#efefef;
}
.sidebarForm .hs-form{
  width:100%;
  padding:10px 20px;
}
.form-columns-1 .hs-input{width:100% !important;margin-right:0;}
.sidebarForm .hs-form .hs-input{
  font-family: 'Bozon-Regular',sans-serif;
  font-size: 15px;
  height: 38px;
  margin: 0;
  padding: 5px;
  margin: 0 0 5px 10px;
  background: #fff;
  border:1px solid #939598;
}
.hs-form{
  width:90%;
  padding:0 0 10% 10%;
}
.sidebarForm .form-title, .sidebarForm h3, .sidebarForm2 h3{
  font-family: 'Bozon-Bold', Helvetica, Arial, sans-serif;
  text-align:center;
  padding:0;
  margin-top:40px;
  color:#222222;
  font-size:1.25rem;
}
.sidebarForm .hs-button{
  font-size: 16px !important;
  border: none !important;
  outline: none !important;
  padding: 8px 40px 5px 40px !important;
  float:none !important;
  font: inherit !important;
  letter-spacing:1px !important;
  font-weight:bold !important;
  border-radius:2px !important;
  text-transform:uppercase !important;
  text-align:center !important;
	background-color:#007Cff !important;
	color:#ffffff !important;
	margin:0 auto 40px auto !important;
}
.hs-form {
padding:0;
  }
.form h3{
font-size:24px;
text-align:center;
font-weight:500;
}
.hs-input {
  font-family: 'Open Sans', sans-serif;
  font-size:15px;
  height:38px;
  margin:0;
  padding:5px;
  margin-bottom:5px;
  }
.field label {
  font-family: 'Open Sans', sans-serif;
  font-size:12px;
  opacity:.5;
  padding:0;
  margin:0;
  }
.hs_how_can_we_help_ textarea input{
  height:300px !important;
}
.contact2 .hs-form {
  background:#fff;
  box-shadow:0px 10px 15px -5px rgba(0, 0, 0, 0.3);
  font-family: 'Open Sans', sans-serif;
  padding:30px 50px 50px 50px;
  max-width:554px;
  float:none !important;
  margin: 0 auto !important;
  position:relative;
  top: -100px;
  }
.contact2 .hs-input {
  font-family: 'Open Sans', sans-serif;
  font-size:15px;
  height:38px;
  margin-bottom:20px;
  border:1px solid #939598;
  }
.hs-input:hover {}
.hs-input:focus {}
.contact2 .field label, .contact2 legend,
.sidebarForm2 .field label, .sidebarForm2 legend {
  font-family: 'Open Sans', sans-serif;
  font-size:12px !important;
  opacity:.5;
  }
legend{
  font-size:.7rem !important;
  color:#909090 !important;
}
.sidebarForm2 .hs_firstname label,
.sidebarForm2 .hs_lastname label{display:none;}
.contact2 .hs-button{
    background: #681bea !important;
    color: #fff;
    letter-spacing: 1px;
    font-weight: bold;
    border: 0;
    border-radius: 2px;
    font-size: 1rem;
    text-transform: uppercase;
    padding: 10px 20px !important;
    text-align: center;
    line-height: 200% !important;
}

.slick-dots{
  display:none !important;
}

.caseStudy .contentWrap{
  background:#efefef;
}
.filterWrap{
  padding:10px;
  font-size:1em;
  margin-bottom:30px;
  text-align:center;
}
.filter ul{
  padding:0;
  margin:0;
  line-height:160%;
}
.filter ul li{
  display:inline-block;
  color:#000;
  padding:0;
  margin:0;
}
.filter a{
  color:#000;
  font-size:1em;
  color:#000;
  padding:0 5px;
  margin:0;
}

.box{
  background: #ffffff;
  border:1px solid #909090;
  height:315px;
  margin:15px 0;
  }
.box2{
  background: #fff;
  height:390px;
  border-radius:2px;
  border:2px solid #efefef;
  padding:4px;
  text-align:center !important;
}
.box2type{
  padding:10px;
}
.boxTitle{
  text-align:center;
  padding:20px;
  font-family: 'Bozon-Bold', Helvetica, Arial, sans-serif;
  overflow:hidden;
  color:#ffffff;
  background:#007cff;
  height:120px;
}
.blogSidebarForm{
  background:#ffffff;
  padding:0;
  margin-top:0;
}.blogSidebarForm h3{
  color:#fff !important;
  background: #00cff9;
  font-size:1.5rem;
  text-align:center;
  font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
  padding:10px;
}

.adcBlog .mainColumn{padding:0 0 0 0;}


/* edits 4-6-21 added full menu to bottom of blog for SEO, there was some problem with the module on old one, it was there but just not showing up.
So I created a new one specifically for the blog. I think it's missing the blog header on the segment. */
.adcBlog{
  font-family:'Bozon-Regular', sans-serif !important;
  font-size:18px;
  line-height:160%;
  margin:0 !important;
  padding:0 !important;
  color:#222222;
}

.adcBlog .contentWrap{
  background:#fcfafa;
}

.adcBlog .footWrap{
  background:#efefef;
  color:#222;
    -webkit-box-shadow: 0 10px -6px -6px #000;
     -moz-box-shadow: 0 10px -6px -6px #000;
          box-shadow: 0 10px -6px -6px #000;
}
/* .adcBlog .bottomNav{text-align:center;} */
.adcBlog .bottomNav h4 {
  font-family: 'bozon-demibold', sans-serif;
  font-size:27px;
  margin-bottom: 40px;
  color:#222 !important;
}
/* .adcBlog .bottomNav ul {margin:0;padding:0;}
.adcBlog .bottomNav ul li {color:#404040;line-height:140%;}
.adcBlog .bottomNav ul li a{color:#404040 !important;padding:unset;margin:unset;}
.adcBlog .bottomNav ul li a:visited,.adcBlog .bottomNav ul li a:hover{color:#6f6f6f !important;} */

/* End Edits 4-6-21 */







.post-item{
  border:1px solid #d3d3d3;
  margin-bottom:20px;
  background:#ffffff;
}



.power{
  background: #00cff9;
  background: -moz-linear-gradient(-45deg,  #00cff9 1%, #007cff 32%, #007cff 56%, #681aea 100%);
  background: -webkit-linear-gradient(-45deg,  #00cff9 1%,#007cff 32%,#007cff 56%,#681aea 100%);
  background: linear-gradient(135deg,  #00cff9 1%,#007cff 32%,#007cff 56%,#681aea 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cff9', endColorstr='#681aea',GradientType=1 );
  padding:20px;
}
.listingAuthor{
  background:#d3d3d3;
  line-height:200%;
  text-align:center;
}
.listingAuthor p{
  margin:0;
  padding:0;
}
.listingPostTitle, .postTitle {
background: #00cff9;
background: -moz-linear-gradient(-45deg,  #00cff9 1%, #007cff 12%, #007cff 22%, #000edb 99%);
background: -webkit-linear-gradient(-45deg,  #00cff9 1%,#007cff 12%,#007cff 22%,#000edb 99%);
background: linear-gradient(135deg,  #00cff9 1%,#007cff 12%,#007cff 22%,#000edb 99%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cff9', endColorstr='#000edb',GradientType=1 );
padding:20px;
}
.listingPostTitle h1{
  font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
  font-size: 1.5rem;
  color:#ffffff;
  margin:0;
  padding:0;
}
.listingDiv{
  display:block;
  height:270px;
  overflow:hidden;
  padding:20px;
  }
.featuredImg{
  width:100%;
  height:225px;
  border-radius:5px;
  }
.postListContent{
  padding:0;
  margin:0;
  overflow: hidden;
  height: 185px;
}
.readMore{
  font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
  width:200px;
  float:right;
  text-align:right;
  position:relative;
  bottom:0;
  right:0;
  margin-top:20px;
}
.blog-pagination{
  text-align:center;
}
.blog-pagination a{
  color:#909090;
  margin:0 10px;
}
.adcBlog .widget-type-post_listing,
.adcBlog .widget-type-post_filter{
  margin:20px 0;
  padding:0;
  border:1px solid #d3d3d3;
  background:#ffffff;
}
.adcBlog .widget-type-blog_subscribe{
  margin:0 0 20px 0;
  padding:0;
  border:1px solid #d3d3d3;
  background:#ffffff;
}
.adcBlog .hs-submit{
  margin-top:0;
}
.adcBlog input.hs-button.primary.large{
  font-size: 16px !important;
  border: none;
  outline: none;
  padding: 2px 40px !important;
  float:none;
  font: inherit;
  margin: 20px 0 !important;
  letter-spacing:1px !important;
  font-weight:bold;
  border-radius:2px;
  text-transform:uppercase !important;
  text-align:center;
	background-color:#007Cff !important;
	color:#ffffff;
  text-transform:uppercase;
	}
.adcBlog .widget-type-post_listing .block,
.adcBlog .widget-type-post_filter .block{
  padding:0;
  margin:0;
}
.adcBlog .widget-type-post_listing ul li,
.adcBlog .widget-type-post_filter ul li{
  padding-bottom:10px;
}


.adcBlog .widget-type-post_listing .block h3,
.adcBlog .widget-type-post_filter .block h3,
.adcBlog .widget-type-blog_subscribe h3{
  font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
  background:#00cff9;
  margin:0;
  padding:10px;
  text-align:center;color:#ffffff;
}
.adcBlog .widget-type-post_listing .block ul,
.adcBlog .widget-type-post_filter .block ul{
  padding:10px;
}
.adcBlog .widget-type-post_listing a,
.adcBlog .widget-type-post_filter a{
  color:#222222;
}


.hs-featured-image-wrapper{
  border-radius:10px;
  border:2px solid #007cff;
  margin:0 20px 20px 0;
}

.adcBlog h1,.adcBlog h2,.adcBlog h3,.adcBlog h4{
  font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
  color: #007cff;
}
.adcBlog h1{font-size:2rem;}
.adcBlog h2{font-size:1.75rem;}
.adcBlog h3{font-size:1.5rem;}
.adcBlog h4{font-size:1.25rem;}
.adcBlog blockquote{
  padding:20px;
  margin:20px;
  border:1px solid #007cff;
  }
.adcBlog strong{
  font-family:'Bozon-DemiBold', Helvetica, Arial, sans-serif;
}
.adcBlog em{
  font-family:'Bozon-Regular-Italic', Helvetica, Arial, sans-serif;
  font-style:italic;
}
.adcBlog .authorListing{
  background:#efefef;
  padding:7px 0 2px 0;
  text-align:center;
}

.headerModule{
  border:1px solid #d3d3d3;
  margin-bottom:30px;
}
.postTitle h1{
  font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
  font-size: 2rem;
  color:#ffffff;
  margin:0;
  padding:0;
  text-align:center;
}
.authorDate{
  background:#efefef;

  padding-top:5px;
  text-align:center;
}
.signUp .hs-form{padding:0 !important;}

.signUp .hs-input{
  width:100% !important;
  height:40px;
}
.adcBlog .hs-form {
  width:90% !important;
  padding: 20px 10px 0 10px;
  margin:10px auto 0 auto;
}
.hs-form-51d71a2b-6098-4afa-9916-1cce04d27241_cb991c05-5695-4dd7-af39-c392a7878e84 fieldset{width:100% !important;}

.careersBlog strong{
  font-family: 'Bozon-DemiBold', Helvetica, Arial, sans-serif;
}
.careersBlog ul li{
  padding-bottom:5px;
}
.awards{
  background:#ffffff;
}
.awards h4{
  background: #00cff9;
  color:#ffffff;
  padding:15px 0;
}
.career .widget-type-post_listing{
  margin:0 0 20px 0 !important;
  padding:0;
  background:#ffffff;
}


.enroll{
  width:720px !important;
  margin:0 auto !important;
  float:none !important;
  position:relative;
  top:-200px;
}




@media (max-width:1440px){}

@media screen and (max-width:1024px){
  .contentWrap{padding:10px;}}

@media (max-width: 1023px) {

  .highlight{
    padding:15px;
  }
  .banner{
    position:inherit;
  }
  .contentWrap{
    padding:25px;
  }
  .highlight{
    margin:10px 0;
  }
  .module{
    overflow:scroll;
  }

  .homeImg, .imgRight{
    padding-left:0;
  }
  .imgLeft{
    padding-right:0;
  }
  .hiddenTablet{
    display:none !important;
  }
  .foot{padding:0;}
}
@media (max-width: 896px) {
  #menuWrap{padding:0;}
  .sidebarForm2{padding-top:10px !important;}
  .horizontalSpacer{display:none;}

  .hs-featured-image-wrapper{
    margin: 0 0 20px 0;
  }
  .headerModule{margin-top:30px;}
  .caseStudy .blogSidebarForm{margin:30px 0;}

  .adcBlog .widget-type-blog_content{
   margin-top:30px !important;
  }

  .adcBlog .featuredImg, .horizontalSpacer, .filterWrap{
  display:none !important;
  }
  .adcBlog .listingDiv .span8{
    width:100%;
  }
  .acrossAmerica{
  padding:20px;
  }
  #menuWrap{
  height:35px;
  width:100%;
  }
  .bannerWrap{height:300px;}

  .sidebarForm .form-title, .sidebarForm h3{padding:20px 0 0 0;}
  #content-1 .span2{
    width:45% !important;
  }
}


@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 479px) {
#menuWrap{width:100%;padding-top:0 !important;}

  .homepage h4{
    margin-top:20px;
  }
  .purpleWrap, .whiteWrap{padding:20px;}
  .span5.graph  {width:100% !important;margin-bottom:20px;}
  h1{
  	text-align:center;
  	}
  .banner{padding:40px 10px 0 10px;line-height:220%;}
  .bannerHeadline{font-size:45px;}
  .bannerSubhead{
  	font-size:30px;
  	padding:0;
  	}
  .headWrap, .bottomNavWrap{
  	display:none !important;
  	}
  .contentWrap, .content {
  	margin:0;
  	padding:10px;
  	}
  .modalButton{
  	height:30px;
		padding:0;
		position:fixed;
		line-height:200%;
		bottom:0;
		left:0;
		width:100%;
		z-index:5000;
  }
  .hs-form{
  	margin:0 auto !important;
  	float:none !important;
  	}
  .fab, .fas{
  	font-size:40px;
  	padding: 0 4px 20px 4px;
  	}
  .author{
    width:100% !important;
  }
  .megaSpan2{
  width:100%;
  }
  #content-1 .span2{
    width:100% !important;
  }
  .blueButton{
    text-align:center !important;
  }
  .bannerWrap{
    height:initial;
    padding-bottom:20px;
  }
}
@media (max-width: 1366px) {
    .mobileHero{display:none !important;}
   .blueWrapInner img{
   width: 50%;
  height: 50%;
  margin-bottom: 20px;
  }
  #hs_cos_wrapper_module_1561994333431325_ > h2:nth-child(1){text-align:center !important;}
   .p1,.p2{
  font-size:1.5rem !important;
  line-height:120%;
  }
  .p1{top:40%;}
  .p2{top:65%;}
  .slides ul li div {
    width:100vw !important;
    top:50%;
    font-size:40px;
  }

    @-webkit-keyframes anim_titles {
    0%   {
      transform: scale(.25);
    }
    50% {
      transform: scale:(.5);
      opacity:1;}
    100% {
      transform: scale(1);
      opacity:1;
    }
  }
  @-moz-keyframes anim_titles {
    0%   {
      transform: scale(.25);
    }
    50% {
      transform: scale:(.5);
      opacity:1;
    }
    100% {
      transform: scale(1);
      opacity:1;
    }
  }
}
@media (max-width: 768px) {
  .adcBlog .contentWrap{
  padding-top:85px;
  }
  .mobileHero{display:none !important;}
  .power{font-size:1.25rem;}
  .p1,.p2{
  font-size:1.25rem !important;
  line-height:120%;
  }
.p1{top:30%;}
.p2{top:55%;}

  .slides ul li div {width:100vw !important;top:40%;}
  @-webkit-keyframes anim_titles {
  0%   {
    transform: scale(.25);
  }
  50% {
    transform: scale:(.5);
    opacity:1;}
  100% {
    transform: scale(1);
    opacity:1;
  }
}
@-moz-keyframes anim_titles {
  0%   {
    transform: scale(.25);
  }
  50% {
    transform: scale:(.5);
    opacity:1;
  }
  100% {
    transform: scale(1);
    opacity:1;
  }
}
}
@media (max-width: 667px) {
  .acrossAmerica li {margin-left:50px;}
  #slideWrap{display:none;}
  .power{font-size:1.25rem;}
  .mobileHero{
    display:block;
  }
}
@charset "UTF-8";
/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body { /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
	-webkit-backface-visibility: hidden;
}
.animated {
	-webkit-animation-duration: 1s;
	   -moz-animation-duration: 1s;
	     -o-animation-duration: 1s;
	        animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	   -moz-animation-fill-mode: both;
	     -o-animation-fill-mode: both;
	        animation-fill-mode: both;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	   -moz-animation-duration: 2s;
	     -o-animation-duration: 2s;
	        animation-duration: 2s;
}

@-webkit-keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

@-moz-keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

@-o-keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

@keyframes flash {
	0%, 50%, 100% {opacity: 1;}	
	25%, 75% {opacity: 0;}
}

.flash {
	-webkit-animation-name: flash;
	-moz-animation-name: flash;
	-o-animation-name: flash;
	animation-name: flash;
}
@-webkit-keyframes shake {
	0%, 100% {-webkit-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-webkit-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-webkit-transform: translateX(10px);}
}

@-moz-keyframes shake {
	0%, 100% {-moz-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-moz-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-moz-transform: translateX(10px);}
}

@-o-keyframes shake {
	0%, 100% {-o-transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {-o-transform: translateX(-10px);}
	20%, 40%, 60%, 80% {-o-transform: translateX(10px);}
}

@keyframes shake {
	0%, 100% {transform: translateX(0);}
	10%, 30%, 50%, 70%, 90% {transform: translateX(-10px);}
	20%, 40%, 60%, 80% {transform: translateX(10px);}
}

.shake {
	-webkit-animation-name: shake;
	-moz-animation-name: shake;
	-o-animation-name: shake;
	animation-name: shake;
}
@-webkit-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
	40% {-webkit-transform: translateY(-30px);}
	60% {-webkit-transform: translateY(-15px);}
}

@-moz-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-moz-transform: translateY(0);}
	40% {-moz-transform: translateY(-30px);}
	60% {-moz-transform: translateY(-15px);}
}

@-o-keyframes bounce {
	0%, 20%, 50%, 80%, 100% {-o-transform: translateY(0);}
	40% {-o-transform: translateY(-30px);}
	60% {-o-transform: translateY(-15px);}
}
@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

.bounce {
	-webkit-animation-name: bounce;
	-moz-animation-name: bounce;
	-o-animation-name: bounce;
	animation-name: bounce;
}
@-webkit-keyframes tada {
	0% {-webkit-transform: scale(1);}	
	10%, 20% {-webkit-transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {-webkit-transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {-webkit-transform: scale(1.1) rotate(-3deg);}
	100% {-webkit-transform: scale(1) rotate(0);}
}

@-moz-keyframes tada {
	0% {-moz-transform: scale(1);}	
	10%, 20% {-moz-transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {-moz-transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {-moz-transform: scale(1.1) rotate(-3deg);}
	100% {-moz-transform: scale(1) rotate(0);}
}

@-o-keyframes tada {
	0% {-o-transform: scale(1);}	
	10%, 20% {-o-transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {-o-transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {-o-transform: scale(1.1) rotate(-3deg);}
	100% {-o-transform: scale(1) rotate(0);}
}

@keyframes tada {
	0% {transform: scale(1);}	
	10%, 20% {transform: scale(0.9) rotate(-3deg);}
	30%, 50%, 70%, 90% {transform: scale(1.1) rotate(3deg);}
	40%, 60%, 80% {transform: scale(1.1) rotate(-3deg);}
	100% {transform: scale(1) rotate(0);}
}

.tada {
	-webkit-animation-name: tada;
	-moz-animation-name: tada;
	-o-animation-name: tada;
	animation-name: tada;
}
@-webkit-keyframes swing {
	20%, 40%, 60%, 80%, 100% { -webkit-transform-origin: top center; }
	20% { -webkit-transform: rotate(15deg); }	
	40% { -webkit-transform: rotate(-10deg); }
	60% { -webkit-transform: rotate(5deg); }	
	80% { -webkit-transform: rotate(-5deg); }	
	100% { -webkit-transform: rotate(0deg); }
}

@-moz-keyframes swing {
	20% { -moz-transform: rotate(15deg); }	
	40% { -moz-transform: rotate(-10deg); }
	60% { -moz-transform: rotate(5deg); }	
	80% { -moz-transform: rotate(-5deg); }	
	100% { -moz-transform: rotate(0deg); }
}

@-o-keyframes swing {
	20% { -o-transform: rotate(15deg); }	
	40% { -o-transform: rotate(-10deg); }
	60% { -o-transform: rotate(5deg); }	
	80% { -o-transform: rotate(-5deg); }	
	100% { -o-transform: rotate(0deg); }
}

@keyframes swing {
	20% { transform: rotate(15deg); }	
	40% { transform: rotate(-10deg); }
	60% { transform: rotate(5deg); }	
	80% { transform: rotate(-5deg); }	
	100% { transform: rotate(0deg); }
}

.swing {
	-webkit-transform-origin: top center;
	-moz-transform-origin: top center;
	-o-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	-moz-animation-name: swing;
	-o-animation-name: swing;
	animation-name: swing;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% { -webkit-transform: translateX(0%); }
  15% { -webkit-transform: translateX(-25%) rotate(-5deg); }
  30% { -webkit-transform: translateX(20%) rotate(3deg); }
  45% { -webkit-transform: translateX(-15%) rotate(-3deg); }
  60% { -webkit-transform: translateX(10%) rotate(2deg); }
  75% { -webkit-transform: translateX(-5%) rotate(-1deg); }
  100% { -webkit-transform: translateX(0%); }
}

@-moz-keyframes wobble {
  0% { -moz-transform: translateX(0%); }
  15% { -moz-transform: translateX(-25%) rotate(-5deg); }
  30% { -moz-transform: translateX(20%) rotate(3deg); }
  45% { -moz-transform: translateX(-15%) rotate(-3deg); }
  60% { -moz-transform: translateX(10%) rotate(2deg); }
  75% { -moz-transform: translateX(-5%) rotate(-1deg); }
  100% { -moz-transform: translateX(0%); }
}

@-o-keyframes wobble {
  0% { -o-transform: translateX(0%); }
  15% { -o-transform: translateX(-25%) rotate(-5deg); }
  30% { -o-transform: translateX(20%) rotate(3deg); }
  45% { -o-transform: translateX(-15%) rotate(-3deg); }
  60% { -o-transform: translateX(10%) rotate(2deg); }
  75% { -o-transform: translateX(-5%) rotate(-1deg); }
  100% { -o-transform: translateX(0%); }
}

@keyframes wobble {
  0% { transform: translateX(0%); }
  15% { transform: translateX(-25%) rotate(-5deg); }
  30% { transform: translateX(20%) rotate(3deg); }
  45% { transform: translateX(-15%) rotate(-3deg); }
  60% { transform: translateX(10%) rotate(2deg); }
  75% { transform: translateX(-5%) rotate(-1deg); }
  100% { transform: translateX(0%); }
}

.wobble {
	-webkit-animation-name: wobble;
	-moz-animation-name: wobble;
	-o-animation-name: wobble;
	animation-name: wobble;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes pulse {
    0% { -webkit-transform: scale(1); }	
	50% { -webkit-transform: scale(1.1); }
    100% { -webkit-transform: scale(1); }
}
@-moz-keyframes pulse {
    0% { -moz-transform: scale(1); }	
	50% { -moz-transform: scale(1.1); }
    100% { -moz-transform: scale(1); }
}
@-o-keyframes pulse {
    0% { -o-transform: scale(1); }	
	50% { -o-transform: scale(1.1); }
    100% { -o-transform: scale(1); }
}
@keyframes pulse {
    0% { transform: scale(1); }	
	50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.pulse {
	-webkit-animation-name: pulse;
	-moz-animation-name: pulse;
	-o-animation-name: pulse;
	animation-name: pulse;
}
@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(0);
		-webkit-animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-webkit-animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-webkit-animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
		-webkit-animation-timing-function: ease-in;
	}
	100% {
		-webkit-transform: perspective(400px) scale(1);
		-webkit-animation-timing-function: ease-in;
	}
}
@-moz-keyframes flip {
	0% {
		-moz-transform: perspective(400px) rotateY(0);
		-moz-animation-timing-function: ease-out;
	}
	40% {
		-moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-moz-animation-timing-function: ease-out;
	}
	50% {
		-moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-moz-animation-timing-function: ease-in;
	}
	80% {
		-moz-transform: perspective(400px) rotateY(360deg) scale(.95);
		-moz-animation-timing-function: ease-in;
	}
	100% {
		-moz-transform: perspective(400px) scale(1);
		-moz-animation-timing-function: ease-in;
	}
}
@-o-keyframes flip {
	0% {
		-o-transform: perspective(400px) rotateY(0);
		-o-animation-timing-function: ease-out;
	}
	40% {
		-o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
		-o-animation-timing-function: ease-out;
	}
	50% {
		-o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		-o-animation-timing-function: ease-in;
	}
	80% {
		-o-transform: perspective(400px) rotateY(360deg) scale(.95);
		-o-animation-timing-function: ease-in;
	}
	100% {
		-o-transform: perspective(400px) scale(1);
		-o-animation-timing-function: ease-in;
	}
}
@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}
	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.flip {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flip;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flip;
	-o-backface-visibility: visible !important;
	-o-animation-name: flip;
	backface-visibility: visible !important;
	animation-name: flip;
}
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -moz-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -moz-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        -o-transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        -o-transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipInX;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipInX;
	backface-visibility: visible !important;
	animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
	100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	-moz-animation-name: flipOutX;
	-moz-backface-visibility: visible !important;
	-o-animation-name: flipOutX;
	-o-backface-visibility: visible !important;
	animation-name: flipOutX;
	backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -moz-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -moz-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        -o-transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        -o-transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    
    40% {
        transform: perspective(400px) rotateY(-10deg);
    }
    
    70% {
        transform: perspective(400px) rotateY(10deg);
    }
    
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipInY;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipInY;
	backface-visibility: visible !important;
	animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-moz-keyframes flipOutY {
    0% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-o-keyframes flipOutY {
    0% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
	100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	-moz-backface-visibility: visible !important;
	-moz-animation-name: flipOutY;
	-o-backface-visibility: visible !important;
	-o-animation-name: flipOutY;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

@-moz-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

@-o-keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

@keyframes fadeIn {
	0% {opacity: 0;}	
	100% {opacity: 1;}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	-moz-animation-name: fadeInLeft;
	-o-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	-moz-animation-name: fadeInRight;
	-o-animation-name: fadeInRight;
	animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translateY(2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	-moz-animation-name: fadeInUpBig;
	-o-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translateY(-2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	-moz-animation-name: fadeInDownBig;
	-o-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}
@-moz-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}
@-o-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	-moz-animation-name: fadeInLeftBig;
	-o-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
}

@-o-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		-o-transform: translateX(0);
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	-moz-animation-name: fadeInRightBig;
	-o-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@-moz-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@-o-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	-moz-animation-name: fadeOut;
	-o-animation-name: fadeOut;
	animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}
}
@-moz-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}
}
@-o-keyframes fadeOutUp {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	-moz-animation-name: fadeOutUp;
	-o-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(20px);
	}
}

@-moz-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(20px);
	}
}

@-o-keyframes fadeOutDown {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(20px);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(20px);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	-moz-animation-name: fadeOutDown;
	-o-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-20px);
	}
}

@-moz-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(-20px);
	}
}

@-o-keyframes fadeOutLeft {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(-20px);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(-20px);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	-moz-animation-name: fadeOutLeft;
	-o-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(20px);
	}
}

@-moz-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(20px);
	}
}

@-o-keyframes fadeOutRight {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	-moz-animation-name: fadeOutRight;
	-o-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
}

@-moz-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
}

@-o-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(-2000px);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	-moz-animation-name: fadeOutUpBig;
	-o-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
}

@-moz-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
}

@-o-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		-o-transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		transform: translateY(2000px);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	-moz-animation-name: fadeOutDownBig;
	-o-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
}

@-moz-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
}

@-o-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(-2000px);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	-moz-animation-name: fadeOutLeftBig;
	-o-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-webkit-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
}
@-moz-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-moz-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
}
@-o-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		-o-transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	
	100% {
		opacity: 0;
		transform: translateX(2000px);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	-moz-animation-name: fadeOutRightBig;
	-o-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
	0% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.05);
	}
	
	70% {
		-webkit-transform: scale(.9);
	}
	
	100% {
		-webkit-transform: scale(1);
	}
}

@-moz-keyframes bounceIn {
	0% {
		opacity: 0;
		-moz-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-moz-transform: scale(1.05);
	}
	
	70% {
		-moz-transform: scale(.9);
	}
	
	100% {
		-moz-transform: scale(1);
	}
}

@-o-keyframes bounceIn {
	0% {
		opacity: 0;
		-o-transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		-o-transform: scale(1.05);
	}
	
	70% {
		-o-transform: scale(.9);
	}
	
	100% {
		-o-transform: scale(1);
	}
}

@keyframes bounceIn {
	0% {
		opacity: 0;
		transform: scale(.3);
	}
	
	50% {
		opacity: 1;
		transform: scale(1.05);
	}
	
	70% {
		transform: scale(.9);
	}
	
	100% {
		transform: scale(1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(-30px);
	}
	
	80% {
		-webkit-transform: translateY(10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}
@-moz-keyframes bounceInUp {
	0% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateY(-30px);
	}
	
	80% {
		-moz-transform: translateY(10px);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bounceInUp {
	0% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateY(-30px);
	}
	
	80% {
		-o-transform: translateY(10px);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes bounceInUp {
	0% {
		opacity: 0;
		transform: translateY(2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateY(-30px);
	}
	
	80% {
		transform: translateY(10px);
	}
	
	100% {
		transform: translateY(0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	-moz-animation-name: bounceInUp;
	-o-animation-name: bounceInUp;
	animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateY(30px);
	}
	
	80% {
		-webkit-transform: translateY(-10px);
	}
	
	100% {
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes bounceInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateY(30px);
	}
	
	80% {
		-moz-transform: translateY(-10px);
	}
	
	100% {
		-moz-transform: translateY(0);
	}
}

@-o-keyframes bounceInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateY(30px);
	}
	
	80% {
		-o-transform: translateY(-10px);
	}
	
	100% {
		-o-transform: translateY(0);
	}
}

@keyframes bounceInDown {
	0% {
		opacity: 0;
		transform: translateY(-2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateY(30px);
	}
	
	80% {
		transform: translateY(-10px);
	}
	
	100% {
		transform: translateY(0);
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	-moz-animation-name: bounceInDown;
	-o-animation-name: bounceInDown;
	animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(30px);
	}
	
	80% {
		-webkit-transform: translateX(-10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateX(30px);
	}
	
	80% {
		-moz-transform: translateX(-10px);
	}
	
	100% {
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInLeft {
	0% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateX(30px);
	}
	
	80% {
		-o-transform: translateX(-10px);
	}
	
	100% {
		-o-transform: translateX(0);
	}
}

@keyframes bounceInLeft {
	0% {
		opacity: 0;
		transform: translateX(-2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateX(30px);
	}
	
	80% {
		transform: translateX(-10px);
	}
	
	100% {
		transform: translateX(0);
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
	0% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-webkit-transform: translateX(-30px);
	}
	
	80% {
		-webkit-transform: translateX(10px);
	}
	
	100% {
		-webkit-transform: translateX(0);
	}
}

@-moz-keyframes bounceInRight {
	0% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-moz-transform: translateX(-30px);
	}
	
	80% {
		-moz-transform: translateX(10px);
	}
	
	100% {
		-moz-transform: translateX(0);
	}
}

@-o-keyframes bounceInRight {
	0% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		-o-transform: translateX(-30px);
	}
	
	80% {
		-o-transform: translateX(10px);
	}
	
	100% {
		-o-transform: translateX(0);
	}
}

@keyframes bounceInRight {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}
	
	60% {
		opacity: 1;
		transform: translateX(-30px);
	}
	
	80% {
		transform: translateX(10px);
	}
	
	100% {
		transform: translateX(0);
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
	0% {
		-webkit-transform: scale(1);
	}
	
	25% {
		-webkit-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-webkit-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: scale(.3);
	}	
}

@-moz-keyframes bounceOut {
	0% {
		-moz-transform: scale(1);
	}
	
	25% {
		-moz-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-moz-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-moz-transform: scale(.3);
	}	
}

@-o-keyframes bounceOut {
	0% {
		-o-transform: scale(1);
	}
	
	25% {
		-o-transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		-o-transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		-o-transform: scale(.3);
	}	
}

@keyframes bounceOut {
	0% {
		transform: scale(1);
	}
	
	25% {
		transform: scale(.95);
	}
	
	50% {
		opacity: 1;
		transform: scale(1.1);
	}
	
	100% {
		opacity: 0;
		transform: scale(.3);
	}	
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	-moz-animation-name: bounceOut;
	-o-animation-name: bounceOut;
	animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
	0% {
		-webkit-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-2000px);
	}
}

@-moz-keyframes bounceOutUp {
	0% {
		-moz-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(-2000px);
	}
}

@-o-keyframes bounceOutUp {
	0% {
		-o-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(-2000px);
	}
}

@keyframes bounceOutUp {
	0% {
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		transform: translateY(20px);
	}
	
	100% {
		opacity: 0;
		transform: translateY(-2000px);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	-moz-animation-name: bounceOutUp;
	-o-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
	0% {
		-webkit-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(2000px);
	}
}

@-moz-keyframes bounceOutDown {
	0% {
		-moz-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateY(2000px);
	}
}

@-o-keyframes bounceOutDown {
	0% {
		-o-transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateY(2000px);
	}
}

@keyframes bounceOutDown {
	0% {
		transform: translateY(0);
	}
	
	20% {
		opacity: 1;
		transform: translateY(-20px);
	}
	
	100% {
		opacity: 0;
		transform: translateY(2000px);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	-moz-animation-name: bounceOutDown;
	-o-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
	0% {
		-webkit-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(-2000px);
	}
}

@-moz-keyframes bounceOutLeft {
	0% {
		-moz-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(-2000px);
	}
}

@-o-keyframes bounceOutLeft {
	0% {
		-o-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(-2000px);
	}
}

@keyframes bounceOutLeft {
	0% {
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		transform: translateX(20px);
	}
	
	100% {
		opacity: 0;
		transform: translateX(-2000px);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	-moz-animation-name: bounceOutLeft;
	-o-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
	0% {
		-webkit-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-webkit-transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateX(2000px);
	}
}

@-moz-keyframes bounceOutRight {
	0% {
		-moz-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-moz-transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-moz-transform: translateX(2000px);
	}
}

@-o-keyframes bounceOutRight {
	0% {
		-o-transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		-o-transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		-o-transform: translateX(2000px);
	}
}

@keyframes bounceOutRight {
	0% {
		transform: translateX(0);
	}
	
	20% {
		opacity: 1;
		transform: translateX(-20px);
	}
	
	100% {
		opacity: 0;
		transform: translateX(2000px);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	-moz-animation-name: bounceOutRight;
	-o-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}
@-moz-keyframes rotateIn {
	0% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}
@-o-keyframes rotateIn {
	0% {
		-o-transform-origin: center center;
		-o-transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: center center;
		-o-transform: rotate(0);
		opacity: 1;
	}
}
@keyframes rotateIn {
	0% {
		transform-origin: center center;
		transform: rotate(-200deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: center center;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	-moz-animation-name: rotateIn;
	-o-animation-name: rotateIn;
	animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInUpLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInUpLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	-moz-animation-name: rotateInUpLeft;
	-o-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInDownLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInDownLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	-moz-animation-name: rotateInDownLeft;
	-o-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInUpRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInUpRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	-moz-animation-name: rotateInUpRight;
	-o-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
}

@-moz-keyframes rotateInDownRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
}

@-o-keyframes rotateInDownRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	-moz-animation-name: rotateInDownRight;
	-o-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: center center;
		-webkit-transform: rotate(200deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOut {
	0% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: center center;
		-moz-transform: rotate(200deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOut {
	0% {
		-o-transform-origin: center center;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: center center;
		-o-transform: rotate(200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	0% {
		transform-origin: center center;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: center center;
		transform: rotate(200deg);
		opacity: 0;
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	-moz-animation-name: rotateOut;
	-o-animation-name: rotateOut;
	animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutUpLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutUpLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	-moz-animation-name: rotateOutUpLeft;
	-o-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: left bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutDownLeft {
	0% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: left bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutDownLeft {
	0% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: left bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: left bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	-moz-animation-name: rotateOutDownLeft;
	-o-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutUpRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutUpRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	-moz-animation-name: rotateOutUpRight;
	-o-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-webkit-transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-moz-keyframes rotateOutDownRight {
	0% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-moz-transform-origin: right bottom;
		-moz-transform: rotate(-90deg);
		opacity: 0;
	}
}

@-o-keyframes rotateOutDownRight {
	0% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		-o-transform-origin: right bottom;
		-o-transform: rotate(-90deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(0);
		opacity: 1;
	}
	
	100% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	-moz-animation-name: rotateOutDownRight;
	-o-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}
@-webkit-keyframes hinge {
	0% { -webkit-transform: rotate(0); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	20%, 60% { -webkit-transform: rotate(80deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	40% { -webkit-transform: rotate(60deg); -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	80% { -webkit-transform: rotate(60deg) translateY(0); opacity: 1; -webkit-transform-origin: top left; -webkit-animation-timing-function: ease-in-out; }	
	100% { -webkit-transform: translateY(700px); opacity: 0; }
}

@-moz-keyframes hinge {
	0% { -moz-transform: rotate(0); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	20%, 60% { -moz-transform: rotate(80deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	40% { -moz-transform: rotate(60deg); -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	80% { -moz-transform: rotate(60deg) translateY(0); opacity: 1; -moz-transform-origin: top left; -moz-animation-timing-function: ease-in-out; }	
	100% { -moz-transform: translateY(700px); opacity: 0; }
}

@-o-keyframes hinge {
	0% { -o-transform: rotate(0); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	20%, 60% { -o-transform: rotate(80deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	40% { -o-transform: rotate(60deg); -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	80% { -o-transform: rotate(60deg) translateY(0); opacity: 1; -o-transform-origin: top left; -o-animation-timing-function: ease-in-out; }	
	100% { -o-transform: translateY(700px); opacity: 0; }
}

@keyframes hinge {
	0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; }	
	20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; }	
	40% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; }	
	80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; }	
	100% { transform: translateY(700px); opacity: 0; }
}

.hinge {
	-webkit-animation-name: hinge;
	-moz-animation-name: hinge;
	-o-animation-name: hinge;
	animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
	0% { opacity: 0; -webkit-transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; -webkit-transform: translateX(0px) rotate(0deg); }
}

@-moz-keyframes rollIn {
	0% { opacity: 0; -moz-transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; -moz-transform: translateX(0px) rotate(0deg); }
}

@-o-keyframes rollIn {
	0% { opacity: 0; -o-transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; -o-transform: translateX(0px) rotate(0deg); }
}

@keyframes rollIn {
	0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); }
	100% { opacity: 1; transform: translateX(0px) rotate(0deg); }
}

.rollIn {
	-webkit-animation-name: rollIn;
	-moz-animation-name: rollIn;
	-o-animation-name: rollIn;
	animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
    0% {
		opacity: 1;
		-webkit-transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		-webkit-transform: translateX(100%) rotate(120deg);
	}
}

@-moz-keyframes rollOut {
    0% {
		opacity: 1;
		-moz-transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		-moz-transform: translateX(100%) rotate(120deg);
	}
}

@-o-keyframes rollOut {
    0% {
		opacity: 1;
		-o-transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		-o-transform: translateX(100%) rotate(120deg);
	}
}

@keyframes rollOut {
    0% {
		opacity: 1;
		transform: translateX(0px) rotate(0deg);
	}

    100% {
		opacity: 0;
		transform: translateX(100%) rotate(120deg);
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	-moz-animation-name: rollOut;
	-o-animation-name: rollOut;
	animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedIn {
	0% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { -webkit-transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { -webkit-transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-moz-keyframes lightSpeedIn {
	0% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { -moz-transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { -moz-transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@-o-keyframes lightSpeedIn {
	0% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { -o-transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { -o-transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
}

@keyframes lightSpeedIn {
	0% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
	60% { transform: translateX(-20%) skewX(30deg); opacity: 1; }
	80% { transform: translateX(0%) skewX(-15deg); opacity: 1; }
	100% { transform: translateX(0%) skewX(0deg); opacity: 1; }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -moz-animation-name: lightSpeedIn;
    -o-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;

    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes lightSpeedOut {
    0% { -webkit-transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { -webkit-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-moz-keyframes lightSpeedOut {
	0% { -moz-transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { -moz-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@-o-keyframes lightSpeedOut {
	0% { -o-transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { -o-transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

@keyframes lightSpeedOut {
	0% { transform: translateX(0%) skewX(0deg); opacity: 1; }
	100% { transform: translateX(100%) skewX(-30deg); opacity: 0; }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -moz-animation-name: lightSpeedOut;
    -o-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    -o-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

@-webkit-keyframes wiggle {
    0% { -webkit-transform: skewX(9deg); }
    10% { -webkit-transform: skewX(-8deg); }
    20% { -webkit-transform: skewX(7deg); }
    30% { -webkit-transform: skewX(-6deg); }
    40% { -webkit-transform: skewX(5deg); }
    50% { -webkit-transform: skewX(-4deg); }
    60% { -webkit-transform: skewX(3deg); }
    70% { -webkit-transform: skewX(-2deg); }
    80% { -webkit-transform: skewX(1deg); }
    90% { -webkit-transform: skewX(0deg); }
	100% { -webkit-transform: skewX(0deg); }
}

@-moz-keyframes wiggle {
    0% { -moz-transform: skewX(9deg); }
    10% { -moz-transform: skewX(-8deg); }
    20% { -moz-transform: skewX(7deg); }
    30% { -moz-transform: skewX(-6deg); }
    40% { -moz-transform: skewX(5deg); }
    50% { -moz-transform: skewX(-4deg); }
    60% { -moz-transform: skewX(3deg); }
    70% { -moz-transform: skewX(-2deg); }
    80% { -moz-transform: skewX(1deg); }
    90% { -moz-transform: skewX(0deg); }
	100% { -moz-transform: skewX(0deg); }
}

@-o-keyframes wiggle {
    0% { -o-transform: skewX(9deg); }
    10% { -o-transform: skewX(-8deg); }
    20% { -o-transform: skewX(7deg); }
    30% { -o-transform: skewX(-6deg); }
    40% { -o-transform: skewX(5deg); }
    50% { -o-transform: skewX(-4deg); }
    60% { -o-transform: skewX(3deg); }
    70% { -o-transform: skewX(-2deg); }
    80% { -o-transform: skewX(1deg); }
    90% { -o-transform: skewX(0deg); }
	100% { -o-transform: skewX(0deg); }
}

@keyframes wiggle {
    0% { transform: skewX(9deg); }
    10% { transform: skewX(-8deg); }
    20% { transform: skewX(7deg); }
    30% { transform: skewX(-6deg); }
    40% { transform: skewX(5deg); }
    50% { transform: skewX(-4deg); }
    60% { transform: skewX(3deg); }
    70% { transform: skewX(-2deg); }
    80% { transform: skewX(1deg); }
    90% { transform: skewX(0deg); }
	100% { transform: skewX(0deg); }
}

.wiggle {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.wiggle {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

@font-face { 
    font-family: 'FontAwesome';  
    src: url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/FontAwesome/fontawesome-webfont.eot') format('eot'), 
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/FontAwesome/fontawesome-webfont.woff') format('woff'),
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/FontAwesome/fontawesome-webfont.ttf') format('truetype'),
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/FontAwesome/FontAwesome.otf') format('otf');
}
@font-face { 
    font-family: 'Bozon-Regular';  
    src: url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regular-webfont.eot') format('eot'), 
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regular-webfont.woff') format('woff'),
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-regular-webfont.ttf') format('truetype'),
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-Regular.otf') format('otf');
}
@font-face { 
    font-family: 'Bozon-Bold';  
    src: url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-bold-webfont.eot') format('eot'), 
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-bold-webfont.woff') format('woff'),
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/bozon-bold-webfont.ttf') format('truetype'),
        url('https://263750.fs1.hubspotusercontent-na1.net/hubfs/263750/Bozon/Bozon-Bold.otf') format('otf');
}

@import url("//cdn2.hubspot.net/hub/263750/hub_generated/template_assets/11351857788/1582122930331/Sues/Sues_2019/ADC19/css/font-awesome.min.css");



     
    
    /*================================================ MENU BASIC STYLE */
    /*   nav > section > ul.mash-list-items.right > li:nth-child(2) > a {
    padding:10px;
    } */


    .mash-menu {
        padding:0;
        display: block;
        position: relative;
        z-index: 999;
        float: none;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        font-family: "Bozon-Regular", Helvetica, Arial, sans-serif;
        font-size: 16px;
        height:64px;
        background:#ffffff;
}


@media screen and (max-width: 896px) {
    .mash-menu {
        float: left;
        width: 100%;
    }
}

.mash-menu * {
    /*=========================================== CSS FOR ALL ELEMENTS */
    outline: none !important;
    text-decoration: none !important;
    box-sizing: border-box;
    font-family: "Bozon-Regular", Helvetica, Arial, sans-serif;
    list-style: none;
    text-align: left;
    -webkit-tap-highlight-color: transparent !important;
}

.mash-menu i.fa {
    /*===================================== FONT AWESOME ICONS */
    font-family: FontAwesome;
}

.mash-menu section.mash-menu-inner-container {
    /*=========================================== SECTION */
    padding: 0;
    float: none;
    width: 100%;
    min-height: 45px;
    background: #fff;
    height:45px;
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 896px) {
    .mash-menu section.mash-menu-inner-container {
        min-height: 1px;
    }
}

.mash-menu .mash-brand, .mash-menu .mash-list-items {
    /*=========================================== MENU BRAND */
    margin: 0 50px 0 0;
    padding: 0;
    display: block;
    float: left;
    text-align: center;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-brand, .mash-menu .mash-list-items {
        width: 100%;
        background:#ffffff !important;
    }
}

.mash-menu .mash-brand > li, .mash-menu .mash-list-items > li {
    float: left;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 57px;
}

@media screen and (min-width: 897px) {
    .mash-menu .mash-brand > li:hover > a, .mash-menu .mash-list-items > li:hover > a {
        color: #000;
        background: #fff;
        position: relative;
    }
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-brand > li, .mash-menu .mash-list-items > li {
        width: 100%;
        text-align: left;
        line-height: normal;
        cursor: pointer;
        position: relative;
    }
}

.mash-menu .mash-brand > li > a, .mash-menu .mash-list-items > li > a {
    width: 100%;
    margin: 0;
    display: block;
    font-size: 1.125em;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
    color:#000;
    position: relative;
    overflow: hidden;
    transition: background 200ms ease;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-brand > li > a, .mash-menu .mash-list-items > li > a {
        line-height: normal;
        word-wrap: break-word;
        padding-top: 15px;
        padding-bottom: 0;
    }
}
.mash-menu .mash-brand > li > a img {
    /*   max-height: 20px; */
    top: -3px;
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
}
.mash-menu .mash-list-items > li > a img {
    max-height: 20px;
    top: -3px;
    position: relative;
    margin: 0;
    padding: 0;
    display: inline-block;
}

.mash-menu .mash-list-items {
    /*============================================== LIST ITEMS  */
}

@media screen and (min-width: 897px) {
    .mash-menu .mash-list-items {
        display: block !important;
    }
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-list-items {
        padding-top: 44px;
        display: none;
        padding-bottom: 44px;
    }
}

.mash-menu .mash-list-items > li {
    line-height: normal;
    cursor: default;
    background:#ffffff;
}

.mash-menu .mash-list-items > li:after {
    display: none;
}

.mash-menu .mash-list-items > li.active {
    /*=========================================== LIST ITEMS ACTIVE */
}

.mash-menu .mash-list-items > li.active > a {
    background: #fff;
    position: relative;
}

.mash-menu .mash-list-items > li:hover {
    /*============================================ LIST ITEMS HOVER */
}

.mash-menu .mash-list-items > li:hover > a {
    color: #000;
    background: #fff;
    position: relative;
}

.mash-menu .mash-list-items > li > a {
    font-size: 0.875em;
    padding:0 30px 0 10px;
    font-weight: 400;
    position: relative;
    top:22px;
    overflow: hidden;
    display: block;
    z-index: 10;
    width: 100%;
    transition: background 200ms ease;
}
.mash-menu .mash-list-items .blueButton{position:relative;top:10px;}

@media screen and (max-width: 896px) {
    .mash-menu .mash-list-items > li > a {
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .mash-menu .mash-list-items > li > a:after {
        display: none;
    }
}

.mash-menu .mash-list-items.right {
    /*=============================================== RIGHT CLASS */
    float: right;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-list-items.right {
        padding-top: 0;
    }
}

.mash-menu .mash-list-items.right > li > .drop-down {
    right: 0;
}

.mash-menu .withripple {
    /*================================================= RIPPLE CSS EFFECT  */
    position: relative;
}

.mash-menu .ripple-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    pointer-events: none;
}

.mash-menu .ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -10px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%;
    opacity: 0;
    pointer-events: none;
}

.mash-menu .ripple.ripple-on {
    transition: opacity 0.15s ease-in 0s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    opacity: .2;
}

.mash-menu .ripple.ripple-out {
    transition: opacity .1s linear 0s !important;
    opacity: 0;
}

.mash-menu.separator {
    /*================================================ SEPARATOR */
}

.mash-menu.separator .mash-brand > li > a, .mash-menu.separator .mash-list-items > li > a {
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1) inset, 1px 0 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

@media screen and (max-width: 896px) {
    .mash-menu.separator .mash-brand > li > a, .mash-menu.separator .mash-list-items > li > a {
        border-right: none;
        /*     border-bottom: 1px solid #039fe5; */
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.mash-menu.separator .mash-list-items.right {
    padding-top: 0;
}

.mash-menu.separator .mash-list-items.right > li > a {
    /*   border-left: 1px solid #039fe5; */
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1) inset, 1px 0 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

@media screen and (max-width: 896px) {
    .mash-menu.separator .mash-list-items.right > li > a {
        border-left: none;
        border-bottom: 1px solid #039fe5;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

@media screen and (max-width: 896px) {
    .mash-menu.separator .mash-search-bar {
        border: 1px solid #039fe5;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 1px 0 rgba(255, 255, 255, 0.1);
    }
}

.mash-menu .drop-down {
    /*=============================================== DROP DOWN */
    margin: 0;
    display: none;
    position: absolute;
    top: 60px; /* auto */
    left: auto;
    right: auto;
    background: white;
    z-index: 999;
    min-width: 180px;
    padding: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    text-align: left;
}

@media screen and (max-width: 896px) {
    .mash-menu .drop-down {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        min-width: 10px;
        word-wrap: break-word;
        border-radius: 0;
        z-index: 9999;
    }
}

.mash-menu .drop-down li {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    z-index: 999;
}

.mash-menu .drop-down li:first-child .drop-down {
    top: 0;
}

.mash-menu .drop-down li:first-child a {
    padding-top: 10px;
    position: relative;
}

@media screen and (min-width: 897px) {
    .mash-menu .drop-down li:last-child {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
}

.mash-menu .drop-down li:last-child a {
    padding-bottom: 10px;
    position: relative;
}

@media screen and (min-width: 897px) {
    .mash-menu .drop-down li:last-child a {
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
    }
}

.mash-menu .drop-down a {
    width: 100%;
    margin: 0;
    display: block;
    color: #505050;
    font-size: 0.8125em;
    padding: 6px 15px;
    position: relative;
    z-index: 999;
    transition: color 200ms ease;
}

.mash-menu .drop-down li:hover > a {
    color: #03a9f4;
    position: relative;
}

.mash-menu .drop-down .drop-down {
    /*========================================== SECOND LEVEL DROP DOWN */
    left: 100%;
    top: -8px;
    z-index: -1;
    display: none;
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (min-width: 897px) {
    .mash-menu .drop-down .drop-down {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
}

@media screen and (min-width: 897px) {
    .mash-menu .drop-down .drop-down li:first-child {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
}

.mash-menu .drop-down .drop-down li:first-child a {
    padding-top: 15px;
    position: relative;
}

@media screen and (min-width: 897px) {
    .mash-menu .drop-down .drop-down li:first-child a {
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }
}

.mash-menu .drop-down .drop-down li:last-child a {
    padding-bottom: 15px;
    position: relative;
}

@media screen and (max-width: 896px) {
    .mash-menu .drop-down .drop-down {
        left: 0;
        top: 0;
        z-index: 10;
        position: relative;
        display: none;
        border-top: 1px solid rgba(242, 242, 242, 0.86);
        border-bottom: 1px solid rgba(242, 242, 242, 0.86);
        box-shadow: none;
    }
    .mash-menu .drop-down .drop-down a {
        padding-left: 30px;
    }
    .mash-menu .drop-down .drop-down .drop-down a {
        padding-left: 50px;
    }
    .mash-menu .drop-down .drop-down .drop-down .drop-down a {
        padding-left: 70px;
    }
}

.mash-menu .drop-down .drop-down.left {
    /*======================================== ALIGN DROP DOWN LEFT SIDE */
    left: -100%;
}

@media screen and (max-width: 896px) {
    .mash-menu .drop-down .drop-down.left {
        left: 0;
    }
}

.mash-menu .mash-list-items > li > a i.fa {
    /*========================================== FONT AWESOME ICONS */
    font-size: 0.875em;
    float: left;
    display: inline-block;
    margin: 0;
    line-height: 16px;
    padding: 0 5px 0 0;
}

.mash-menu .mash-list-items > li > a i.fa.fa-indicator {
    float: right;
    padding-right: 0;
    padding-left: 5px;
}

.mash-menu .drop-down li a i.fa {
    float: left;
    margin: 0;
    display: inline-block;
    padding: 0 6px 0 0;
    line-height: 16px;
    font-size: 0.8125em;
}

.mash-menu .drop-down li a i.fa.fa-indicator {
    float: right;
    padding-right: 0;
    padding-left: 6px;
}

@media screen and (max-width: 896px) {
    .mash-menu .drop-down li a i.fa.fa-indicator {
        padding-right: 1px;
    }
}

.mash-menu .divider {
    /*=========================================== DIVIDER */
    margin: 8px 0 !important;
    padding: 0;
    display: block;
    height: 1px;
    background: rgba(230, 230, 230, 0.86) !important;
    width: 100%;
}

.mash-menu .mash-search-bar {
    /*============================================= SEARCH BAR */
    margin: 0;
    padding: 0;
    display: block;
    float: right;
}

@media screen and (min-width: 897px) {
    .mash-menu .mash-search-bar {
        display: block !important;
    }
    .mash-menu .mash-search-bar.search-bar-hide {
        /*=============================================== SEARCH BAR HIDE ON DESKTOP CLASS */
        display: none !important;
    }
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-search-bar {
        display: none;
    }
    .mash-menu .mash-search-bar.search-bar-hide {
        /*=============================================== SEARCH BAR HIDE ON MOBILE CLASS */
        display: none !important;
    }
    .mash-menu .mash-list-items.search-bar-hide {
        padding-top: 0;
    }
}

.mash-menu .mash-search-bar li {
    margin: 0;
    padding: 15px 15px;
    display: block;
    float: left;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-search-bar li {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.mash-menu .mash-search-bar form {
    margin: 0;
    padding: 0;
    display: block;
    float: left;
}

.mash-menu .mash-search-bar label {
    margin: 0;
    padding: 0;
    display: block;
    float: left;
    position: relative;
}

.mash-menu .mash-search-bar input {
    margin: 0;
    display: block;
    float: left;
    max-width: 160px;
    width: 100%;
    font-family: "Bozon-Regualr", Helvetica, Arial, sans-serif;
    font-size: 0.875em;
    padding: 0;
    height: 25px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.86);
    position: relative;
    opacity: 1 !important;
    font-weight: normal;
}

.mash-menu .mash-search-bar :-moz-placeholder {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.86);
}

.mash-menu .mash-search-bar ::-moz-placeholder {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.86);
}

.mash-menu .mash-search-bar :-ms-input-placeholder {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.86);
}

.mash-menu .mash-search-bar ::-webkit-input-placeholder {
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.86);
}

.mash-menu .mash-search-bar .mash-search-bar-border {
    margin: 0;
    padding: 0;
    display: block;
    height: 0;
    width: 100%;
}

.mash-menu .mash-search-bar .mash-search-bar-border:after, .mash-menu .mash-search-bar .mash-search-bar-border:before {
    content: "";
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.36);
    height: 1px;
    width: 100%;
    transition: width 400ms ease;
}

.mash-menu .mash-search-bar .mash-search-bar-border:before {
    right: 0;
    left: auto;
}

.mash-menu .mash-search-bar input:focus + .mash-search-bar-border:after, .mash-menu .mash-search-bar input:focus + .mash-search-bar-border:before,
.mash-menu .mash-search-bar input:focus + .mash-search-bar-border:before {
    width: 0;
}

.mash-menu .mash-search-bar i.fa.fa-search {
    display: none;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-search-bar {
        width: 100%;
        position: absolute;
        top: 52px;
        background: #fff;
        z-index: 999;
        border-left: none;
        border-right: none;
    }
    .mash-menu .mash-search-bar li, .mash-menu .mash-search-bar form, .mash-menu .mash-search-bar label, .mash-menu .mash-search-bar input {
        width: 100% !important;
        max-width: 100%;
    }
    .mash-menu .mash-search-bar i.fa.fa-search {
        display: block;
        position: absolute;
        top: -60px;
        right: 44px;
        color: rgba(255, 255, 255, 0.86);
        height: 44px;
        width: 44px;
        cursor: pointer;
        text-align: center;
        line-height: 44px;
        font-size: 1em;
        z-index: 999;
    }
}

.mash-menu .drop-down-large,
.mash-menu .drop-down-medium {
    /*============================================= FULL SIZE DROP DOWN */
    margin: 0;
    display: none;
    float: left;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: left;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    font-size: 0.8125em;
    z-index: 999;
    background: white;
    line-height: 18px;
    padding: 20px 5px 15px;
    overflow:hidden;
    min-height: 100px;

}

.mash-menu .drop-down-large > .vertical-tabs-container,
.mash-menu .drop-down-medium > .vertical-tabs-container {
    /*============================================= vertical tabs container */
    position: relative;
    top: 15px;
    margin-top: -35px;
    margin-right: -5px;
    margin-left: -5px;
}

@media screen and (max-width: 896px) {
    .mash-menu .drop-down-large,
    .mash-menu .drop-down-medium {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        display: none;
        border-radius: 0;
        z-index: 999;
        height:100vh;
    }
}

.mash-menu .drop-down-medium {
    /*========================================== DROP DOWN MEDIUM */
    left: 0;
    width: 100%;
    max-width: 600px;
    right: 0;
    margin: 0 auto;
}

.mash-menu .drop-down-medium.float-left {
    margin: 0;
    right: auto;
}

.mash-menu .drop-down-medium.float-right {
    margin: 0;
    left: auto;
    right: 0;
}

@media screen and (max-width: 991px) {
    .mash-menu .drop-down-medium {
        max-width: 100%;
        width: 100%;
        left: 0;
        right: 0;
    }
}

.mash-menu .vertical-tabs {
    /*=========================================== VERTICAL TABS */
    margin: 0;
    width: 100%;
    float: left;
    display: block;
    padding: 20px 0;
    background: #f0f0f0;
}

@media screen and (max-width: 896px) {
    .mash-menu .vertical-tabs {
        display: none;
    }
}

.mash-menu .vertical-tabs:before {
    content: "";
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(240, 240, 240, 0.86);
}

.mash-menu .vertical-tabs a {
    float: left;
    width: 100%;
    display: inline-block;
    text-align: right;
    padding: 8px 15px;
    margin: 1px 0;
    font-weight: 500;
    color: #505050;
    position: relative;
    transition: background 200ms ease, color 200ms ease;
}

@media screen and (max-width: 896px) {
    .mash-menu .vertical-tabs a {
        text-align: left;
    }
}

.mash-menu .vertical-tabs a:hover, .mash-menu .vertical-tabs a.active {
    background: rgba(255, 255, 255, 0.86);
    color: #03a9f4;
}

.mash-menu .vertical-tabs i.fa {
    font-weight: bold;
    padding-left: 5px;
}

@media screen and (max-width: 896px) {
    .mash-menu .vertical-tabs i.fa {
        float: right;
        top: 2px;
        position: relative;
    }
}

.mash-menu .vertical-tabs-content {
    /*========================================= VERTICAL TABS CONTENT */
    background: white;
    display: none;
    float: left;
    width: 100%;
    padding: 25px;
    position: relative;
    z-index: 10;
}

.mash-menu .vertical-tabs-content:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 150%;
    background: white;
    z-index: -1;
}

@media screen and (max-width: 896px) {
    .mash-menu .vertical-tabs-content {
        border-top: 1px solid rgba(242, 242, 242, 0.86);
        padding:5px;
    }
}

.mash-menu .vertical-tabs-content-container > a {
    display: none;
}

@media screen and (max-width: 896px) {
    .mash-menu .vertical-tabs-content-container > a {
        position: relative;
        z-index: 9999;
        display: block;
        float: left;
        width: 100%;
        text-align: right;
        padding: 8px 15px;
        margin: 1px 0;
        font-weight: 500;
        color: #505050;
        transition: background 200ms ease, color 200ms ease;
    }
}

@media screen and (max-width: 896px) and (max-width: 896px) {
    .mash-menu .vertical-tabs-content-container > a {
        text-align: left;
    }
}

@media screen and (max-width: 896px) {
    .mash-menu .vertical-tabs-content-container > a:hover, .mash-menu .vertical-tabs-content-container > a.active {
        background: rgba(255, 255, 255, 0.86);
        color: #03a9f4;
    }
    .mash-menu .vertical-tabs-content-container > a i.fa {
        float: right;
    }
}

.mash-menu .vertical-tabs-content-container .vertical-tabs-content-mobile {
    display: none;
}

@media screen and (max-width: 896px) {
    .mash-menu .vertical-tabs-content-container .vertical-tabs-content-mobile {
        display: block;
        color: #505050;
        width: 100%;
        margin: 0px;
        font-size: 1em;
        padding: 10px 15px;
        transition: color 200ms ease 0s;
    }
    .mash-menu .vertical-tabs-content-container .vertical-tabs-content-mobile:hover {
        color: #03a9f4;
    }
    .mash-menu .vertical-tabs-content-container .vertical-tabs-content-mobile i.fa {
        float: right;
    }
}

.mash-menu .space-0 {
    /*===================================== SPACE 0 CLASS USED FOR REMOVE THE BOOTSTRAP COLUMNS SPACE */
    padding: 0 !important;
    margin: 0 !important;
}

.mash-menu img {
    max-width: 100%;
    margin-bottom: 10px;
}

.mash-menu p {
    color: #505050;
    font-weight: 400;
    line-height: 18px;
}

.mash-menu h1, .mash-menu h2, .mash-menu h3, .mash-menu h4, .mash-menu h5, .mash-menu h6 {
    color: #505050;
    font-weight: 400;
    font-size: 2.25em;
    margin-top: 10px;
    margin-bottom: 10px;
}

.mash-menu h2 {
    font-size: 1.875em;
}

.mash-menu h3 {
    font-size: 1.625em;
}

.mash-menu h4 {
    font-size: 1.375em;
}

.mash-menu h5 {
    font-size: 1.125em;
}

.mash-menu h6 {
    font-size: 1em;
    font-family:'Bozon-Bold', Helvetica, Arial, sans-serif;
}

.mash-menu .thumbnail {
    margin-bottom: 15px;
    border-radius: 0;
}

.mash-menu .thumbnail:hover {
    border-color: #03a9f4;
}

.mash-menu .lead {
    font-size: 1.25em;
    color: #505050;
}

.mash-menu small {
    font-size: 0.875em;
    color: #505050;
}

.mash-menu strong,
.mash-menu em,
.mash-menu abbr {
    color: #505050;
}

.mash-menu em {
    font-weight: 400;
    font-style: italic;
}

.mash-menu .text-primary {
    color: #009688;
}

.mash-menu .text-warning {
    color: #FF5722;
}

.mash-menu .text-danger {
    color: #F44336;
}

.mash-menu .text-success {
    color: #4CAF50;
}

.mash-menu .text-info {
    color: #03A9F4;
}

.mash-menu blockquote {
    border-left-color: #60ccfd;
    padding: 5px 15px;
    margin-bottom: 10px;
}

.mash-menu blockquote small:before {
    display: none;
}

.mash-menu .list-items, .mash-menu .order-items {
    /*===================================== LIST ITEMS */
    padding: 0;
    display: block;
    width: 100%;
    margin: 0 0 10px;
}

.mash-menu .list-items li, .mash-menu .order-items li {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    list-style: decimal;
}

.mash-menu .list-items li:first-child a, .mash-menu .order-items li:first-child a {
    border-top: none;
    position: relative;
}

.mash-menu .list-items a, .mash-menu .order-items a {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid rgba(80, 80, 80, 0.1);
    color: #505050;
    font-weight: 400;
    position: relative;
    transition: color 200ms ease;
}

.mash-menu .list-items a:hover, .mash-menu .order-items a:hover {
    color: #03a9f4;
}

.mash-menu .list-items i.fa, .mash-menu .order-items i.fa {
    margin-right: 5px;
}

.mash-menu .list-items i.fa.fa-indicator, .mash-menu .order-items i.fa.fa-indicator {
    float: right;
    margin-left: 5px;
    margin-right: 10px;
}

.mash-menu .order-items li {
    /*============================================ ORDER LIST */
    position: relative;
}

.mash-menu .order-items li a {
    padding-left: 20px;
    position: relative;
}

.mash-menu .order-items li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    color: #505050;
    bottom: 0;
    line-height: 40px;
    text-align: left;
    list-style-type: inside !important;
    display: list-item !important;
}

.mash-menu .list-items-group {
    /*========================================= LIST GROUP ITEM */
    margin: 0;
    padding: 0;
    float: left;
    width: 100%;
    display: block;
    position: relative;
}

.mash-menu .list-items-group .list-group-image {
    float: left;
    width: 50px;
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.86);
}

.mash-menu .list-items-group .list-group-image img {
    max-width: 100%;
    float: left;
    margin-top: 10px;
    width: 100%;
}

.mash-menu .list-items-group .list-group-heading, .mash-menu .list-items-group .list-group-text {
    padding-left: 65px;
}

.mash-menu .list-items-group .divider {
    background: rgba(80, 80, 80, 0.1) !important;
}

.mash-menu .btn {
    text-transform: uppercase;
    position: relative;
    padding: 10px 25px;
    font-size: 1.0625em;
    margin: 0 4px 10px;
}

.mash-menu .btn.space-0 {
    padding: 10px 25px !important;
}

.mash-menu .btn.small {
    padding: 5px 10px;
    font-size: 1em;
}

.mash-menu .btn.small.space-0 {
    padding: 5px 10px !important;
}

.mash-menu .btn.btn-default, .mash-menu .btn.btn-primary, .mash-menu .btn.btn-success, .mash-menu .btn.btn-info, .mash-menu .btn.btn-custom, .mash-menu .btn.btn-warning, .mash-menu .btn.btn-danger {
    background: none;
    border: none;
    transition: all 200ms ease;
    border-radius: 3px;
    border-bottom: 2px solid whitesmoke;
}

.mash-menu .btn.btn-primary {
    background: #009688;
    color: rgba(255, 255, 255, 0.86) !important;
    border-bottom-color: #00635a;
}

.mash-menu .btn.btn-primary:hover {
    background: #00a596;
}

.mash-menu .btn.btn-success {
    background: #59B75C;
    color: rgba(255, 255, 255, 0.86) !important;
    border-bottom-color: #439a46;
}

.mash-menu .btn.btn-success:hover {
    background: #64bc66;
}

.mash-menu .btn.btn-info {
    background: #0FB2FC;
    color: rgba(255, 255, 255, 0.86) !important;
    border-bottom-color: #0394d5;
}

.mash-menu .btn.btn-info:hover {
    background: #1eb7fc;
}

.mash-menu .btn.btn-custom {
    background: #03a9f4;
    color: rgba(255, 255, 255, 0.86) !important;
    border-bottom-color: #0286c2;
}

.mash-menu .btn.btn-custom:hover {
    background: #0ab1fc;
}

.mash-menu .btn.btn-warning {
    background: #FF6736;
    color: rgba(255, 255, 255, 0.86) !important;
    border-bottom-color: #ff4003;
}

.mash-menu .btn.btn-warning:hover {
    background: #ff7345;
}

.mash-menu .btn.btn-danger {
    background: #F55549;
    color: rgba(255, 255, 255, 0.86) !important;
    border-bottom-color: #f22819;
}

.mash-menu .btn.btn-danger:hover {
    background: #f66358;
}

.mash-menu .box-orange, .mash-menu .box-red, .mash-menu .box-green, .mash-menu .box-blue {
    background: #FF5722;
    padding: 15px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1em;
}

.mash-menu .box-red {
    background: #F44336;
}

.mash-menu .box-green {
    background: #4CAF50;
}

.mash-menu .box-blue {
    background: #03A9F4;
}

.mash-menu .panel {
    border-radius: 5px;
    border: 1px solid #ddd;
    border-bottom: 5px solid #E5E6E6;
    color: #505050;
    margin-bottom: 10px;
}

.mash-menu .panel .panel-heading {
    border: none;
    background: #eee;
    color: #505050;
}

.mash-menu .panel .panel-body {
    border: none;
    color: #505050;
}

.mash-menu .panel.panel-primary .panel-heading {
    background: #009688;
    color: rgba(255, 255, 255, 0.84);
}

.mash-menu .panel.panel-success .panel-heading {
    background: #4caf50;
    color: rgba(255, 255, 255, 0.84);
}

.mash-menu .panel.panel-info .panel-heading {
    background: #03a9f4;
    color: rgba(255, 255, 255, 0.84);
}

.mash-menu .panel.panel-warning .panel-heading {
    background: #ff5722;
    color: rgba(255, 255, 255, 0.84);
}

.mash-menu .panel.panel-danger .panel-heading {
    background: #f44336;
    color: rgba(255, 255, 255, 0.84);
}

.mash-menu .collapsible {
    /*=============================================== collapsible */
    padding: 0;
    display: block;
    position: relative;
    margin: 0 0 10px;
    color: #505050;
    overflow: visible;
    background-color: rgba(248, 248, 248, 0.7);
    border-radius: 5px;
    border: 1px solid #ddd;
    border-bottom: 5px solid #E5E6E6;
}

.mash-menu .collapsible .collapsible-header {
    padding: 10px;
    font-size: 1.125em;
    border-top: 1px solid #ddd;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    z-index: 10;
    overflow: hidden !important;
}

.mash-menu .collapsible > li:first-child .collapsible-header {
    border-top: none;
}

.mash-menu .collapsible > li.active .collapsible-body {
    display: block;
}

.mash-menu .collapsible .collapsible-body {
    background-color: rgba(255, 255, 255, 0.86);
    padding: 20px;
    display: none;
    border-top: 1px solid #ddd;
    line-height: 18px;
}

.mash-menu .collapsible i.fa {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.mash-menu .card {
    /*======================================== IMAGE CARD */
    padding: 0;
    display: block;
    position: relative;
    overflow: hidden;
    background-color: white;
    margin: 0 0 10px;
    border-radius: 2px 2px 5px 5px;
    border: 2px solid #E5E6E6;
    border-bottom: 5px solid #E5E6E6;
}

.mash-menu .card .card-image {
    position: relative;
}

.mash-menu .card img {
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

.mash-menu .card .card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    color: white;
    font-size: 1.375em;
    font-weight: 300;
    -webkit-text-stroke-width: 0.8px;
}

.mash-menu .card .card-content {
    padding: 15px 20px;
    border-radius: 0 0 2px 2px;
}

.mash-menu .card .card-action {
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    padding: 15px;
}

.mash-menu .card .card-action a {
    color: #03a9f4;
    margin-right: 20px;
    text-transform: uppercase;
    position: relative;
}

.mash-menu .card .card-action a:hover {
    text-decoration: underline !important;
}

.mash-menu .card.reveal .card-title {
    color: #505050;
    position: relative;
    top: 0;
    left: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 10px;
    display: inline-block;
}

.mash-menu .card.reveal a {
    color: #03a9f4;
    text-transform: uppercase;
    position: relative;
}

.mash-menu .card.reveal a:hover {
    text-decoration: underline !important;
}

.mash-menu .card.reveal .card-reveal {
    padding: 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 10;
    transition: -webkit-transform 800ms ease;
    transition: transform 800ms ease;
    transition: transform 800ms ease, -webkit-transform 800ms ease;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.mash-menu .card.reveal .card-content {
    background: white;
    position: relative;
    z-index: 15;
}

.mash-menu .card.reveal:hover .card-reveal {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.mash-menu [class*='col-'] {
    margin-bottom: 10px;
    position: static;
}

@media screen and (max-width: 896px) {
    .mash-menu [class*='col-'] {
        margin-bottom: 30px;
    }
}

.mash-menu .form-horizontal {
    /*======================================== HORIZONTAL FORM */
    border: 1px solid rgba(230, 230, 230, 0.86);
    padding: 20px;
    margin:0;
    display: inline-block;
    background: rgba(252, 252, 252, 0.86);
    width: 100%;
}

@media screen and (max-width: 896px) {
    .mash-menu .form-horizontal {
        display: block;
    }
    .mash-menu .form-horizontal div {
        margin-bottom: 10px !important;
    }
}

.mash-menu .form-horizontal * {
    color: #505050 !important;
}

.mash-menu .form-horizontal input,
.mash-menu .form-horizontal label,
.mash-menu .form-horizontal textarea {
    width: 100% !important;
    line-height: 20px;
    resize: none;
}

.mash-menu .form-horizontal input {
    padding-bottom: 5px;
}

@media screen and (max-width: 896px) {
    .mash-menu .form-horizontal .btn {
        width: 100%;
    }
}

.mash-menu .form-horizontal button i.fa {
    color: rgba(255, 255, 255, 0.86) !important;
    position: relative;
    left: 10px;
    display: none;
}

.mash-menu input[type='text'],
.mash-menu input[type='email'],
.mash-menu input[type='password'],
.mash-menu input[type='color'],
.mash-menu input[type='date'],
.mash-menu input[type='datetime'],
.mash-menu input[type='datetime-local'],
.mash-menu input[type='file'],
.mash-menu input[type='hidden'],
.mash-menu input[type='image'],
.mash-menu input[type='month'],
.mash-menu input[type='number'],
.mash-menu input[type='time'],
.mash-menu input[type='url'],
.mash-menu input[type='week'],
.mash-menu input[type='tel'],
.mash-menu textarea,
.mash-menu select {
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    background-image: linear-gradient(#03a9f4, #03a9f4), linear-gradient(#d2d2d2, #d2d2d2) !important;
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: transparent !important;
}

.mash-menu input[type='text']:focus,
.mash-menu input[type='email']:focus,
.mash-menu input[type='password']:focus,
.mash-menu input[type='color']:focus,
.mash-menu input[type='date']:focus,
.mash-menu input[type='datetime']:focus,
.mash-menu input[type='datetime-local']:focus,
.mash-menu input[type='file']:focus,
.mash-menu input[type='hidden']:focus,
.mash-menu input[type='image']:focus,
.mash-menu input[type='month']:focus,
.mash-menu input[type='number']:focus,
.mash-menu input[type='time']:focus,
.mash-menu input[type='url']:focus,
.mash-menu input[type='week']:focus,
.mash-menu input[type='tel']:focus,
.mash-menu textarea:focus,
.mash-menu select:focus {
    background-image: linear-gradient(#03a9f4, #03a9f4), linear-gradient(#d2d2d2, #d2d2d2);
    -webkit-animation: input-highlight .5s forwards;
    animation: input-highlight .5s forwards;
    background-size: 0 2px, 100% 1px;
}

@-webkit-keyframes input-highlight {
    0% {
        background-size: 0 2px, 100% 1px;
    }
    100% {
        background-size: 100% 2px, 100% 1px;
    }
}

@keyframes input-highlight {
    0% {
        background-size: 0 2px, 100% 1px;
    }
    100% {
        background-size: 100% 2px, 100% 1px;
    }
}

.mash-menu input.menu-checkbox {
    display: none;
}

.mash-menu input.menu-checkbox:checked + label:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mash-menu label.menu-checkbox {
    font-weight: 400;
    color: #505050;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.0625em;
    line-height: normal;
    width: 100%;
}

.mash-menu label.menu-checkbox:before, .mash-menu label.menu-checkbox:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 16px;
    width: 16px;
    background: none;
    border: 2px solid #505050;
    border-radius: 2px;
}

.mash-menu label.menu-checkbox:after {
    content: "\f00c";
    width: 16px;
    height: 16px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    background-size: 100% 100%;
    transition: -webkit-transform 200ms ease;
    transition: transform 200ms ease;
    transition: transform 200ms ease, -webkit-transform 200ms ease;
    background: #03a9f4;
    font-family: FontAwesome;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.625em;
    text-align: center;
    line-height: 12px;
    font-weight: 400;
}

.mash-menu input.menu-toggle {
    display: none;
}

.mash-menu input.menu-toggle:checked + label:after {
    left: 12px;
}

.mash-menu label.menu-toggle {
    font-weight: 400;
    color: #505050;
    position: relative;
    padding-left: 38px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.0625em;
    line-height: normal;
    width: 100%;
}

.mash-menu label.menu-toggle:before, .mash-menu label.menu-toggle:after {
    content: "";
    display: block;
    position: absolute;
    top: 3px;
    left: 0;
    background: #60ccfd;
    border-radius: 100px;
    height: 12px;
    width: 30px;
}

.mash-menu label.menu-toggle:after {
    background: #03a9f4;
    height: 18px;
    width: 18px;
    top: 0;
    left: -3px;
    transition: left 400ms ease;
}

.mash-menu input.menu-radio {
    display: none;
}

.mash-menu input.menu-radio:checked + label:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mash-menu label.menu-radio {
    font-weight: 400;
    color: #505050;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1.0625em;
    line-height: normal;
    width: 100%;
}

.mash-menu label.menu-radio:after, .mash-menu label.menu-radio:before {
    content: "";
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 100px;
    border: 2px solid #505050;
}

.mash-menu label.menu-radio:after {
    border-color: #03a9f4;
    background: #03a9f4;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    transition: -webkit-transform 400ms ease;
    transition: transform 400ms ease;
    transition: transform 400ms ease, -webkit-transform 400ms ease;
}

.mash-menu .mash-mobile-button {
    /*=========================================== mobile trigger button */
    border: none;
    background: #03a9f4;
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 99999;
    display: block;
    padding:0;
    text-align:center !important;
}



.mash-menu .mash-mobile-button:hover span:before {
    /*   background: rgba(0, 0, 0, 0.1); */
}

@media screen and (min-width: 897px) {
    .mash-menu .mash-mobile-button {
        display: none;
    }
}

.mash-menu .mash-mobile-button span {
    width: 70px;
    height: 70px;
    float: right;
    line-height: 54px;
    position: absolute;
    top: 0;
    text-align: center;
    margin: 0;
    right: 0;
    display: block;
    cursor: pointer;
    z-index: 9999;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAOAgMAAABSqtRjAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAACVBMVEWdnZ3///////9yOLbWAAAAAnRSTlMA32D/An0AAAABYktHRAH/Ai3eAAAACXBIWXMAAAsSAAALEgHS3X78AAAAEklEQVQI12MIBQEGCIkLkKgGAKK/CfcXmfkCAAAAAElFTkSuQmCC") no-repeat center;
}

.mash-menu .mash-mobile-button span:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: none;
    transition: background 200ms ease;
}

.mash-menu.mash-top-fixed .mash-menu-inner-container {
    /* ================================================ MENU FIXED ON TOP */
    position: fixed;
    top: 0; /* changed this to 0 from 10px */
    left: 0;
    right: 0;
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 896px) {
    .mash-menu.mash-top-fixed .mash-menu-inner-container {
        max-width: 100%;
        margin: 0;
    }
    .mash-menu.mash-top-fixed .mash-menu-inner-container .mash-list-items {
        height:100vh;
        overflow: auto !important;
        overflow-y: auto !important;
        contain:content;
    }
}

.mash-menu.mash-full-width {
    /* ==================================================== MENU FULL WIDTH */
    max-width: 100% !important;
}

.mash-menu.mash-full-width .mash-menu-inner-container {
    max-width: 100% !important;
    margin: 0;
}

.mash-menu .lead {
    -webkit-text-stroke-width: 0.025em;
}

.mash-menu .vertical-tabs-horizontal {
    /*======================================================= tabs */
    padding: 0;
    display: block;
    float: left;
    width: 100%;
    margin: 0 0 10px;
}

.mash-menu .vertical-tabs-horizontal ul.horizontal-tab-heading {
    float: left;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.mash-menu .vertical-tabs-horizontal ul.horizontal-tab-heading li {
    float: left;
    display: block;
    margin: 0;
    padding: 0;
}

.mash-menu .vertical-tabs-horizontal ul.horizontal-tab-heading li.active a {
    background: white;
}

.mash-menu .vertical-tabs-horizontal ul.horizontal-tab-heading a {
    padding: 12px 15px;
    font-size: 1.125em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #505050;
    display: inline-block;
}

.mash-menu .vertical-tabs-horizontal ul.horizontal-tab-heading i.fa {
    margin-right: 5px;
    display: inline-block;
}

.mash-menu .vertical-tabs-horizontal .horizontal-tab-content {
    display: block;
    margin: 0;
    float: left;
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    position: relative;
    z-index: 10;
    background: white;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.16), 0 1px 0 0 rgba(0, 0, 0, 0.12);
}

.mash-menu .vertical-tabs-horizontal .horizontal-tab-content .horizontal-tab-panel {
    display: none;
}

.mash-menu .vertical-tabs-horizontal .horizontal-tab-content .horizontal-tab-panel.active {
    display: block;
}

.mash-menu .mash-error {
    /*==================================================== error class*/
    background: red;
    padding: 40px 20px 20px;
    text-align: center;
    color: white;
    position: relative;
    max-width: 400px;
    width: 100%;
    margin: 100px auto auto;
    z-index: 9999999;
    border-radius: 5px;
    font-size: 0.875em;
    overflow: hidden;
    letter-spacing: 1px;
    line-height: 25px;
    clear: both;
}

.mash-menu .mash-error:before {
    content: 'Error';
    position: absolute;
    line-height: normal;
    top: 0;
    left: 0;
    color: white;
    right: 0;
    text-align: left;
    padding: 5px 5px 5px 10px;
    letter-spacing: 1px;
    background: darkred;
}

.mash-menu .mash-extra {
    /*============================================== mash extra class */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 50px;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.mash-menu .mash-extra > .mash-extra-container {
    background: #02638f;
    float: left;
    width: 100%;
    position: relative;
    min-height: 57px;
}

.mash-menu .mash-extra > .mash-extra-container > ul.mash-extra-links {
    float: right;
    padding: 0;
    display: block;
    margin: 0 150px 0 0;
}

.mash-menu .mash-extra > .mash-extra-container > ul.mash-extra-links > li {
    float: left;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 57px;
}

.mash-menu .mash-extra > .mash-extra-container > ul.mash-extra-links > li > a {
    width: 100%;
    margin: 0;
    display: block;
    font-size: 0.875em;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
    color: rgba(255, 255, 255, 0.86);
    position: relative;
    overflow: hidden;
}

.mash-menu .mash-categories {
    /*============================================== categories */
    margin: 0;
    padding: 0;
    display: block;
    float: right;
}

.mash-menu .mash-categories * {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mash-menu .mash-categories li {
    margin: 0;
    padding: 0;
    display: block;
    float: left;
}

.mash-menu .mash-categories a {
    margin: 0;
    padding: 0 15px 0 15px;
    display: inline-block;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(3, 169, 244, 0.3);
    font-size: 0.875em;
    line-height: 57px;
    transition: background 400ms ease;
    border-left: 1px solid #039fe5;
    box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1) inset, 1px 0 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 99999999;
}

.mash-menu .mash-categories a i.fa {
    margin-left: 2px;
}

.mash-menu .mash-categories a:hover {
    background: #14b4fc;
}

.mash-menu .mash-table {
    /*============================================= table */
    padding: 0;
    border-bottom: 5px solid #E5E6E6;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: table;
    float: left;
    width: 100%;
    margin: 0 0 10px;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-table {
        white-space: nowrap;
        overflow-x: auto;
        display: block;
        width: 100%;
        border-bottom: none;
    }
}

.mash-menu .mash-table .mash-table-heading {
    color: #505050;
    padding: 10px 15px;
    border-bottom: 3px solid #E5E6E6;
}

.mash-menu .mash-table thead {
    background: #ECECEC;
}

.mash-menu .mash-table td,
.mash-menu .mash-table th {
    padding: 10px 15px;
    color: #505050;
    border: 1px solid #ddd;
    position: relative;
    display: table-cell;
    width: auto;
}

.mash-menu .menu-select-dropdown {
    float: left;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

.mash-menu .dropdownjs {
    /*=================================================== select input element */
    position: relative;
    font-weight: normal;
    color: #505050;
    margin: 0;
    padding: 0;
    display: block;
    float: left;
    width: 100%;
}

.mash-menu .dropdownjs:before {
    content: "\f0d7";
    position: absolute;
    font-family: "FontAwesome";
    right: 10px;
    top: 0;
    bottom: 0;
    line-height: 40px;
}

.mash-menu .dropdownjs > input {
    width: 100%;
    text-overflow: ellipsis;
    padding: 10px;
    font-size: 1.0625em;
}

.mash-menu .dropdownjs > input.focus ~ ul {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.mash-menu .dropdownjs > ul {
    position: absolute;
    padding: 0;
    margin: 0;
    min-width: 200px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    z-index: 10000;
}

.mash-menu .dropdownjs > ul[placement=top-left] {
    -webkit-transform-origin: bottom left;
    -ms-transform-origin: bottom left;
    transform-origin: bottom left;
    bottom: 0;
    left: 0;
}

.mash-menu .dropdownjs > ul[placement=bottom-left] {
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    bottom: 0;
    left: 0;
}

.mash-menu .dropdownjs > ul > li {
    list-style: none;
    padding: 5px 10px;
}

.mash-menu .dropdownjs > ul > li.dropdownjs-add {
    padding: 0;
}

.mash-menu .dropdownjs > ul > li.dropdownjs-add > input {
    border: 0;
    padding: 10px 20px;
    width: 100%;
}

.mash-menu .dropdownjs > input[readonly] {
    cursor: pointer;
}

.mash-menu .dropdownjs select[data-dropdownjs][disabled] ~ input[readonly] {
    cursor: default;
}

.mash-menu .dropdownjs > ul {
    background: #FFF;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 6px rgba(0, 0, 0, 0.12);
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    padding: 10px;
    overflow: auto;
    max-width: 500px;
}

.mash-menu .dropdownjs > ul > li {
    cursor: pointer;
    word-wrap: break-word;
}

.mash-menu .dropdownjs > ul > li.selected,
.mash-menu .dropdownjs > ul > li:active {
    background-color: #eaeaea;
}

.mash-menu .dropdownjs > ul > li:focus {
    outline: 0;
}

.mash-menu .dropdownjs > ul > li > .close:before {
    content: "\00d7";
    display: block;
    position: absolute;
    right: 15px;
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .6;
}

.mash-menu .dropdownjs > ul > li > .close:hover:before {
    opacity: .9;
}

.mash-menu .mash-tabs-container {
    /*===================================================== mash tabs container */
    padding: 0;
    float: left;
    width: 100%;
    display: block;
    border-bottom: 5px solid #E5E6E6;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 0 0 10px;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container {
        float: none;
    }
}

.mash-menu .mash-tabs-container .mash-tabs {
    display: table;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 5px 0;
    width: 100%;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container .mash-tabs {
        border-collapse: collapse;
        border-spacing: 0;
    }
}

.mash-menu .mash-tabs-container .mash-tabs a {
    background: #ECECEC;
    padding: 10px 2px;
    display: table-cell;
    color: #505050;
    text-align: center;
    font-size: 1.125em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-bottom: none;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container .mash-tabs a {
        display: inline-block;
        width: 100%;
        border-radius: 0;
    }
}

.mash-menu .mash-tabs-container .mash-tabs a.active {
    background: white;
}

.mash-menu .mash-tabs-container .mash-tabs a.active:before {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: -1;
}

.mash-menu .mash-tabs-container .mash-tabs-content {
    float: left;
    width: 100%;
    background-color: white;
    padding: 20px 0 0;
    display: block;
    border: 1px solid #ddd;
    border-radius: 5px 5px 0 0;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container .mash-tabs-content {
        padding-top: 0;
    }
}

.mash-menu .mash-tabs-container .mash-tabs-content .mash-tabs-mobile {
    display: none;
    background: #ECECEC;
    padding: 10px 2px;
    color: #505050;
    text-align: center;
    font-size: 1.125em;
    position: relative;
    z-index: 10;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container .mash-tabs-content .mash-tabs-mobile {
        display: inline-block;
        width: 100%;
        border-radius: 0;
    }
}

.mash-menu .mash-tabs-container .mash-tabs-content .mash-tabs-mobile.active {
    background: white;
}

.mash-menu .mash-tabs-container .mash-tabs-content .mash-tabs-mobile.active:before {
    display: none;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container .mash-tabs-content .mash-tabs-mobile {
        display: block;
        border: none;
        border-bottom: 1px solid #ddd;
        margin: 0;
    }
}

.mash-menu .mash-tabs-container .mash-tabs-content > div[id*="tab-"] {
    display: none;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container .mash-tabs-content > div[id*="tab-"] {
        padding-top: 20px;
    }
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-tabs-container .mash-tabs-content {
        border-radius: 0;
        float: none;
    }
}

.mash-menu .mash-social-icons {
    float: right;
    margin: 0;
    padding: 0 15px;
    display: block;
}

.mash-menu .mash-social-icons li {
    margin: 0;
    padding: 0;
    display: block;
    float: left;
    line-height: 57px;
}

.mash-menu .mash-social-icons a {
    color: rgba(255, 255, 255, 0.86);
    margin: 0;
    padding: 0 5px;
    display: inline-block;
    float: left;
    width: 100%;
    text-align: center;
}

.mash-menu .mash-social-icons a:hover {
    color: white;
}

@media screen and (max-width: 896px) {
    .mash-menu .mash-social-icons {
        width: 100%;
        text-align: center;
        font-size: 0;
    }
    .mash-menu .mash-social-icons li {
        float: none;
        display: inline-block;
    }
    .mash-menu .mash-social-icons li a {
        font-size: 16px;
        padding: 0 10px;
    }
}

@media screen and (min-width: 897px) {
    .mash-menu.right-to-left .mash-list-items > li, .mash-menu.right-to-left .mash-brand, .mash-menu.right-to-left .mash-list-items {
        /* ================================= menu link align right to left */
        float: right;
    }
    .mash-menu.right-to-left .mash-list-items.right,
    .mash-menu.right-to-left .mash-search-bar,
    .mash-menu.right-to-left .mash-social-icons {
        float: left;
    }
    .mash-menu.right-to-left .mash-list-items.right > li > .drop-down {
        right: auto;
    }
}

.mash-menu .nav-tabs {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border: none !important;
}

@media screen and (max-width: 896px) {
    .mash-menu .nav-tabs {
        display: block;
    }
}

.mash-menu .nav-tabs li {
    margin: 0 5px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    border: none !important;
}

@media screen and (max-width: 896px) {
    .mash-menu .nav-tabs li {
        display: block;
        width: 100%;
        margin: 0;
        border-radius: 0;
    }
}

.mash-menu .nav-tabs li a {
    color: #505050;
    background: #ececec;
    border-left: 1px solid #e5e6e6 !important;
    border-right: 1px solid #e5e6e6 !important;
    border-top: 1px solid #e5e6e6 !important;
    font-size: 1.125em;
    cursor: pointer;
    text-align: center;
}

@media screen and (max-width: 896px) {
    .mash-menu .nav-tabs li a {
        border-radius: 0;
        margin: 0;
    }
}

.mash-menu .nav-tabs li.active a {
    background: #ececec !important;
}

.mash-menu .tab-content {
    border: 1px solid #e5e6e6;
    border-radius: 5px;
    padding: 1.25em 1.25em 0.625em;
    margin-bottom: 1.25em;
    border-bottom-width: 5px;
}

@media screen and (max-width: 896px) {
    .mash-menu{
        padding:0 0 0 0 !important;
    }

    .mash-menu .tab-content {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
}

.mash-menu .list-group {
    /* list group */
    color: #505050;
}

.mash-menu .list-group .active {
    background: #eeeeee;
    color: #505050;
    border-color: #e5e6e6;
}

.mash-menu .list-group .active:hover, .mash-menu .list-group .active:active, .mash-menu .list-group .active:focus {
    background: #eeeeee;
    color: #505050;
    border-color: #e5e6e6;
}

.mash-menu .list-group .list-group-item-text {
    color: #505050 !important;
}

.mash-menu .well {
    /* well */
    color: #505050;
}

.mash-menu .media {
    /* media */
    color: #505050;
    height:90px;
}

.mash-menu .media .media-left {
    max-width:100px;
    display: block;
    float: left;
    margin-right:15px;
}
.media-left img, .gallery1 img{
    border:2px solid #efefef;
    padding:4px;
}
@media screen and (max-width: 320px) {

    .mash-menu .media {
        margin-bottom:15px;
    }


    .mash-menu .media .media-left {
        display: block;
        width: 40%;
        max-width: 40%;
        padding-right: 0;

    }
}
@media screen and (max-width:823px){
    .mash-menu .mash-list-items.right {
        /*=============================================== RIGHT CLASS */
        float: none;
        background:#fff;
    }
    .mash-menu .mash-list-items .blueButton{margin-top:20px !important;}
    .mash-menu .drop-down-large, 
    .mash-menu .drop-down-medium,
    .mash-menu .vertical-tabs-content {overflow:scroll;}
}


.leadinModal.leadinModal-theme-default.leadinModal-v3.leadinModal-preview h4 { font-family: Bozon-Bold; } 
.leadinModal .leadinModal-content p { font-family: Bozon-Regular; }
.leadinModal.leadinModal-v3 .leadin-button { font-family: Bozon-Regular !important; }
#jquery-script-menu {
position: fixed;
height: 90px;
width: 100%;
top: 0;
left: 0;
border-top: 5px solid #316594;
background: #fff;
-moz-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
-webkit-box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
box-shadow: 0 2px 3px 0px rgba(0, 0, 0, 0.16);
z-index: 999999;
padding: 10px 0;
-webkit-box-sizing:content-box;
-moz-box-sizing:content-box;
box-sizing:content-box;
}

.jquery-script-center {
width: 960px;
margin: 0 auto;
}
.jquery-script-center ul {
width: 212px;
float:left;
line-height:45px;
margin:0;
padding:0;
list-style:none;
}
.jquery-script-center a {
	text-decoration:none;
}
.jquery-script-ads {
width: 728px;
height:90px;
float:right;
}
.jquery-script-clear {
clear:both;
height:0;
}