/**
 * /css/system.less
 * 
 * This file contains any custom CSS rules related to overridden  module styles that relate to core functionality that applies across all sites.
 * This is an interim/alternative option to copying the optional/custom modules' CSS file into 
 * /resources/modules/optional/MODULE/css/css-filename.css
 * By retaining basic layout CSS in the modules' externals, this file can be used to 
 * apply site-specific styling that takes advantage of variables and mixins created as part of the main resource set.
 *
 */
/***************/
/*** Message ***/
/***************/
/*******************/
/*** Breadcrumbs ***/
/*******************/
/******************/
/*** Pagination ***/
/******************/
/************************************************************************************/
/*** USAGE:                                                                       ***/
/*** 1) Define company brand colours as variables, eg @precedenceBlue = #00a5e3.  ***/
/*** 2) Use these to override default colours in Quick Config section.            ***/
/*** 3) Update other Quick Config variables as needed.                            ***/
/*** 4) Style further as necessary for each individual project.                   ***/
/************************************************************************************/
/*********************/
/*** Brand Colours ***/
/*********************/
/********************/
/*** Quick Config ***/
/********************/
/* General */
/* Header */
/* Hero */
/* Navigation */
/* Content */
/* Footer Link Colour */
/* Author Link Colour */
/* Forms */
/* Shadows */
/* System Messages */
/*********************/
/*** Preset Styles ***/
/*********************/
/* Preset 1: Blue */
/*
@primaryColour = #0cacee;
@secondaryColour = #032736;
@tertiaryColour = #f4f4f4;
@textColour = #222222;
@alternativeTextColour = #ffffff;
@linkColour = #009EE0;
@linkHoverColour = darken(@linkColour,10%);
*/
/* Preset 2: Yellow and Orange */
/*
@primaryColour = #f2db14;
@secondaryColour = #f26522;
@tertiaryColour = #f4f4f4;
@textColour = #222222;
@alternativeTextColour = @secondaryColour;
@linkColour = #f24400;
@linkHoverColour = darken(@linkColour,10%);
*/
/* Preset 3: Purple and Orange */
/*
@primaryColour = #543378;
@secondaryColour = #a186be;
@tertiaryColour = #f4f4f4;
@textColour = #222222;
@alternativeTextColour = @secondaryColour;
@linkColour = #f7941d;
@linkHoverColour = darken(@linkColour,10%);
*/
/* Preset 4: Black and Plum */
/*
@primaryColour = #000000;
@secondaryColour = #9e0039;
@tertiaryColour = #f4f4f4;
@textColour = #222222;
@alternativeTextColour = @secondaryColour;
@linkColour = @secondaryColour;
@linkHoverColour = darken(@linkColour,10%);
*/
/***********************************************/
/*** Responsive Layout and Global Structures ***/
/***********************************************/
/****************************************/
/* Adjust Padding When Columns Are Used */
/****************************************/
/*************************/
/*** Extra CMS Classes ***/
/*************************/
/**
 * /css/media.less
 * 
 * This file contains any custom css rules related to the media module.
 *
 */
/*************************/
/*** Individual Photos ***/
/*************************/
/*********************/
/*** Photo Gallery ***/
/*********************/
/**
 * /css/modules.less
 * 
 * This file contains any custom CSS rules related to overridden module styles.
 * This is an interim/alternative option to copying the optional/custom modules' CSS file into 
 * /resources/modules/optional/MODULE/css/css-filename.css
 * By retaining basic layout CSS in the modules' externals, this file can be used to 
 * apply site-specific styling that takes advantage of variables and mixins created as part of the main resource set.
 *
 */
/**********************/
/*** Call To Action ***/
/**********************/
/*******************/
/*** News Module ***/
/*******************/
/* Social Icons */
/* General Layout */
.right {
  float: right;
}
@media handheld,only screen and (max-width: 62em) {
  .right {
    float: none;
  }
}
.left {
  float: left;
}
@media handheld,only screen and (max-width: 62em) {
  .left {
    float: none;
  }
}
.txt-right {
  text-align: right;
}
.txt-center {
  text-align: center;
}
.txt-left {
  text-align: left;
}
.clear::after {
  content: ".";
  display: block;
  clear: both;
  height: 0.0625em;
  visibility: hidden;
}
.clr {
  clear: both;
}
.box-shadow {
  -webkit-box-shadow: 1px 1px 2px 2px #999;
  box-shadow: 1px 1px 2px 2px #999;
}
.box-shadow-horizontal {
  -webkit-box-shadow: 0px 23px 34px #999;
  box-shadow: 0px 23px 34px #999;
}
.box-shadow-vertical {
  -webkit-box-shadow: 0px 1px 4px #999;
  box-shadow: 0px 1px 4px #999;
}
.text-shadow {
  text-shadow: 1px 1px 2px #999;
  filter: dropshadow(color=#999,offx=1px,offy=1px);
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
body,
p {
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  margin: 0;
  padding: 0;
}
iframe {
  max-width: 100%;
}
.one-twelfth {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 5.5625em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
}
@media handheld,only screen and (max-width: 62em) {
  .one-twelfth {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-sixth {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 11.875em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
}
@media handheld,only screen and (max-width: 62em) {
  .one-sixth {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-quarter {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 18.1875em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
}
@media handheld,only screen and (max-width: 62em) {
  .one-quarter {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-third {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 24.5em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
}
@media handheld,only screen and (max-width: 62em) {
  .one-third {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-half {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 37.125em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
}
@media handheld,only screen and (max-width: 62em) {
  .one-half {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.three-quarters {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 56.0625em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
}
@media handheld,only screen and (max-width: 62em) {
  .three-quarters {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.two-thirds {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 49.75em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
}
@media handheld,only screen and (max-width: 62em) {
  .two-thirds {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-twelfth-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 5.5625em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .one-twelfth-last {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-sixth-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 11.875em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .one-sixth-last {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-quarter-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 18.1875em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .one-quarter-last {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-third-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 24.5em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .one-third-last {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-half-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 37.125em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .one-half-last {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.three-quarters-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 56.0625em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .three-quarters-last {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.two-thirds-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 49.75em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .two-thirds-last {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.one-half-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 49.5%;
}
@media handheld,only screen and (max-width: 62em) {
  .one-half-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-twelfth-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 7.4166666666667%;
}
@media handheld,only screen and (max-width: 62em) {
  .one-twelfth-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-sixth-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 15.833333333333%;
}
@media handheld,only screen and (max-width: 62em) {
  .one-sixth-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-quarter-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 24.25%;
}
@media handheld,only screen and (max-width: 62em) {
  .one-quarter-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-third-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 32.666666666667%;
}
@media handheld,only screen and (max-width: 62em) {
  .one-third-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.three-quarters-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 74.75%;
}
@media handheld,only screen and (max-width: 62em) {
  .three-quarters-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.two-thirds-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 66.333333333333%;
}
@media handheld,only screen and (max-width: 62em) {
  .two-thirds-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-half-fluid-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 49.5%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .one-half-fluid-last {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-twelfth-fluid-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 7.4166666666667%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .one-twelfth-fluid-last {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-sixth-fluid-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 15.833333333333%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .one-sixth-fluid-last {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-quarter-fluid-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 24.25%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .one-quarter-fluid-last {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.one-third-fluid-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 32.666666666667%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .one-third-fluid-last {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.three-quarters-fluid-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 74.75%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .three-quarters-fluid-last {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.two-thirds-fluid-last {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 66.333333333333%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .two-thirds-fluid-last {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.full {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 75em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
}
@media handheld,only screen and (max-width: 62em) {
  .full {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.msg {
  color: #ffffff;
  background: #F39800;
  width: auto !important;
  border: 0;
  padding: 0.5em 2.5em;
  margin: -10px 0 10px 0;
}
@media handheld,only screen and (max-width: 62em) {
  .msg {
    margin: -10px -10px 10px -10px;
  }
}
.msg ul {
  background: none !important;
  border: 0 !important;
  margin: 0 !important;
  list-style-type: none;
}
.msg ul li {
  margin: 0;
}
.msg a {
  color: #ffffff;
}
.msg.errors {
  color: #ffffff;
  background: #900900;
}
ul.breadcrumbs {
  list-style-type: none;
  margin: 0 0 10px 0 !important;
}
ul.breadcrumbs li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #dedede;
  font-size: 0.9em;
  padding: 0 4px 0 0;
}
ul.breadcrumbs li a {
  color: #dedede;
  text-decoration: none;
}
ul.breadcrumbs li a:hover {
  color: #ababab;
}
.pagination {
  text-align: center;
}
.pagination ul.pagination {
  display: inline-block;
  width: auto;
  margin: 0;
  overflow: auto;
}
.pagination ul.pagination li {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  display: inline-block;
  font-size: 0.9em;
  margin: 0;
}
.pagination ul.pagination li span.disabled {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  display: block;
  color: white;
  background-color: rgba(57,75,93,0.8);
  padding: 0em 0.75em;
  cursor: default;
}
.pagination ul.pagination li a {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  display: block;
  color: white;
  background-color: #394b5d;
  text-decoration: none;
  padding: 0em 0.75em;
  cursor: pointer;
}
.pagination ul.pagination li a:hover {
  color: white;
  background-color: #2f3e4d;
}
.pagination ul.pagination li.current a {
  color: white;
  background-color: #009EE0;
  font-weight: bold;
  cursor: default;
}
.pagination ul.pagination li.current a:hover {
  color: white;
  background-color: #007aad;
}
p {
  margin: 1em 0;
}
a {
  color: #009EE0;
}
a:hover {
  color: #007aad;
}
@media handheld,only screen and (max-width: 62em) {
  a:hover {
    color: #009EE0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #394b5d;
  font-weight: normal;
  font-family: 'Oswald', sans-serif;
  margin: 1em 0em 0.2em 0em;
}
h1 {
  font-size: 1.5em;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid #f16024;
}
h2 {
  font-size: 1.3em;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid #f16024;
  background-color: transparent;
}
h2 a {
  background-image: url('../../include/resources/centrobuild/images/general-arrow.png');
  background-image: url('../../include/resources/centrobuild/images/general-arrow.svg'), none;
  background-position: top right;
  background-repeat: no-repeat;
}
h3 {
  font-size: 1.3em;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px dashed ;
  font-weight: bold;
}
h4 {
  font-size: 1.1em;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid #f16024;
}
h5 {
  font-size: 1em;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid #f16024;
}
h6 {
  font-size: 1em;
  line-height: 1.2em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 2px solid #f16024;
}
ol,
ul {
  margin: 1em 0em 1em 2em;
}
ol li,
ul li {
  margin-bottom: 5px;
}
ol li ol,
ol li ul,
ul li ol,
ul li ul {
  margin: 0.5em 0em 0.5em 2em;
}
table {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border: 1px solid #f16024;
  border-bottom: none;
  border-collapse: collapse;
  margin: 1.5em 0em 2em 0em;
  overflow: hidden;
}
@media handheld,only screen and (max-width: 62em) {
  table thead {
    display: none;
  }
}
table thead td {
  color: #ffffff;
  background: #f16024;
  font-size: 1.25em;
  font-family: 'Oswald', sans-serif;
  padding: 10px;
}
table td,
table th {
  color: #222222;
  background: #ffffff;
  border-bottom: 1px solid #f16024;
  vertical-align: top;
  padding: 5px 10px;
}
@media handheld,only screen and (max-width: 62em) {
  table td,
  table th {
    display: block;
    width: 100% !important;
  }
}
table th {
  color: #ffffff;
  background: #f16024;
  font-weight: bold;
}
table th.txt-right {
  text-align: right;
}
@media handheld,only screen and (max-width: 62em) {
  table tfoot {
    display: none;
  }
}
.table-invisible {
  border: 0;
}
.table-invisible tr,
.table-invisible th {
  color: #222222 !important;
}
.table-invisible td,
.table-invisible th {
  background: transparent;
  border: 0;
  padding: 0.2em 1em 0.2em 0em;
}
hr {
  color: #f7f7f7;
  background: #f7f7f7;
  height: 1px;
  margin: 1em 0;
}
blockquote {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  color: #f16024;
  background: #ffffff;
  font-size: 1.3em;
  text-align: center;
  margin: 2em auto;
  padding: 1em 2em;
  font-weight: bold;
  line-height: 1.6em;
}
.button,
.submit {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  color: #ffffff;
  background-color: #394b5d;
  background-image: url('../../include/resources/centrobuild/images/button-bullet.png');
  background-image: url('../../include/resources/centrobuild/images/button-bullet.svg'), none;
  background-position: 96% 50%;
  background-repeat: no-repeat;
  text-decoration: none;
  border: 0px solid #394b5d;
  margin: 0.4em 0em;
  padding: 0.8em 2.25em 0.8em 0.9em;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
.button .button-arrow,
.submit .button-arrow {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpolygon%20fill%3D%22%23ffffff%22%20points%3D%220%2C7%200%2C0%204%2C3.5%20%22%2F%3E%3C%2Fsvg%3E');
  width: 5px;
  height: 7px;
  vertical-align: middle;
}
.button img,
.submit img {
  vertical-align: middle;
  margin: -3px 5px 0 0;
}
.button:hover,
.submit:hover {
  color: #ffffff;
  background-color: #43586d;
}
.button-small {
  padding: 0.8em 1.8em 0.8em 0.9em;
}
.button-alt .button {
  padding: 0.8em 1.8em 0.8em 0.9em;
}
.nosplit {
  white-space: nowrap;
}
@media handheld,only screen and (max-width: 62em) {
  .nosplit {
    white-space: normal;
  }
}
.no-wrap {
  clear: both;
}
.no-border {
  padding: 0em;
  border: none;
}
.content-block .one-half-fluid h1:first-child,
.content-block .one-half-fluid h2:first-child,
.content-block .one-half-fluid h3:first-child,
.content-block .one-half-fluid h4:first-child,
.content-block .one-half-fluid h5:first-child,
.content-block .one-half-fluid h6:first-child,
.content-block .one-half-fluid p:first-child,
.content-block .one-half-fluid ol:first-child,
.content-block .one-half-fluid ul:first-child,
.content-block .one-half-fluid table:first-child,
.content-block .one-twelfth-fluid h1:first-child,
.content-block .one-twelfth-fluid h2:first-child,
.content-block .one-twelfth-fluid h3:first-child,
.content-block .one-twelfth-fluid h4:first-child,
.content-block .one-twelfth-fluid h5:first-child,
.content-block .one-twelfth-fluid h6:first-child,
.content-block .one-twelfth-fluid p:first-child,
.content-block .one-twelfth-fluid ol:first-child,
.content-block .one-twelfth-fluid ul:first-child,
.content-block .one-twelfth-fluid table:first-child,
.content-block .one-sixth-fluid h1:first-child,
.content-block .one-sixth-fluid h2:first-child,
.content-block .one-sixth-fluid h3:first-child,
.content-block .one-sixth-fluid h4:first-child,
.content-block .one-sixth-fluid h5:first-child,
.content-block .one-sixth-fluid h6:first-child,
.content-block .one-sixth-fluid p:first-child,
.content-block .one-sixth-fluid ol:first-child,
.content-block .one-sixth-fluid ul:first-child,
.content-block .one-sixth-fluid table:first-child,
.content-block .one-quarter-fluid h1:first-child,
.content-block .one-quarter-fluid h2:first-child,
.content-block .one-quarter-fluid h3:first-child,
.content-block .one-quarter-fluid h4:first-child,
.content-block .one-quarter-fluid h5:first-child,
.content-block .one-quarter-fluid h6:first-child,
.content-block .one-quarter-fluid p:first-child,
.content-block .one-quarter-fluid ol:first-child,
.content-block .one-quarter-fluid ul:first-child,
.content-block .one-quarter-fluid table:first-child,
.content-block .one-third-fluid h1:first-child,
.content-block .one-third-fluid h2:first-child,
.content-block .one-third-fluid h3:first-child,
.content-block .one-third-fluid h4:first-child,
.content-block .one-third-fluid h5:first-child,
.content-block .one-third-fluid h6:first-child,
.content-block .one-third-fluid p:first-child,
.content-block .one-third-fluid ol:first-child,
.content-block .one-third-fluid ul:first-child,
.content-block .one-third-fluid table:first-child,
.content-block .three-quarters-fluid h1:first-child,
.content-block .three-quarters-fluid h2:first-child,
.content-block .three-quarters-fluid h3:first-child,
.content-block .three-quarters-fluid h4:first-child,
.content-block .three-quarters-fluid h5:first-child,
.content-block .three-quarters-fluid h6:first-child,
.content-block .three-quarters-fluid p:first-child,
.content-block .three-quarters-fluid ol:first-child,
.content-block .three-quarters-fluid ul:first-child,
.content-block .three-quarters-fluid table:first-child,
.content-block .two-thirds-fluid h1:first-child,
.content-block .two-thirds-fluid h2:first-child,
.content-block .two-thirds-fluid h3:first-child,
.content-block .two-thirds-fluid h4:first-child,
.content-block .two-thirds-fluid h5:first-child,
.content-block .two-thirds-fluid h6:first-child,
.content-block .two-thirds-fluid p:first-child,
.content-block .two-thirds-fluid ol:first-child,
.content-block .two-thirds-fluid ul:first-child,
.content-block .two-thirds-fluid table:first-child,
.content-block .one-half-fluid-last h1:first-child,
.content-block .one-half-fluid-last h2:first-child,
.content-block .one-half-fluid-last h3:first-child,
.content-block .one-half-fluid-last h4:first-child,
.content-block .one-half-fluid-last h5:first-child,
.content-block .one-half-fluid-last h6:first-child,
.content-block .one-half-fluid-last p:first-child,
.content-block .one-half-fluid-last ol:first-child,
.content-block .one-half-fluid-last ul:first-child,
.content-block .one-half-fluid-last table:first-child,
.content-block .one-twelfth-fluid-last h1:first-child,
.content-block .one-twelfth-fluid-last h2:first-child,
.content-block .one-twelfth-fluid-last h3:first-child,
.content-block .one-twelfth-fluid-last h4:first-child,
.content-block .one-twelfth-fluid-last h5:first-child,
.content-block .one-twelfth-fluid-last h6:first-child,
.content-block .one-twelfth-fluid-last p:first-child,
.content-block .one-twelfth-fluid-last ol:first-child,
.content-block .one-twelfth-fluid-last ul:first-child,
.content-block .one-twelfth-fluid-last table:first-child,
.content-block .one-sixth-fluid-last h1:first-child,
.content-block .one-sixth-fluid-last h2:first-child,
.content-block .one-sixth-fluid-last h3:first-child,
.content-block .one-sixth-fluid-last h4:first-child,
.content-block .one-sixth-fluid-last h5:first-child,
.content-block .one-sixth-fluid-last h6:first-child,
.content-block .one-sixth-fluid-last p:first-child,
.content-block .one-sixth-fluid-last ol:first-child,
.content-block .one-sixth-fluid-last ul:first-child,
.content-block .one-sixth-fluid-last table:first-child,
.content-block .one-quarter-fluid-last h1:first-child,
.content-block .one-quarter-fluid-last h2:first-child,
.content-block .one-quarter-fluid-last h3:first-child,
.content-block .one-quarter-fluid-last h4:first-child,
.content-block .one-quarter-fluid-last h5:first-child,
.content-block .one-quarter-fluid-last h6:first-child,
.content-block .one-quarter-fluid-last p:first-child,
.content-block .one-quarter-fluid-last ol:first-child,
.content-block .one-quarter-fluid-last ul:first-child,
.content-block .one-quarter-fluid-last table:first-child,
.content-block .one-third-fluid-last h1:first-child,
.content-block .one-third-fluid-last h2:first-child,
.content-block .one-third-fluid-last h3:first-child,
.content-block .one-third-fluid-last h4:first-child,
.content-block .one-third-fluid-last h5:first-child,
.content-block .one-third-fluid-last h6:first-child,
.content-block .one-third-fluid-last p:first-child,
.content-block .one-third-fluid-last ol:first-child,
.content-block .one-third-fluid-last ul:first-child,
.content-block .one-third-fluid-last table:first-child,
.content-block .three-quarters-fluid-last h1:first-child,
.content-block .three-quarters-fluid-last h2:first-child,
.content-block .three-quarters-fluid-last h3:first-child,
.content-block .three-quarters-fluid-last h4:first-child,
.content-block .three-quarters-fluid-last h5:first-child,
.content-block .three-quarters-fluid-last h6:first-child,
.content-block .three-quarters-fluid-last p:first-child,
.content-block .three-quarters-fluid-last ol:first-child,
.content-block .three-quarters-fluid-last ul:first-child,
.content-block .three-quarters-fluid-last table:first-child,
.content-block .two-thirds-fluid-last h1:first-child,
.content-block .two-thirds-fluid-last h2:first-child,
.content-block .two-thirds-fluid-last h3:first-child,
.content-block .two-thirds-fluid-last h4:first-child,
.content-block .two-thirds-fluid-last h5:first-child,
.content-block .two-thirds-fluid-last h6:first-child,
.content-block .two-thirds-fluid-last p:first-child,
.content-block .two-thirds-fluid-last ol:first-child,
.content-block .two-thirds-fluid-last ul:first-child,
.content-block .two-thirds-fluid-last table:first-child {
  margin-top: 0em;
}
.content-block .one-half-fluid,
.content-block .one-twelfth-fluid,
.content-block .one-sixth-fluid,
.content-block .one-quarter-fluid,
.content-block .one-third-fluid,
.content-block .three-quarters-fluid,
.content-block .two-thirds-fluid {
  padding-right: 2%;
}
.media-thumbnail {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
  margin-bottom: 0.6em;
}
@media handheld,only screen and (max-width: 62em) {
  .media-thumbnail {
    display: block;
    float: none;
    text-align: center;
    margin: 1.5em auto;
  }
}
.media-thumbnail img {
  background: transparent;
  border: 0px solid #d9d9d9;
  border-radius: 0;
  max-width: 100%;
  vertical-align: middle;
  padding: 0px;
}
.media-thumbnail .media-caption {
  clear: both;
  display: block;
  color: #222222;
  font-size: 0.85em;
  text-align: center;
  line-height: 1.4em;
  margin: 0.5em auto;
}
@media handheld,only screen and (max-width: 62em) {
  .media-thumbnail .media-caption {
    text-align: center;
    margin: 0.5em auto 1em auto;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .media-thumbnail.left,
  .media-thumbnail.right {
    display: block;
    float: none;
    text-align: center;
  }
}
.media-thumbnail.left {
  margin: 0.5em 1em 0.5em 0em;
}
@media handheld,only screen and (max-width: 62em) {
  .media-thumbnail.left {
    margin: 0.5em auto;
  }
}
.media-thumbnail.right {
  margin: 0.5em 0em 0.5em 1em;
}
@media handheld,only screen and (max-width: 62em) {
  .media-thumbnail.right {
    margin: 0.5em auto;
  }
}
.media-gallery {
  margin-top: 1.5em;
  margin-right: -35px;
}
@media handheld,only screen and (max-width: 62em) {
  .media-gallery {
    margin-right: 0;
  }
}
.media-gallery .media-thumbnail {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 24.25%;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  vertical-align: top;
  overflow: hidden;
}
@media handheld,only screen and (max-width: 62em) {
  .media-gallery .media-thumbnail {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .media-gallery .media-thumbnail {
    display: block;
    text-align: center;
    width: auto;
    height: auto;
    margin: 10px auto;
  }
}
.media-gallery .media-thumbnail img {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  background: transparent;
  border: 0px solid #d9d9d9;
  max-width: 100%;
  vertical-align: middle;
  padding: 0px;
}
.media-gallery .media-thumbnail .media-original-link {
  display: block;
  text-align: center;
  margin: 0.5em auto;
}
.page-region .buttons {
  margin-left: 0 !important;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form {
    width: 100% !important;
  }
}
.page-region form.f {
  color: #222222;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  border: 0;
  max-width: 100%;
  padding: 0;
  margin: 2em 0em;
  overflow: hidden;
}
.page-region form.f div.buttons,
.page-region form.f p.buttons {
  margin-top: 0px;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form.f div.buttons,
  .page-region form.f p.buttons {
    text-align: center;
    margin-left: 10px;
  }
}
.page-region form.f div.buttons button,
.page-region form.f p.buttons button {
  padding: 0.8em 1.5em 0.8em 0.9em;
}
.page-region form .inline-field {
  padding: 0.7em 1.5em;
}
.page-region form .form-row {
  color: #222222;
  background: transparent;
  padding: 6px 0;
  overflow: hidden;
}
.page-region form .form-row::after {
  content: ".";
  display: block;
  clear: both;
  height: 0.0625em;
  visibility: hidden;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row {
    padding: 0.6em 0em;
  }
}
.page-region form .form-row label {
  width: 100%;
  padding: 0.3em 0em 0 0em;
  font-weight: bold;
  font-size: 1.1em;
}
.page-region form .form-row label.rhs_label {
  float: none;
  width: auto;
}
.page-region form .form-row .field {
  margin-left: 0;
}
.page-region form .form-row .field .validation-advice {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  color: #ffffff;
  background: #a90000;
  padding: 0.2em 0.35em;
  margin: 0.3em 0.2em;
}
.page-region form .form-row .field span.note {
  font-size: 20px;
  color: #ccc;
  display: block;
}
.page-region form .form-row .field span.note.required {
  color: #b80000;
  background: transparent;
  vertical-align: top;
  padding: 21px 5px;
  margin-left: 80%;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row .field #comment_field {
    width: 95% !important;
  }
}
.page-region form .form-row input[type=text],
.page-region form .form-row input[type=password],
.page-region form .form-row select,
.page-region form .form-row textarea {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  color: #222222;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  width: 80%;
  max-width: 100%;
  border: 1px solid #d3d3d3;
  padding: 10px;
  margin: 3px 0;
  float: left;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row input[type=text],
  .page-region form .form-row input[type=password],
  .page-region form .form-row select,
  .page-region form .form-row textarea {
    width: 95%;
  }
}
@media handheld,only screen and (max-width: 321px) {
  .page-region form .form-row input[type=text],
  .page-region form .form-row input[type=password],
  .page-region form .form-row select,
  .page-region form .form-row textarea {
    width: 90%;
  }
}
.page-region form .form-row input[type=text]:focus,
.page-region form .form-row input[type=password]:focus,
.page-region form .form-row select:focus,
.page-region form .form-row textarea:focus {
  outline: none;
  border-color: #f16024;
}
.page-region form .form-row input[type=radio],
.page-region form .form-row input[type=checkbox] {
  border: 0;
  margin: 0 4px 0 0;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row select,
  .page-region form .form-row option {
    width: 90%;
    overflow: hidden;
  }
}
.page-region form .form-row input.small,
.page-region form .form-row textarea.small,
.page-region form .form-row select.small {
  width: 20%;
  min-width: 30px;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row input.small,
  .page-region form .form-row textarea.small,
  .page-region form .form-row select.small {
    width: 50%;
  }
}
.page-region form .form-row input.medium,
.page-region form .form-row textarea.medium,
.page-region form .form-row select.medium {
  width: 60%;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row input.medium,
  .page-region form .form-row textarea.medium,
  .page-region form .form-row select.medium {
    width: 95%;
  }
}
.page-region form .form-row input.large,
.page-region form .form-row textarea.large,
.page-region form .form-row select.large {
  width: 80%;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row input.large,
  .page-region form .form-row textarea.large,
  .page-region form .form-row select.large {
    width: 95%;
  }
}
.page-region form .form-row button.submit {
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  -o-border-radius: 2px;
  color: #ffffff;
  background: #394b5d;
  border: 0px solid #394b5d;
  padding: 0.8em 0.9em;
  float: left;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region form .form-row button.submit {
    width: 98%;
  }
}
.page-region form .form-row button.submit:hover {
  color: #ffffff;
  background: #43586d;
}
.page-region form .form-row .buttons {
  text-align: center;
  border: none;
}
.page-region form.medium-label .buttons {
  margin-top: 0px;
}
.page-region form.medium-label .buttons.form-row {
  border-bottom: none;
}
.page-region form.large-label label {
  width: 160px;
  margin-right: 10px;
}
.page-region form.large-label .field {
  margin-left: 170px;
}
#user_pass_login_form .buttons.form-row {
  border-bottom: none;
}
#verify_field {
  width: 177px;
  max-width: 100%;
  margin-left: 12px;
}
@media handheld,only screen and (max-width: 62em) {
  #verify_field {
    margin-left: 0px;
  }
}
@media handheld,only screen and (max-width: 62em) {
  body .content-block form {
    max-width: 100%;
  }
  body .content-block form .form-row {
    max-width: 100%;
  }
  body .content-block form .form-row input[type=text],
  body .content-block form .form-row input[type=password],
  body .content-block form .form-row select,
  body .content-block form .form-row textarea,
  body .content-block form .form-row .buttons {
    max-width: 90%;
  }
  body .content-block form .form-row .field,
  body .content-block form .form-row .large-label .field,
  body .content-block form .form-row .inline-field {
    clear: both;
    display: block;
    margin: 0;
    padding: 0.5em 0em 0.1em 0em;
  }
  body .content-block form .form-row label,
  body .content-block form .form-row .large-label label {
    float: none;
    width: auto;
    padding: 0.5em 0em 0.1em 0em;
  }
  body .content-block form div.buttons,
  body .content-block form p.buttons {
    text-align: left;
    margin: 5px 0px 5px 10px;
  }
}
.cta {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 32.666666666667%;
}
@media handheld,only screen and (max-width: 62em) {
  .cta {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .cta {
    max-width: 300px;
    margin: 5px auto;
  }
}
.cta .cta-inner {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  color: #ffffff;
  background: #f16024;
  text-align: center;
  padding: 0px;
  margin-bottom: 10px;
}
.cta .cta-inner a {
  display: block;
  color: #ffffff;
  font-family: 'Oswald', sans-serif;
  text-decoration: none;
  border: 2px solid #f16024;
  padding: 5px;
}
.cta .cta-inner a:hover {
  color: #ffffff;
  border-color: #ffffff;
}
.cta .cta-inner a .media-thumbnail {
  margin-bottom: 0em;
}
@media handheld,only screen and (max-width: 62em) {
  .cta .cta-inner a .media-thumbnail {
    padding: 0em;
    margin: 0em;
  }
}
.cta .cta-inner a .media-thumbnail img.media-size-call-to-action {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  border: none;
  padding: 0px;
  margin: 0em;
}
.cta .cta-inner a .cta-title {
  display: block;
  margin: 0.75em;
}
.news-posts-list .news-post .news-post-info {
  color: #626262;
}
.news-posts-single .news-post-information .news-post-social,
.news-posts-single .news-post-information .news-date {
  margin-top: 8px;
}
@media handheld,only screen and (max-width: 62em) {
  .news-posts-single .news-post-information .news-post-social,
  .news-posts-single .news-post-information .news-date {
    display: block;
    float: none !important;
    text-align: left !important;
    margin: 0.25em 0em;
  }
}
.news-posts-single .news-post-information .news-date {
  color: #626262;
}
@media handheld,only screen and (max-width: 62em) {
  .news-posts-single #cms_page_comment_form .form-row div.field {
    margin-left: 0px;
  }
}
.news-posts-single #cms_page_comment_form .form-row:last-child {
  border-bottom: none;
}
.social-icon {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  display: inline-block;
  background-color: transparent;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 50px 50px;
  width: 50px;
  height: 50px;
  border: 2px solid transparent;
  margin: 0em 0.5em 0.25em 0em;
}
.social-icon:hover {
  border-color: #ffffff;
}
.social-icon.facebook {
  background-image: url('../../include/resources/centrobuild/images/social-icons/facebook.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/facebook.svg'), none;
}
.social-icon.twitter {
  background-image: url('../../include/resources/centrobuild/images/social-icons/twitter.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/twitter.svg'), none;
}
.social-icon.linked-in {
  background-image: url('../../include/resources/centrobuild/images/social-icons/linked-in.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/linked-in.svg'), none;
}
.social-icon.google-plus {
  background-image: url('../../include/resources/centrobuild/images/social-icons/google-plus.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/google-plus.svg'), none;
}
.social-icon.pinterest {
  background-image: url('../../include/resources/centrobuild/images/social-icons/pinterest.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/pinterest.svg'), none;
}
.social-icon.instagram {
  background-image: url('../../include/resources/centrobuild/images/social-icons/instagram.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/instagram.svg'), none;
}
.social-icon.youtube {
  background-image: url('../../include/resources/centrobuild/images/social-icons/youtube.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/youtube.svg'), none;
}
.social-icon.skype {
  background-image: url('../../include/resources/centrobuild/images/social-icons/skype.png');
  background-image: url('../../include/resources/centrobuild/images/social-icons/skype.svg'), none;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}
body,
html {
  height: 100%;
}
html {
  -webkit-text-size-adjust: none;
}
body {
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.30em;
}
.page-region {
  width: 100%;
  margin: 0;
  position: relative;
  overflow: hidden;
  z-index: 3;
}
@media handheld,only screen and (max-width: 62em) {
  .page-region {
    padding: 0.5em 1em;
  }
}
.header-wrapper .header-block {
  font-size: 13px;
  width: 75em;
  margin: 0 auto;
  padding: 0;
  -webkit-box-shadow: 0px 23px 34px #999;
  box-shadow: 0px 23px 34px #999;
  margin: 0 auto;
  padding: 1.5em 0px;
  color: #222222;
  background: #ffffff;
}
@media handheld,only screen and (max-width: 62em) {
  .header-wrapper .header-block {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .header-wrapper .header-block {
    padding: 10px;
  }
}
.header-wrapper .header-block .logo-cell {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 37.125em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  padding-left: 20px;
  vertical-align: middle;
}
@media handheld,only screen and (max-width: 62em) {
  .header-wrapper .header-block .logo-cell {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .header-wrapper .header-block .logo-cell {
    text-align: center;
    padding-left: 0;
  }
}
.header-wrapper .header-block .header-right-cell {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  margin-right: 0.5em;
  vertical-align: top;
  width: 37.125em;
  /*
  @media handheld, only screen and (max-width: unit(@pxBlockWidth - 1, 'px')) {
    @pxGutterWidth: ((@pcGutterWidth / 100) * 768);
    margin-right: unit(@pxGutterWidth - 4, 'px');
    width: unit(((((@colspan / @noCols) * ((100 + @pcGutterWidth) - (@noCols * @pcGutterWidth))) + ((@colspan * @pcGutterWidth) - @pcGutterWidth)) / 100) * 768, 'px');
  }
  */
  margin-right: -0.25em;
  text-align: right;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
}
@media handheld,only screen and (max-width: 62em) {
  .header-wrapper .header-block .header-right-cell {
    display: block;
    width: auto;
    margin-right: 0;
  }
}
.header-wrapper .header-block .header-right-cell p {
  color: #f16024;
  font-size: 1.8em;
  padding: 0.25em 1em;
  line-height: 31px;
}
@media handheld,only screen and (max-width: 62em) {
  .header-wrapper .header-block .header-right-cell p {
    margin: 0;
    line-height: 31px;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .header-wrapper .header-block .header-right-cell {
    text-align: center;
    padding-bottom: 8px;
  }
}
.header-wrapper .header-block a {
  color: #009EE0;
}
.header-wrapper .header-block a:hover {
  color: #007aad;
}
div.block-element {
  overflow: hidden;
}
.hero-wrapper .hero-block {
  font-size: 13px;
  width: 75em;
  margin: 0 auto;
  padding: 0;
  -webkit-box-shadow: 0px 23px 34px #999;
  box-shadow: 0px 23px 34px #999;
  position: relative;
  z-index: 10;
}
@media handheld,only screen and (max-width: 62em) {
  .hero-wrapper .hero-block {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.hero-wrapper .hero-block .slidetitle {
  background-color: rgba(255,255,255,0.7);
  height: 304px;
  margin-top: -321px;
}
@media handheld,only screen and (max-width: 62em) {
  .hero-wrapper .hero-block .slidetitle {
    margin-top: 0;
    height: auto;
  }
}
.hero-wrapper .hero-block .slidetitle .slidetitlebox {
  margin-left: 620px;
  padding: 8px 30px 20px 25px;
  position: relative;
  text-align: center;
  max-height: 89%;
  margin-top: 35px;
}
@media handheld,only screen and (max-width: 62em) {
  .hero-wrapper .hero-block .slidetitle .slidetitlebox {
    margin-left: auto;
    margin-top: 10px;
  }
}
.hero-wrapper .hero-block .slidetitle p {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  line-height: 29px;
}
.hero-wrapper .hero-block .hero-images {
  height: 286px;
  z-index: 1;
}
@media handheld,only screen and (max-width: 62em) {
  .hero-wrapper .hero-block .hero-images {
    height: auto;
  }
}
.hero-wrapper .hero-block .hero-images img {
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  width: 63.9%;
  height: auto;
  left: 0;
  top: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .hero-wrapper .hero-block .hero-images img {
    width: 100%;
  }
}
.hero-wrapper .hero-block .hero-images img#hero-spacer {
  width: 100%;
  height: auto;
  position: relative;
}
.nav-wrapper .nav-block {
  font-size: 13px;
  width: 75em;
  margin: 0 auto;
  padding: 0;
  -webkit-box-shadow: 0px 23px 34px #999;
  box-shadow: 0px 23px 34px #999;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  margin: 0 auto;
  color: white;
  background: #394b5d;
  text-align: center;
  z-index: 20;
  font-family: 'Oswald', sans-serif;
  /* Top Level */
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block {
    overflow: hidden;
    text-align: left;
  }
}
.nav-wrapper .nav-block .nav-toggle {
  display: none;
  color: white;
  background: transparent;
  font-size: 1.2em;
  text-transform: uppercase;
  padding: 0.75em 1.5em;
  cursor: pointer;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block .nav-toggle {
    display: block;
  }
}
.nav-wrapper .nav-block .nav-toggle .toggle-icon {
  float: right;
  background-color: transparent;
  background-image: url('../../include/resources/centrobuild/images/g-menu.png'), none;
  background-image: url('../../include/resources/centrobuild/images/g-menu.svg'), none;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  width: 23px;
  height: 23px;
  margin-top: -2px;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block .nav-cell {
    display: none;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block.open .nav-cell {
    display: block;
  }
}
.nav-wrapper .nav-block ul {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul {
    display: block;
    text-align: left;
    border: 0;
    padding: 10px 0;
  }
}
.nav-wrapper .nav-block ul li {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  position: relative;
  border-right: 1px solid #f16024;
  padding: 0;
  margin: 0;
  /* 1st Dropdown Level */
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li {
    display: block;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid #f16024;
  }
}
.nav-wrapper .nav-block ul li a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 1em 4.10em;
  white-space: nowrap;
  font-size: 15px;
  text-transform: uppercase;
  /* UN-COMMENT TO ENABLE TOP-LEVEL PARENT ARROWS
          &.has_children {
            background-image: svg(~'<svg xmlns="http://www.w3.org/2000/svg" width="34px" height="4px"><polygon fill="@{navArrowColour}" points="7,0 14,0 10.5,4"/></svg>'); 
            background-position: center right;
            background-repeat: no-repeat;
            padding-right: 2.5em;
            
            @media handheld, only screen and (max-width: @responsiveWidth) {
              background-image: none;
              padding-right: 0;
            }
          }
          */
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li a {
    padding: 1em 1.5em;
  }
}
.nav-wrapper .nav-block ul li a:hover {
  color: white;
  /* UN-COMMENT TO ENABLE TOP-LEVEL PARENT ARROWS
            &.has_children {
              background-image: svg(~'<svg xmlns="http://www.w3.org/2000/svg" width="34px" height="4px"><polygon fill="@{navArrowHoverColour}" points="7,0 14,0 10.5,4"/></svg>');   
              background-position: center right;
              background-repeat: no-repeat;
              padding-right: 2.5em;

              @media handheld, only screen and (max-width: @responsiveWidth) {
                background-image: none;
                padding-right: 0;
              }              
            }
            */
  background: #2f3e4d;
}
.nav-wrapper .nav-block ul li:first-child {
  border-left: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li:first-child {
    border: 0;
  }
}
.nav-wrapper .nav-block ul li:last-child {
  border-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li:last-child {
    border: 0;
    border-top: 1px solid #f16024;
  }
}
.nav-wrapper .nav-block ul li:hover ul {
  transition: top linear 0.2s;
  -moz-transition: top linear 0.2s;
  -webkit-transition: top linear 0.2s;
  -o-transition: top linear 0.2s;
  top: 3.8em;
  height: auto;
  visibility: visible;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li:hover ul {
    top: auto;
  }
}
.nav-wrapper .nav-block ul li ul {
  display: block;
  position: absolute;
  top: 3.1em;
  left: 0px;
  right: auto;
  background: #394b5d;
  min-width: 103%;
  height: auto;
  margin: 0;
  padding: 0;
  visibility: hidden;
  z-index: 20;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul {
    display: none;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    -o-border-radius: 0px;
    position: static;
    top: auto;
    height: auto;
    background: transparent;
    border: 0;
    margin-bottom: -1px;
    visibility: visible;
    overflow: hidden;
  }
}
.nav-wrapper .nav-block ul li ul li {
  display: block;
  background: #394b5d;
  line-height: 1.8em;
  text-align: left;
  border: none;
  /* 2nd Dropdown Level */
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li {
    background: none;
    -ms-filter: none;
    border: 0;
    padding-left: 20px;
  }
}
.nav-wrapper .nav-block ul li ul li:first-child {
  border: none;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li:first-child {
    border: 0;
    border-top: 0;
  }
}
.nav-wrapper .nav-block ul li ul li:last-child {
  border: none;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li:last-child {
    border: 0;
    border-top: 0;
  }
}
.nav-wrapper .nav-block ul li ul li a {
  color: white;
  padding: 0.5em 2em 0.5em 1em;
  /* UN-COMMENT TO ENABLE TOP-LEVEL PARENT ARROWS
              &.has_children {
                background-image: svg(~'<svg xmlns="http://www.w3.org/2000/svg" width="31px" height="7px"><polygon fill="@{navArrowColour}" points="7,7 7,0 11,3.5 "/></svg>');
                background-position: center right;
                background-repeat: no-repeat;
                padding-right: 2.5em;
                
                @media handheld, only screen and (max-width: @responsiveWidth) {
                  background-image: none;
                  padding-right: 0;
                }            
              }              
              */
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li a {
    padding: 3px 0 3px 20px;
    margin: 3px 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li a:last-child {
    border: 0;
    border-top: 0;
  }
}
.nav-wrapper .nav-block ul li ul li a:hover {
  color: white;
  /* UN-COMMENT TO ENABLE TOP-LEVEL PARENT ARROWS
                &.has_children {
                  background-image: svg(~'<svg xmlns="http://www.w3.org/2000/svg" width="31px" height="7px"><polygon fill="@{navArrowHoverColour}" points="7,7 7,0 11,3.5 "/></svg>');
                  background-position: center right;
                  background-repeat: no-repeat;
                  padding-right: 2.5em;
                  
                  @media handheld, only screen and (max-width: @responsiveWidth) {
                    background-image: none;
                    padding-right: 0;
                  }                  
                }
                */
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li a:hover {
    color: white;
  }
}
.nav-wrapper .nav-block ul li ul li a.disabled {
  color: #aaaaaa;
  background-color: transparent;
  background-image: url('../../include/resources/centrobuild/images/g-disabled.png');
  background-image: url('../../include/resources/centrobuild/images/g-disabled.svg'), none;
  background-position: right center;
  background-repeat: no-repeat;
  cursor: default;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li a.disabled {
    opacity: 0.7;
  }
}
.nav-wrapper .nav-block ul li ul li > ul {
  display: none;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li > ul {
    display: block;
  }
}
.nav-wrapper .nav-block ul li ul li:hover > ul {
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
}
@media handheld,only screen and (max-width: 62em) {
  .nav-wrapper .nav-block ul li ul li:hover > ul {
    position: static;
  }
}
.content-wrapper .content-block {
  font-size: 13px;
  width: 75em;
  margin: 0 auto;
  padding: 0;
  -webkit-box-shadow: 0px 23px 34px #999;
  box-shadow: 0px 23px 34px #999;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
  margin: 0 auto;
  padding: 3em 2em;
  color: #222222;
  background: #ffffff;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block {
    padding: 10px;
  }
}
.content-wrapper .content-block h2 a {
  display: block;
  text-decoration: none;
}
.content-wrapper .content-block .content-fluid {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 66.333333333333%;
  padding-right: 3%;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .content-fluid {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
.content-wrapper .content-block .content-fluid .fluid-home {
  padding-top: 2%;
}
.content-wrapper .content-block .content-fluid .one-half-fluid {
  margin-bottom: 10px;
}
.content-wrapper .content-block .sidebar {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 32.666666666667%;
  padding-right: 0;
  background: #f16024;
  color: #ffffff;
  padding: 1.5em 2em 0.5em 2em;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar {
    padding: 1.5em;
  }
}
.content-wrapper .content-block .sidebar .section-wrapper {
  clear: both;
}
.content-wrapper .content-block .sidebar .boxhome {
  margin-bottom: 2em;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar .boxhome {
    text-align: center;
  }
}
.content-wrapper .content-block .sidebar .boxhome h3 {
  margin: 0em 0em 0.5em 0em;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar .boxhome h3 {
    margin-bottom: 1.5em;
  }
}
.content-wrapper .content-block .sidebar .boxhome p {
  padding: 20px 0 13px 0;
  font-size: 1em;
  font-weight: bold;
  margin: 0;
}
.content-wrapper .content-block .sidebar .boxhome p a {
  color: #ffffff;
  text-decoration: none;
  margin: 0px;
  padding: 20px 0 13px;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar .boxhome p a {
    padding: 10px 0 8px;
  }
}
.content-wrapper .content-block .sidebar .boxhome p a:hover {
  text-decoration: underline;
}
.content-wrapper .content-block .sidebar .boxhome .icon {
  background: #394b5d;
  height: 50px;
  padding: 10px;
  width: 50px;
  float: left;
  margin: 10px 10px 0 0;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar .boxhome .icon {
    float: none;
    margin: 0 auto;
  }
}
.content-wrapper .content-block .sidebar .boxhome .boxphone {
  padding: 24px 0;
  font-size: 1.6em;
  font-weight: normal;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar .boxhome .boxphone {
    padding: 10px 0 8px;
  }
}
.content-wrapper .content-block .sidebar .boxhome .boxhours {
  padding: 13px 0;
  font-size: 1.1em;
}
@media handheld,only screen and (max-width: 62em) {
  .content-wrapper .content-block .sidebar .boxhome .boxhours {
    padding-top: 10px;
    margin-bottom: 21px;
  }
}
.content-wrapper .content-block .sidebar .boxhome .boxaddress {
  padding: 0px 0 5px 0;
  font-size: 1.1em;
  margin-bottom: 0;
}
@media handheld,only screen and (max-width: 321px) {
  .content-wrapper .content-block .sidebar .boxhome iframe {
    width: 96% !important;
  }
}
.footer-wrapper .footer-block {
  font-size: 13px;
  width: 75em;
  margin: 0 auto;
  padding: 0;
  -webkit-box-shadow: 0px 23px 34px #999;
  box-shadow: 0px 23px 34px #999;
  margin: 0 auto;
  padding: 1.5em 2em;
  color: #ffffff;
  background-color: #f16024;
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block {
    text-align: center;
  }
}
.footer-wrapper .footer-block h3 {
  display: block;
  border-bottom: 2px dashed #ffffff;
  margin-bottom: 1em;
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block h3 {
    margin-top: 0em;
  }
}
.footer-wrapper .footer-block a {
  color: #ffffff;
  text-decoration: none;
}
.footer-wrapper .footer-block a:hover {
  text-decoration: underline;
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block .footer-contact {
    padding: 0.25em 1.5em;
  }
}
.footer-wrapper .footer-block .footer-contact .footer-column-1 {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 32.666666666667%;
  padding-right: 2em;
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block .footer-contact .footer-column-1 {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block .footer-contact .footer-column-1 {
    display: none;
  }
}
.footer-wrapper .footer-block .footer-contact .footer-column-2 {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 32.666666666667%;
  padding-right: 2em;
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block .footer-contact .footer-column-2 {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block .footer-contact .footer-column-2 {
    display: none;
  }
}
.footer-wrapper .footer-block .footer-contact .footer-column-2 ul li ul li {
  display: none;
}
.footer-wrapper .footer-block .footer-contact .footer-column-3 {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  font-size: 13px;
  padding-right: 1%;
  margin-right: -0.25em;
  vertical-align: top;
  width: 32.666666666667%;
  padding-right: 0;
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block .footer-contact .footer-column-3 {
    display: block;
    width: auto;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .footer-wrapper .footer-block .footer-contact .footer-column-3 {
    padding: 10px 0 4px 0;
  }
}
.author-wrapper .author-block {
  font-size: 13px;
  width: 75em;
  margin: 0 auto;
  padding: 0;
  margin: 0 auto;
  padding: 3em 2em;
  color: #ffffff;
  text-align: center;
}
@media handheld,only screen and (max-width: 62em) {
  .author-wrapper .author-block {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media handheld,only screen and (max-width: 62em) {
  .author-wrapper .author-block {
    text-align: center;
  }
}
.author-wrapper .author-block a {
  color: #ffffff;
  text-decoration: none;
}
.author-wrapper .author-block a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.author-wrapper .author-block a.author {
  color: #009EE0;
  font-size: 0.9em;
}
.author-wrapper .author-block a.author:hover {
  color: #009EE0;
}
