/* ------------------------------------------------------  Calculations 

100%*(20/940); = Percentage based within context
(10em/16) = calculate ems

*/
/* Refer - http://davidwalsh.name/rem-px-browser-function-sass */
/* ------------------------------------------------------ mixins */
/* 1 */
/* https://github.com/web-design-weekly/sass-mixins */
/* Responsive Breakpoints
   ========================================================================== */
/* Usage */
/*
.page-wrap {
  width: 75%;
  @include breakpoint(large) { width: 60%; }
  @include breakpoint(medium) { width: 80%; }
  @include breakpoint(small) { width: 95%; }
}
*/
/* Sub-section comment block
   ========================================================================== */
/* Usage */
/*
div.logo {
   background: url("logo.png") no-repeat;
   @include image-2x("logo2x.png", 100px, 25px);
 }
*/
/* Clearfix
  ========================================================================== */
/* Usage */
/*
.article {
     @include clearfix();
}
*/
/* Box Model
  ========================================================================== */
/* Usage */
/*
*,
*:after,
*:before {
  @include box-sizing(border-box);
}
*/
/* Border Radius
  ========================================================================== */
/* Usage */
/*
.button {
  @include border-radius(5px);
}

.submit-button{
  @include border-top-radius(10px);
}
*/
/* Opacity
  ========================================================================== */
/* Usage */
/*
.article-heading {
  @include opacity(0.8);
}
*/
/* Center-align a block level element
  ========================================================================== */
/* Usage */
/*
.footer-wrap {
  width: 450px;
  @include center-block;
}
*/
/* Text overflow
  ========================================================================== */
/* Usage */
/*
.text-truncate {
  @include text-truncate;
}
*/
/* Absolute positioned
  ========================================================================== */
/* Usage */
/*
.abs {
  @include abs-pos(10px, 10px, 5px, 15px);
}
*/
/* Font Size
  ========================================================================== */
/* Usage */
/*
body {
  @include font-size(16);
}
*/
/* Cross browser inline block
  ========================================================================== */
/* Usage */
/*
.icon {
  @include inline-block();
}
*/
/* Text replacement (instead of text-indent)
  ========================================================================== */
/* Usage */
/*
.header h1 {
  @include text-replacement();
}
*/
/* Line Height
  ========================================================================== */
/* Usage */
/*
body {
  @include line-height (16);
}
*/
/* Placeholder
  ========================================================================== */
/* Usage */
/*
input{
  @include placeholder-color(#FA4A4A)
}
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
/* ------------------------------------------------------ Colours */
/* Colours */
/* ------------------------------------------------------ Normalise */
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

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

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

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

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

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

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

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

/**
 * Prevent `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;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `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;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/* ------------------------------------------------------ Semantic Divs - Reusables */
/* ------------------------------------------------------ mixins */
/* https://github.com/web-design-weekly/sass-mixins */
/* Responsive Breakpoints
   ========================================================================== */
/* Usage */
/*
.page-wrap {
  width: 75%;
  @include breakpoint(large) { width: 60%; }
  @include breakpoint(medium) { width: 80%; }
  @include breakpoint(small) { width: 95%; }
}
*/
/* Sub-section comment block
   ========================================================================== */
/* Usage */
/*
div.logo {
   background: url("logo.png") no-repeat;
   @include image-2x("logo2x.png", 100px, 25px);
 }
*/
/* Clearfix
  ========================================================================== */
/* Usage */
/*
.article {
     @include clearfix();
}
*/
/* Box Model
  ========================================================================== */
/* Usage */
/*
*,
*:after,
*:before {
  @include box-sizing(border-box);
}
*/
/* Border Radius
  ========================================================================== */
/* Usage */
/*
.button {
  @include border-radius(5px);
}

.submit-button{
  @include border-top-radius(10px);
}
*/
/* Opacity
  ========================================================================== */
/* Usage */
/*
.article-heading {
  @include opacity(0.8);
}
*/
/* Center-align a block level element
  ========================================================================== */
/* Usage */
/*
.footer-wrap {
  width: 450px;
  @include center-block;
}
*/
/* Text overflow
  ========================================================================== */
/* Usage */
/*
.text-truncate {
  @include text-truncate;
}
*/
/* Absolute positioned
  ========================================================================== */
/* Usage */
/*
.abs {
  @include abs-pos(10px, 10px, 5px, 15px);
}
*/
/* Font Size
  ========================================================================== */
/* Usage */
/*
body {
  @include font-size(16);
}
*/
/* Cross browser inline block
  ========================================================================== */
/* Usage */
/*
.icon {
  @include inline-block();
}
*/
/* Text replacement (instead of text-indent)
  ========================================================================== */
/* Usage */
/*
.header h1 {
  @include text-replacement();
}
*/
/* Line Height
  ========================================================================== */
/* Usage */
/*
body {
  @include line-height (16);
}
*/
/* Placeholder
  ========================================================================== */
/* Usage */
/*
input{
  @include placeholder-color(#FA4A4A)
}
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Left: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transition              - arguments: What: all, Length: 1s, Easing: ease-in-out
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0

------------------------------------------------------------- */
/* BACKGROUND GRADIENT */
/* BACKGROUND SIZE */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSITION */
/* TRIPLE BORDERS */
.clearfix {
  *zoom: 1;
}

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

.clearfix:after {
  clear: both;
}

.padding_bottom {
  padding-bottom: 1.25rem;
}

.small_margin_top {
  margin-top: 0.625rem;
  display: block;
}

.small_block {
  padding-bottom: 0.625rem !important;
}

.mobile_single_block {
  padding-bottom: 1.25rem;
}

.border_bottom {
  border-bottom: 1px solid #efefef;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
}

.small_border_bottom {
  border-bottom: 1px solid #efefef;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}

.dotted_underline {
  border-bottom: 1px dotted #efefef;
}

.border_top {
  border-top: 1px solid #efefef;
  padding-top: 1.25rem;
}

.small_device {
  display: block !important;
  visibility: visible !important;
}

.large_device, .desktop_device {
  display: none !important;
  visibility: hidden !important;
}

.centre_float {
  display: block !important;
  margin: 0px auto;
  text-align: center !important;
}

.float_left {
  float: left !important;
}

.float_right {
  float: right !important;
}

.centre_text {
  text-align: center !important;
}

.right_text {
  text-align: right !important;
}

.left_text {
  text-align: left !important;
}

.margin_auto {
  margin: 0px auto;
  float: none !important;
  display: block !important;
}

.no_margin {
  margin: 0px !important;
}

.inline_list {
  margin: 0px;
  padding: 0px;
}
.inline_list li {
  list-style: none;
  padding: 0px;
  display: inline;
  margin: 0px 0.3125rem 0px 0px;
}

.ellipsis-multi {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ------------------------------------------------------ Fonts */
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?i64k5t");
  src: url("../fonts/icomoon.eot?#iefixi64k5t") format("embedded-opentype"), url("../fonts/icomoon.woff?i64k5t") format("woff"), url("../fonts/icomoon.ttf?i64k5t") format("truetype"), url("../fonts/icomoon.svg?i64k5t#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-], [class*=" icon-"], a.flex-prev, a.flex-next {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-left:before, a.flex-prev:before {
  content: "\e600";
}

.icon-arrow-right:before, a.flex-next:before {
  content: "\e601";
}

.icon-download:before {
  content: "\e602";
}

.icon-attachment:before {
  content: "\e603";
}

.icon-calendar:before {
  content: "\e604";
}

.icon-help:before {
  content: "\e605";
}

.icon-home:before {
  content: "\e606";
}

.icon-image:before {
  content: "\e607";
}

.icon-images:before {
  content: "\e608";
}

.icon-info:before {
  content: "\e609";
}

.icon-search:before {
  content: "\e60a";
}

.icon-mail:before {
  content: "\e60b";
}

.icon-map:before {
  content: "\e60c";
}

.icon-list:before {
  content: "\e60d";
}

.icon-phone:before {
  content: "\e60e";
}

.icon-rss:before {
  content: "\e60f";
}

.icon-star:before {
  content: "\e610";
}

.icon-facebook:before {
  content: "\e611";
}

.icon-linkedin:before {
  content: "\e612";
}

.icon-twitter:before {
  content: "\e613";
}

.icon-video:before {
  content: "\e614";
}

.icon-dollar:before {
  content: "$";
  font-family: Arial, Helvetica, Verdana, sans-serif;
  text-transform: uppercase;
  vertical-align: middle;
  padding-left: 3px;
  padding-left: 0.1875rem;
  padding-right: 7px !important;
  padding-right: 0.4375rem !important;
}

/* ------------------------------------------------------ Flexslider */
/*
 * 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)
 */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .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 */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 60px;
  border: 4px solid #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
}

.flex-direction-nav a {
  width: 30px;
  height: 30px;
  margin: -20px 0 0;
  display: block;
  background: url(images/bg_direction_nav.png) no-repeat 0 0;
  position: absolute;
  top: 50%;
  cursor: pointer;
  text-indent: -9999px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
}

.flex-direction-nav .flex-next {
  background-position: 100% 0;
  /* right: -36px; */
}

.flex-direction-nav .flex-prev {
  /* left: -36px; */
}

.flexslider:hover .flex-next {
  opacity: 0.8;
  right: 5px;
}

.flexslider:hover .flex-prev {
  opacity: 0.8;
  left: 5px;
}

.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {
  opacity: 1;
}

.flex-direction-nav .flex-disabled {
  opacity: 0.3 !important;
  filter: alpha(opacity=30);
  cursor: default;
}

/* Control Nav */
/* .flex-control-nav {width: 100%; position: absolute; bottom: -40px; text-align: center;} */
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 10px;
  height: 10px;
  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); */
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

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

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0;
  }
}
/* ------------------------------------------------------ CUSTOMISATION of flexslider */
.loading {
  min-height: 9.375rem;
}

.wf-active .loading {
  background: transparent url(../images/ajax-loader.gif) no-repeat center center !important;
}

.flexslider {
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.4);
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
  border: none;
  margin: 0px;
  background: none;
}
.flexslider .slides img {
  margin: 0px;
}
.flexslider .slides figcaption {
  display: none;
}
.flexslider .flex-control-nav {
  top: 0.9375rem;
  left: 0.9375rem;
  position: absolute;
  height: 1.875rem;
  width: auto;
}
.flexslider .flex-control-nav li a {
  height: 14px !important;
  width: 14px !important;
  -moz-border-radius: 16px;
  -webkit-border-radius: 16px;
  border-radius: 16px;
  background: white !important;
}
.flexslider .flex-control-nav li a.flex-active {
  background: #3db688 !important;
  border: none;
}
.flexslider .flex-direction-nav {
  margin: 0px 0px 0.3125rem 0px;
  padding: 0px;
}
.flexslider .flex-direction-nav a {
  display: block;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  height: 1.5rem;
  width: 1.5rem;
  text-align: center;
  text-indent: 0px;
  color: #3db688;
  text-shadow: none;
  opacity: 100;
  top: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.5rem;
  cursor: pointer;
}
.flexslider .flex-direction-nav a:hover {
  text-decoration: none;
  color: #00224f;
}
.flexslider .flex-direction-nav a:focus {
  text-decoration: none;
  color: #00224f;
}
.flexslider .flex-direction-nav a.flex-prev {
  left: 0px;
  bottom: 0px;
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 0px;
}
.flexslider .flex-direction-nav a.flex-next {
  right: 0;
  bottom: 0px;
  font-size: 30px;
  font-size: 1.875rem;
  margin-top: 0px;
}
.flexslider .flex-direction-nav li {
  display: inline;
}
.flexslider .flex-direction-nav li:last-child {
  margin-left: 3.75rem;
}

/* ------------------------------------------------------ NextGEN Gallery */
/* ------------------------------------------------------ Clean up the gallery grid*/
.ngg-galleryoverview {
  overflow: visible !important;
}

.ngg-gallery-thumbnail-box {
  width: 100%;
}

.ngg-gallery-thumbnail {
  float: none !important;
  margin-bottom: 0.625rem;
}
.ngg-gallery-thumbnail img {
  border: none !important;
  height: auto;
  padding: 0px !important;
  margin: 0px !important;
}
.ngg-gallery-thumbnail img:hover, .ngg-gallery-thumbnail img:focus {
  background-color: none !important;
  outline: 2px solid #3db688;
}

/* ------------------------------------------------------ Fix up the position in the thickbox*/
#TB_window img#TB_Image {
  margin: 0px !important;
}

/* 760 */
@media (min-width: 47.5em) {
  .ngg-gallery-thumbnail-box {
    width: 31.5789473684%;
    /* Two columns */
    margin-right: 2.6315789474% !important;
  }
  .ngg-gallery-thumbnail-box:nth-child(3n+3) {
    margin-right: 0px !important;
  }
  .ngg-gallery-thumbnail-box:nth-child(3n+4) {
    clear: left;
  }

  .ngg-gallery-thumbnail {
    margin-bottom: 1.25rem;
  }
}
/* 980 */
@media (min-width: 61.25em) {
  .ngg-gallery-thumbnail-box {
    width: 31.5789473684%;
    /* Two columns */
    margin-right: 2.6315789474% !important;
  }
  .ngg-gallery-thumbnail-box:nth-child(3n+3) {
    margin-right: 0px !important;
  }
}
/* ------------------------------------------------------ Typography */
/* Inspired by - http://typecast.com/blog/a-more-modern-scale-for-web-typography */
body {
  font-size: 100%;
  background: none;
  font-family: "ff-tisa-web-pro", Georgia, serif;
  color: #333333;
}

body, caption, th, td, input, textarea, select, option, legend, fieldset, h1, h2, h3, h4, h5, h6, p {
  font-size-adjust: 0.5;
  margin: 0px;
  padding: 0px;
  text-align: left;
  vertical-align: baseline;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-font-smoothing: antialiased;
}

hr {
  border-left: 0 none;
  border-right: medium none;
  border-top: 1px solid #ccc;
  box-sizing: content-box;
  color: white;
  height: 0;
  margin-bottom: 1.25rem;
  clear: both;
}

h1, h2, h3, h4 {
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  font-weight: 200;
  margin: 0px;
  padding: 0px;
}

.page_title {
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  font-weight: 500;
  text-transform: capitalize;
  text-align: center;
}

h1.body_font {
  font-family: "ff-tisa-web-pro", Georgia, serif;
}

h2.alt {
  margin-top: 0px;
}

p {
  margin: 0px 0px 0.625rem 0px;
}

strong {
  font-weight: 700;
}

small.alt {
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
}

a {
  -moz-transition: color 0.3s ease-in;
  -o-transition: color 0.3s ease-in;
  -webkit-transition: color 0.3s ease-in;
  -ms-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
  text-decoration: none;
}
a:link, a:visited {
  color: #3db688;
}
a:hover, a:focus {
  color: #00224f;
  text-decoration: underline;
}
a.alt:link, a.alt:visited {
  color: #00224f;
}
a.alt:hover, a.alt:focus {
  color: #3db688;
}

dl {
  margin: 0px 0px 10px;
  margin: 0px 0px 0.625rem;
}
dl dt {
  font-weight: 600;
  margin: 0px;
  padding: 0px;
}
dl dd {
  margin: 0px 0px 15px;
  margin: 0px 0px 0.9375rem;
  padding: 0px;
}
dl dd:last-child {
  margin: 0px;
}

ul {
  padding: 0px 0px 10px 22px;
  padding: 0px 0px 0.625rem 1.375rem;
  margin: 0px;
}
ul li {
  position: relative;
  list-style-type: disc;
}

time {
  font-size: 14px;
  font-size: 0.875rem;
  font-style: italic;
}

#page {
  font-size: 17px;
  font-size: 1.0625rem;
  /* equivalent to 16px */
  line-height: 26px;
  line-height: 1.625rem;
  /* equivalent to 20px */
}

.menu_font {
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

h1 {
  font-size: 32px;
  font-size: 2rem;
  /* 2x body copy size = 32px */
  line-height: 1.35;
  /* 45px / 36px */
}

h2, h1.alt, h1.home_intro {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 300;
  /* 1.625x body copy size = 26px */
  line-height: 1.25384615em;
  /* 30px / 26px */
}

h3, h2.alt, .module h1.alt {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 300;
  /* 1.375x body copy size = 22px */
  line-height: 1.23636364;
  /* 25px / 22px */
}

h4, h3.alt, .module h2.alt {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  /* 1.125x body copy size = 18px */
  line-height: 1.21111111;
}

p.alt {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 28px;
  line-height: 1.75rem;
}

blockquote {
  font-size: 22px;
  font-size: 1.375rem;
  /* 20px / 16px */
  line-height: 1.25;
  /* 25px / 20px */
  margin-top: 1.875rem !important;
  margin-bottom: 1.875rem !important;
  font-style: italic;
}

table th, table td, table tr {
  border-color: white;
  background: #efefef;
  text-align: left;
  /* text-transform: capitalize; */
}
table th address, table td address, table tr address {
  margin: 0px !important;
}
table tr {
  border-top: 1px solid #ffffff;
  padding: 0.3125rem 0px 0.3125rem 0px;
  float: left;
  width: 100%;
}
table tr:nth-of-type(even) {
  /* write over Zebra striping */
  background: #efefef;
}
table th {
  text-align: center;
  border: none;
  width: 100%;
  display: table;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
table td {
  text-align: center;
  border: none;
  width: 100%;
  display: table-cell;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  border-right: 1px solid white;
  border-top: 1px solid white;
}
table td:last-child {
  border-right: none;
}
table td time {
  font-size: inherit;
  color: inherit;
}
table td #geo-map {
  padding-top: 0.625rem;
  display: block;
  text-align: center;
  font-weight: 400;
}
table td .google_map_link {
  display: block;
}

.content_styles h1 {
  margin-bottom: 0.9375rem;
}
.content_styles h2, .content_styles h3 {
  margin-bottom: 0.625rem;
}
.content_styles h4, .content_styles h5 {
  margin-bottom: 0.3125rem;
}

/* 760 */
@media (min-width: 47.5em) {
  #page {
    font-size: 18px;
    font-size: 1.125rem;
    /* equivalent to 16px */
    /*  @include line-height(26); */
    line-height: 1.75em;
    /* equivalent to 22px */
  }

  p.alt {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 36px;
    line-height: 2.25rem;
    margin-bottom: 1.25rem;
  }

  h1 {
    font-size: 40px;
    font-size: 2.5rem;
    /* 2.5x body copy size = 40px */
    line-height: 1.3;
  }

  h2, h1.alt, h1.body_font {
    font-size: 32px;
    font-size: 2rem;
    /* 2x body copy size = 32px */
    line-height: 1.4;
  }

  h3, h2.alt, .module h1.alt {
    font-size: 26px;
    font-size: 1.625rem;
    /* 1.5x body copy size = 24px */
    line-height: 1.4;
  }

  blockquote {
    font-size: 24px;
    font-size: 1.5rem;
    /* 24px / 16px = */
    line-height: 1.45833333;
    /* 35px / 24px */
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }
}
/* 980 */
@media (min-width: 61.25em) {
  h1 {
    font-size: 48px;
    font-size: 3rem;
    /* 3x body copy size = 48px */
    line-height: 1.25em;
    /* keep to a multiple of the 20px line height and something more appropriate for display headings */
  }

  h2, h1.alt, h1.body_font {
    font-size: 2.25em;
    font-size: 36px;
    font-size: 2.25rem;
    /* 2.25x body copy size = 36px */
    line-height: 1.4;
  }

  h3, h2.alt, .module h1.alt {
    font-size: 28px;
    font-size: 1.75rem;
    /* 1.75x body copy size = 28px */
    line-height: 1.4;
  }

  h4, h3.alt, .module h2.alt {
    line-height: 1.4;
    /* (22px / 18px */
  }

  blockquote {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
/* ------------------------------------------------------ Offcanvas */
#nav_anchor_container {
  background: #00224f;
}
#nav_anchor_container .nav_anchors {
  width: 100%;
  margin: 0px;
  margin-left: 0.3125rem;
  padding: 0;
  height: 2.5rem;
}
#nav_anchor_container .nav_anchors li {
  text-align: center;
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  line-height: 40px;
  line-height: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  display: inline;
  list-style-image: none;
  background: none;
  font-weight: bold;
}
#nav_anchor_container .nav_anchors li:before {
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  content: "";
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 0px;
  padding-right: 0px;
}
#nav_anchor_container .nav_anchors li.menu_nav {
  float: left;
  width: 6.25rem;
}
#nav_anchor_container .nav_anchors li.menu_nav [class^=icon-], #nav_anchor_container .nav_anchors li.menu_nav [class*=" icon-"] {
  margin-right: 0.3125rem;
  float: left;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 40px;
  line-height: 2.5rem;
}
#nav_anchor_container .nav_anchors li.search_nav {
  width: 6.25rem;
  float: right;
}
#nav_anchor_container .nav_anchors li.search_nav .seach_label_text {
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  line-height: 40px;
  line-height: 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
#nav_anchor_container .nav_anchors li.search_nav .seach_label_text:focus, #nav_anchor_container .nav_anchors li.search_nav .seach_label_text:hover {
  color: #3db688;
  background: none;
}
#nav_anchor_container .nav_anchors li.search_nav [class^=icon-], #nav_anchor_container .nav_anchors li.search_nav [class*=" icon-"] {
  margin-left: 0.3125rem;
  color: white;
  vertical-align: sub;
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 40px;
  line-height: 2.5rem;
}
#nav_anchor_container .nav_anchors li #sidebarButton.active {
  color: #3db688;
  text-shadow: none;
}
#nav_anchor_container .nav_anchors li.nav_search {
  float: right;
  margin: 0.7em 0.45em 0em 0em;
  padding-left: 0px;
  width: 50%;
  /* Needs width fix, too wide for smartphone */
}
#nav_anchor_container .nav_anchors li.nav_search label {
  display: none;
}
#nav_anchor_container .nav_anchors li.nav_search input[type=submit] {
  display: none;
}
#nav_anchor_container .nav_anchors li a {
  color: white;
  text-shadow: 1px 1px 0px #333333;
  text-align: center;
}
#nav_anchor_container .nav_anchors li a:focus, #nav_anchor_container .nav_anchors li a:hover {
  color: #3db688;
  background: none;
}

.no-js .oc {
  left: 0px !important;
  display: none !important;
  position: relative !important;
  margin-bottom: 1em;
}

.menu-link ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  position: relative;
  z-index: 202;
}
.menu-link ul li {
  display: block;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
}
.menu-link ul li a {
  text-transform: uppercase;
  color: #333333;
  display: block;
  font-weight: 400;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 24px;
  line-height: 1.5rem;
  color: #333333;
  padding-left: 0;
  margin-top: 0.625rem;
  /* border-bottom: 1px solid #ddd; */
}
.menu-link ul li a:hover {
  border-left-color: #3db688;
}
.menu-link ul li.current-menu-item > a {
  border-left: 4px solid #3db688;
  text-indent: 5px;
}
.menu-link ul li.current-menu-parent > a {
  border-left: 4px solid #3db688;
  text-indent: 5px;
}
.menu-link ul li.current-menu-parent a, .menu-link ul li.current-menu-ancestor a {
  border-left: 4px solid #3db688;
  text-indent: 5px;
}
.menu-link ul li ul.sub-menu li {
  font-size: 14px;
  font-size: 0.875rem;
  text-indent: 0.625rem;
  border-bottom: 1px solid white;
}
.menu-link ul li ul.sub-menu li a {
  font-weight: 200;
  margin-top: 0;
  border-left: 4px solid #ffffff;
  color: #333333;
}
.menu-link ul li ul.sub-menu li a:hover {
  color: #ffffff;
  /* border-left: 3px solid $green; */
  border-left-color: #ffffff;
}
.menu-link ul li ul.sub-menu li.current-menu-item > a, .menu-link ul li ul.sub-menu li.current-menu-ancestor > a, .menu-link ul li ul.sub-menu li.current-menu-parent > a {
  color: #ffffff;
  border-left-color: #3db688;
}
.menu-link ul li ul.sub-menu li:first-child {
  border-top: 1px solid white;
  /* background: red; */
}

/* Manually set up highlight for blog items */
.single-post .menu-link ul li.menu-item-513 a {
  border-left: 4px solid #3db688;
  text-indent: 5px;
}

/*
.menu-link ul ~ li {
	background: red;
}
*/
.wrap {
  height: 100%;
  left: 0;
  position: relative;
  transition: transform 0.5s ease 0s;
  z-index: 99;
}
.wrap:after {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.2);
  content: "";
  height: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease 0s, width 0.1s ease 0.5s, height 0.1s ease 0.5s;
  width: 0;
}

.wrap.active {
  left: 0;
  -webkit-transform: translate3d(12em, 0, 0);
  transform: translate3d(12em, 0, 0);
  transition: all 0.5s ease 0s;
}

a.menu-link {
  float: left;
  display: block;
  padding: 0;
}

.oc {
  background: #ccc;
  background: rgba(211, 211, 211, 0.7);
  color: #fff;
  padding: 1em;
  clear: both;
  overflow: hidden;
}

.offcanvas .oc {
  width: 10em;
  height: 100%;
  position: absolute;
  top: 0;
  left: -12em;
}

.active .oc {
  display: block !important;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  left: 0em !important;
}
.active .oc:after {
  height: 0;
  opacity: 0;
  transition: opacity 0.5s ease 0s, width 0.1s ease 0.5s, height 0.1s ease 0.5s;
  width: 0;
}

.lorem {
  clear: both;
}

/*
nav.oc {
	display: none;
}
*/
nav.active {
  display: block;
}

/* Hides the overflow so that the scroll bar doesn't come up */
.offcanvas_over {
  overflow: hidden;
}

/* Make sure off canvas is at the top of the z-index pile, although the menu needs to go higher */
.offcanvas .oc {
  z-index: 101;
}

/* 980 */
@media (min-width: 61.25em) {
  a.menu-link {
    display: none;
  }

  .offcanvas .oc {
    position: static;
    display: none;
    visibility: hidden;
    float: left;
    width: 30%;
    height: 100%;
  }

  .wrap.active {
    left: 0;
  }

  .lorem {
    clear: none;
    margin-left: 30%;
  }
}
/* ------------------------------------------------------ Inputs */
input[type=submit], button, .button, input[type=text], input[type=search], input[type=email], select, input[type=password] {
  margin-top: 0px;
  border: none;
  height: 40px;
  height: 2.5rem;
  padding: 0px 1%;
  background: #efefef;
  color: #333333;
  -moz-transition: background-color 350ms ease;
  -o-transition: background-color 350ms ease;
  -webkit-transition: background-color 350ms ease;
  -ms-transition: background-color 350ms ease;
  transition: background-color 350ms ease;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  width: 98%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 40px;
  line-height: 2.5rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input[type=submit]:hover, input[type=submit]:focus, button:hover, button:focus, .button:hover, .button:focus, input[type=text]:hover, input[type=text]:focus, input[type=search]:hover, input[type=search]:focus, input[type=email]:hover, input[type=email]:focus, select:hover, select:focus, input[type=password]:hover, input[type=password]:focus {
  background: #333333 !important;
  color: white;
}

input[type=submit], button, .button {
  color: white;
}

option {
  color: white;
  padding: 0px 0.1875rem 0px 0.1875rem;
}
option:hover, option:focus {
  background: #333333;
  color: white;
}

select {
  max-width: 11.25rem;
}

input[type=text], input[type=search], input[type=email], textarea {
  -webkit-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.25);
}

input[type=text], input[type=email] {
  margin-bottom: 1.25rem;
}
input[type=text]:hover, input[type=text]:focus, input[type=email]:hover, input[type=email]:focus {
  background: #333333;
  color: white;
}

textarea {
  margin-top: 0px;
  padding: 1%;
  border: none;
  background: #efefef;
  color: #333333;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  width: 98%;
  font-size: 16px;
  font-size: 1rem;
  line-height: 22px;
  line-height: 1.375rem;
}
textarea:hover, textarea:focus {
  background: #333333;
  color: white;
}

input[type=submit] {
  max-width: 180px;
  max-width: 11.25rem;
  text-transform: uppercase;
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  background: #3db688 !important;
  cursor: pointer;
  color: white;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 40px;
  line-height: 2.5rem;
}
input[type=submit]:hover, input[type=submit]:active {
  background: #F16347;
  color: white;
}

/* ------------------------------------------------------ PDF search customisations */
select {
  clear: left;
  float: none !important;
}

input[type=submit], button {
  margin-top: 0px !important;
}

/* ------------------------------------------------------ Images */
/* ------------------------------------------------------ Responsive Images */
img {
  width: 100%;
  -ms-interpolation-mode: bicubic;
}

img.size-thumanil {
  max-width: 100%;
  width: auto;
  height: 100%;
}

img.size-medium {
  width: 100%;
  max-width: 23.75rem;
  height: 100%;
}

img.size-large {
  width: 100%;
  max-width: 51.25rem;
  height: 100%;
}

figure {
  margin: 0px;
}

/* ------------------------------------------------------ Grid */
/* ------------------------------------------------------ Layout Mobile */
.mob_1 {
  width: 20.3125%;
  /* one columns */
  float: left;
}

.mob_2 {
  width: 46.875%;
  /* Two columns */
  float: left;
}

.mob_3 {
  width: 73.4375%;
  /* Three columns */
  float: left;
}

.mob_4 {
  width: 100%;
  /* Four columns */
  float: left;
}

.col_gutter, .mob_col_gutter {
  margin-right: 6.25%;
}

.responsive_grid_gutter {
  margin-right: 6.25%;
}
.responsive_grid_gutter:nth-child(2n) {
  margin-right: 0px;
}

/* TABLET - 760 - 6 columns */
@media (min-width: 47.5em) {
  /* ------------------------------------------------------ Layout Tablet - 760 - 6 columns */
  .tab_1 {
    width: 14.4736842105%;
    /* one columns */
    float: left;
  }

  .tab_2 {
    width: 31.5789473684%;
    /* Two columns */
    float: left;
  }

  .tab_3 {
    width: 48.6842105263%;
    /* Three columns */
    float: left;
  }

  .tab_4 {
    width: 65.7894736842%;
    /* Four columns */
    float: left;
  }

  .tab_5 {
    width: 82.8947368421%;
    /* Five columns */
    float: left;
  }

  .tab_6 {
    width: 100%;
    /* Six columns */
    float: left;
  }

  .header_grid_1 {
    width: 24.3421052632%;
    /* one columns */
    float: left;
  }

  .header_grid_2 {
    width: 46.0526315789%;
    /* one columns */
    float: left;
  }

  .mob_col_gutter {
    margin-right: 0px;
  }

  .col_gutter, .large_col_gutter, .tab_col_gutter {
    margin-right: 2.6315789474%;
  }

  .responsive_grid_gutter {
    margin-right: 2.6315789474%;
  }
  .responsive_grid_gutter:nth-child(2n) {
    margin-right: 2.6315789474%;
  }
  .responsive_grid_gutter:nth-child(3n) {
    margin-right: 0px;
  }
}
/* DESKTOP B - 980 - 8 Columns */
@media (min-width: 61.25em) {
  /* ------------------------------------------------------ Layout Desktop B - 980 - 8 columns */
  /*
  [class*="tab_"] {
  	width: auto;
  	float: none;
  	margin-right: auto;
  }
  */
  .desk_b_1 {
    width: 10.7142857143%;
    /* one columns */
    float: left;
  }

  .desk_b_2 {
    width: 23.4693877551%;
    /* Two columns */
    float: left;
  }

  .desk_b_3 {
    width: 36.2244897959%;
    /* Three columns */
    float: left;
  }

  .desk_b_4 {
    width: 48.9795918367%;
    /* Four columns */
    float: left;
  }

  .desk_b_5 {
    width: 61.7346938776%;
    /* Five columns */
    float: left;
  }

  .desk_b_6 {
    width: 74.4897959184%;
    /* Six columns */
    float: left;
  }

  .desk_b_7 {
    width: 87.2448979592%;
    /* Seven columns */
    float: left;
  }

  .desk_b_8 {
    width: 100%;
    /* Eight columns */
    float: left;
  }

  .desk_b_3_columns {
    width: 31.9387755102%;
    /* 1/3 columns */
    float: left;
  }

  .mob_col_gutter, .tab_col_gutter {
    margin-right: 0px;
  }

  .col_gutter, .large_col_gutter, .desk_col_gutter, .desk_b_col_gutter {
    margin-right: 2.0408163265%;
  }

  .responsive_grid_gutter {
    margin-right: 2.0408163265%;
  }
  .responsive_grid_gutter:nth-child(2n) {
    margin-right: 2.0408163265%;
  }
  .responsive_grid_gutter:nth-child(3n) {
    margin-right: 2.0408163265%;
  }
  .responsive_grid_gutter:nth-child(4n) {
    margin-right: 0px;
  }

  /* ------------------------------------------------------ Layout Desktop B variations */
  /*
  .desk_b_4 {

  	.tab_1 {
  		width: 100%*(105/480);
  	}

  	.tab_5 {
  		width: 100%*(355/480);
  	}

  	.col_gutter {
  		margin-right: 100%*(20/480);
  	}
  }
  */
}
/* DESKTOP A - 1180 - 12 Columns */
@media (min-width: 73.75em) {
  /* ------------------------------------------------------ Layout Desktop A - 1180 - 12 columns */
  .desk_a_1 {
    width: 6.7796610169%;
    /* one columns */
    float: left;
  }

  .desk_a_2 {
    width: 15.2542372881%;
    /* Two columns */
    float: left;
  }

  .desk_a_3 {
    width: 23.7288135593%;
    /* Three columns */
    float: left;
  }

  .desk_a_4 {
    width: 32.2033898305%;
    /* Four columns */
    float: left;
  }

  .desk_a_5 {
    width: 40.6779661017%;
    /* Five columns */
    float: left;
  }

  .desk_a_6 {
    width: 49.1525423729%;
    /* Six columns */
    float: left;
  }

  .desk_a_7 {
    width: 57.6271186441%;
    /* Seven columns */
    float: left;
  }

  .desk_a_8 {
    width: 66.1016949153%;
    /* eight columns */
    float: left;
  }

  .desk_a_9 {
    width: 74.5762711864%;
    /* nine columns */
    float: left;
  }

  .desk_a_10 {
    width: 83.0508474576%;
    /* ten columns */
    float: left;
  }

  .desk_a_11 {
    width: 91.5254237288%;
    /* eleven columns */
    float: left;
  }

  .desk_a_12 {
    width: 100%;
    /* Twelve columns */
    float: left;
  }

  .mob_col_gutter, .tab_col_gutter, .desk_b_col_gutter {
    margin-right: 0px;
  }

  .col_gutter, .large_col_gutter, .desk_col_gutter, .desk_a_col_gutter {
    margin-right: 1.6949152542%;
  }

  .responsive_grid_gutter {
    margin-right: 1.6949152542%;
  }
  .responsive_grid_gutter:nth-child(2n) {
    margin-right: 1.6949152542%;
  }
  .responsive_grid_gutter:nth-child(3n) {
    margin-right: 1.6949152542%;
  }
  .responsive_grid_gutter:nth-child(4n) {
    margin-right: 0px;
  }
}
/* ------------------------------------------------------ Styles */
/* ------------------------------------------------------ Site Frame */
.padding_block {
  padding: 0px 20px;
  padding: 0px 1.25rem;
}

/* ------------------------------------------------------ Header */
.mobile_header {
  display: block;
  text-align: center;
  margin: 0px !important;
  padding: 0px 1.25rem 0px 1.25rem;
}

.site_header {
  display: block;
  position: relative;
  padding: 0.625rem 0px 1.25rem 0px;
}
.site_header img {
  max-width: 22.1875rem;
  display: inline-block;
}
.site_header .social {
  margin-bottom: 0px;
  display: none;
  visibility: hidden;
}

body.home .site_header {
  padding: 0.625rem 0px 0px 0px;
}

.banner a:link, .banner a:visited {
  color: black;
}
.banner a:hover, .banner a:focus {
  color: white;
  text-decoration: none;
}
.banner a:hover h1, .banner a:focus h1 {
  color: white;
  -moz-transition: color 0.3s ease-in;
  -o-transition: color 0.3s ease-in;
  -webkit-transition: color 0.3s ease-in;
  -ms-transition: color 0.3s ease-in;
  transition: color 0.3s ease-in;
}

h1.banner_title {
  display: block;
}

/* ------------------------------------------------------ aMember header widget */
body.logged-out .header_widget #loginform, body.admin .header_widget #loginform {
  display: none;
}

/* extra header menu tags*/
.header_widget {
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  margin-bottom: 0.625rem;
}
.header_widget .sign-in a {
  color: #0099CC;
}
.header_widget h2 {
  display: none;
}
.header_widget p {
  display: inline;
  font-size: 11px;
  font-size: 0.6875rem;
  line-height: 14px;
  line-height: 0.875rem;
}
.header_widget p a:first-child {
  margin-right: 0.625rem;
  color: #0099CC;
}
.header_widget ul {
  display: inline-block;
}
.header_widget ul li {
  list-style-type: none;
}
.header_widget label {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 0.3125rem;
  margin-bottom: 0px;
}
.header_widget #am4login-4 {
  display: none;
  visibility: hidden;
}
.header_widget input {
  display: none;
  visibility: hidden;
  padding: 0.125rem 0.125rem 0.125rem 0.125rem;
  width: 7.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0px;
}
.header_widget input[type=submit], .header_widget button {
  height: auto;
  line-height: 17px;
  line-height: 1.0625rem;
  width: 3.125rem;
}

/* ------------------------------------------------------ Search */
.search_block {
  padding: 0px 20px;
  padding: 0px 1.25rem;
}

.sb-search {
  position: relative;
  z-index: 1;
  height: 0px;
  max-height: 0px;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  float: right;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  width: 100%;
}
.sb-search input.sb-search-input, .sb-search input.sb-search-submit {
  visibility: hidden;
  opacity: 0;
}

.sb-search-open {
  height: 2.5rem;
  max-height: 25rem;
  margin-bottom: 0.625rem;
}
.sb-search-open input.sb-search-input, .sb-search-open input.sb-search-submit {
  visibility: visible;
  opacity: 1;
}

.sb-search-input {
  position: relative;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  background: white;
  width: 75% !important;
  height: 2.5rem;
  margin: 0 2.5% 0 0;
  z-index: 10;
  font-family: inherit;
  color: #888888;
}

.sb-search-input::-webkit-input-placeholder {
  color: #d7efe7;
}

.sb-search-input:-moz-placeholder {
  color: #d7efe7;
}

.sb-search-input::-moz-placeholder {
  color: #d7efe7;
}

.sb-search-input:-ms-input-placeholder {
  color: #d7efe7;
}

.active .icon-search {
  background: white;
  color: #3db688;
}

input.sb-search-submit {
  font-size: 12px;
  font-size: 0.75rem;
  width: 22.5% !important;
  max-width: none;
  float: right;
  height: 2.5rem;
  display: block;
  position: relative;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  text-align: center;
  cursor: pointer;
  background: #3db688;
  color: white;
  border: none;
  outline: none;
}

/* Open state */
.sb-search.sb-search-open,
.no-js .sb-search {
  width: 100%;
}

.sb-search.sb-search-open .icon-search,
.no-js .sb-search .icon-search {
  background: #ccc;
  color: #333333;
  z-index: 11;
}

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
  z-index: 90;
}

/* ------------------------------------------------------ Toggle Menu */
.nav_primary {
  display: none;
  overflow: hidden;
  display: block;
  margin-top: 0.625rem;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
}
.nav_primary .icon-list {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 30px;
  line-height: 1.875rem;
  display: block;
  cursor: pointer;
  height: 30px;
  height: 1.875rem;
  width: 100%;
  color: #3db688;
  padding: 0px 20px;
  padding: 0px 1.25rem;
  background: white;
}
.nav_primary ul {
  padding: 0px 20px;
  padding: 0px 1.25rem;
  transition: max-height 1s;
  -webkit-transition: max-height 1s;
  -moz-transition: max-height 1s;
  -ms-transition: max-height 1s;
  -o-transition: max-height 1s;
  max-height: 0;
}
.nav_primary ul li {
  padding: 0px;
  display: none;
  list-style: none;
}
.nav_primary a {
  display: block;
}
.nav_primary a:hover, .nav_primary a:focus {
  color: black;
}

.nav_primary.expanded .icon-list {
  background: black;
}
.nav_primary.expanded ul {
  background: white;
  height: 100%;
  min-height: 10px;
  max-height: 400px;
}
.nav_primary.expanded li {
  display: list-item;
  height: 40px;
  height: 2.5rem;
  line-height: 40px;
  line-height: 2.5rem;
  padding: 0 5px;
  padding: 0 0.3125rem;
  border-bottom: 1px solid #efefef;
}
.nav_primary.expanded li:last-child {
  border-bottom: none;
}

/* ------------------------------------------------------ Home */
.home_top_section {
  padding-bottom: 20px !important;
}

.home_bottom_section {
  padding-top: 30px !important;
}

/* ------------------------------------------------------ Breakout section */
.breakout_section {
  background: #3db688;
  color: white;
  padding: 30px 0;
  text-align: center;
}
.breakout_section .main_wrapper {
  background: none;
}
.breakout_section h2 {
  text-align: center;
  margin-bottom: 0;
  font-size: 32px;
  font-size: 2rem;
}
.breakout_section p {
  text-align: center;
  font-size: 18px;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
}
.breakout_section .button {
  background: white !important;
  height: 40px;
  line-height: 38px;
  width: 160px;
  display: block;
  margin: 30px auto 0;
  border: 3px solid white;
  padding: 0;
  border-radius: 0;
}
.breakout_section .button:link, .breakout_section .button:visited {
  color: #3db688 !important;
}
.breakout_section .button:hover, .breakout_section .button:focus {
  background: none !important;
  color: white !important;
  border-color: white !important;
}

/* ------------------------------------------------------ Content Body */
.content_styles h2 {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.content_styles h2:nth-child(1n+2) {
  margin-top: 20px;
  margin-top: 1.25rem;
}
.content_styles img {
  margin: 0px 0px 0.625rem 0px;
}
.content_styles img.size-medium {
  margin: 0px auto;
  margin-bottom: 1.25rem;
  display: block;
}
.content_styles .thumbnail img {
  max-width: 9.375rem;
}
.content_styles .thumbnail.alignleft, .content_styles .thumbnail.align_left {
  float: left;
  margin-right: 1.25rem;
  width: auto;
}
.content_styles .thumbnail.alignright, .content_styles .thumbnail.align_right {
  float: right;
  margin-left: 1.25rem;
  width: auto;
}

.section_header {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}
.section_header h2 {
  margin: 0px 0px 10px !important;
  margin: 0px 0px 0.625rem !important;
}
.section_header h3 {
  margin: 0px 0px 5px !important;
  margin: 0px 0px 0.3125rem !important;
  font-weight: 600;
}
.section_header h4 {
  font-size: 14px;
  font-size: 0.875rem;
}
.section_header [class^=icon-], .section_header [class*=" icon-"] {
  color: #3db688;
  font-size: 20px;
  font-size: 1.25rem;
}

.module h1 {
  margin-bottom: 0.9375rem;
}
.module h1.alt {
  margin-top: 0px;
  margin-bottom: 0.625rem;
}
.module h1.alt a:link, .module h1.alt a:visited {
  color: #00224f;
}
.module h1.alt a:hover, .module h1.alt a:focus {
  color: #3db688;
}
.module h1.alt a.green:link, .module h1.alt a.green:visited {
  color: #3db688;
}
.module h1.alt a.green:hover, .module h1.alt a.green:focus {
  color: #00224f;
}
.module h2.alt {
  margin-top: 0px;
}

a.hover_background {
  display: block;
}
a.hover_background:hover, a.hover_background:focus {
  background: #3db688;
  color: white !important;
  text-decoration: none;
}
a.hover_background:hover h1, a.hover_background:hover h2, a.hover_background:hover h3, a.hover_background:hover h4, a.hover_background:hover h5, a.hover_background:hover p, a.hover_background:focus h1, a.hover_background:focus h2, a.hover_background:focus h3, a.hover_background:focus h4, a.hover_background:focus h5, a.hover_background:focus p {
  color: white !important;
}

.icon_box [class^=icon-], .icon_box [class*=" icon-"] {
  font-size: 18px;
  font-size: 1.125rem;
  width: 9.375%;
  display: inline-block;
  vertical-align: middle;
}
.icon_box h1, .icon_box h2, .icon_box h3, .icon_box h4, .icon_box h5 {
  width: 87.5%;
  display: inline-block;
  vertical-align: top;
}

/* ------------------------------------------------------ Responsive embed */
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------------------------------ Events */
.green_box {
  display: inline-block;
  background: #0099CC;
  color: white;
  padding: 0px 0.3125rem 0px 0.3125rem;
}

.events_box {
  background: transparent;
  padding: 0.625rem 0px 0px 0px;
  margin: 0px 0.3125rem 0px 0.3125rem;
  width: 100%;
}
.events_box p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 16px;
  line-height: 1rem;
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  margin-bottom: 0;
}
.events_box table {
  width: 100%;
}
.events_box table caption {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 16px;
  line-height: 1rem;
  margin-bottom: 0.3125rem;
  font-weight: 400;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
.events_box table th, .events_box table td, .events_box table tr {
  border-color: white;
  background: #efefef;
  text-align: left;
  /* text-transform: capitalize; */
}
.events_box table th address, .events_box table td address, .events_box table tr address {
  margin: 0px !important;
}
.events_box table tr {
  border-top: 1px solid #ffffff;
  padding: 0.3125rem 0px 0.3125rem 0px;
  float: left;
  width: 100%;
}
.events_box table tr:nth-of-type(even) {
  /* write over Zebra striping */
  background: #efefef;
}
.events_box table th {
  text-align: center;
  border: none;
  width: 100%;
  display: block;
  padding: 0px;
}
.events_box table td {
  text-align: center;
  border: none;
  width: 100%;
  display: block;
  padding: 0px;
  border: none;
}
.events_box table td time {
  font-size: inherit;
  color: inherit;
}
.events_box table td #geo-map {
  padding-top: 0.625rem;
  display: block;
  text-align: center;
  font-weight: 400;
}
.events_box table td .google_map_link {
  display: block;
}
.events_box table [class^=icon-]:before, .events_box table [class*=" icon-"]:before {
  padding-right: 0.3125rem;
}
.events_box table img {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
}
.events_box [class^=icon-] {
  color: #0099CC;
}
.events_box address {
  margin: 0px;
}

/* ------------------------------------------------------ Comments */
.comment_list {
  padding: 0px;
  margin: 0px;
}
.comment_list .comment_author {
  display: block;
}
.comment_list dt {
  margin-bottom: 0.625rem;
}
.comment_list dd {
  list-style-type: none;
  margin: 0px 0px 1.25rem 0px;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #333333;
}

/* ------------------------------------------------------ Search */
.search .search-dropdown, .search .postform {
  width: 100%;
  max-width: none;
  margin-bottom: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-border-radius: 0px;
  background-position: right 50%;
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=);
  padding-left: 10px;
  padding-right: 1.5em;
}
.search .chosen-container {
  width: 100% !important;
  height: 40px;
  margin-bottom: 10px;
}
.search .chosen-container .chosen-search-input, .search .chosen-container .chosen-choices {
  width: 100% !important;
  height: 40px !important;
}
.search .chosen-container .search-choice {
  margin-top: 8px;
}
.search .search-text {
  width: 80%;
  float: left;
}
.search .search-submit {
  width: 20%;
  float: left;
}
.search:after {
  content: "";
  display: table;
  clear: both;
}

.search-result {
  border-bottom: 1px solid #efefef;
  padding-bottom: 0.625rem;
  margin-bottom: 0.625rem;
}
.search-result:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.search-result p {
  margin-bottom: 0px;
}

/* ------------------------------------------------------ Pagination */
.pagination {
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  line-height: 30px;
  line-height: 1.875rem;
  height: 1.875rem;
  text-align: center;
}
.pagination .nav_text {
  vertical-align: top;
  line-height: 28px;
  line-height: 1.75rem;
}
.pagination .prev {
  float: left;
}
.pagination .next {
  float: right;
  text-align: right;
}
.pagination span {
  font-size: 18px;
  font-size: 1.125rem;
}
.pagination [class^=icon-], .pagination [class*=" icon-"] {
  font-size: 30px;
  font-size: 1.875rem;
  vertical-align: sub;
  height: 1.375rem;
  display: inline-block;
}
.pagination a:link, .pagination a:visited {
  color: #0099CC;
}
.pagination a:link [class^=icon-], .pagination a:link [class*=" icon-"], .pagination a:visited [class^=icon-], .pagination a:visited [class*=" icon-"] {
  color: #0099CC;
}
.pagination a:hover, .pagination a:focus {
  color: #00224f;
  text-decoration: none;
}
.pagination a:hover [class^=icon-], .pagination a:hover [class*=" icon-"], .pagination a:focus [class^=icon-], .pagination a:focus [class*=" icon-"] {
  color: #00224f;
}
.pagination .inactive {
  margin-right: 0.625rem;
}
.pagination .current {
  margin-right: 0.3125rem;
  color: white;
  background: #3db688;
  border-radius: 12px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  padding-bottom: 0.1875rem;
}
.pagination .page-numbers {
  margin-right: 0.625rem;
}
.pagination .pagination_arrows {
  display: inline-block;
  margin-right: 0.3125rem;
  vertical-align: middle;
  width: 1.875rem;
  text-align: center;
}

/* ------------------------------------------------------ Sidebar */
h2.menu_title, h2.menu_title_archive {
  list-style-type: none;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 0px;
}

ul.contextual_menu, ul.contextual_menu_archive {
  margin: 0px auto;
  padding: 0px;
  margin-bottom: 0.625rem;
  text-align: center;
  display: block;
}
ul.contextual_menu li, ul.contextual_menu_archive li {
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  list-style-type: none;
  font-weight: normal;
  line-height: 18px;
  line-height: 1.125rem;
  display: inline;
  font-size: 14px;
  font-size: 0.875rem;
  padding-right: 0.625rem;
}
ul.contextual_menu li:last-child, ul.contextual_menu_archive li:last-child {
  padding-right: 0px;
}
ul.contextual_menu li a, ul.contextual_menu_archive li a {
  color: #888888;
}
ul.contextual_menu li a:hover, ul.contextual_menu li a:focus, ul.contextual_menu_archive li a:hover, ul.contextual_menu_archive li a:focus {
  color: #000;
}
ul.contextual_menu li.current-menu-item a, ul.contextual_menu li.current-menu-parent a, ul.contextual_menu li.current-menu-ancestor a, ul.contextual_menu li.current_page_item a, ul.contextual_menu_archive li.current-menu-item a, ul.contextual_menu_archive li.current-menu-parent a, ul.contextual_menu_archive li.current-menu-ancestor a, ul.contextual_menu_archive li.current_page_item a {
  color: #3db688;
}
ul.contextual_menu li.current-menu-item a:hover, ul.contextual_menu li.current-menu-item a:focus, ul.contextual_menu li.current-menu-parent a:hover, ul.contextual_menu li.current-menu-parent a:focus, ul.contextual_menu li.current-menu-ancestor a:hover, ul.contextual_menu li.current-menu-ancestor a:focus, ul.contextual_menu li.current_page_item a:hover, ul.contextual_menu li.current_page_item a:focus, ul.contextual_menu_archive li.current-menu-item a:hover, ul.contextual_menu_archive li.current-menu-item a:focus, ul.contextual_menu_archive li.current-menu-parent a:hover, ul.contextual_menu_archive li.current-menu-parent a:focus, ul.contextual_menu_archive li.current-menu-ancestor a:hover, ul.contextual_menu_archive li.current-menu-ancestor a:focus, ul.contextual_menu_archive li.current_page_item a:hover, ul.contextual_menu_archive li.current_page_item a:focus {
  color: #000;
}
ul.contextual_menu li.current-menu-item ul.children a, ul.contextual_menu li.current-menu-parent ul.children a, ul.contextual_menu li.current-menu-ancestor ul.children a, ul.contextual_menu li.current_page_item ul.children a, ul.contextual_menu_archive li.current-menu-item ul.children a, ul.contextual_menu_archive li.current-menu-parent ul.children a, ul.contextual_menu_archive li.current-menu-ancestor ul.children a, ul.contextual_menu_archive li.current_page_item ul.children a {
  color: #888888;
}
ul.contextual_menu li.current-menu-item ul.children a:hover, ul.contextual_menu li.current-menu-item ul.children a:focus, ul.contextual_menu li.current-menu-parent ul.children a:hover, ul.contextual_menu li.current-menu-parent ul.children a:focus, ul.contextual_menu li.current-menu-ancestor ul.children a:hover, ul.contextual_menu li.current-menu-ancestor ul.children a:focus, ul.contextual_menu li.current_page_item ul.children a:hover, ul.contextual_menu li.current_page_item ul.children a:focus, ul.contextual_menu_archive li.current-menu-item ul.children a:hover, ul.contextual_menu_archive li.current-menu-item ul.children a:focus, ul.contextual_menu_archive li.current-menu-parent ul.children a:hover, ul.contextual_menu_archive li.current-menu-parent ul.children a:focus, ul.contextual_menu_archive li.current-menu-ancestor ul.children a:hover, ul.contextual_menu_archive li.current-menu-ancestor ul.children a:focus, ul.contextual_menu_archive li.current_page_item ul.children a:hover, ul.contextual_menu_archive li.current_page_item ul.children a:focus {
  color: #000;
}
ul.contextual_menu li ul.children, ul.contextual_menu_archive li ul.children {
  display: inline;
  margin: 0px;
  padding: 0px;
  text-align: center;
}

.contextual_menu_alt {
  margin: 0px auto;
  padding: 0px;
  margin-bottom: 0px;
  text-align: center;
  display: block;
}
.contextual_menu_alt li {
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  list-style-type: none;
  font-weight: normal;
  line-height: 18px;
  line-height: 1.125rem;
  display: inline;
  font-size: 14px;
  font-size: 0.875rem;
  padding-right: 0.625rem;
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.contextual_menu_alt li a {
  color: #888888;
}
.contextual_menu_alt li a:hover, .contextual_menu_alt li a:focus {
  color: #000;
}
.contextual_menu_alt li.current-menu-item a, .contextual_menu_alt li.current-menu-parent a, .contextual_menu_alt li.current-menu-ancestor a, .contextual_menu_alt li.current_page_item a {
  color: #3db688;
}
.contextual_menu_alt li.current-menu-item a:hover, .contextual_menu_alt li.current-menu-item a:focus, .contextual_menu_alt li.current-menu-parent a:hover, .contextual_menu_alt li.current-menu-parent a:focus, .contextual_menu_alt li.current-menu-ancestor a:hover, .contextual_menu_alt li.current-menu-ancestor a:focus, .contextual_menu_alt li.current_page_item a:hover, .contextual_menu_alt li.current_page_item a:focus {
  color: #000;
}

.sidebar_posts h2 {
  margin-bottom: 0.625rem;
}
.sidebar_posts a:visited, .sidebar_posts a:link {
  color: #00224f;
}
.sidebar_posts a:hover, .sidebar_posts a:focus {
  color: #0099CC;
}

h3.category, h4.category {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}

a.category_link:link, a.category_link:visited {
  color: #0099CC !important;
}
a.category_link:hover, a.category_link:focus {
  color: black !important;
}

/* ------------------------------------------------------ Buttons */
.button {
  /*
  	font-family: $altFont;
  	width: 100%;
  	border: none !important;
  	max-width: u((180rem/16));
  */
  background: #3db688 !important;
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  /*

  	@include line-height(30);
  	height: u((32rem/16));
  	text-decoration: none !important;
  	display: inline-block;
  	border-radius: 0px !important;
  	text-align: center;
  	text-transform: uppercase;
  	@include transition();
  */
}
.button:link, .button:visited {
  color: white !important;
}
.button:hover, .button:focus {
  background: #0099CC !important;
  text-decoration: none;
}

.alt_button {
  background: #d7efe7 !important;
  font-size: 18px;
  font-size: 1.125rem;
}
.alt_button:link, .alt_button:visited {
  color: #0099CC !important;
}
.alt_button:hover, .alt_button:focus {
  background: #00224f !important;
}

.big_button {
  max-width: 22.5rem;
  line-height: 40px;
  line-height: 2.5rem;
  height: 2.5rem;
}

/* ------------------------------------------------------ Image overlay */
/* Don't display intro text for small screen devices on the grid image overlay (the overlay text) */
.overlay {
  visibility: hidden;
  display: none;
}

.grid_link img {
  margin: 0px !important;
}

/* ------------------------------------------------------ Contact Form */
.wpcf7 input, .wpcf7 textarea {
  margin-bottom: 5px;
}
.wpcf7 label {
  font-weight: 500;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  display: block;
}
.wpcf7 label .icon-star {
  font-size: 10px;
  font-size: 0.625rem;
  position: relative;
  top: -5px;
  top: -0.3125rem;
}
.wpcf7 img.ajax-loader {
  width: auto;
}
.wpcf7 .wpcf7-captchac {
  width: auto;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  display: inline-block;
}
.wpcf7 .wpcf7-captchar {
  display: inline-block;
  max-width: 140px;
  max-width: 8.75rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  vertical-align: top;
}
.wpcf7 .wpcf7-submit {
  width: 100%;
  max-width: none;
}
.wpcf7 .wpcf7-mail-sent-ok, .wpcf7 .wpcf7-validation-errors {
  background: #3da95e;
  background: rgba(61, 169, 94, 0.3);
  padding: 5px;
  padding: 0.3125rem;
  display: block;
  font-weight: 500;
}
.wpcf7 .wpcf7-validation-errors {
  background: #db0000;
  background: rgba(219, 0, 0, 0.3);
}
.wpcf7 .icon-star {
  color: #3db688;
}

/* ------------------------------------------------------ Special DIVS in content */
.single_block {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.single_block, .double_single_block {
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

/* ------------------------------------------------------ Social and icons */
.social {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 24px;
  line-height: 1.5rem;
  margin-bottom: 0.3125rem;
}
.social a:hover, .social a:focus {
  text-decoration: none;
}
.social [class^=icon-], .social [class*=" icon-"] {
  vertical-align: top;
  font-size: 24px;
  font-size: 1.5rem;
  margin-right: 0.3125rem;
}

/* ------------------------------------------------------ Footer */
.site_footer {
  background: #efefef;
  color: #333333;
}

.eway {
  display: inline-block;
  margin-right: 20px;
}
.eway img {
  max-width: 6.25rem;
}

.trustwave {
  display: inline-block;
}
.trustwave img {
  max-width: 6.25rem;
  width: auto;
}

.footer_content {
  padding: 0.625rem 1.25rem 0.625rem 1.25rem;
}
.footer_content a:hover, .footer_content a:focus {
  color: #333333;
}
.footer_content .social {
  margin-bottom: 0px;
}
.footer_content .social [class^=icon-], .footer_content .social [class*=" icon-"] {
  font-size: 30px;
  font-size: 1.875rem;
  margin-right: 0px;
  margin-right: 0.3125rem;
}
.footer_content ul.menu {
  padding: 0px;
}
.footer_content ul.menu li {
  list-style-type: none;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 18px;
  line-height: 1.125rem;
}

.footer_top {
  background: #333333;
  color: #efefef;
}
.footer_top p, .footer_top li, .footer_top small {
  color: #efefef;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
}
.footer_top a:link, .footer_top a:visited {
  color: #0099CC;
}
.footer_top a:hover, .footer_top a:focus {
  color: #d7efe7;
}
.footer_top ul {
  line-height: 30px;
}

.footer_bottom {
  background: #888888;
  color: #efefef;
}
.footer_bottom p, .footer_bottom li, .footer_bottom small {
  color: #efefef;
  font-family: "tablet-gothic", Helvetica, Arial, sans-serif;
}
.footer_bottom a:link, .footer_bottom a:visited {
  color: #00224f;
}
.footer_bottom a:hover, .footer_bottom a:focus {
  color: #d7efe7;
}

/* widscreen Mobile - 480  */
@media (min-width: 30em) {
  /* ------------------------------------------------------ Content Body */
  .section_header h3 {
    float: left;
    margin: 0px;
  }
  .section_header h4 {
    float: right;
  }

  /* ------------------------------------------------------ events */
  .events_box {
    background: transparent;
  }
  .events_box table tr th {
    text-align: left;
    vertical-align: top;
    border: none;
    width: 29.1666666667%;
    margin: 0px 2.0833333333%;
    display: inline-block;
    word-wrap: break-word;
  }
  .events_box table tr td {
    border: none;
    text-align: left !important;
    width: 64.5833333333%;
    margin-right: 1.0416666667%;
    display: inline-block;
  }
}
/* TABLET - 760 - 6 columns */
@media (min-width: 47.5em) {
  /* ------------------------------------------------------ Semantic Helpers */
  .large_right_text {
    text-align: right !important;
  }

  .larve_device {
    display: block !important;
    visibility: visible !important;
  }

  .padding_bottom {
    padding-bottom: 2.5rem;
  }

  /* ------------------------------------------------------ Site structure */
  /* reset padding_block */
  .padding_block {
    width: 100%;
    padding: 0px;
  }

  .main_content {
    padding: 0px 1.25rem 0px 1.25rem;
  }

  /* ------------------------------------------------------ Header */
  .mobile_header {
    padding: 0px 1.25rem 0px 1.25rem;
  }

  .site_header {
    padding-bottom: 0px;
  }
  .site_header .header_widget {
    text-align: right;
    margin-bottom: 0px;
  }
  .site_header .social {
    text-align: left;
    display: block;
    visibility: visible;
  }
  .site_header .social li {
    text-align: center;
  }
  .site_header .social [class^=icon-], .site_header .social [class*=" icon-"] {
    margin-right: 0.125rem;
  }

  /* ------------------------------------------------------ Overlay changes */
  /* Remove underline from overlay text, keep on span */
  a.grid_link:hover .overlay {
    border-bottom: none;
    visibility: visible;
    display: block;
  }
  a.grid_link:hover span {
    visibility: visible;
    display: block;
  }

  /* Image overlay  */
  .image_text {
    position: absolute;
    padding: 1.25rem 0px 1.25rem 0px;
    text-align: center;
    width: 100%;
  }

  .tint {
    position: relative;
    cursor: pointer;
  }
  .tint img {
    vertical-align: top;
  }
  .tint figcaption {
    font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
    text-align: center;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 28px;
    line-height: 1.75rem;
    color: white;
    text-transform: uppercase;
  }
  .tint figcaption span {
    margin: 0.625rem 0px 0px 0px;
    font-family: "ff-tisa-web-pro", Georgia, serif;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 17px;
    line-height: 1.0625rem;
    color: white;
    text-transform: capitalize;
  }

  .tint:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: none;
    -moz-transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .tint:hover:before {
    background: #3db688;
    background: rgba(61, 182, 136, 0.6);
  }

  /* ------------------------------------------------------ Home */
  .home_top_section {
    padding-bottom: 20px !important;
  }

  /* ------------------------------------------------------ Breakout section */
  .breakout_section {
    padding: 40px 0;
  }
  .breakout_section h2 {
    font-size: 40px;
    font-size: 2.5rem;
  }
  .breakout_section .button {
    background: white !important;
    height: 50px;
    line-height: 48px;
    margin: 40px auto 0;
  }

  /* ------------------------------------------------------ Content Styles - includes images */
  .content_styles {
    /* Inline images or images in content */
  }
  .content_styles img.size-medium {
    float: left;
    max-width: 41.095890411%;
    padding-right: 2.7397260274%;
    padding-top: 0.375rem;
  }
  .content_styles .thumbnail img {
    max-width: 9.375rem;
  }
  .content_styles .medium-16x9 img, .content_styles .medium img, .content_styles .portrait img {
    max-width: 15rem;
  }
  .content_styles .thumbnail {
    float: left;
    margin-right: 1.25rem;
  }
  .content_styles .alignleft, .content_styles .align_left {
    float: left;
    margin-right: 1.25rem;
    width: auto;
  }
  .content_styles .alignright, .content_styles .align_right {
    float: right;
    margin-left: 1.25rem;
    width: auto;
  }
  .content_styles .full, .content_styles .large, .content_styles .large-16x9 {
    float: none !important;
    margin-right: 0px !important;
  }

  /* ------------------------------------------------------ Flexslider */
  .flexslider .slides figcaption {
    background: black;
    background: rgba(0, 0, 0, 0.75);
    display: block;
    line-height: 40px;
    line-height: 2.5rem;
    min-height: 2.5rem;
    padding: 0px 0.3125rem 0px 0.3125rem;
    margin-top: -2.5rem;
    width: 100%;
    color: white;
  }
  .flexslider .flex-direction-nav {
    position: absolute;
    top: 0.3125rem;
    right: 0.9375rem;
  }
  .flexslider .flex-direction-nav a {
    background: rgba(0, 0, 0, 0.65);
    color: white;
  }
  .flexslider .flex-direction-nav a:hover {
    background: #3db688;
  }
  .flexslider .flex-direction-nav a.flex-prev {
    margin-right: 1.25rem;
  }

  /* ------------------------------------------------------ Pagination */
  .pagination {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 40px;
    line-height: 2.5rem;
    height: 2.5rem;
  }
  .pagination .nav_text {
    vertical-align: top;
    line-height: 38px;
    line-height: 2.375rem;
  }

  /* ------------------------------------------------------ Special DIVS in content */
  .double_single_block {
    margin-bottom: 2.5rem;
  }

  .margin_top {
    margin-top: 1.25rem;
  }

  .double_margin_top {
    margin-top: 2.5rem;
  }

  /* ------------------------------------------------------ Footer */
  .footer_align_right {
    text-align: right !important;
  }
}
/* DESKTOP B - 980 - 8 Columns */
@media (min-width: 61.25em) {
  /* ------------------------------------------------------ Semantic helpers */
  .small_device {
    display: none !important;
    visibility: hidden !important;
  }

  .desk_clearfix {
    *zoom: 1;
  }

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

  .desk_clearfix:after {
    clear: both;
  }

  .large_align_right {
    float: right !important;
  }

  /* ------------------------------------------------------ header */
  .site_header {
    padding: 0px 1.25rem 1.25rem 1.25rem;
  }
  .site_header #nav_anchor_container {
    display: none;
    visibility: hidden;
  }
  .site_header .small_block {
    padding-bottom: 0px !important;
  }
  .site_header .social {
    text-align: right !important;
    margin: 0px 0px 0.625rem 0px;
  }
  .site_header .social [class^=icon-], .site_header .social [class*=" icon-"] {
    font-size: 30px;
    font-size: 1.875rem;
  }
  .site_header .social li {
    margin: 0px 0px 0px 0.3125rem;
  }
  .site_header .header_widget {
    text-align: right;
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
  .site_header .join_button {
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
    width: 100%;
    max-width: 8.75rem;
    background: #3db688;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 38px;
    line-height: 2.375rem;
    height: 2.5rem;
    text-decoration: none !important;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
  }
  .site_header .join_button:link, .site_header .join_button:visited {
    color: white;
  }
  .site_header .join_button:hover, .site_header .join_button:focus {
    background: #0099CC;
  }

  body.home .site_header {
    padding: 0px 1.25rem 1.25rem 1.25rem;
  }

  .mobile_header {
    text-align: left;
    padding: 0px;
    margin-bottom: 0.625rem !important;
    padding-top: 0.625rem !important;
    position: relative;
  }

  /* ------------------------------------------------------ Menu */
  .nav_primary {
    min-height: 1.875rem;
    clear: none;
    display: block;
    visibility: visible;
    height: auto;
    display: block;
    margin-top: 0px;
    min-height: 2.6875rem;
    background: none;
    width: 100%;
    overflow: visible;
    position: relative;
    z-index: 10;
  }
  .nav_primary .icon-list {
    display: none;
    visibility: hidden;
  }
  .nav_primary ul {
    margin: 0px;
    padding: 0px 0px 0px 0px;
    text-align: center;
    background: none;
  }
  .nav_primary ul li {
    display: block;
    margin-left: 0.1%;
    font-size: 18px;
    font-size: 1.125rem;
    vertical-align: text-top;
    line-height: 40px;
    line-height: 2.5rem;
    width: 10.52%;
    float: left;
    position: relative;
    font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
  }
  .nav_primary ul li:first-child {
    margin-left: 0px;
  }
  .nav_primary ul li.current-page a, .nav_primary ul li.current-menu-item a, .nav_primary ul li.current-page-ancestor a, .nav_primary ul li.current-menu-parent a {
    background: #ddd;
    color: black;
    text-decoration: none;
    border-bottom: 3px solid #3db688;
  }
  .nav_primary ul li.search_nav {
    width: 4.4%;
    background: #efefef;
    height: 2.5rem;
    color: #00224f;
    border-bottom: 3px solid #00224f;
    cursor: pointer;
  }
  .nav_primary ul li.search_nav:hover, .nav_primary ul li.search_nav:focus {
    background: #ccc;
    color: black;
    text-decoration: none;
    border-bottom: 3px solid #3db688;
  }
  .nav_primary ul li.search_nav [class^=icon-], .nav_primary ul li.search_nav [class*=" icon-"] {
    margin-left: 0.3125rem;
    color: #00224f;
    vertical-align: sub;
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 40px;
    line-height: 2.5rem;
  }
  .nav_primary ul li.search_nav.active {
    background: #ccc;
    color: black;
    border-bottom: 3px solid #3db688;
  }
  .nav_primary ul li.search_nav.active [class^=icon-], .nav_primary ul li.search_nav.active [class*=" icon-"] {
    background: none;
  }
  .nav_primary ul li ul.sub-menu {
    display: none;
    position: absolute;
    top: 2.5rem;
    left: 0;
  }
  .nav_primary ul li ul.sub-menu li {
    float: none;
    display: block;
    width: 100%;
    margin: 0px;
    min-height: 2.5rem;
    line-height: 40px;
    line-height: 2.5rem;
    width: 10.625rem;
    text-align: left;
    font-size: 15px;
    font-size: 0.9375rem;
  }
  .nav_primary ul li ul.sub-menu li a {
    min-height: 2.5rem;
    padding: 0px 0.3125rem 0px 0.3125rem;
  }
  .nav_primary ul li ul.sub-menu li a:link, .nav_primary ul li ul.sub-menu li a:visited {
    background: #ccc;
    background: rgba(239, 239, 239, 0.95);
    border-top: 3px solid #3db688;
    border-bottom: none;
  }
  .nav_primary ul li ul.sub-menu li a:hover, .nav_primary ul li ul.sub-menu li a:focus {
    color: white;
    background: #888888;
    border-top: 3px solid #0099CC;
    border-bottom: none;
  }
  .nav_primary ul li:hover ul.sub-menu {
    display: block;
  }
  .nav_primary a {
    background: #efefef;
    height: 2.5rem;
  }
  .nav_primary a:link, .nav_primary a:visited {
    color: #00224f;
    border-bottom: 3px solid #00224f;
  }
  .nav_primary a:hover, .nav_primary a:focus {
    background: #ccc;
    color: black;
    text-decoration: none;
    border-bottom: 3px solid #3db688;
  }

  body.archive .nav_primary ul li.menu-item-263 a, body.single-post .nav_primary ul li.menu-item-263 a {
    background: #ddd;
    color: black;
    text-decoration: none;
    border-bottom: 3px solid #3db688;
  }

  body.home .nav_primary ul li.menu-item-home a {
    background: #ddd;
    color: black;
    text-decoration: none;
    border-bottom: 3px solid #3db688;
  }

  /* ------------------------------------------------------ Search */
  .search_block {
    padding: 0px;
  }

  .sb-search-open {
    margin-top: 1.25rem;
  }

  .sb-search-input {
    width: 82.5% !important;
    margin: 0;
  }

  input.sb-search-submit {
    width: 15% !important;
  }

  .pdf-search .search-dropdown {
    width: 20%;
    float: left !important;
    border-left: 1px solid #d4d4d4;
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
  }
  .pdf-search .chosen-container {
    width: 20% !important;
    float: left !important;
    margin-bottom: 0px;
  }
  .pdf-search .search-text {
    width: 60%;
    float: left;
  }

  /* ------------------------------------------------------ Breakout section */
  .breakout_section h2 {
    font-size: 48px;
    font-size: 3rem;
  }

  /* ------------------------------------------------------ Content Styles - includes images */
  .content_styles img.size-medium {
    padding-right: 2.0408163265%;
  }

  /* ------------------------------------------------------ Sidebar - contextual menu */
  h2.menu_title {
    text-align: left;
    margin-bottom: 0.625rem;
  }

  ul.contextual_menu {
    text-align: left;
  }
  ul.contextual_menu li {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 18px;
    line-height: 1.125rem;
    display: block;
    padding-right: 0px;
    margin-bottom: 0.3125rem;
    padding-bottom: 0.3125rem;
    border-bottom: 1px solid #efefef;
    font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
  }
  ul.contextual_menu li ul.children {
    margin-top: 0.3125rem;
    padding-top: 0.3125rem;
    border-top: 1px solid #efefef;
    display: block;
    text-align: left;
  }
  ul.contextual_menu li ul.children li:last-child {
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }
}
/* DESKTOP A - 1180 - 12 Columns */
@media (min-width: 73.75em) {
  /* ------------------------------------------------------ Structure */
  .main_wrapper {
    background: white;
    max-width: 73.75rem;
    margin: 0px auto;
    padding: 0px 1.25rem 0px 1.25rem;
  }

  .main, .footer_content, .header_content {
    max-width: 73.75rem;
    margin: 0px auto;
  }

  .main_content {
    padding: 0px;
  }

  /* ------------------------------------------------------ Header */
  .site_header {
    padding: 0px 0px 1.25rem 0px;
  }

  body.home .site_header {
    padding: 0px 0px 1.25rem 0px;
  }

  /* ------------------------------------------------------ Menu */
  /* ------------------------------------------------------ Content Styles - includes images */
  .content_styles img.size-medium {
    padding-right: 2.5641025641%;
  }

  .icon_box [class^=icon-], .icon_box [class*=" icon-"] {
    width: 3.4482758621%;
  }
  .icon_box h1, .icon_box h2, .icon_box h3, .icon_box h4, .icon_box h5 {
    width: 94.8275862069%;
  }
}
/* ------------------------------------------------------ aMember customisations */
/* ------------------------------------------------------ Form Style edits */
.am-form input, .am-form select, .am-form textarea {
  background: inherit;
  border: none !important;
  -moz-border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  color: white !important;
  text-shadow: none !important;
  line-height: 20px;
  line-height: 1.25rem;
}
.am-form input[type=text], .am-form input[type=search], .am-form input[type=email], .am-form select, .am-form textarea, .am-form input[type=password] {
  background: #ccc !important;
  color: #333333 !important;
}
.am-form input[type=text]:hover, .am-form input[type=text]:focus, .am-form input[type=search]:hover, .am-form input[type=search]:focus, .am-form input[type=email]:hover, .am-form input[type=email]:focus, .am-form select:hover, .am-form select:focus, .am-form textarea:hover, .am-form textarea:focus, .am-form input[type=password]:hover, .am-form input[type=password]:focus {
  background: #333333 !important;
  color: white !important;
}
.am-form input[type=submit] {
  padding: 10px !important;
}
.am-form fieldset {
  border: none !important;
}

.element.group a, .element.group .am-cta-signup {
  width: 8.75rem;
  text-transform: uppercase;
  font-family: "tablet-gothic-condensed", Helvetica, Arial, sans-serif;
  background: #333333;
  cursor: pointer;
  color: white;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 40px;
  line-height: 2.5rem;
  display: inline-block;
  vertical-align: middle;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  -webkit-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  padding: 0 !important;
}
.element.group a:hover, .element.group a:active, .element.group .am-cta-signup:hover, .element.group .am-cta-signup:active {
  background: #F16347;
  color: white;
  text-decoration: none;
}

.am-element input[type=submit] {
  padding: 0 !important;
}

/* ------------------------------------------------------ infbox at top of form */
.am-info {
  margin-top: 1.25rem;
  -moz-border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  border: none !important;
}

/* ------------------------------------------------------ infbox at top of form */
.errors ul {
  -moz-border-radius: 0px !important;
  -webkit-border-radius: 0px !important;
  border-radius: 0px !important;
  border: none !important;
}
.errors ul h2 {
  font-size: 24px;
  font-size: 1.5rem;
}

/* ------------------------------------------------------ style the recaptcha form */
.recaptchatable td img {
  width: auto;
}
.recaptchatable a {
  font-size: 14px;
  font-size: 0.875rem;
}

/* ------------------------------------------------------ Hide the amember logom */
.am-copyright {
  display: none;
  visibility: hidden;
}

/*# sourceMappingURL=style.css.map */
