/* ======== IMPORTS ======= */
/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html,
button,
input,
select,
textarea {
  color: #222; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */
img {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px; }

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%; }

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

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

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: black !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]:after {
    content: " (" attr(href) ")"; }

  abbr[title]:after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre,
  blockquote {
    border: 1px solid #999999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group;
    /* h5bp.com/t */ }

  tr,
  img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
/* normalize.css v1.0.2 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block; }

/*
 * Corrects `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

/*
 * Prevents modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/*
 * Addresses styling for `hidden` attribute not present in IE 7/8/9, Firefox 3,
 * and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Corrects text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */ }

/*
 * Addresses `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/*
 * Addresses margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0;
  padding: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted; }

/*
 * Improves readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses font sizes and margins set differently in IE 6/7.
 * Addresses font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1, h2, h3, h4, h5, h6 {
  margin: 0; }

/*
 * Addresses styling not present in IE 7/8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/*
 * Addresses style set to `bolder` in Firefox 3+, Safari 4/5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

/*
 * Addresses styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/*
 * Addresses styling not present in IE 6/7/8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/*
 * Addresses margins set differently in IE 6/7.
 */
p,
pre {
  margin: 0;
  padding: 0; }

/*
 * Corrects font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: "courier new", monospace;
  font-size: 1em; }

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/*
 * Addresses CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none; }

/*
 * Addresses `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none; }

/*
 * Addresses inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/*
 * Prevents `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Lists
   ========================================================================== */
/*
 * Addresses margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0; }

/*
 * Corrects list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/*
 * 1. Removes border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improves image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/*
 * Corrects margin displayed oddly in IE 6/7.
 */
form {
  margin: 0; }

/*
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/*
 * 1. Corrects color not being inherited in IE 6/7/8/9.
 * 2. Corrects text not wrapping in Firefox 3.
 * 3. Corrects alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/*
 * 1. Corrects font size not being inherited in all browsers.
 * 2. Addresses margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improves appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

/*
 * Addresses Firefox 3+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/*
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Corrects inability to style clickable `input` types in iOS.
 * 3. Improves usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Removes inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

/*
 * Re-set default cursor for disabled elements.
 */
button[disabled],
input[disabled] {
  cursor: default; }

/*
 * 1. Addresses box sizing set to content-box in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 * 3. Removes excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

/*
 * 1. Addresses `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Addresses `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/*
 * Removes inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/*
 * Removes inner padding and border in Firefox 3+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Removes default vertical scrollbar in IE 6/7/8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/*
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ======== FONTS ======= */
@font-face {
  font-family: 'LatoHairline';
  src: url("../fonts/Lato-Hai-webfont.eot");
  src: url("../fonts/Lato-Hai-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Hai-webfont.woff") format("woff"), url("../fonts/Lato-Hai-webfont.ttf") format("truetype"), url("../fonts/Lato-Hai-webfont.svg#LatoHairline") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'LatoLight';
  src: url("../fonts/Lato-Lig-webfont.eot");
  src: url("../fonts/Lato-Lig-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Lig-webfont.woff") format("woff"), url("../fonts/Lato-Lig-webfont.ttf") format("truetype"), url("../fonts/Lato-Lig-webfont.svg#LatoLight") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'LatoRegular';
  src: url("../fonts/Lato-Reg-webfont.eot");
  src: url("../fonts/Lato-Reg-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Reg-webfont.woff") format("woff"), url("../fonts/Lato-Reg-webfont.ttf") format("truetype"), url("../fonts/Lato-Reg-webfont.svg#LatoRegular") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'LatoBold';
  src: url("../fonts/Lato-Bol-webfont.eot");
  src: url("../fonts/Lato-Bol-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Bol-webfont.woff") format("woff"), url("../fonts/Lato-Bol-webfont.ttf") format("truetype"), url("../fonts/Lato-Bol-webfont.svg#LatoBold") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'LatoBlack';
  src: url("../fonts/Lato-Bla-webfont.eot");
  src: url("../fonts/Lato-Bla-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Bla-webfont.woff") format("woff"), url("../fonts/Lato-Bla-webfont.ttf") format("truetype"), url("../fonts/Lato-Bla-webfont.svg#LatoBlack") format("svg");
  font-weight: normal;
  font-style: normal; }

/* ======== VARIABLES ======= */
/* ======== MIXINS ======= */
/* ======== GENERAL ======= */
::-moz-selection {
  background: #006200;
  text-shadow: none;
  color: #fff; }

::selection {
  background: #006200;
  text-shadow: none;
  color: #fff; }

body {
  width: 100%;
  background: url(../img/Ambu-Link-bg.jpg) repeat;
  font: 12px/12px "LatoRegular", Arial, sans-serif; }

.wrapper {
  width: 1050px;
  height: auto;
  margin: 0 auto; }

/* ======== HEADER + NAVIGATION ======= */
header {
  width: 100%;
  height: 124px; }
  header nav {
    width: 100%;
    height: 72px;
    margin: 26px 0;
    float: left;
    display: block;
    background-color: #006200;
    background-image: -webkit-linear-gradient(top, #006200, #054e24);
    background-image: -moz-linear-gradient(top, #006200, #054e24);
    background-image: -o-linear-gradient(top, #006200, #054e24);
    background-image: -ms-linear-gradient(top, #006200, #054e24);
    background-image: linear-gradient(top, #006200, #054e24);
    -moz-box-shadow: 0px 0px 9px 0px #6f6f6f;
    -webkit-box-shadow: 0px 0px 9px 0px #6f6f6f;
    box-shadow: 0px 0px 9px 0px #6f6f6f; }
    header nav div ul li {
      font: 11px/36px "LatoRegular", Arial, sans-serif;
      text-align: center;
      text-transform: uppercase;
      width: 159px;
      height: 36px;
      border: 1px solid #4f7e61;
      margin: 18px 20px 18px 0;
      float: left;
      display: block;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      -moz-box-shadow: 0px 0px 1px 0px rgba(0, 46, 26, 0.7);
      -webkit-box-shadow: 0px 0px 1px 0px rgba(0, 46, 26, 0.7);
      box-shadow: 0px 0px 1px 0px rgba(0, 46, 26, 0.7);
      -webkit-transition: all 0.2s linear;
      -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -ms-transition: all 0.2s linear;
      transition: all 0.2s linear; }
      header nav div ul li:nth-child(n+4) {
        float: right; }
      header nav div ul li:nth-child(4) {
        margin: 18px 0; }
      header nav div ul li:hover {
        border: 1px solid #749982;
        background: #006200;
        -moz-box-shadow: 0px 0px 3px 0px rgba(0, 46, 26, 0.8);
        -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 46, 26, 0.8);
        box-shadow: 0px 0px 3px 0px rgba(0, 46, 26, 0.8); }
      header nav div ul li a {
        width: 100%;
        height: 36px;
        text-decoration: none;
        color: #fff;
        float: left;
        display: block; }
    header nav div ul li.logo {
      width: 332px;
      height: 100px;
      margin: -14px 0 0 1px;
      border: 2px solid white;
      background: #f4f4f4;
      float: left;
      display: block;
      -moz-border-radius: 12px;
      -webkit-border-radius: 12px;
      border-radius: 12px;
      -moz-box-shadow: 0px 0px 9px 0px rgba(35, 31, 32, 0.5);
      -webkit-box-shadow: 0px 0px 9px 0px rgba(35, 31, 32, 0.5);
      box-shadow: 0px 0px 9px 0px rgba(35, 31, 32, 0.5); }
      header nav div ul li.logo a {
        width: 288px;
        height: 76px;
        margin: 10px 0 0 19px;
        float: left;
        display: block;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        -ms-transition: all 0.2s linear;
        transition: all 0.2s linear;
        background: url(../img/Ambu-Link-sprite.png) no-repeat -10px -52px; }
        header nav div ul li.logo a:hover {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
          filter: alpha(opacity=80);
          -moz-opacity: 0.8;
          -khtml-opacity: 0.8;
          opacity: 0.8; }

/* ======== SLIDER ======= */
.sliderWrap {
  width: 100%;
  margin: 0 0 25px 0;
  float: left;
  display: block; }
  .sliderWrap .wrapper {
    border: 1px solid #d4d4d4;
    padding: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    /* The slices and boxes in the Slider */
    /* Caption styles */ }
    .sliderWrap .wrapper .theme-ambu .nivoSlider {
      width: 100%;
      height: auto;
      position: relative;
      background: url(../img/Ambu-Link-preloader.gif) no-repeat;
      overflow: hidden;
      -moz-border-radius: 12px;
      -webkit-border-radius: 12px;
      border-radius: 12px;
      -moz-box-shadow: 0px 0px 9px 0px #6f6f6f;
      -webkit-box-shadow: 0px 0px 9px 0px #6f6f6f;
      box-shadow: 0px 0px 9px 0px #6f6f6f; }
      .sliderWrap .wrapper .theme-ambu .nivoSlider img {
        position: absolute;
        top: 0px;
        left: 0px;
        display: none; }
    .sliderWrap .wrapper .theme-ambu .nivo-directionNav a {
      display: block;
      width: 37px;
      height: 43px;
      background: url(../img/Ambu-Link-sprite.png) no-repeat -213px -3px;
      text-indent: -9999px;
      border: 0;
      position: absolute;
      top: 5%;
      z-index: 9;
      cursor: pointer; }
    .sliderWrap .wrapper .theme-ambu .nivo-directionNav .nivo-prevNav {
      left: 15px; }
    .sliderWrap .wrapper .theme-ambu .nivo-directionNav .nivo-nextNav {
      background-position: -260px -3px;
      right: 15px; }
    .sliderWrap .wrapper .nivo-main-image {
      display: block !important;
      position: relative !important;
      width: 100% !important; }
    .sliderWrap .wrapper .nivo-slice {
      display: block;
      position: absolute;
      z-index: 5;
      height: 100%;
      top: 0; }
    .sliderWrap .wrapper .nivo-box {
      display: block;
      position: absolute;
      z-index: 5;
      overflow: hidden; }
      .sliderWrap .wrapper .nivo-box img {
        display: block; }
    .sliderWrap .wrapper .nivo-caption {
      position: absolute;
      left: 0px;
      bottom: 0px;
      color: #fff;
      width: auto;
      z-index: 8;
      padding: 0;
      overflow: hidden;
      display: none;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box; }
      .sliderWrap .wrapper .nivo-caption h2 {
        width: auto;
        height: auto;
        display: block;
        float: left; }
        .sliderWrap .wrapper .nivo-caption h2 span {
          float: left;
          text-transform: uppercase;
          width: auto;
          color: #fff;
          margin: 0 0 4px 0;
          padding: 0 14px;
          -webkit-border-top-right-radius: 12px;
          -webkit-border-bottom-right-radius: 12px;
          -moz-border-radius-topright: 12px;
          -moz-border-radius-bottomright: 12px;
          border-top-right-radius: 12px;
          border-bottom-right-radius: 12px;
          background: url(../img/Ambu-Link-slider-text-bg.png) repeat;
          background: rgba(26, 23, 27, 0.4); }
        .sliderWrap .wrapper .nivo-caption h2 .line1 {
          height: 58px;
          font: 48px/62px "LatoRegular", Arial, sans-serif; }
        .sliderWrap .wrapper .nivo-caption h2 .line2 {
          height: 46px;
          font: 30px/50px "LatoHairline", Arial, sans-serif;
          clear: left; }
        .sliderWrap .wrapper .nivo-caption h2 .line3 {
          height: 74px;
          font: 60px/78px "LatoBlack", Arial, sans-serif;
          color: #f4b400;
          margin: 0 0 10px 0;
          clear: left; }
          .sliderWrap .wrapper .nivo-caption h2 .line3 a {
            color: #f4b400;
            text-decoration: none; }
            .sliderWrap .wrapper .nivo-caption h2 .line3 a:hover {
              text-decoration: underline; }
    .sliderWrap .wrapper .nivo-html-caption {
      display: none; }

/* ======== QUICKLINKS ======= */
.quickLinksWrap {
  width: 100%;
  margin: 0 0 25px 0;
  float: left;
  display: block; }
  .quickLinksWrap .wrapper ul {
    list-style: none; }
    .quickLinksWrap .wrapper ul li {
      width: 332px;
      height: 152px;
      margin: 0 0 0 27px;
      position: relative;
      float: left;
      display: block;
      border: 1px solid #d4d4d4;
      padding: 4px;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box;
      -moz-border-radius: 12px;
      -webkit-border-radius: 12px;
      border-radius: 12px; }
      .quickLinksWrap .wrapper ul li:first-child {
        margin: 0; }
      .quickLinksWrap .wrapper ul li .quickWrap {
        width: 322px;
        height: 142px;
        background: #dfe1e3;
        position: absolute;
        top: 4px;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        -moz-box-shadow: 0px 0px 9px 0px #c3c2c3;
        -webkit-box-shadow: 0px 0px 9px 0px #c3c2c3;
        box-shadow: 0px 0px 9px 0px #c3c2c3; }
        .quickLinksWrap .wrapper ul li .quickWrap .quickContent {
          width: 322px;
          height: 128px;
          background: #f7f7f7;
          position: absolute;
          top: 0;
          -moz-border-radius: 8px;
          -webkit-border-radius: 8px;
          border-radius: 8px; }
          .quickLinksWrap .wrapper ul li .quickWrap .quickContent .quickIcon {
            width: 32px;
            height: 32px;
            display: block;
            position: absolute;
            top: 12px;
            left: 20px; }
          .quickLinksWrap .wrapper ul li .quickWrap .quickContent h3 {
            width: 194px;
            height: auto;
            display: block;
            position: absolute;
            left: 62px;
            top: 10px;
            font: 18px/18px "LatoLight", Arial, sans-serif;
            color: #bdbdbd;
            text-transform: uppercase; }
            .quickLinksWrap .wrapper ul li .quickWrap .quickContent h3 span {
              font: 18px/18px "LatoBold", Arial, sans-serif;
              color: #006200; }
          .quickLinksWrap .wrapper ul li .quickWrap .quickContent p {
            font: 14px/20px "LatoLight", Arial, sans-serif;
            color: #747474;
            position: absolute;
            bottom: 0px;
            margin: 0 20px 14px 20px; }
            .quickLinksWrap .wrapper ul li .quickWrap .quickContent p a {
              text-decoration: underline;
              color: #747474; }
              .quickLinksWrap .wrapper ul li .quickWrap .quickContent p a:hover {
                text-decoration: none; }
          .quickLinksWrap .wrapper ul li .quickWrap .quickContent ol#quotes {
            position: absolute;
            bottom: 0px; }
            .quickLinksWrap .wrapper ul li .quickWrap .quickContent ol#quotes li {
              width: 332px;
              height: auto;
              margin: 0;
              position: relative;
              border: none;
              -moz-border-radius: 0px;
              -webkit-border-radius: 0px;
              border-radius: 0px; }
          .quickLinksWrap .wrapper ul li .quickWrap .quickContent .portGraphic {
            width: 144px;
            height: 113px;
            display: block;
            position: absolute;
            bottom: -14px;
            right: 0px;
            background: url(../img/Ambu-Link-sprite.png) no-repeat -10px -138px; }
          .quickLinksWrap .wrapper ul li .quickWrap .quickContent .bulbGraphic {
            width: 55px;
            height: 83px;
            display: block;
            position: absolute;
            bottom: 12px;
            right: 14px;
            background: url(../img/Ambu-Link-sprite.png) no-repeat -308px -52px; }
          .quickLinksWrap .wrapper ul li .quickWrap .quickContent .comicGraphic {
            width: 205px;
            height: 139px;
            display: block;
            position: absolute;
            bottom: -14px;
            right: 0px;
            background: url(../img/Ambu-Link-sprite.png) no-repeat -164px -138px; }
      .quickLinksWrap .wrapper ul li:first-child .quickIcon {
        background: url(../img/Ambu-Link-sprite.png) no-repeat -10px -10px; }
      .quickLinksWrap .wrapper ul li:nth-child(2) .quickIcon {
        background: url(../img/Ambu-Link-sprite.png) no-repeat -45px -10px; }
      .quickLinksWrap .wrapper ul li:nth-child(2) .quickContent h3 {
        top: 16px; }
      .quickLinksWrap .wrapper ul li:nth-child(3) .quickIcon {
        background: url(../img/Ambu-Link-sprite.png) no-repeat -87px -10px; }

/* ======== SECTION ======= */
section {
  width: 100%;
  margin: 0;
  background: #fff;
  border-top: 2px solid #dfe1e3;
  border-bottom: 2px solid #dfe1e3;
  padding: 25px 0;
  float: left;
  display: block; }
  section div article {
    width: 692px;
    height: auto;
    float: left;
    display: block; }
    section div article h1 {
      font: 36px/36px "LatoLight", Arial, sans-serif;
      color: #474747;
      text-transform: uppercase; }
      section div article h1 span {
        font: 36px/36px "LatoHairline", Arial, sans-serif; }
      section div article h1 span.h1green {
        font: 36px/36px "LatoBlack", Arial, sans-serif;
        color: #006200; }
      section div article h1 span.h1red {
        font: 36px/36px "LatoRegular", Arial, sans-serif;
        color: #f40000; }
    section div article p {
      width: 332px;
      height: auto;
      font: 14px/26px "LatoLight", Arial, sans-serif;
      color: #747474;
      margin: 20px 0 0 0;
      text-align: justify;
      float: left;
      display: block; }
    section div article .cFirst {
      width: 512px;
      height: auto;
      font: 14px/26px "LatoLight", Arial, sans-serif;
      color: #747474;
      margin: 20px 0 0 0;
      text-align: justify;
      float: left;
      display: block; }
      section div article .cFirst p {
        margin: 0;
        float: none;
        width: 512px; }
        section div article .cFirst p span {
          color: #006200; }
        section div article .cFirst p span.red {
          color: #f43030;
          font: 14px/26px "LatoBold", Arial, sans-serif; }
        section div article .cFirst p a {
          color: #006200; }
          section div article .cFirst p a:hover {
            text-decoration: none; }
      section div article .cFirst ul {
        width: 100%;
        height: auto;
        list-style: none;
        color: #747474;
        border-bottom: 1px dotted #747474;
        margin: 0 0 14px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box; }
        section div article .cFirst ul li {
          background: url(../img/Ambu-Link-bullet.png) no-repeat 0px -1px;
          padding: 0 0 6px 24px; }
          section div article .cFirst ul li span {
            color: #747474;
            font: 14px/26px "LatoRegular", Arial, sans-serif;
            text-transform: uppercase; }
    section div article .pSecond {
      width: 332px;
      height: auto;
      font: 14px/26px "LatoLight", Arial, sans-serif;
      color: #747474;
      margin: 20px 0 0 26px;
      text-align: justify;
      float: left;
      display: block; }
      section div article .pSecond span {
        color: #006200; }
      section div article .pSecond ul {
        width: 100%;
        height: auto;
        list-style: none;
        color: #747474;
        border-bottom: 1px dotted #747474;
        margin: 0 0 14px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box; }
        section div article .pSecond ul li {
          background: url(../img/Ambu-Link-bullet.png) no-repeat 0px -1px;
          padding: 0 0 6px 24px; }
          section div article .pSecond ul li span {
            color: #747474;
            font: 14px/26px "LatoRegular", Arial, sans-serif;
            text-transform: uppercase; }
    section div article .cSecond {
      width: 512px;
      height: auto;
      font: 14px/26px "LatoLight", Arial, sans-serif;
      color: #747474;
      margin: 20px 0 0 26px;
      text-align: justify;
      float: left;
      display: block; }
      section div article .cSecond p {
        margin: 0;
        width: 100%; }
      section div article .cSecond span {
        color: #006200; }
      section div article .cSecond ul {
        width: 100%;
        height: auto;
        list-style: none;
        color: #747474;
        border-bottom: 1px dotted #747474;
        margin: 0 0 14px 0;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box; }
        section div article .cSecond ul li {
          background: url(../img/Ambu-Link-bullet.png) no-repeat 0px -1px;
          padding: 0 0 6px 24px; }
          section div article .cSecond ul li span {
            color: #747474;
            font: 14px/26px "LatoRegular", Arial, sans-serif;
            text-transform: uppercase; }
  section div aside {
    width: 332px;
    height: auto;
    margin: 0 0 0 26px;
    float: left;
    display: block;
    -moz-border-radius: 12px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background-color: #f4b400;
    background-image: -webkit-linear-gradient(top, #f4b400, #d9a10d);
    background-image: -moz-linear-gradient(top, #f4b400, #d9a10d);
    background-image: -o-linear-gradient(top, #f4b400, #d9a10d);
    background-image: -ms-linear-gradient(top, #f4b400, #d9a10d);
    background-image: linear-gradient(top, #f4b400, #d9a10d); }
    section div aside ul {
      list-style: none;
      margin: 26px 0 0 0; }
      section div aside ul li {
        width: 280px;
        height: 78px;
        border: 2px solid white;
        overflow: hidden;
        margin: 0 0 10px 26px;
        float: left;
        display: block;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        -ms-box-sizing: border-box;
        box-sizing: border-box; }
    section div aside p {
      width: 100%;
      font: 13px/13px "LatoRegular", Arial, sans-serif;
      margin: 4px 0 14px 0;
      text-indent: 26px;
      float: left;
      display: block; }
      section div aside p a {
        color: #1a171b; }
        section div aside p a:hover {
          text-decoration: none; }
  section div .full {
    width: 100%; }
  section ul.galleryWrap {
    list-style: none; }
    section ul.galleryWrap li {
      float: left;
      margin: 0 0 0 27px; }
      section ul.galleryWrap li:nth-child(3n+1) {
        margin: 0 0 0 0; }
      section ul.galleryWrap li:nth-child(n+4) {
        margin-top: 26px; }

/* ======== FOOTER ======= */
footer {
  width: 100%;
  padding: 26px 0;
  float: left;
  display: block;
  background-color: #006200;
  background-image: -webkit-linear-gradient(top, #006200, #054e24);
  background-image: -moz-linear-gradient(top, #006200, #054e24);
  background-image: -o-linear-gradient(top, #006200, #054e24);
  background-image: -ms-linear-gradient(top, #006200, #054e24);
  background-image: linear-gradient(top, #006200, #054e24); }
  footer div ol {
    list-style: none; }
    footer div ol li {
      width: 332px;
      margin: 0 0 0 26px;
      color: #f7f7f7;
      float: left; }
      footer div ol li:first-child {
        margin: -8px 0 0 0; }
      footer div ol li p {
        font: 12px/12px "LatoRegular", Arial, sans-serif;
        text-transform: uppercase;
        margin: 34px 0 0 0;
        float: left;
        display: block; }
      footer div ol li ul {
        list-style: disc inside; }
        footer div ol li ul li {
          font: 14px/28px "LatoLight", Arial, sans-serif;
          width: 166px;
          margin: 0; }
          footer div ol li ul li:first-child {
            margin: 0; }
          footer div ol li ul li a {
            text-decoration: none;
            color: #f7f7f7; }
            footer div ol li ul li a:hover {
              text-decoration: underline; }
      footer div ol li:nth-child(n+2) h6 {
        font: 14px/14px "LatoBold", Arial, sans-serif; }
      footer div ol li:nth-child(n+2) p {
        font: 14px/22px "LatoLight", Arial, sans-serif;
        text-transform: none;
        margin: 18px 0 0 0; }
        footer div ol li:nth-child(n+2) p a {
          text-decoration: underline;
          color: #f7f7f7; }
          footer div ol li:nth-child(n+2) p a:hover {
            text-decoration: none; }
      footer div ol li:nth-child(n+2) a.socialLink {
        width: 100%;
        color: #fff;
        margin: 12px 0 0 0;
        float: left;
        display: block; }
        footer div ol li:nth-child(n+2) a.socialLink .facebookIcon, footer div ol li:nth-child(n+2) a.socialLink .youtubeIcon {
          width: 32px;
          height: 32px;
          float: left;
          display: block; }
        footer div ol li:nth-child(n+2) a.socialLink .facebookIcon {
          background: url(../img/Ambu-Link-sprite.png) no-repeat -129px -10px; }
        footer div ol li:nth-child(n+2) a.socialLink .youtubeIcon {
          background: url(../img/Ambu-Link-sprite.png) no-repeat -171px -10px; }
        footer div ol li:nth-child(n+2) a.socialLink p {
          margin: 0 0 0 20px;
          line-height: 32px; }
        footer div ol li:nth-child(n+2) a.socialLink:hover p {
          text-decoration: underline; }
        footer div ol li:nth-child(n+2) a.socialLink:hover .facebookIcon, footer div ol li:nth-child(n+2) a.socialLink:hover .youtubeIcon {
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
          filter: alpha(opacity=80);
          -moz-opacity: 0.8;
          -khtml-opacity: 0.8;
          opacity: 0.8;
          -webkit-transition: all 0.2s linear;
          -moz-transition: all 0.2s linear;
          -o-transition: all 0.2s linear;
          -ms-transition: all 0.2s linear;
          transition: all 0.2s linear; }

/* ======== IE 7 HACKS ======= */
.quickLinksWrap .wrapper ul li {
  *width: 322px;
  *height: 142px; }
  .quickLinksWrap .wrapper ul li .quickWrap .quickContent ol#quotes li {
    *width: 292px; }

section div aside {
  *height: 320px; }
  section div aside ul li {
    *width: 276px;
    *height: 74px; }
