@charset "UTF-8";
/* INCLUDES
--------------------------------------- */
/*! https://github.com/nathansmith/960-Grid-System/blob/master/code/css/reset.css */
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
dialog,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
font,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
hr,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
meter,
nav,
object,
ol,
output,
p,
pre,
progress,
q,
rp,
rt,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video,
xmp {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%; }

/*
I don't like this. - Calvin
html,
body {
	height: 100%;
}
*/
html {
  -webkit-text-size-adjust: 100%; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  /*
  	Override the default (display: inline) for
  	browsers that do not recognize HTML5 tags.
  
  	IE8 (and lower) requires a shiv:
  	http://ejohn.org/blog/html5-shiv
  */
  display: block; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal; }

b,
strong {
  /*
  	Makes browsers agree.
  	IE + Opera = font-weight: bold.
  	Gecko + WebKit = font-weight: bolder.
  */
  font-weight: bold; }

img {
  color: transparent;
  font-size: 0;
  vertical-align: middle;
  /*
  	For IE.
  	http://css-tricks.com/ie-fix-bicubic-scaling-for-images
  */
  -ms-interpolation-mode: bicubic; }

ol,
ul {
  list-style: none; }

li {
  /*
  	For IE6 + IE7:
  
  	"display: list-item" keeps bullets from
  	disappearing if hasLayout is triggered.
  */
  display: list-item; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

th,
td,
caption {
  font-weight: normal;
  vertical-align: top;
  text-align: left; }

q {
  quotes: none; }

q:before,
q:after {
  content: '';
  content: none; }

sub,
sup,
small {
  font-size: 75%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

svg {
  /*
  	For IE9. Without, occasionally draws shapes
  	outside the boundaries of <svg> rectangle.
  */
  overflow: hidden; }

/*! Yoyo reset */
a {
  /*
  	Remove underline from links.
  */
  text-decoration: none; }

input,
textarea,
select {
  /*
  	Inputs should inherit font at full size.
  */
  font-family: inherit;
  font-size: 100%; }

/*
Clearfix.
*/
.container:before, .wrapper:before, form .form-control:before, .form .form-control:before, body > header .call-us:before, body > header .main-navigation:before, body > header .main-navigation nav[role=navigation]:before, body > header .main-navigation nav[role=navigation] ul:before, .nav-collapse .nav-ul:before, .nav-collapse ul:before, .nav-collapse li li:before, .authors ul li:before, .people-listing:before, .square-block-listing:before, .round-block-listing:before, .round-text-listing:before, .roundel:before, .testimonial-listing:before, .double-feature-listing:before, .double-feature-listing .double-feature-listing-item .image:before, .triple-feature-listing:before, .triple-feature-listing .triple-feature-listing-item .image:before, .double-column:before, .image-and-text-listing .image-and-text-listing-item:before, .social-icons ul:before, .landingpage-hero .square-holder:before, body > footer .footer-nav nav:before, body > footer div[role=contentinfo]:before, .container:after, .wrapper:after, form .form-control:after, .form .form-control:after, body > header .call-us:after, body > header .main-navigation:after, body > header .main-navigation nav[role=navigation]:after, body > header .main-navigation nav[role=navigation] ul:after, .nav-collapse .nav-ul:after, .nav-collapse ul:after, .nav-collapse li li:after, .authors ul li:after, .people-listing:after, .square-block-listing:after, .round-block-listing:after, .round-text-listing:after, .roundel:after, .testimonial-listing:after, .double-feature-listing:after, .double-feature-listing .double-feature-listing-item .image:after, .triple-feature-listing:after, .triple-feature-listing .triple-feature-listing-item .image:after, .double-column:after, .image-and-text-listing .image-and-text-listing-item:after, .social-icons ul:after, .landingpage-hero .square-holder:after, body > footer .footer-nav nav:after, body > footer div[role=contentinfo]:after {
  content: " ";
  display: table; }
.container:after, .wrapper:after, form .form-control:after, .form .form-control:after, body > header .call-us:after, body > header .main-navigation:after, body > header .main-navigation nav[role=navigation]:after, body > header .main-navigation nav[role=navigation] ul:after, .nav-collapse .nav-ul:after, .nav-collapse ul:after, .nav-collapse li li:after, .authors ul li:after, .people-listing:after, .square-block-listing:after, .round-block-listing:after, .round-text-listing:after, .roundel:after, .testimonial-listing:after, .double-feature-listing:after, .double-feature-listing .double-feature-listing-item .image:after, .triple-feature-listing:after, .triple-feature-listing .triple-feature-listing-item .image:after, .double-column:after, .image-and-text-listing .image-and-text-listing-item:after, .social-icons ul:after, .landingpage-hero .square-holder:after, body > footer .footer-nav nav:after, body > footer div[role=contentinfo]:after {
  clear: both; }

/*
 * 'rem' is a Sass mixin that converts pixel values to rem values for whatever property is passed to it.
 * It returns two lines of code — one of the regular pixel values (for IE), and another with the
 * converted rem values (for everyone else). Special thanks to Chris Epstein (http://chriseppstein.github.com)
 * and Martin Bavio (http://martinbavio.com) for the help and code!
 * 
 * Sample input:
 * .element {
 *   @include rem('padding',10px 0 2px 5px);
 * }
 * 
 * Sample output:
 * .element {
 *   padding: 10px 0 2px 5px;
 *   padding: 1rem 0 0.2rem 0.5rem;
 * }
 * 
 */
/*
Truncates the decimal part of a floating point number.
*/
/* GLOBAL VARIABLES 
--------------------------------------- */
/* Measurements */
/*20/960*/
/*920/960*/
/* Colors */
/* Media Queries */
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

html {
  font-size: 62.5%; }

body {
  font-family: 'Lato', Verdana, Arial, 'sans-serif';
  line-height: 1.2;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased; }
  body > header,
  body > section,
  body > article,
  body > footer {
    width: 100%; }
  body > section {
    padding-top: 50px;
    padding-bottom: 50px; }
  body > header {
    position: relative;
    z-index: 300; }

article > section {
  padding-top: 50px;
  padding-bottom: 50px; }

.container {
  width: 90%;
  max-width: 494px;
  margin-left: auto;
  margin-right: auto; }
  .container > * {
    float: left; }
  .ie7 .container {
    width: 960px;
    width: 96rem; }
  .ie8 .container {
    width: 960px;
    width: 96rem; }

.inner-header {
  width: 95.83333%;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  padding-bottom: 50px;
  padding-bottom: 5rem; }
  .inner-header header h1 {
    font-size: 30px;
    font-size: 3rem; }
  .inner-header header.is-centered {
    text-align: center; }
  .bg-black .inner-header header {
    color: #fff; }

/* COLUMNS 
--------------------------------------- */
.column {
  float: left;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  /*> header {
  	width: $max-column-width;
  	@include default-margin;
  	@include rem(padding-top, 40px);
  	@include rem(padding-bottom, 40px);
  	&.is-centered {
  		text-align: center;
  	}
  	.bg-black & {
  		color: #fff;
  	}
  }*/ }
  .column.whole {
    width: 95.83333%; }
  .column.resources-main-image {
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-bottom: 40px;
    margin-bottom: 4rem; }
  .column.resources-main-content {
    width: 58.75%;
    /*564/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-right: 2.916666666%;
    /*28/960*/ }
    @media only screen and (max-width: 479px) {
      .column.resources-main-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 480px) {
      .column.resources-main-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 720px) {
      .column.resources-main-content {
        width: 58.75%;
        /*564/960*/
        margin-left: 2.08333%;
        margin-right: 2.08333%;
        margin-right: 2.916666666%;
        /*28/960*/ } }
  .column.post-main-content {
    width: 58.75%;
    /*564/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-right: 2.916666666%;
    /*28/960*/ }
    @media only screen and (max-width: 479px) {
      .column.post-main-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 480px) {
      .column.post-main-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 720px) {
      .column.post-main-content {
        width: 58.75%;
        /*564/960*/
        margin-left: 2.08333%;
        margin-right: 2.08333%;
        margin-right: 2.916666666%;
        /*28/960*/ } }
  .column.resources-aside-content {
    width: 31.25%;
    /*300/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-left: 2.916666666%;
    /*28/960*/ }
    @media only screen and (max-width: 479px) {
      .column.resources-aside-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 480px) {
      .column.resources-aside-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 720px) {
      .column.resources-aside-content {
        width: 31.25%;
        /*300/960*/
        margin-left: 2.08333%;
        margin-right: 2.08333%;
        margin-left: 2.916666666%;
        /*28/960*/ } }
  .column.post-aside-content {
    width: 31.25%;
    /*300/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-left: 2.916666666%;
    /*28/960*/
    width: 31.25%;
    /*300/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-left: 2.916666666%;
    /*28/960*/ }
    @media only screen and (max-width: 479px) {
      .column.post-aside-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 480px) {
      .column.post-aside-content {
        width: 95.83333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }
    @media only screen and (min-width: 720px) {
      .column.post-aside-content {
        width: 31.25%;
        /*300/960*/
        margin-left: 2.08333%;
        margin-right: 2.08333%;
        margin-left: 2.916666666%;
        /*28/960*/ } }

.post-article + .post-article {
  margin-top: 40px;
  margin-top: 4rem;
  padding-top: 40px;
  padding-top: 4rem;
  border-top: 1px solid #ccc; }

.wrapper > * {
  float: left; }

.image img {
  width: 100%; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gotham Medium', Arial, 'sans-serif';
  font-weight: normal;
  font-style: normal;
  letter-spacing: -1px; }

h1 {
  font-size: 36px;
  font-size: 3.6rem; }

h2 {
  font-size: 20px;
  font-size: 2rem; }

h3 {
  font-size: 20px;
  font-size: 2rem; }

p, li, dd, th, td, label, input, select, button, .button, .error_field_msg, .error_field_msg_block {
  font-size: 18px; }

a {
  font-size: inherit;
  color: #2c999d; }
  a:hover {
    color: #a1a1a3; }

hr {
  width: 95.83333%;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  border: none;
  background-color: #ccc;
  color: #ccc;
  height: 1px;
  margin-bottom: 40px; }

.bg-black hr {
  background-color: #333; }

.editable h2, .editable h3 {
  margin-bottom: 20px;
  margin-bottom: 2rem; }
.editable h3 {
  font-size: 16px;
  font-size: 1.6rem; }
.editable p, .editable ul, .editable ol, .editable dl, .editable figure, .editable table, .editable iframe, .editable .fluid-width-video-wrapper, .editable .panel {
  margin-bottom: 20px;
  margin-bottom: 2rem; }
.editable ul {
  list-style: disc; }
  .editable ul li {
    list-style: disc;
    margin-left: 18px; }
.editable ol {
  list-style: decimal; }
  .editable ol li {
    list-style: decimal;
    margin-left: 18px; }
.editable img {
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 2rem; }
.editable .panel p:last-of-type,
.editable .panel ul:last-of-type,
.editable .panel ol:last-of-type {
  margin-bottom: 0; }
.editable .panel.footnotes p, .editable .panel.footnotes li {
  font-size: 12px;
  font-size: 1.2rem; }
.ie7 .editable ul, .ie7 .editable ol {
  margin-left: 20px; }

form .highlighted_field, .form .highlighted_field {
  background-color: #FFCCCC; }
form .error-message, .form .error-message {
  font-size: 12px;
  font-size: 1.2rem;
  color: #cc3e3e; }
form label, .form label {
  display: block;
  margin-bottom: 10px;
  margin-bottom: 1rem; }
  form label small, .form label small {
    font-size: 12px;
    font-size: 1.2rem;
    color: #636363; }
form input:not([type=submit]), .form input:not([type=submit]) {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  width: 100%;
  height: 30px; 
}
form input:not([type=submit]):not([type=file]), .form input:not([type=submit]):not([type=file]) {
  padding: 0 5px;
  /* padding: 1rem; */ 
  border: 1px solid #C7C6C6;
}
form input[type=submit], .form input[type=submit] {
  border: none;
  margin: 0;
  pointer: cursor; }
form .error_field_msg, form .error_field_msg_block, .form .error_field_msg, .form .error_field_msg_block {
  margin-bottom: 20px;
  margin-bottom: 2rem;
  padding: 10px;
  padding: 1rem;
  color: #cc3e3e;
  height: 40px;
  border: none;
  width: 100%; }
.ie8 form input, .ie8 .form input {
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  padding: 10px;
  padding: 1rem;
  border: none; }
.ie8 form #message_panel, .ie8 .form #message_panel {
  top: -40px; }

/*signup and login form*/
#maintenance_error{
	font-size: 18px;
	text-align: center;
	height: 200px;
	padding-top: 70px;
	color: white;
}

.login-box form {
  position: relative; }

#overlay_modal, #modal_overlay {
  background-color: #000;
  opacity: 0.8;
  filter: alpha(opacity=40);
  z-index: 1000000001  !important; }

.dialog {
  z-index: 10000000000 !important;
  position: absolute; }

div#default_modal_content_inner {
  padding-left: 20px;
  padding-right: 20px;
  /*background: #FFFFFF !important;*/ }

.submit-form, .login-link {
  cursor: pointer; }

/*Old login failed (image)*/
/*
#message_panel {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #FFFFFF;
  height: 40px;
  width: 165px;
  position: absolute;
  right: 0;
  top: -4rem;
  color: #000000;
  font-size: 14px;
  padding: 10px;
  text-transform: uppercase; 
}
*/
#message_panel {
  position: absolute;
  left: 30px;
  bottom: 42px; 
}

.invalid_message {
  color: #FE8F35;
  font-size: 10px;
}

#default_modal_message {
  text-align: center; }

#default_box_inner h3 {
  text-align: center; }

#exclamation_mark_icon {
  width: 27px;
  margin: 0px 8px 3px 0; }

.button {
  display: inline-block;
  padding: 10px 20px 12px 20px;
  padding: 1rem 2rem 1.2rem 2rem;
  background: #2c999d;
  text-transform: uppercase;
  color: #fff;
  -moz-border-radius: 32px;
  border-radius: 32px;
  pointer: cursor;
  text-align: center !important;  
}
  .button.small-button {
    font-size: 13px;
    font-size: 1.3rem;
    padding: 5px 20px 6px 20px;
    padding: 0.5rem 2rem 0.6rem 2rem; }
  .button:hover {
    color: #fff;
    zoom: 1;
    filter: alpha(opacity=80);
    opacity: 0.8; }

.whole figure {
  width: 86.956521739%;
  /*800/920*/
  margin-left: auto;
  margin-right: auto; }
  .whole figure .text {
    width: 62.5%;
    /*500/800*/ }
    .whole figure .text blockquote p {
      font-family: 'Gotham Medium', Verdana, Arial, 'sans-serif';
      font-size: 40px;
      font-weight: 400;
      letter-spacing: -1px;
      margin-bottom: 20px; }
  .whole figure .image {
    width: 31.25%;
    /*250/800*/
    margin-left: 6.25%;
    /*50/800*/
    overflow: hidden; }
aside figure {
  margin-bottom: 30px;
  margin-bottom: 3rem; }
  aside figure blockquote p {
    font-size: 20px;
    font-size: 2rem; }
  aside figure blockquote + figcaption {
    margin-top: 20px;
    margin-top: 2rem; }
  aside figure figcaption p {
    color: #666666;
    font-size: 16px;
    font-size: 1.6rem; }
@media only screen and (max-width: 479px) {
  .whole figure {
    width: 95.83333%; }
    .whole figure .text {
      width: 100%; }
    .whole figure .image {
      display: none; } }
@media only screen and (min-width: 480px) {
  .whole figure {
    width: 95.83333%; }
    .whole figure .text {
      width: 100%; }
    .whole figure .image {
      display: none; } }
@media only screen and (min-width: 720px) {
  .whole figure {
    width: 86.956521739%;
    /*800/920*/ }
    .whole figure .text {
      width: 62.5%;
      /*500/800*/ }
    .whole figure .image {
      display: inline; } }

.pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px; }
  .pagination > li {
    display: inline; }
    .pagination > li > a {
      position: relative;
      float: left;
      padding: 6px 12px;
      margin-left: -1px;
      line-height: 1.428571429;
      text-decoration: none;
      background-color: #ffffff;
      border: 1px solid #dddddd; }
      .pagination > li > a:hover {
        background-color: #eeeeee; }
    .pagination > li.active a {
      z-index: 2;
      color: #ffffff;
      cursor: default;
      background-color: #2c999d;
      border-color: #2c999d; }
    .pagination > li.disabled a {
      color: #999999;
      cursor: not-allowed;
      background-color: #ffffff;
      border-color: #dddddd; }

.tick-list {
  list-style: none; }
  .tick-list li {
    list-style: none;
    line-height: 24px;
    line-height: 2.4rem;
    margin-bottom: 20px;
    margin-bottom: 2rem;
    padding-left: 34px;
    padding-left: 3.4rem; }
  .tick-list.green-tick li {
    background: url(/images/green-tick.png) 0 0 no-repeat; }
  .editable .tick-list {
    list-style: none; }
    .editable .tick-list li {
      list-style: none; }
  .editable .tick-list li {
    margin-left: 0; }

header.big-and-left {
  background: #f0f0f0;
  padding-top: 50px;
  padding-bottom: 50px; }
  header.big-and-left .image {
    width: 80px;
    width: 8rem;
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-left: 0;
    float: left;
    display: inline; }
  header.big-and-left .text {
    float: left;
    display: inline;
    width: 60%; }
  header.big-and-left.max-width .text {
    float: none;
    display: block;
    padding-left: 100px;
    width: 100%; }
  @media only screen and (max-width: 479px) {
    header.big-and-left.max-width .image {
      width: 80px;
      width: 8rem;
      float: none;
      margin: 0;
      display: block; }
    header.big-and-left.max-width .text {
      padding-left: 0; } }

header.big-and-center {
  background: #f0f0f0;
  padding-top: 50px;
  padding-bottom: 50px; }
  header.big-and-center .image {
    width: 80px;
    width: 8rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    margin-bottom: 2rem; }
  header.big-and-center .text {
    text-align: center;
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%; }

body > header {
  padding-top: 30px;
  padding-top: 3rem;
  padding-bottom: 30px;
  padding-bottom: 3rem; }
  @media only screen and (max-width: 719px) {
    body > header {
      padding-bottom: 0; } }
  @media only screen and (min-width: 720px) {
    body > header {
      padding-bottom: 30px;
      padding-bottom: 3rem; } }
  body > header .company-logo {
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    width: 20.833333333%;
    /*200/960*/ }
    body > header .company-logo img {
      width: 100%; }
  body > header .call-us {
    margin-top: -16px;
    margin-top: -1.6rem;
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    width: 70.833333333%;
    /*680/960*/ }
    body > header .call-us p {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 29px;
      line-height: 2.9rem;
      float: right; }
      body > header .call-us p small {
        font-size: 16px;
        font-size: 1.6rem; }
      body > header .call-us p img {
        vertical-align: top;
        padding-left: 10px;
        padding-left: 1rem;
        margin-top: -5px;
        margin-top: -0.5rem; }
  body > header .main-navigation {
    width: 90%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto; }
    body > header .main-navigation nav[role=navigation] {
      margin-top: -10px;
      margin-top: -1rem;
      text-transform: uppercase;
      float: right;
      margin-left: 2.08333%;
      margin-right: 2.08333%; }
      body > header .main-navigation nav[role=navigation] ul li {
        font-size: 14px;
        font-size: 1.4rem; }
        body > header .main-navigation nav[role=navigation] ul li + li {
          margin-left: 10px;
          padding-left: 10px;
          border-left: 1px solid #cecece; }
    body > header .main-navigation .menu-link {
      width: 90%;
      margin-left: auto;
      margin-right: auto; }
      body > header .main-navigation .menu-link a {
        display: inline-block;
        zoom: 1;
        *display: inline;
        padding: 14px;
        padding: 1.4rem; }
    @media only screen and (max-width: 719px) {
      body > header .main-navigation {
        width: 100%; }
        body > header .main-navigation nav[role=navigation] {
          display: block;
          margin: 0;
          width: 100%; }
          body > header .main-navigation nav[role=navigation].active {
            background: #2C2C2C;
            height: 50px;
            height: 5rem;
            max-height: 50px;
            max-height: 5rem;
            padding-top: 15px;
            float: none; }
          body > header .main-navigation nav[role=navigation] ul {
            display: block;
            width: 90%;
            margin-left: auto;
            margin-right: auto;
            padding: 0; }
        body > header .main-navigation .menu-link {
          width: 90%;
          margin-left: auto;
          margin-right: auto; }
          body > header .main-navigation .menu-link a {
            float: left; } }
  @media only screen and (max-width: 479px) {
    body > header .company-logo {
      width: 45.83333%;
      margin-left: 27.083333333%;
      /*260/960*/
      margin-right: 27.083333333%;
      /*260/960*/
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    body > header .call-us {
      width: 95.83333%;
      margin-top: 0;
      text-align: center; }
      body > header .call-us p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 29px;
        line-height: 2.9rem;
        float: none; }
        body > header .call-us p small {
          font-size: 14px;
          font-size: 1.4rem; } }
  @media only screen and (min-width: 480px) {
    body > header .company-logo {
      width: 45.83333%;
      margin-left: 27.083333333%;
      /*260/960*/
      margin-right: 27.083333333%;
      /*260/960*/
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    body > header .call-us {
      width: 95.83333%;
      margin-top: 0;
      text-align: center; }
      body > header .call-us p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 29px;
        line-height: 2.9rem;
        float: none; }
        body > header .call-us p small {
          font-size: 14px;
          font-size: 1.4rem; } }
  @media only screen and (min-width: 534px) {
    body > header .call-us {
      width: 95.83333%;
      margin-top: 0; }
      body > header .call-us p {
        font-size: 18px;
        font-size: 1.8rem; }
        body > header .call-us p small {
          font-size: 16px;
          font-size: 1.6rem; } }
  @media only screen and (min-width: 720px) {
    body > header .company-logo {
      width: 20.833333333%;
      /*200/960*/
      margin-left: 2.08333%;
      margin-right: 2.08333%; }
    body > header .call-us {
      width: 70.833333333%;
      /*680/960*/
      margin-top: -16px;
      margin-top: -1.6rem;
      text-align: left; }
      body > header .call-us p {
        float: right; } }

.nav-collapse {
  background: transparent; }
  @media only screen and (max-width: 719px) {
    .nav-collapse {
      overflow: hidden;
      background: #000000; } }
  @media only screen and (min-width: 720px) {
    .nav-collapse {
      margin-top: -29px;
      background: transparent; } }

.nav-collapse .nav-ul {
  width: 100%; }

.nav-collapse ul {
  margin: 0;
  padding: 0;
  display: block;
  list-style: none;
  float: right; }
  @media only screen and (max-width: 719px) {
    .nav-collapse ul {
      width: 90%;
      margin-left: auto;
      margin-right: auto;
      padding-top: 10px;
      padding-bottom: 10px;
      float: none; } }
  @media only screen and (max-width: 719px) {
    .nav-collapse ul li a {
      display: block;
      padding: 3px;
      line-height: 37px; }
      .nav-collapse ul li a:hover {
        background: #333; } }

.nav-collapse ul .sub-navigation {
  padding-top: 0; }
  @media only screen and (min-width: 720px) {
    .nav-collapse ul .sub-navigation {
      display: none;
      position: absolute;
      top: 100%;
      left: -55%;
      z-index: 50;
      width: 260px;
      padding-top: 20px; } }

.nav-collapse ul .sub-navigation ul {
  width: 100%;
  float: none;
  padding: 10px;
  background: black; }

.nav-collapse li {
  float: left;
  padding: 0 20px;
  position: relative;
  overflow: visible; }
  .nav-collapse li + li {
    border-left: 1px solid #ccc; }
  @media only screen and (max-width: 719px) {
    .nav-collapse li {
      float: none;
      padding-top: 5px;
      padding-bottom: 5px;
      line-height: 31px; }
      .nav-collapse li + li {
        border-left: none; } }
  @media only screen and (min-width: 720px) {
    .nav-collapse li {
      float: left; } }
  .nav-collapse li:hover .sub-navigation {
    display: block; }

.nav-collapse li li {
  color: #fff;
  width: auto;
  display: block;
  padding: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 31px;
  float: none; }
  .nav-collapse li li + li {
    border-top: 1px solid #333;
    border-left: none; }
  .nav-collapse li li > .image {
    float: left;
    display: block;
    width: 31px;
    height: 31px;
    margin-right: 5px; }
    .nav-collapse li li > .image.clouds {
      width: 41px; }
    .nav-collapse li li > .image img {
      vertical-align: middle; }
  .nav-collapse li li a {
    display: block;
    color: #fff;
    text-transform: none;
    line-height: inherit;
    padding: 3px; }
    .nav-collapse li li a:hover {
      background: #333;
      color: #fff; }

.nav-collapse li, .nav-collapse li a {
  text-transform: uppercase;
  color: #999;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer; }
  @media only screen and (max-width: 719px) {
    .nav-collapse li, .nav-collapse li a {
      color: white; } }
  .nav-collapse li:hover,
  .nav-collapse li .selected, .nav-collapse li a:hover,
  .nav-collapse li a .selected {
    color: #000; }
    @media only screen and (max-width: 719px) {
      .nav-collapse li:hover,
      .nav-collapse li .selected, .nav-collapse li a:hover,
      .nav-collapse li a .selected {
        color: white; } }

.js .nav-collapse {
  clip: rect(0 0 0 0);
  max-height: 0;
  position: absolute;
  display: block;
  zoom: 1; }

.nav-collapse.opened {
  max-height: 9999px; }

.nav-toggle {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  padding: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 14px; }

.triangle {
  position: absolute;
  top: 3px;
  left: 120px;
  display: block;
  width: 20px;
  height: 17px;
  background: url(/images/icons/triangle.png) 0 0 no-repeat; }
  @media only screen and (max-width: 719px) {
    .triangle {
      display: none; } }

@media screen and (min-width: 720px) {
  .js .nav-collapse {
    position: relative; }

  .js .nav-collapse.closed {
    max-height: none; }

  .nav-toggle {
    display: none; } }
.ie7 .js .nav-collapse, .ie8 .js .nav-collapse {
  position: relative; }
.ie7 .js .nav-collapse.closed, .ie8 .js .nav-collapse.closed {
  max-height: none; }
.ie7 .nav-toggle, .ie8 .nav-toggle {
  display: none; }
.ie7 .nav-collapse ul .sub-navigation, .ie8 .nav-collapse ul .sub-navigation {
  display: none;
  position: absolute;
  top: 100%;
  left: -55%;
  z-index: 50;
  width: 260px;
  padding-top: 20px; }
  .ie7 .nav-collapse ul .sub-navigation ul li, .ie8 .nav-collapse ul .sub-navigation ul li {
    width: 100%; }
    .ie7 .nav-collapse ul .sub-navigation ul li a, .ie8 .nav-collapse ul .sub-navigation ul li a {
      color: #fff; }
.ie7 .nav-collapse li, .ie8 .nav-collapse li {
  float: left; }
  .ie7 .nav-collapse li:hover .sub-navigation, .ie8 .nav-collapse li:hover .sub-navigation {
    display: block; }

.ie7 .main-navigation {
  position: relative; }
  .ie7 .main-navigation .nav-collapse {
    position: relative; }
    .ie7 .main-navigation .nav-collapse .nav-ul {
      width: 960px;
      position: relative;
      margin-top: -20px; }

@media only screen and (max-width: 719px) {
  .js nav[role=navigation] {
    overflow: hidden;
    max-height: 0;
    max-width: 100%;
    width: 100%; } }
nav.menu li {
  display: inline-block; }

#first-item {
  border-left: none; }

#selected {
  color: #A1A1A3; }

@media screen and (max-width: 768px) {
  nav[role=navigation] {
    clear: both; }

  .menu-link {
    display: block;
    text-transform: uppercase;
    font-weight: bold; }

  nav[role=navigation] li a {
    display: block;
    padding: 0.8em;
    padding: 0px 10px 0px 10px;
    font-weight: 700;
    color: #FFFFFF; }

  nav[role=navigation] li a:hover {
    color: #A1A1A3; }

  nav[role=navigation] li a:selected {
    color: #A1A1A3; }

  nav[role=navigation] li a.active {
    color: #A1A1A3; } }
@media screen and (min-width: 769px) {
  nav.menu {
    margin-top: 20px;
    margin-right: 10px; }

  .menu-link {
    display: none; }

  .js nav[role=navigation] {
    max-height: none; }

  nav[role=navigation] ul {
    margin: 0 0 0 -0.25em;
    border: 0; }

  nav[role=navigation] li a {
    font-weight: 700;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #000000; }

  nav[role=navigation] li a:hover {
    color: #A1A1A3; } }
article > section {
  padding-top: 50px;
  padding-bottom: 50px; }
article > .image {
  width: 95.83333%;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  margin-bottom: 40px;
  margin-bottom: 4rem; }
article > .resources-main-content {
  width: 58.75%;
  /*564/960*/
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  margin-right: 2.916666666%;
  /*28/960*/ }
article > aside {
  width: 31.25%;
  /*300/960*/
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  margin-left: 2.916666666%;
  /*28/960*/ }

/* CASE STUDY MODULE 
--------------------------------------- */
/*footer module*/
.footer {
  background: #f0f0f0; }

.post-snippet + .post-snippet {
  padding-top: 20px;
  padding-top: 2rem;
  margin-top: 20px;
  margin-top: 2rem;
  border-top: 1px solid #cecece; }

.post-created-date {
  margin-bottom: 20px;
  margin-bottom: 2rem; }

.post-text {
  margin-bottom: 20px;
  margin-bottom: 2rem; }
  .post-text h2 {
    font-size: 32px;
    font-size: 3.2rem; }

.post-filter-list + .post-filter-list {
  padding-top: 20px;
  padding-top: 2rem;
  margin-top: 20px;
  margin-top: 2rem;
  border-top: 1px solid #cecece; }
.post-filter-list h4 {
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 10px;
  margin-bottom: 1rem; }
.post-filter-list ul li {
  margin-bottom: 10px;
  margin-bottom: 1rem; }

.subscribe-rss p {
  line-height: 26px;
  line-height: 2.6rem; }
  .subscribe-rss p a {
    display: inline-block;
    padding-left: 32px;
    padding-left: 3.2rem;
    line-height: 26px;
    line-height: 2.6rem;
    background: url(/images/rss.png) 0 0 no-repeat; }

.authors ul li .author-image {
  float: left;
  display: inline;
  display: block;
  width: 50px;
  width: 5rem;
  height: 50px;
  height: 5rem;
  margin-right: 10px;
  margin-right: 1rem; }
  .authors ul li .author-image img {
    width: 100%; }
.authors ul li .author-text h5 {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 5px;
  margin-bottom: 0.5rem; }
.authors ul li .author-text p {
  font-size: 12px;
  font-size: 1.2rem; }

.people-listing {
  width: 100%; }
  .people-listing .people-listing-item {
    float: left;
    display: inline;
    width: 18.75%;
    /*180/960*/
    margin-left: 7.291666666%;
    /*70/960*/
    margin-right: 7.291666666%;
    /*60/960*/
    margin-bottom: 50px;
    margin-bottom: 5rem; }
    .people-listing .people-listing-item .image {
      margin-bottom: 20px;
      margin-bottom: 2rem; }
      .people-listing .people-listing-item .image img {
        width: 100%; }
    .people-listing .people-listing-item .text {
      text-align: center; }
  @media only screen and (max-width: 479px) {
    .people-listing .people-listing-item {
      width: 95.83333%;
      margin-left: 2.08333%;
      margin-right: 2.08333%; }
      .people-listing .people-listing-item .image {
        width: 45.83333%;
        margin-left: auto;
        margin-right: auto; } }
  @media only screen and (min-width: 480px) {
    .people-listing .people-listing-item {
      width: 95.83333%;
      margin-left: 2.08333%;
      margin-right: 2.08333%; }
      .people-listing .people-listing-item .image {
        width: 45.83333%;
        margin-left: auto;
        margin-right: auto; } }
  @media only screen and (min-width: 720px) {
    .people-listing .people-listing-item {
      width: 18.75%;
      /*180/960*/
      margin-left: 7.291666666%;
      /*70/960*/
      margin-right: 7.291666666%;
      /*60/960*/ }
      .people-listing .people-listing-item .image {
        width: 100%;
        margin-left: auto;
        margin-right: auto; } }

/*download resource*/
.download-resource {
  background: #2b2b2b;
  margin-top: 50px;
  margin-top: 5rem;
  padding: 20px;
  padding: 2rem; }
  .download-resource .image {
    width: 10.869565217%;
    /*100/920*/
    margin-right: 20px; }
  .download-resource .text {
    width: 46.086956521%;
    /*424/920*/
    margin-right: 6.0869565215%;
    /*56/920*/
    color: #999; }
    .download-resource .text h3 {
      color: #fff;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .download-resource .text strong {
      font-weight: normal;
      font-weight: 400;
      color: #fff; }
  .download-resource .form {
    width: 32.608695652%;
    /*300/920*/ }
    .download-resource .form .form-control .error-message {
      display: block;
      width: 100%; }
    .download-resource .form .form-control label {
      width: 23.333333333%;
      /*70/300*/
      float: left;
      display: inline;
      color: #fff;
      line-height: 27px;
      line-height: 2.7rem; }
    .download-resource .form .form-control input:not([type=submit]) {
      margin-bottom: 10px;
      margin-bottom: 1rem; }
    .download-resource .form .form-control input:not([type=submit]):not([type=file]) {
      width: 73.333333333%;
      /*220/300*/
      margin-left: 3.333333333%;
      float: left;
      display: inline;
      padding-top: 4px;
      padding-top: 0.4rem;
      padding-bottom: 4px;
      padding-bottom: 0.4rem; }
    .download-resource .form input[type=submit] {
      float: right;
      display: inline; }
  @media only screen and (max-width: 479px) {
    .download-resource .image {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
      .download-resource .image img {
        display: block;
        width: 80px;
        width: 8rem; }
    .download-resource .text {
      width: 100%;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .download-resource .form {
      width: 100%; } }
  @media only screen and (min-width: 480px) {
    .download-resource .image {
      width: 100%;
      margin-right: 0;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
      .download-resource .image img {
        display: block;
        width: 80px;
        width: 8rem; }
    .download-resource .text {
      width: 100%;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .download-resource .form {
      width: 100%; } }
  @media only screen and (min-width: 720px) {
    .download-resource .image {
      width: 10.869565217%;
      /*100/920*/
      margin-right: 20px; }
    .download-resource .text {
      width: 46.086956521%;
      /*424/920*/
      margin-right: 6.0869565215%;
      /*56/920*/
      color: #999; }
      .download-resource .text h3 {
        color: #fff;
        margin-bottom: 20px;
        margin-bottom: 2rem; }
      .download-resource .text strong {
        font-weight: normal;
        font-weight: 400;
        color: #fff; }
    .download-resource .form {
      width: 32.608695652%;
      /*300/920*/ } }

.panel {
  padding: 20px;
  padding: 2rem; }
  .panel h2 {
    margin-bottom: 20px;
    margin-bottom: 2rem; }

.bg-grey {
  background: #f0f0f0; }

.bg-brand {
  background: #2c999d;
  color: #fff; }

.home-hero-image {
  background: #f0f0f0 url(/images/photos/hero.jpg) center center no-repeat;
  min-height: 410px; }
  .home-hero-image .home-hero-image-text {
    width: 45.83333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%; }
    .home-hero-image .home-hero-image-text h1 {
      font-size: 48px;
      font-size: 4.8rem;
      margin-bottom: 20px;
      margin-bottom: 2rem;
      letter-spacing: -3px;
      letter-spacing: -0.3rem; }
    .home-hero-image .home-hero-image-text p {
      width: 75%;
      font-size: 24px;
      font-size: 2.4rem; }
      .home-hero-image .home-hero-image-text p + p {
        margin-top: 40px;
        margin-top: 4rem; }
  @media only screen and (max-width: 479px) {
    .home-hero-image {
      background-image: none;
      min-height: 0; }
      .home-hero-image .home-hero-image-text {
        width: 95.83333%;
        text-align: center;
        margin-left: 2.08333%;
        margin-right: 2.08333%; }
        .home-hero-image .home-hero-image-text p {
          width: 100%; } }
  @media only screen and (min-width: 480px) {
    .home-hero-image {
      background-image: none;
      min-height: 0; }
      .home-hero-image .home-hero-image-text {
        width: 95.83333%;
        text-align: center;
        margin-left: 2.08333%;
        margin-right: 2.08333%; }
        .home-hero-image .home-hero-image-text p {
          width: 100%; } }
  @media only screen and (min-width: 720px) {
    .home-hero-image {
      background: #f0f0f0 url(/images/photos/hero.jpg) top center no-repeat;
      min-height: 410px; }
      .home-hero-image .home-hero-image-text {
        text-align: left;
        width: 45.83333%; }
        .home-hero-image .home-hero-image-text h1 {
          font-size: 48px;
          font-size: 4.8rem;
          margin-bottom: 20px;
          margin-bottom: 2rem;
          letter-spacing: -3px;
          letter-spacing: -0.3rem; }
        .home-hero-image .home-hero-image-text p {
          width: 75%;
          font-size: 24px;
          font-size: 2.4rem; }
          .home-hero-image .home-hero-image-text p + p {
            margin-top: 40px;
            margin-top: 4rem; } }

.is-a-box {
  padding: 20px; }

.color-brand-green .is-a-box {
  background: #8db024;
  color: #fff; }

.big-centered-heading {
  background: #f0f0f0;
  padding-top: 50px;
  padding-bottom: 50px; }
  .big-centered-heading header {
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%; }
    .big-centered-heading header .text {
      text-align: center; }
    .big-centered-heading header .image {
      width: 80px;
      width: 8rem;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 20px;
      margin-bottom: 2rem; }

.square-block-listing .square-block-listing-item {
  width: 20.83333%;
  float: left;
  display: inline;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  margin-bottom: 50px;
  margin-bottom: 5rem; }
  .square-block-listing .square-block-listing-item .image {
    margin-bottom: 20px;
    margin-bottom: 2rem; }
  .square-block-listing .square-block-listing-item h2 {
    margin-bottom: 20px;
    margin-bottom: 2rem; }
  .square-block-listing .square-block-listing-item p {
    margin-bottom: 14px;
    margin-bottom: 1.4rem; }
.square-block-listing hr {
  width: 95.83333%;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  border-top: 1px solid #f0f0f0; }
@media only screen and (max-width: 479px) {
  .square-block-listing .square-block-listing-item {
    width: 95.83333%; } }
@media only screen and (min-width: 480px) {
  .square-block-listing .square-block-listing-item {
    width: 95.83333%; } }
@media only screen and (min-width: 720px) {
  .square-block-listing .square-block-listing-item {
    width: 45.83333%; } }
@media only screen and (min-width: 1200px) {
  .square-block-listing .square-block-listing-item {
    width: 20.83333%; } }

.round-block-listing .round-block-listing-item {
  width: 15.833333333%;
  /*152/960*/
  float: left;
  display: inline;
  margin-left: 2.08333%;
  margin-right: 2.08333%; }
  .round-block-listing .round-block-listing-item .image {
    margin-bottom: 20px;
    margin-bottom: 2rem; }
  .round-block-listing .round-block-listing-item .text {
    text-align: center; }
  .round-block-listing .round-block-listing-item h3 {
    margin-bottom: 20px;
    margin-bottom: 2rem; }
  .round-block-listing .round-block-listing-item p {
    margin-bottom: 14px;
    margin-bottom: 1.4rem; }
.round-block-listing hr {
  width: 95.83333%;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  border-top: 1px solid #f0f0f0; }
@media only screen and (max-width: 479px) {
  .round-block-listing .round-block-listing-item {
    width: 95.83333%;
    margin-bottom: 50px;
    margin-bottom: 5rem; }
    .round-block-listing .round-block-listing-item .image {
      width: 45.83333%;
      margin-left: auto;
      margin-right: auto; } }
@media only screen and (min-width: 480px) {
  .round-block-listing .round-block-listing-item {
    width: 95.83333%;
    margin-bottom: 50px;
    margin-bottom: 5rem; }
    .round-block-listing .round-block-listing-item .image {
      width: 45.83333%;
      margin-left: auto;
      margin-right: auto; } }
@media only screen and (min-width: 720px) {
  .round-block-listing .round-block-listing-item {
    width: 45.83333%; }
    .round-block-listing .round-block-listing-item .image {
      width: 50%; } }
@media only screen and (min-width: 1200px) {
  .round-block-listing .round-block-listing-item {
    width: 15.833333333%;
    /*152/960*/
    margin-bottom: 0; }
    .round-block-listing .round-block-listing-item .image {
      width: 100%; } }

.round-text-listing, .roundel {
  width: 100%; }
  .round-text-listing .round-text-listing-item, .round-text-listing .roundel-item, .roundel .round-text-listing-item, .roundel .roundel-item {
    width: 15.833333333%;
    /*152/960*/
    float: left;
    display: inline;
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    text-align: center; }
    .round-text-listing .round-text-listing-item .round-text-listing-item-text, .round-text-listing .round-text-listing-item .roundel-item-text, .round-text-listing .roundel-item .round-text-listing-item-text, .round-text-listing .roundel-item .roundel-item-text, .roundel .round-text-listing-item .round-text-listing-item-text, .roundel .round-text-listing-item .roundel-item-text, .roundel .roundel-item .round-text-listing-item-text, .roundel .roundel-item .roundel-item-text {
      width: 100%;
      padding-top: 100%;
      position: relative;
      border-radius: 50%;
      -moz-border-radius: 50%;
      -webkit-border-radius: 50%;
      -khtml-border-radius: 50%;
      background: #fff;
      margin-bottom: 30px;
      color: #000; }
      .round-text-listing .round-text-listing-item .round-text-listing-item-text > div, .round-text-listing .round-text-listing-item .roundel-item-text > div, .round-text-listing .roundel-item .round-text-listing-item-text > div, .round-text-listing .roundel-item .roundel-item-text > div, .roundel .round-text-listing-item .round-text-listing-item-text > div, .roundel .round-text-listing-item .roundel-item-text > div, .roundel .roundel-item .round-text-listing-item-text > div, .roundel .roundel-item .roundel-item-text > div {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; }
        .round-text-listing .round-text-listing-item .round-text-listing-item-text > div > div, .round-text-listing .round-text-listing-item .roundel-item-text > div > div, .round-text-listing .roundel-item .round-text-listing-item-text > div > div, .round-text-listing .roundel-item .roundel-item-text > div > div, .roundel .round-text-listing-item .round-text-listing-item-text > div > div, .roundel .round-text-listing-item .roundel-item-text > div > div, .roundel .roundel-item .round-text-listing-item-text > div > div, .roundel .roundel-item .roundel-item-text > div > div {
          display: table;
          width: 100%;
          height: 100%; }
          .round-text-listing .round-text-listing-item .round-text-listing-item-text > div > div > div, .round-text-listing .round-text-listing-item .roundel-item-text > div > div > div, .round-text-listing .roundel-item .round-text-listing-item-text > div > div > div, .round-text-listing .roundel-item .roundel-item-text > div > div > div, .roundel .round-text-listing-item .round-text-listing-item-text > div > div > div, .roundel .round-text-listing-item .roundel-item-text > div > div > div, .roundel .roundel-item .round-text-listing-item-text > div > div > div, .roundel .roundel-item .roundel-item-text > div > div > div {
            display: table-cell;
            text-align: center;
            vertical-align: middle;
            padding: 15px; }
      .round-text-listing .round-text-listing-item .round-text-listing-item-text span, .round-text-listing .round-text-listing-item .roundel-item-text span, .round-text-listing .roundel-item .round-text-listing-item-text span, .round-text-listing .roundel-item .roundel-item-text span, .roundel .round-text-listing-item .round-text-listing-item-text span, .roundel .round-text-listing-item .roundel-item-text span, .roundel .roundel-item .round-text-listing-item-text span, .roundel .roundel-item .roundel-item-text span {
        position: relative;
        margin-top: -50%; }
      .round-text-listing .round-text-listing-item .round-text-listing-item-text p, .round-text-listing .round-text-listing-item .roundel-item-text p, .round-text-listing .roundel-item .round-text-listing-item-text p, .round-text-listing .roundel-item .roundel-item-text p, .roundel .round-text-listing-item .round-text-listing-item-text p, .roundel .round-text-listing-item .roundel-item-text p, .roundel .roundel-item .round-text-listing-item-text p, .roundel .roundel-item .roundel-item-text p {
        font-family: 'Gotham Medium', Verdana, Arial, 'sans-serif';
        font-size: 48px; }
        .round-text-listing .round-text-listing-item .round-text-listing-item-text p.small, .round-text-listing .round-text-listing-item .roundel-item-text p.small, .round-text-listing .roundel-item .round-text-listing-item-text p.small, .round-text-listing .roundel-item .roundel-item-text p.small, .roundel .round-text-listing-item .round-text-listing-item-text p.small, .roundel .round-text-listing-item .roundel-item-text p.small, .roundel .roundel-item .round-text-listing-item-text p.small, .roundel .roundel-item .roundel-item-text p.small {
          font-size: 18px;
          line-height: 18px; }
        .ie7 .round-text-listing .round-text-listing-item .round-text-listing-item-text p, .ie7 .round-text-listing .round-text-listing-item .roundel-item-text p, .ie7 .round-text-listing .roundel-item .round-text-listing-item-text p, .ie7 .round-text-listing .roundel-item .roundel-item-text p, .ie7 .roundel .round-text-listing-item .round-text-listing-item-text p, .ie7 .roundel .round-text-listing-item .roundel-item-text p, .ie7 .roundel .roundel-item .round-text-listing-item-text p, .ie7 .roundel .roundel-item .roundel-item-text p {
          left: 50%; }
  .round-text-listing .roundel-item, .roundel .roundel-item {
    width: 50%;
    margin: 0; }
    .round-text-listing .roundel-item .roundel-item-text, .roundel .roundel-item .roundel-item-text {
      background: black;
      color: #fff; }
    @media only screen and (max-width: 479px) {
      .round-text-listing .roundel-item, .roundel .roundel-item {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%; } }
    @media only screen and (max-width: 1024px) {
      .round-text-listing .roundel-item, .roundel .roundel-item {
        width: 80%;
        margin-left: 10%;
        margin-right: 10%; } }
  @media only screen and (max-width: 479px) {
    .round-text-listing .round-text-listing-item, .roundel .round-text-listing-item {
      width: 95.83333%;
      margin-bottom: 50px;
      margin-bottom: 5rem; }
      .round-text-listing .round-text-listing-item > .first-div, .roundel .round-text-listing-item > .first-div {
        width: 50%;
        margin-left: auto;
        margin-right: auto; } }
  @media only screen and (min-width: 480px) {
    .round-text-listing .round-text-listing-item, .roundel .round-text-listing-item {
      width: 95.83333%;
      margin-bottom: 50px;
      margin-bottom: 5rem; }
      .round-text-listing .round-text-listing-item > .first-div, .roundel .round-text-listing-item > .first-div {
        width: 50%;
        margin-left: auto;
        margin-right: auto; } }
  @media only screen and (min-width: 720px) {
    .round-text-listing .round-text-listing-item, .roundel .round-text-listing-item {
      width: 45.83333%; } }
  @media only screen and (min-width: 1200px) {
    .round-text-listing .round-text-listing-item, .roundel .round-text-listing-item {
      width: 15.833333333%;
      /*152/960*/
      margin-bottom: 0; }
      .round-text-listing .round-text-listing-item > .first-div, .roundel .round-text-listing-item > .first-div {
        width: 100%;
        margin-left: auto;
        margin-right: auto; } }

.color-green .round-text-listing .round-text-listing-item .round-text-listing-item-text {
  background: #fff;
  color: #8db024; }

.color-red .round-text-listing .round-text-listing-item .round-text-listing-item-text {
  background: #fff;
  color: #cc3e3e; }

.color-blue .round-text-listing .round-text-listing-item .round-text-listing-item-text {
  background: #fff;
  color: #1aa6c9; }

.testimonial-listing figure {
  float: left;
  display: inline;
  width: 29.166666666%;
  /*280/960*/
  margin-bottom: 50px;
  margin-bottom: 5rem;
  margin-left: 2.08333%;
  margin-right: 2.08333%; }
  .testimonial-listing figure .text {
    color: #000; }
    .testimonial-listing figure .text blockquote {
      margin-bottom: 10px;
      margin-bottom: 1rem; }
      .testimonial-listing figure .text blockquote .blockquote-icon {
        width: 35px;
        width: 3.5rem;
        margin-bottom: 10px;
        margin-bottom: 1rem; }
        .testimonial-listing figure .text blockquote .blockquote-icon img {
          width: 100%; }
    .testimonial-listing figure .text figcaption {
      text-transform: uppercase; }
      .testimonial-listing figure .text figcaption p .figcaption-role {
        color: #989898; }
@media only screen and (max-width: 479px) {
  .testimonial-listing figure {
    width: 95.83333%; } }
@media only screen and (min-width: 480px) {
  .testimonial-listing figure {
    width: 95.83333%; } }
@media only screen and (min-width: 720px) {
  .testimonial-listing figure {
    width: 29.166666666%;
    /*280/960*/ } }

.double-feature-listing .double-feature-listing-item {
  float: left;
  display: inline;
  width: 45.83333%;
  /*440/960*/
  margin-left: 2.08333%;
  margin-right: 2.08333%; }
  .double-feature-listing .double-feature-listing-item .image {
    margin-bottom: 40px;
    margin-bottom: 4rem; }
    .double-feature-listing .double-feature-listing-item .image > * {
      float: left; }
    .double-feature-listing .double-feature-listing-item .image .double-feature-listing-item-icon {
      width: 50%; }
    .double-feature-listing .double-feature-listing-item .image .double-feature-listing-item-photo {
      width: 50%; }
  .double-feature-listing .double-feature-listing-item .text {
    text-align: left; }
    .double-feature-listing .double-feature-listing-item .text h2 {
      font-size: 26px;
      font-size: 2.6rem;
      margin-bottom: 10px;
      margin-bottom: 1rem; }
    .double-feature-listing .double-feature-listing-item .text .price-from {
      font-size: 18px;
      font-size: 1.8rem;
      margin-top: 20px;
      margin-top: 2rem;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
  .ie7 .double-feature-listing .double-feature-listing-item {
    padding: 0; }
  .ie8 .double-feature-listing .double-feature-listing-item {
    padding: 0; }
@media only screen and (max-width: 479px) {
  .double-feature-listing {
    background: none; }
    .double-feature-listing .double-feature-listing-item {
      width: 95.83333%;
      padding: 0;
      margin-bottom: 50px;
      margin-bottom: 5rem; } }
@media only screen and (min-width: 480px) {
  .double-feature-listing {
    background: none; }
    .double-feature-listing .double-feature-listing-item {
      width: 95.83333%;
      padding: 0;
      margin-bottom: 50px;
      margin-bottom: 5rem; } }
@media only screen and (max-width: 719px) {
  .double-feature-listing .double-feature-listing-item .text {
    text-align: center; } }
@media only screen and (min-width: 720px) {
  .double-feature-listing .double-feature-listing-item {
    width: 45.83333%; } }
@media only screen and (min-width: 1200px) {
  .double-feature-listing .double-feature-listing-item {
    margin-bottom: 0; } }

.triple-feature-listing .triple-feature-listing-item {
  float: left;
  display: inline;
  width: 29.166666666%;
  /*280/960*/
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  margin-bottom: 50px;
  margin-bottom: 5rem; }
  .triple-feature-listing .triple-feature-listing-item .image {
    margin-bottom: 40px;
    margin-bottom: 4rem; }
    .triple-feature-listing .triple-feature-listing-item .image > * {
      float: left; }
    .triple-feature-listing .triple-feature-listing-item .image .double-feature-listing-item-icon {
      width: 50%; }
    .triple-feature-listing .triple-feature-listing-item .image .double-feature-listing-item-photo {
      width: 50%; }
  .triple-feature-listing .triple-feature-listing-item .text {
    text-align: center; }
    .triple-feature-listing .triple-feature-listing-item .text h2 {
      font-size: 26px;
      font-size: 2.6rem;
      margin-bottom: 10px;
      margin-bottom: 1rem; }
    .triple-feature-listing .triple-feature-listing-item .text .price-from {
      font-size: 18px;
      font-size: 1.8rem;
      margin-top: 20px;
      margin-top: 2rem;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
@media only screen and (max-width: 479px) {
  .triple-feature-listing {
    background: none; }
    .triple-feature-listing .triple-feature-listing-item {
      width: 95.83333%;
      padding: 0; } }
@media only screen and (min-width: 480px) {
  .triple-feature-listing {
    background: none; }
    .triple-feature-listing .triple-feature-listing-item {
      width: 95.83333%;
      padding: 0; } }
@media only screen and (min-width: 720px) {
  .triple-feature-listing .triple-feature-listing-item {
    width: 29.166666666%;
    /*280/960*/ } }

.contact-details > * {
  float: left;
  display: inline; }
.contact-details .contact-details-map {
  width: 56.818181818%;
  /*250/440*/
  margin-right: 2.272727272%;
  /*10/440*/ }
  .contact-details .contact-details-map .map-canvas {
    width: 100%;
    height: 300px; }
.contact-details .contact-details-text {
  width: 38.636363636%;
  /*170/440*/ }
@media only screen and (max-width: 479px) {
  .contact-details .contact-details-map {
    width: 100%;
    margin-bottom: 20px;
    margin-bottom: 2rem;
    margin-right: 0; }
  .contact-details .contact-details-text {
    width: 100%;
    text-align: center; } }
@media only screen and (min-width: 480px) {
  .contact-details .contact-details-map {
    width: 100%;
    margin-bottom: 20px;
    margin-bottom: 2rem;
    margin-right: 0; }
  .contact-details .contact-details-text {
    width: 100%;
    text-align: center; } }
@media only screen and (min-width: 534px) {
  .contact-details .contact-details-map {
    width: 56.818181818%;
    /*250/440*/
    margin-right: 2.272727272%;
    /*10/440*/ }
  .contact-details .contact-details-text {
    width: 38.636363636%;
    /*170/440*/
    text-align: left; } }
@media only screen and (min-width: 720px) {
  .contact-details .contact-details-map {
    width: 100%;
    margin-bottom: 20px;
    margin-bottom: 2rem;
    margin-right: 0; }
  .contact-details .contact-details-text {
    width: 100%;
    text-align: center; } }
@media only screen and (min-width: 1024px) {
  .contact-details .contact-details-map {
    width: 56.818181818%;
    /*250/440*/
    margin-right: 2.272727272%;
    /*10/440*/ }
  .contact-details .contact-details-text {
    width: 38.636363636%;
    /*170/440*/
    text-align: left; } }

.registration {
  width: 100%; }
  .registration .registration-content {
    float: left;
    display: none;
    width: 41.666666666%;
    /*400/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%; }
    .registration .registration-content .text h2 {
      font-size: 36px;
      font-size: 3.6rem;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .registration .registration-content .text ul {
      list-style: disc;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
      .registration .registration-content .text ul li {
        list-style: disc;
        margin-left: 22px;
        margin-left: 2.2rem;
        font-size: 20px;
        font-size: 2rem; }
        .registration .registration-content .text ul li + li {
          margin-top: 14px;
          margin-top: 1.4rem; }
  .registration .registration-form {
    float: left;
    display: inline;
    width: 50%;
    /*480/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    padding: 40px;
    padding: 4rem;
    /* background: #f0f0f0; */ }
    .ie7 .registration .registration-form {
      width: 479px; }
  @media only screen and (max-width: 479px) {
    .registration .registration-content {
      width: 95.83333%; }
    .registration .registration-form {
      width: 95.83333%; } }
  @media only screen and (min-width: 480px) {
    .registration .registration-content {
      width: 95.83333%; }
    .registration .registration-form {
      width: 95.83333%; } }
  @media only screen and (min-width: 720px) {
    .registration .registration-content {
      width: 41.666666666%;
      /*400/960*/ }
    .registration .registration-form {
      width: 50%;
      /*480/960*/ } }
  .bg-grey .registration .registration-form {
    background: #e3e3e3; }

.double-column {
  width: 100%; }
  .double-column .double-column-single {
    float: left;
    display: inline;
    width: 45.83333%;
    /*440/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    margin-bottom: 50px;
    margin-bottom: 5rem; }
    .double-column .double-column-single .image img {
      border: 2px solid #ccc; }
  @media only screen and (max-width: 479px) {
    .double-column .double-column-single {
      width: 95.83333%; } }
  @media only screen and (min-width: 480px) {
    .double-column .double-column-single {
      width: 95.83333%; } }
  @media only screen and (min-width: 720px) {
    .double-column .double-column-single {
      width: 45.83333%; } }

.narrow-full-width {
  width: 89.130434782%;
  /*820/920*/
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  margin-bottom: 5rem; }
  @media only screen and (max-width: 479px) {
    .narrow-full-width {
      width: 95.83333%; } }
  @media only screen and (min-width: 480px) {
    .narrow-full-width {
      width: 95.83333%; } }
  @media only screen and (min-width: 720px) {
    .narrow-full-width {
      width: 89.130434782%;
      /*820/920*/ } }

.image-and-text-listing {
  width: 100%; }
  .image-and-text-listing .image-and-text-listing-item {
    width: 100%; }
    .image-and-text-listing .image-and-text-listing-item + .image-and-text-listing-item {
      margin-top: 50px;
      margin-top: 5rem; }
    .image-and-text-listing .image-and-text-listing-item > * {
      float: left;
      display: inline; }
    .image-and-text-listing .image-and-text-listing-item .image {
      margin-left: 2.08333%;
      margin-right: 2.08333%;
      width: 29.166666666%;
      /*280/960*/ }
      .image-and-text-listing .image-and-text-listing-item .image img {
        border: 2px solid #ccc; }
    .image-and-text-listing .image-and-text-listing-item .text {
      margin-left: 2.08333%;
      margin-right: 2.08333%;
      width: 62.5%;
      /*600/960*/ }
  @media only screen and (max-width: 479px) {
    .image-and-text-listing .image-and-text-listing-item .image {
      width: 95.83333%;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .image-and-text-listing .image-and-text-listing-item .text {
      width: 95.83333%; } }
  @media only screen and (min-width: 480px) {
    .image-and-text-listing .image-and-text-listing-item .image {
      width: 95.83333%;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .image-and-text-listing .image-and-text-listing-item .text {
      width: 95.83333%; } }
  @media only screen and (min-width: 534px) {
    .image-and-text-listing .image-and-text-listing-item .image {
      width: 29.166666666%;
      /*280/960*/ }
    .image-and-text-listing .image-and-text-listing-item .text {
      width: 62.5%;
      /*600/960*/ } }

.social-icons {
  float: right;
  padding-top: 10px;
  padding-top: 1rem; }
  .social-icons ul li {
    float: left;
    display: inline;
    display: block;
    width: 60px;
    width: 6rem;
    height: 60px;
    height: 6rem; }
    .social-icons ul li img {
      width: 100%; }
    .social-icons ul li + li {
      margin-left: 5px;
      margin-left: 0.5rem; }
  @media only screen and (max-width: 719px) {
    .social-icons {
      float: none;
      padding-top: 20px;
      padding-top: 2rem;
      clear: left; } }

.login-box {
  /* background: #2c999d; */
  padding: 40px;
  padding: 4rem;
  width: 85.416666666%;
  /*820/960*/
  margin-left: 7.291666666%;
  /*70/960*/
  margin-right: 7.291666666%;
  /*70/960*/ }
  .login-box label, .login-box p, .login-box a {
    color: #393939; 
}
  .login-box .error-message {
    color: #fff; }
  @media only screen and (max-width: 719px) {
    .login-box {
      width: 95.83333%;
      margin-left: 2.08333%;
      margin-right: 2.08333%; } }

.landingpage-hero {
  border-bottom: none;
  min-height: 410px; }
  .landingpage-hero .container {
    overflow: visible; }
  .landingpage-hero .left-content {
    float: left;
    width: 60%;
    min-height: 410px;
    position: relative;
    overflow: visible;
    position: relative;
    max-width: none;
    margin-left: 2.08333%; }
    .landingpage-hero .left-content .text {
      color: #fff;
      padding-top: 50px;
      padding-right: 225px; }
      .landingpage-hero .left-content .text h1 {
        font-size: 36px;
        margin-bottom: 20px; }
      .landingpage-hero .left-content .text ul {
        list-style: disc; }
        .landingpage-hero .left-content .text ul li {
          margin-left: 18px;
          list-style: disc; }
          .landingpage-hero .left-content .text ul li + li {
            margin-top: 5px; }
      .landingpage-hero .left-content .text p {
        font-size: 15px; }
      .landingpage-hero .left-content .text .button {
        font-size: 16px;
        float: left;
        padding: 12px 20px 14px 20px;
        -moz-border-radius: 32px;
        border-radius: 32px;
        margin: 0;
        margin-top: 25px;
        background: #000; }
    .landingpage-hero .left-content .color-filler {
      position: absolute;
      width: 200%;
      background: #1aa6c9;
      z-index: 10;
      left: -200%;
      top: 0;
      min-height: 410px; }
  .landingpage-hero .square-holder {
    position: absolute;
    right: 0;
    top: 0;
    width: 205px;
    clear: left; }
    .landingpage-hero .square-holder .square {
      width: 205px;
      height: 205px; }
      .landingpage-hero .square-holder .square.top-square {
        position: relative; }
        .landingpage-hero .square-holder .square.top-square .square-pointer-holder {
          position: absolute;
          left: 50%;
          bottom: -20px;
          width: 42px;
          height: 21px; }
          .landingpage-hero .square-holder .square.top-square .square-pointer-holder .square-pointer {
            position: absolute;
            left: -50%;
            bottom: 0;
            width: 42px;
            height: 21px; }
        .landingpage-hero .square-holder .square.top-square img {
          margin-left: auto;
          margin-right: auto; }
      .landingpage-hero .square-holder .square.bottom-square {
        background: #0B88A8;
        text-align: center;
        color: #fff;
        padding-top: 50px; }
        .landingpage-hero .square-holder .square.bottom-square p {
          font-size: 18px;
          line-height: 18px; }
        .landingpage-hero .square-holder .square.bottom-square .square-price {
          font-size: 64px;
          line-height: 64px; }
  .landingpage-hero.callme {
    background: #f0f0f0 url(/images/hero.jpg) no-repeat center center; }
    .landingpage-hero.callme .left-content {
      background: #1aa6c9; }
      .landingpage-hero.callme .left-content .color-filler {
        background: #1aa6c9; }
    .landingpage-hero.callme .square-holder .top-square {
      background: #189bbb; }
    .landingpage-hero.callme .square-holder .bottom-square {
      background: #1690ae; }
  .landingpage-hero.cartrecovery {
    background: #f0f0f0 url(/images/cartrecovery-hero.jpg) no-repeat center center; }
    .landingpage-hero.cartrecovery .left-content {
      background: #cc3e3e; }
      .landingpage-hero.cartrecovery .left-content .color-filler {
        background: #cc3e3e; }
    .landingpage-hero.cartrecovery .square-holder .top-square {
      background: #c63434; }
    .landingpage-hero.cartrecovery .square-holder .bottom-square {
      background: #ba3131; }
  .landingpage-hero.cartaudit {
    background: #f0f0f0 url(/images/cartaudit-hero.jpg) no-repeat center center; }
    .landingpage-hero.cartaudit .left-content {
      background: #8db024; }
      .landingpage-hero.cartaudit .left-content .color-filler {
        background: #8db024; }
    .landingpage-hero.cartaudit .square-holder .top-square {
      background: #83a321; }
    .landingpage-hero.cartaudit .square-holder .bottom-square {
      background: #79971f; }
  @media only screen and (max-width: 479px) {
    .landingpage-hero .container {
      width: 100%;
      max-width: none; }
    .landingpage-hero .left-content {
      width: 100%;
      margin-left: 0; }
      .landingpage-hero .left-content .text {
        padding: 20px 0 30px 0;
        padding: 2rem 0 3rem 0;
        padding-left: 7.083333333%;
        padding-right: 7.083333333%; }
        .landingpage-hero .left-content .text .button {
          float: none;
          display: inline-block; }
    .landingpage-hero .square-holder {
      width: 100%;
      position: relative; }
      .landingpage-hero .square-holder .square {
        float: left;
        width: 100%;
        padding-left: 7.083333333%;
        padding-right: 7.083333333%;
        height: 205px;
        height: 20.5rem; }
        .landingpage-hero .square-holder .square.top-square img {
          width: 205px;
          width: 20.5rem;
          display: block;
          margin-left: auto;
          margin-right: auto; } }
  @media only screen and (min-width: 480px) {
    .landingpage-hero .container {
      width: 100%;
      max-width: none; }
    .landingpage-hero .left-content {
      width: 100%;
      margin-left: 0; }
      .landingpage-hero .left-content .text {
        padding: 20px 0 30px 0;
        padding: 2rem 0 3rem 0;
        padding-left: 7.083333333%;
        padding-right: 7.083333333%; }
        .landingpage-hero .left-content .text .button {
          float: none;
          display: inline-block; }
    .landingpage-hero .square-holder {
      width: 100%;
      position: relative; }
      .landingpage-hero .square-holder .square {
        float: left;
        width: 100%;
        padding-left: 7.083333333%;
        padding-right: 7.083333333%;
        height: 205px;
        height: 20.5rem; }
        .landingpage-hero .square-holder .square.top-square img {
          width: 205px;
          width: 20.5rem;
          display: block;
          margin-left: auto;
          margin-right: auto; } }
  @media only screen and (min-width: 534px) {
    .landingpage-hero .square-holder .square {
      width: 50%; }
      .landingpage-hero .square-holder .square.top-square .square-pointer-holder {
        left: auto;
        top: 81px;
        top: 8.1rem;
        right: -21px;
        right: -2.1rem;
        height: 42px;
        height: 4.2rem;
        width: 21px;
        width: 2.1rem; }
        .landingpage-hero .square-holder .square.top-square .square-pointer-holder .square-pointer {
          height: 42px;
          height: 4.2rem;
          width: 21px;
          width: 2.1rem;
          left: 0; } }
  @media only screen and (min-width: 720px) {
    .landingpage-hero .left-content {
      padding-left: 5%;
      padding-right: 5%; }
      .landingpage-hero .left-content .text {
        padding-left: 2.083333333%;
        padding-right: 225px;
        padding-right: 22.5rem; }
    .landingpage-hero .square-holder {
      position: absolute;
      right: 0;
      top: 0;
      width: 205px;
      width: 20.5rem; }
      .landingpage-hero .square-holder .square {
        width: 205px;
        width: 20.5rem;
        height: 205px;
        height: 20.5rem;
        padding: 0; }
        .landingpage-hero .square-holder .square.top-square .square-pointer-holder {
          left: 50%;
          top: auto;
          right: auto;
          bottom: -20px;
          bottom: -2rem;
          width: 42px;
          width: 4.2rem;
          height: 21px;
          height: 2.1rem; }
          .landingpage-hero .square-holder .square.top-square .square-pointer-holder .square-pointer {
            left: -50%;
            width: 42px;
            width: 4.2rem;
            height: 21px;
            height: 2.1rem; } }
  @media only screen and (min-width: 1024px) {
    .landingpage-hero .container {
      width: 90%;
      max-width: 960px; }
    .landingpage-hero .left-content {
      float: left;
      width: 60%;
      min-height: 410px;
      position: relative;
      overflow: visible;
      position: relative;
      max-width: none;
      padding-left: 0;
      padding-right: 0;
      margin-left: 2.08333%; }
      .landingpage-hero .left-content .text {
        padding-left: 0; } }

.landingpage-hero.callme .square.top-square .square-pointer {
  background: url(/images/arrows.png) -21px 0 no-repeat; }

.landingpage-hero.cartrecovery .square.top-square .square-pointer {
  background: url(/images/arrows.png) -21px -42px no-repeat; }

.landingpage-hero.cartaudit .square.top-square .square-pointer {
  background: url(/images/arrows.png) -21px -84px no-repeat; }

@media only screen and (max-width: 533px) {
  .landingpage-hero.callme .square.top-square .square-pointer {
    background: none; }

  .landingpage-hero.cartrecovery .square.top-square .square-pointer {
    background: none; }

  .landingpage-hero.cartaudit .square.top-square .square-pointer {
    background: none; } }
@media only screen and (min-width: 534px) {
  .landingpage-hero.callme .square.top-square .square-pointer {
    background: url(/images/arrows.png) 0 0 no-repeat; }

  .landingpage-hero.cartrecovery .square.top-square .square-pointer {
    background: url(/images/arrows.png) 0 -42px no-repeat; }

  .landingpage-hero.cartaudit .square.top-square .square-pointer {
    background: url(/images/arrows.png) 0px -84px no-repeat; } }
@media only screen and (min-width: 720px) {
  .landingpage-hero.callme .square.top-square .square-pointer {
    background: url(/images/arrows.png) -21px 0 no-repeat; }

  .landingpage-hero.cartrecovery .square.top-square .square-pointer {
    background: url(/images/arrows.png) -21px -42px no-repeat; }

  .landingpage-hero.cartaudit .square.top-square .square-pointer {
    background: url(/images/arrows.png) -21px -84px no-repeat; } }
body > footer {
  padding-top: 50px;
  padding-bottom: 50px; }
  body > footer .footer-nav {
    float: left;
    display: inline;
    width: 55.833333333%;
    /*536/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%; }
    body > footer .footer-nav nav .nav-column {
      float: left;
      display: inline;
      width: 28.358208955%;
      /*152/536*/ }
      body > footer .footer-nav nav .nav-column + .nav-column {
        margin-left: 7.462686567%;
        /*40/496*/ }
      body > footer .footer-nav nav .nav-column h4 {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 20px;
        line-height: 2rem;
        margin-bottom: 10px;
        margin-bottom: 1rem; }
      body > footer .footer-nav nav .nav-column ul li {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 20px;
        line-height: 2rem; }
        body > footer .footer-nav nav .nav-column ul li + li {
          margin-top: 2px;
          margin-top: 0.2rem; }
        body > footer .footer-nav nav .nav-column ul li a {
          display: block;
          color: black; }
          body > footer .footer-nav nav .nav-column ul li a:hover {
            color: #a1a1a3; }
    @media only screen and (max-width: 479px) {
      body > footer .footer-nav {
        width: 95.83333%; }
        body > footer .footer-nav nav .nav-column {
          width: 100%; }
          body > footer .footer-nav nav .nav-column + .nav-column {
            margin-top: 20px;
            margin-left: 0; } }
    @media only screen and (min-width: 480px) {
      body > footer .footer-nav {
        width: 95.83333%; }
        body > footer .footer-nav nav .nav-column {
          width: 100%; }
          body > footer .footer-nav nav .nav-column + .nav-column {
            margin-top: 20px;
            margin-left: 0; } }
    @media only screen and (min-width: 720px) {
      body > footer .footer-nav {
        width: 55.833333333%;
        /*536/960*/ }
        body > footer .footer-nav nav .nav-column {
          width: 28.358208955%;
          /*152/536*/ }
          body > footer .footer-nav nav .nav-column + .nav-column {
            margin-top: 0;
            margin-left: 7.462686567%;
            /*40/496*/ } }
  body > footer .footer-identity {
    float: left;
    display: inline;
    width: 35.833333333%;
    /*344/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%; }
    body > footer .footer-identity .footer-identity-logo img {
      float: right; }
    @media only screen and (max-width: 479px) {
      body > footer .footer-identity {
        display: none; } }
    @media only screen and (min-width: 480px) {
      body > footer .footer-identity {
        display: none; } }
    @media only screen and (min-width: 720px) {
      body > footer .footer-identity {
        display: inline; } }
  body > footer div[role=contentinfo] {
    width: 95.83333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    border-top: 1px solid #999999;
    margin-top: 30px;
    margin-top: 3rem;
    padding-top: 30px;
    padding-top: 3rem; }
    body > footer div[role=contentinfo] .footer-copyright {
      float: left;
      display: inline;
      width: 21.739130434%;
      /*200/920*/ }
    body > footer div[role=contentinfo] .footer-accreditations {
      float: left;
      display: inline;
      text-align: right;
      width: 73.913043478%;
      /*680/920*/
      margin-left: 4.347826086%;
      /*40/920*/ }

/* STATES
--------------------------------------- */
.padded-default {
  padding: 20px; }

.has-bottom-margin {
  margin-bottom: 20px;
  margin-bottom: 2rem; }

.no-bottom-margin {
  margin-bottom: 0 !important; }

/* COLOURS 
--------------------------------------- */
.bg-grey {
  background: #f0f0f0; }

.bg-black {
  background: black;
  color: #fff; 
  font-size: 12px;  
  font-weight: bold;
  max-height: 33px;
  left: 5px;
  position: relative;
}

.color-brand-red .double-feature-listing-item-icon {
  background: #cc3e3e; }
.color-brand-red h2,
.color-brand-red a {
  color: #cc3e3e; }
.color-brand-red .button {
  background: #cc3e3e;
  color: #fff; }

.color-brand-blue .double-feature-listing-item-icon {
  background: #1aa6c9; }
.color-brand-blue h2,
.color-brand-blue a {
  color: #1aa6c9; }
.color-brand-blue .button {
  background: #1aa6c9;
  color: #fff; }

.color-brand-green .double-feature-listing-item-icon {
  background: #8db024; }
.color-brand-green h2,
.color-brand-green a {
  color: #8db024; }
.color-brand-green .button {
  background: #8db024;
  color: #fff; }

.color-black .button {
  background: black;
  color: #fff; }

.color-brand {
  color: #2c999d; }

.has-margin {
  margin-bottom: 20px;
  margin-bottom: 4rem; 
}

.elastislide-content {
  width: 95.83333%;
  margin-left: 2.08333%;
  margin-right: 2.08333%; }
  .elastislide-content + .elastislide-content {
    margin-top: 40px; }

.ie7 .elastislide-wrapper {
  display: none !important; }

/* Elastislide Style */
.elastislide-list {
  list-style-type: none;
  display: none; }

.no-js .elastislide-list {
  display: block; }

.elastislide-carousel ul li {
  min-width: 102px;
  /* minimum width of the image (min width + border) */
  width: 102px;
  height: 70px;
  margin-top: 0; }

.elastislide-carousel ul li img {
  max-width: 100%;
  height: auto;
  display: block; }

.elastislide-wrapper {
  position: relative;
  margin: 0 auto;
  min-height: 52px; }

.elastislide-wrapper.elastislide-loading {
  background-image: url(../images/loading.gif);
  background-repeat: no-repeat;
  background-position: center center; }

.elastislide-horizontal {
  padding: 0 40px; }

.elastislide-vertical {
  padding: 40px 10px; }

.elastislide-carousel {
  overflow: hidden;
  position: relative; }

.elastislide-carousel ul {
  position: relative;
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px); }

.elastislide-horizontal ul {
  white-space: nowrap; }

.elastislide-carousel ul li {
  margin: 0;
  -webkit-backface-visibility: hidden; }

.elastislide-horizontal ul li {
  height: 100%;
  display: inline-block;
  margin-right: 16px; }

.elastislide-vertical ul li {
  display: block; }

.elastislide-carousel ul li a {
  display: inline-block;
  width: 100%; }

.elastislide-carousel ul li a img {
  display: block;
  max-width: 100%; }

/* Navigation Arrows */
.elastislide-wrapper nav span {
  position: absolute;
  background: #dddddd url(../images/nav.png) no-repeat 4px 3px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  text-indent: -9000px;
  cursor: pointer;
  opacity: 0.8; }

.elastislide-wrapper nav span:hover {
  opacity: 1; }

.elastislide-horizontal nav span {
  top: 50%;
  left: 10px;
  margin-top: -11px; }

.elastislide-vertical nav span {
  top: 10px;
  left: 50%;
  margin-left: -11px;
  background-position: -17px 5px; }

.elastislide-horizontal nav span.elastislide-next {
  right: 10px;
  left: auto;
  background-position: 4px -17px; }

.elastislide-vertical nav span.elastislide-next {
  bottom: 10px;
  top: auto;
  background-position: -17px -18px; }

.ie7-img {
  display: none; }

.ie7 .ie7-img {
  float: left;
  display: inline;
  width: 12.5%;
  margin-left: 2.08333%;
  margin-right: 2.08333%;
  height: 60px;
  overflow: hidden;
  padding-top: 5px;
  padding-bottom: 5px; }

.no-border {
  border: none !important; }

.extra-margin li + li {
  margin-top: 16px;
  margin-top: 1.6rem; }

/* Cookie consenter */
.consent-section {
  color: #fff;
  display: none;
  width: 100%;
  z-index: 9999; }
  .consent-section container {
    padding: 15px;
    margin: 0 auto; }
    .consent-section container a {
      color: white; }
  .consent-section .consent-heading {
    width: 15.833333333%;
    /*152/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    float: left;
    display: inline; }
    .consent-section .consent-heading h2 {
      font-size: 18px;
      line-height: 1; }
  .consent-section .consent-text {
    width: 55.833333333%;
    /*536/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    float: left;
    display: inline; }
    .consent-section .consent-text p {
      font-size: 12px;
      font-size: 1.2rem; }
  .consent-section .consent-allow {
    width: 15.833333333%;
    /*152/960*/
    margin-left: 2.08333%;
    margin-right: 2.08333%;
    float: left;
    display: inline; }
  @media only screen and (max-width: 720px) {
    .consent-section .consent-heading {
      width: 95.83333%;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .consent-section .consent-text {
      width: 95.83333%;
      margin-bottom: 20px;
      margin-bottom: 2rem; }
    .consent-section .consent-allow {
      width: 95.83333%; } }

/* TALK TO US POPUP */
#talk-popup {
  background: #000000;
  padding: 20px;
  max-width: 100%;
  overflow: hidden;
  margin: 0; }

#talk-popup h1 {
  color: #FFFFFF;
  font-size: 32px;
  margin-bottom: 8px; }

#talk-popup h2 {
  color: #FFFFFF;
  font-size: 22px;
  font-family: 'Gotham Medium', Verdana, Arial, 'sans-serif'; }

#talk-popup #blue-cloud {
  float: left;
  clear: left;
  margin-right: 20px; }

.popup-white {
  background: #FFFFFF;
  padding: 10px;
  margin-top: 30px; }

.popup-white h3 {
  font-family: 'Lato', Calibri, Arial, sans-serif;
  font-size: 20px;
  text-align: left;
  margin: 10px; }

.popup-white .grey-box {
  padding: 10px 0px 20px 0px;
  margin: 20px 0px 10px 0px; }

.popup-white input[type="text"] {
  width: 100%; }

.popup-white .submit-form {
  padding-bottom: 10px; }

/*! fancyBox v2.1.3 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-prev span, .fancybox-next span {
  background-image: url("../images/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("../images/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  z-index: 8040;
  background-image: url("../images/close-button.png");
  background-repeat: no-repeat; }

.fancybox-close:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  /* For IE8 and earlier */ }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("../images/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  /* RGBa with 0.6 opacity */
  background-color: rgba(255, 255, 255, 0.6);
  /* For IE 5.5 - 7*/
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#CCFFFFFF);
  /* For IE 8*/
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#CCFFFFFF)"; }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }
  
#unsupported_browser{
  padding-bottom: 10px;
  font-size: 16px;
}

#username {
  margin-bottom: 25px;
  /* height: 14px; */
}

#password {
  margin-bottom: 5px;
}

#reminder_link{
	text-decoration: underline;
}
#reminder_link_container, p{
	font-size: 10px;
	color: #2c999d !important;
}

input:-webkit-autofill {
     -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset;
}