/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation: remodal-overlay-opening-keyframes 0.3s;
  animation: remodal-overlay-opening-keyframes 0.3s;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation: remodal-overlay-closing-keyframes 0.3s;
  animation: remodal-overlay-closing-keyframes 0.3s;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation: remodal-opening-keyframes 0.3s;
  animation: remodal-opening-keyframes 0.3s;
}

.remodal.remodal-is-closing {
  -webkit-animation: remodal-closing-keyframes 0.3s;
  animation: remodal-closing-keyframes 0.3s;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
/*

A library of transitions for revealing the loaded images
(Heavily) Inspired by http://tympanus.net/codrops/2013/07/02/loading-effects-for-grid-items-with-css-animations/

*/

.effect-parent {
    -webkit-perspective: 1300px;
    -moz-perspective: 1300px;
    perspective: 1300px;
    }


/* EFFECT 1 */
.effect-1 {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 50% 50% -300px;
    -moz-transform-origin: 50% 50% -300px;
    transform-origin: 50% 50% -300px;
    -webkit-transform: rotateX(-180deg);
    -moz-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
    -webkit-animation: fly ease-in-out forwards;
    -moz-animation: fly ease-in-out forwards;
    animation: fly ease-in-out forwards;
}
@-webkit-keyframes fly {
    100% { -webkit-transform: rotateX(0deg); opacity: 1; -webkit-transform-origin:50% 50% 0; }
}

@-moz-keyframes fly {
    100% { -moz-transform: rotateX(0deg); opacity: 1; -moz-transform-origin:50% 50% 0; }
}

@keyframes fly {
    100% { transform: rotateX(0deg); opacity: 1; transform-origin:50% 50% 0; }
}



/* EFFECT 2 */
.effect-2 {
    -webkit-transform: translateY(200px);
    -moz-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-animation: moveUp ease forwards;
    -moz-animation: moveUp ease forwards;
    animation: moveUp ease forwards;
}

@-webkit-keyframes moveUp {
    to { -webkit-transform: translateY(0); opacity: 1; }
}

@-moz-keyframes moveUp {
    to { -moz-transform: translateY(0); opacity: 1; }
}

@keyframes moveUp {
    to { transform: translateY(0); opacity: 1; }
}


/* EFFECT 3 */
.effect-3 {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
    -moz-transform: translateZ(400px) translateY(300px) rotateX(-90deg);
    transform: translateZ(400px) translateY(300px) rotateX(-90deg);
    -webkit-animation: fallPerspective ease-in-out forwards;
    -moz-animation: fallPerspective ease-in-out forwards;
    animation: fallPerspective ease-in-out forwards;
}

@-webkit-keyframes fallPerspective {
    100% { -webkit-transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

@-moz-keyframes fallPerspective {
    100% { -moz-transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}

@keyframes fallPerspective {
    100% { transform: translateZ(0px) translateY(0px) rotateX(0deg); opacity: 1; }
}


/* EFFECT 4 */
.effect-4 {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform-origin: 0% 0%;
    -moz-transform-origin: 0% 0%;
    transform-origin: 0% 0%;
    -webkit-transform: rotateX(-80deg);
    -moz-transform: rotateX(-80deg);
    transform: rotateX(-80deg);
    -webkit-animation: flip ease-in-out forwards;
    -moz-animation: flip ease-in-out forwards;
    animation: flip ease-in-out forwards;
}

@-webkit-keyframes flip {
    100% { -webkit-transform: rotateX(0deg); opacity: 1; }
}

@-moz-keyframes flip {
    100% { -moz-transform: rotateX(0deg); opacity: 1; }
}

@keyframes flip {
    100% { transform: rotateX(0deg); opacity: 1; }
}


/* EFFECT 5 */
.effect-5 {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
    -webkit-animation: moveUp ease-in-out forwards;
    -moz-animation: moveUp ease-in-out forwards;
    animation: moveUp ease-in-out forwards;
}


/* EFFECT 6 */
.effect-6 {

    -webkit-transform:  scale(0.638) translate(-179px);
    -moz-transform:     scale(0.638) translate(-179px);
    transform:          scale(0.638) translate(-179px);

    -webkit-animation: moveUp ease-in-out forwards;
    -moz-animation: moveUp ease-in-out forwards;
    animation: moveUp ease-in-out forwards;
}





/* Universal durations */
.effect-duration-1{
    -webkit-animation-duration: .4s;
    -moz-animation-duration:    .4s;
    animation-duration:         .4s;
}
.effect-duration-2{
    -webkit-animation-duration: .5s;
    -moz-animation-duration:    .5s;
    animation-duration:         .5s;
}
.effect-duration-3{
    -webkit-animation-duration: .6s;
    -moz-animation-duration:    .6s;
    animation-duration:         .6s;
}
.effect-duration-4{
    -webkit-animation-duration: .7s;
    -moz-animation-duration:    .7s;
    animation-duration:         .7s;
}
.effect-duration-5{
    -webkit-animation-duration: .8s;
    -moz-animation-duration:    .8s;
    animation-duration:         .8s;
}
.effect-duration-6{
    -webkit-animation-duration: .9s;
    -moz-animation-duration:    .9s;
    animation-duration:         .9s;
}
.effect-duration-7{
    -webkit-animation-duration: .95s;
    -moz-animation-duration:    .95s;
    animation-duration:         .95s;
}
.effect-duration-8{
    -webkit-animation-duration: 1s;
    -moz-animation-duration:    1s;
    animation-duration:         1s;
}
.effect-duration-9{
    -webkit-animation-duration: 1.05s;
    -moz-animation-duration:    1.05s;
    animation-duration:         1.05s;
}
.effect-duration-10{
    -webkit-animation-duration: 1.1s;
    -moz-animation-duration:    1.1s;
    animation-duration:         1.1s;
}.menu-collapser{position:relative;width:100%;height:48px;padding:0 8px;color:#FFF;font-size:16px;line-height:48px;background-color:#999;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.collapse-button{position:absolute;right:8px;top:50%;width:40px;padding:7px 10px;color:#FFFFFF;font-size:14px;text-align:center;background-color:#0E0E0E;border-radius:2px;cursor:pointer;transform:translate(0, -50%);-o-transform:translate(0, -50%);-ms-transform:translate(0, -50%);-moz-transform:translate(0, -50%);-webkit-transform:translate(0, -50%);box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.collapse-button:hover,.collapse-button:focus{color:#FFF;background-color:#040404}.collapse-button .icon-bar{display:block;height:2px;width:18px;margin:2px 0;background-color:#F5F5F5;border-radius:1px}ul.slimmenu{width:100%;margin:0;padding:0;list-style-type:none}ul.slimmenu:before,ul.slimmenu:after{content:'';display:table}ul.slimmenu:after{clear:both}ul.slimmenu.collapsed li{display:block;width:100%;box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}ul.slimmenu.collapsed li>ul{position:static;display:none}ul.slimmenu.collapsed li a{display:block;border-bottom:1px solid rgba(0,0,0,0.075);box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}ul.slimmenu.collapsed li .sub-toggle{height:40px}ul.slimmenu li{position:relative;float:left;display:inline-block;background-color:#AAA}ul.slimmenu li ul{margin:0;list-style-type:none}ul.slimmenu li ul li{background:#bbbbbb}ul.slimmenu li>ul{position:absolute;left:0;top:100%;z-index:999;display:none;width:100%}ul.slimmenu li>ul>li ul{position:absolute;left:100%;top:0;z-index:999;display:none;width:100%}ul.slimmenu li a{display:block;padding:12px 64px 12px 16px;color:#333;font-size:16px;font-weight:400;transition:background-color 0.5s ease-out;-o-transition:background-color 0.5s ease-out;-moz-transition:background-color 0.5s ease-out;-webkit-transition:background-color 0.5s ease-out}ul.slimmenu li a:hover{text-decoration:none;background-color:#999}ul.slimmenu li .sub-toggle{background:none repeat scroll 0 0 rgba(0,0,0,0.075);position:absolute;right:0;top:0;z-index:999;width:48px;height:100%;text-align:center;cursor:pointer}ul.slimmenu li .sub-toggle:before{content:'';display:inline-block;height:100%;margin-right:-0.25em;vertical-align:middle}ul.slimmenu li .sub-toggle>i{display:inline-block;color:#333;font-size:18px;vertical-align:middle}ul.slimmenu>li{border-left:1px solid #999}ul.slimmenu>li:first-child,ul.slimmenu>li.has-submenu+li{border-left:0}
/* =============================================================================
   HTML5 Boilerplate CSS: h5bp.com/css
   ========================================================================== */

@font-face {
	font-family: 'socicon';
	src: url('/wp-content/themes/imaginesoftware/css/font/socicon-webfont.eot?x87746');
	src: url('/wp-content/themes/imaginesoftware/css/font/socicon-webfont.eot?#iefix&x87746') format('embedded-opentype'),
	     url('/wp-content/themes/imaginesoftware/css/font/socicon-webfont.woff?x87746') format('woff'),
	     url('/wp-content/themes/imaginesoftware/css/font/socicon-webfont.ttf?x87746') format('truetype'),
	     url('/wp-content/themes/imaginesoftware/css/font/socicon-webfont.svg#sociconregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

.skip-to-content-link {
  background: #232729;
  border: 2px solid #0599ce;
  border-top: 0;
  border-radius: 0 0 5px 5px;
  height: auto;
  line-height: 1; 
  left: 50%;
  margin-left: -25px;
  color: #fff;
  padding: 4px 20px;
  position: absolute;
  transform: translateY(-100%);
  transition: transform 0.3s;
  font-size: 13px;
}
.skip-to-content-link:hover { color: #fff; }
.skip-to-content-link:focus {
  transform: translateY(0%);
}

.socicon {
    font-family: 'socicon' !important; text-transform: none !important; 
}

article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
audio:not([controls]) { display: none; }
[hidden] { display: none; }

html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
html, button, input, select, textarea { font-family: sans-serif; color: #222; }
body { margin: 0; font-size: 1em; line-height: 1.4; }

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

a { color: #0599ce; }
a:visited {}
a:hover { color: #333; }
a:focus { outline: thin dotted; }
a:hover, a:active { outline: 0; }

abbr[title] { border-bottom: 1px dotted; }
b, strong { font-weight: bold; }
blockquote { margin: 1em 40px; }
dfn { font-style: italic; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
ins { background: #ff9; color: #000; text-decoration: none; }
mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
q { quotes: none; }
q:before, q:after { content: ""; content: none; }
small { font-size: 85%; }

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

ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
dd { margin: 0 0 0 40px; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }

img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }

svg:not(:root) { overflow: hidden; }

figure { margin: 0; }

form { margin: 0; }
fieldset { border: 0; margin: 0; padding: 0; }
label { cursor: pointer; }
legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
button, input { line-height: normal; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
button[disabled], input[disabled] { cursor: default; }
input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
/*input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }*/
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
textarea { overflow: auto; vertical-align: top; resize: vertical; }
input:valid, textarea:valid {  }
input:invalid, textarea:invalid { background-color: #f0dddd; }

table { border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }

.chromeframe { margin: 0.2em 0; background: #ccc; color: black; padding: 0.2em 0; }



/* ===== Primary Styles ========================================================
   Author: Everest Agency
   ========================================================================== */

/* * {-webkit-transition: color .25s, background-color .25s, padding .25s, margin .25s, height .25s, width .25s, opacity .25s;
     -moz-transition:  color .25s, background-color .25s, padding .25s, margin .25s, height .25s, width .25s, opacity .25s;
      -ms-transition:  color .25s, background-color .25s, padding .25s, margin .25s, height .25s, width .25s, opacity .25s;
          transition:  color .25s, background-color .25s, padding .25s, margin .25s, height .25s, width .25s, opacity .25s;} */
html {height:100%;}
body {-webkit-font-smoothing: antialiased; font-family: 'Roboto', "proxima-nova", sans-serif; color: #40474a;}
ul {padding:0; margin:0;}
li {list-style:none;}
h1 {font-size:40px; margin:0; padding:0; font-weight:100; line-height:46px; padding-bottom:20px; color:#189ace; font-family: 'Roboto', sans-serif;}
h2 {font-size:20px; margin-bottom:0; color:#189ace; font-family: 'Roboto', sans-serif;}
h3 {}
h4 {font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #189ace;}
h5 {}
h6 {}
p {margin-top:0; line-height: 26px; padding-bottom:20px;}
a {text-decoration:none;}
a:hover {}
table, table td {border:0;}

.row {max-width:1200px; margin:0 auto; position: relative;}
.spacer {margin:0;}
.alignleft {float:left; margin-right: 15px;}
.alignright {float:right; margin-left: 15px;}
.two_column {width:50%; float:left; box-sizing: border-box;}
.three_column {width:33.333%; float:left; box-sizing: border-box;}
.four_column {width:25%; float:left; box-sizing:border-box;}
.five_column {width:20%; float:left; box-sizing:border-box;}


/* Global */
.whiteoutline {color:#fff; font-weight:700; text-transform:uppercase; letter-spacing:2px; font-size:14px; display:inline-block; border:1px solid #fff; padding:15px 30px;}
.whiteoutline:hover {background:#189ace; color:#fff;}
.blueoutline {color:#189ace; font-weight:700; text-transform:uppercase; letter-spacing:2px; font-size:14px; display:inline-block; border:1px solid #189ace; padding:15px 30px;}
.blueoutline:hover {background:#189ace; color:#fff;}
.bluebutton, .subscribe-widget input[type=submit] {background:#0599ce; font-weight:700; border:none; color:#fff; text-transform:uppercase; letter-spacing:2px; font-size:14px; display:inline-block; padding:15px 30px;}
.bluebutton:hover, .subscribe-widget input[type=submit]:hover {background:#333; color:#fff;}
.bluebutton.small, .subscribe-widget input[type=submit].small {font-size:10px; padding:5px 15px;}
.section {padding:80px 0;}
.sectiontitle {position:relative; padding:0 0 30px;}
.sectiontitle h2 {text-align:center; font-size:36px; text-transform:uppercase; letter-spacing:2px;}
.sectiontitle .sectionbutton {position:absolute; top:15px; right:0; font-size:10px; padding:5px 30px;}

/* Dropdown Nav */
.nav {display:block; margin:0 auto; padding:0; position:relative;}
.nav ul {margin:0; padding:0;}
.nav li {list-style: none; display: inline-block; position: relative;}
.nav li a {text-decoration:none; display: inline-block;}
.nav li a:hover {}
.nav li ul.sub-menu {display:none; position:absolute;  top:35px; left:10px; width:180px; height:auto; overflow:hidden; z-index:100; font-size:12px;}
.nav li ul.sub-menu ul.sub-menu { display: block; position: relative; top: 0; left: 0; }
.nav li ul.sub-menu li {padding-bottom:0px; display:block; text-align:left;}
.nav li:hover ul.sub-menu { display:block;}
.nav li ul.sub-menu li a {padding:10px; display:block; line-height:14px; font-size:14px; background:rgba(255,255,255,.9); border-bottom:1px solid #fff;}
.nav li ul.sub-menu li ul.sub-menu li a { padding-left: 25px; }
.nav li ul.sub-menu li a:hover {background:#0599ce; color:#fff;}
.nav li ul.sub-menu li:last-child a {}



/* Header */
header {height:150px; padding:35px 0; box-sizing:border-box;}
header .logo {float:left;}
header .logo img {width:195px; height:auto;}
.topnav {position:absolute; top:0; right:0;}
.nav {position:absolute; right:0; bottom:0; font-family: 'Roboto', sans-serif;}
.nav a {font-size:26px; font-weight: 100; display:block; padding:0 20px;}
.topnav li, .topnav ul, .topnav div {display:inline-block;}
.topnav li {font-size: 12px; font-weight:700; text-transform:uppercase; letter-spacing:2px; padding:0 6px;}
.topnav a {color:#0599ce;}
.topnav li.menu-item-556 a {
  background-color: #0599ce;
  border-radius: 15px;
  color: white;
  padding: 8px 6px 7px 9px;
}
.topnav a:hover {color:#333;}
.topnav ul.socicon {width:80px; text-align: right;}
.topnav ul.socicon li {text-transform:none; letter-spacing: 0;}

/* SEARCH */
.search-toggle .fa {
  color: #0599ce;
  cursor: pointer;
}
.search-field {
  margin-bottom: 0;
}
form.search-form {
  display: none;
  left: 0;
  /*height: 72px;*/
  padding: 0;
  position: absolute;
  top: -7px;
  width: 100%;
  z-index: 100;
}
form.search-form .input-group {
  display: table;
  width: 100%;
}
form.search-form .input-group input[type="search"],
form.search-form .input-group .input-group-btn {
  -webkit-appearance: none;
  display: table-cell;
  height: 39px;
}
form.search-form .input-group .input-group-btn {
  width: 75px;
}
form.search-form .input-group .input-group-btn button {
  background-color: #0599ce;
  border: none;
  color: white;
  font-weight: bold;
  height: 39px;
}
form.search-form .fa-times {
  cursor: pointer;
  font-size: 1.5em;
  position: absolute;
  right: 90px;
  top: 47%;
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}
.mobilenav .search {
  padding: 7px 10px 0 25px;
}
.mobilenav .search .search-form {
  height: 72px;
  position: relative;
}
@media (max-width: 767px) {
  form.search-form .fa-times {
    top: 50%;
  }
}
form.search-form .input-group {
  /*left: 50%;*/
  max-width: 1170px;
  /*top: 50%;*/
  /*-ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
  width: 100%;
}
form.search-form .input-group-btn {
  width: 50px;
}
@media (max-width: 767px) {
  form.search-form {
    top: 60px;
  }
}

.topnav.search-open form,
.mobilenav.search-open form {
  display: block !important;
}
@media (max-width: 960px) {
  .topnav.search-open form .input-group,
  .mobilenav.search-open form .input-group {
    position: absolute;
  }
}
@media (max-width: 767px) {
  .topnav.search-open form .input-group,
  .mobilenav.search-open form .input-group {
    padding: 0 25px;
  }
}

.headercontent h1 > span {
  font-weight: bold;
}
.headercontent > h1 { color: #fff; }

.headercontent h2.subhead { font-size: 18px; font-weight: normal; color: #fff; margin-top: -10px; }

.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.search-field.form-control{width:100% !important}.form-inline .input-group .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}
.search-toggle .fa.fa-search span { text-indent: -9999px; overflow: hidden; display: inline-block; } 
/* END SEARCH */

.topnav ul li {position:relative;}
.topnav ul li ul.sub-menu {display:block; position:absolute; left:0; z-index:1000; width:200px;}
.topnav ul li ul.sub-menu li {display:block;}
.topnav ul li ul.sub-menu li a {background:rgba(5,153,206,.9); color:#fff; display:block; padding:10px;}
.topnav ul li ul.sub-menu li a:hover {background:#333;}
.topnav ul li ul.sub-menu {display:none;}
.topnav ul li:hover ul.sub-menu {display:block;;}

#homeheader {height:685px; background:#189ace; padding: 0;}

.slidenav li {float:left;}
.slidenav li a {display:block; height: 75px; line-height:75px; padding:0 20px; font-weight:700; text-transform:uppercase; letter-spacing:2px; font-size:12px; border-right:1px solid #0599ce;}
.slidenav li a:hover, .slidenav li a.active {background:#189ace; color:#fff;}
.homeslides .slide {height:685px; background:url('/wp-content/themes/imaginesoftware/images/slide-bg.jpg?x87746') center center no-repeat; background-size:cover;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;}
#homeheader .bx-wrapper .bx-viewport {border: none; left: 0;}

@media (max-width: 480px) {
  #homeheader{ height: 550px; }
  .homeslides .slide {height: 550px; }
  .homeslides .slide:nth-of-type(3) { background-image: url(/wp-content/uploads/2016/05/skybridge-bg1.jpg) !important; }
  .homeslides .slide:nth-of-type(4) { background-image: url(/wp-content/uploads/2016/05/invesco-bg.jpg) !important; }
  .homeslides .slide:nth-of-type(5) { background-image: url(/wp-content/uploads/2016/05/gh-financial-bg1.jpg) !important; }
  .homeslides .slide:nth-of-type(6) { background-image: url(/wp-content/uploads/2016/05/skybridge-bg.jpg) !important; }
  .homeslides .slide:nth-of-type(7) { background-image: url(/wp-content/uploads/2016/05/ledbury-partners-bg.jpg) !important; }

  .inline-YTPlayer { display: none !Important; }
}

.slide {
  position: relative;
}

.slide .whole-slide-link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

/* Home */
#homeheader {position:relative;}
.slidenav {position:absolute; bottom:0; width:100%;}
.homecallout {width:505px; background:url('/wp-content/themes/imaginesoftware/images/gray-pattern.jpg?x87746') center center no-repeat #3a4043; background-size:cover; height:540px; position:absolute; right:0; top:150px; z-index:1; box-sizing:border-box; padding:50px; color:#fff;}
.homecallout h1 {font-size:38px; line-height:54px; padding-bottom:50px; font-weight:100; color:#fff;}
.homecallout h1 strong {color:#189ace;}
.homecallout p { line-height:inherit; margin-bottom: 0; padding-bottom: 0;}
.homeslides .slide .navholder {background:rgba(255,255,255,.8); height: 75px; width: 100%; position: absolute; bottom:0; left:0; right:0;}

#whatwedo {background:url(/wp-content/themes/imaginesoftware/images/home-what-we-do-bg-2.jpg?x87746) bottom right no-repeat; background-size: cover; padding:100px 0 200px;}
#whatwedo .two_column {padding:0 50px;}

#news .three_column {padding:15px; }
.newsentry {box-shadow:0px 0px 10px rgba(0,0,0,.1)}
.newsentry .newsimage {height:190px; /* background:#ccc; */}
.newimageholder {width:100%; height:100%; }
body.category-awards .newimageholder { background-color: #159ace !important; }
.newsentry .newscontent {padding:40px; position:relative; height:240px;}
.newsentry .category {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700; color:#189ace;}
.newscontent h2 {font-size:22px; font-weight:100; color:#333; padding-bottom:20px;}
.newscontent p {font-size:12px; line-height:20px;}
.newscontent .date {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700; color:#727579; position:absolute; bottom:40px; left:40px;}
.newscontent .socialshare {position:absolute; right:40px; bottom:40px; width:30%; text-align: right;}
.newscontent .socialshare li {display:inline-block;}
.newscontent h2 {
display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 400px;
  height: 45px;
  /* Fallback for non-webkit */
  margin: 0 auto;
  line-height: 1.4;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
margin-bottom:10px;
}

.newscontent p {
display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 440px;
  height: 85px;
  /* Fallback for non-webkit */
  margin: 0 auto;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}


#people {background:url('/wp-content/themes/imaginesoftware/images/home-people.jpg?x87746') center center no-repeat #1795c8; background-size:cover; padding:130px; 0}
#people .two_column {padding:0 50px;}
#people .two_column:first-child {padding:70px 50px}
#people h3, #people h4, #people h5, #people h1, #people p {color:#fff;}
#people h3 { font-size: 14px; letter-spacing: 2px; }
#people h4 { letter-spacing: 0; font-size: 40px; text-transform: none; margin: 0; padding: 0; font-weight: 100; line-height: 46px; padding-bottom: 20px; }
#people .two_column.collagewrap {padding-top:100px;}

.peopleentry {height:270px; background:url('/wp-content/themes/imaginesoftware/images/people-default.jpg?x87746') center center no-repeat #333; background-size: cover; margin:20px 0;  box-sizing:border-box; position:relative;}
.peopleentry .peoplecontent {width:50%; position:absolute; top:50%; right:0; padding:30px 20px; transform:translateY(-50%); -webkit-transform:translateY(-50%);  -ms-transform:translateY(-50%); -moz-transform:translateY(-50%); box-sizing:border-box; }
.peoplecontent .category {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700; color:#189ace;}
.peoplecontent h2 {color:#fff; font-weight:100;}
.peopleentry.darkcontent h2, .peopleentry.darkcontent .title, .peopleentry.darkcontent p {color:#333;}
.peoplecontent .title {font-size:12px; text-transform:uppercase; letter-spacing:2px; font-weight:700; padding-bottom:10px; display:block; color:#fff;}
.peoplecontent p {font-size:12px; padding:0; margin:0; color:#fff;}
.peopleentry .bioexcerpt p {line-height:20px;}
.peopleentry .bioexcerpt {
display: block;
  /* Fallback for non-webkit */
  display: -webkit-box;
  max-width: 400px;
  height: 60px;
  /* Fallback for non-webkit */
  margin: 0 auto;
  font-size: 26px;
  line-height: 1.4;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.biobutton {display:block; width:100%; height:100%; background:rgba(5,153,206,.9); position:relative; text-align:center; top:100%; transition: top .25s;}
.biobutton span {display:block; text-align:center; width:50%; color:#fff; text-transform:uppercase; letter-spacing:2px; font-weight:700; font-size:14px; position:relative; top:50%; left:50%; transform:translate(-50%, -50%); -webkit-transform:translate(-50%, -50%); -ms-transform:translate(-50%, -50%); -moz-transform:translate(-50%, -50%); border:1px solid #fff; padding:10px; box-sizing:border-box;}
.peopleentry {overflow:hidden;}
.peopleentry:hover .biobutton {top:0; transition: top .25s;}

.peoplepopup {}
.fullbiocontent {text-align:left; padding-left:230px;}
.fullbiocontent h2 {font-size:32px; font-weight:100; margin-top:0;}
.fullbiocontent .title {font-size:14px; text-transform:uppercase; letter-spacing:2px; font-weight:700; padding-bottom:20px;display:block;}
.fullbioimage {width:200px; height:200px; float:left;}

.remodal-overlay {background:rgba(5,153,206,.9);}

.peopleentry .title {color:#0599ce !important;}


@media only screen and (min-width: 641px) {
	.remodal {padding:4%; max-width:80%;}
}




#awards {background:url('/wp-content/themes/imaginesoftware/images/gray-pattern.jpg?x87746') center center no-repeat #41494c; background-size:cover; color:#fff; text-align:center; padding:50px 0 70px;}
#awards img {height:160px;}
#awards .four_column img {height:100px;}
.awardcontent {padding:10px; width:160px; margin:0 auto;text-align:left; padding-left:100px; position:relative;}
.awardcontent .date {display:block; margin-left:-50px; float:left; font-weight:700;}


/* Footer */
#footer {background:#232729; color:#fff;} /* #32383a */
.footerlogo img {width:195px; height: auto; padding-bottom:30px;}
#footer h2 {padding-bottom:20px;}
#footer a {font-weight:700;}
#footer a:hover {color:#eee;}
#footer p {padding-bottom:10px;}
#footer .socicon li {display:inline-block; margin-right: 15px; }
#locationrow ul {margin:50px 0; padding:30px 0; border-top:1px solid #43484a;  border-bottom:1px solid #43484a; text-align:center;}
#locationrow ul li {font-weight:700; font-size:14px; text-transform:uppercase; letter-spacing:2px; display:inline-block; padding:0 30px; color:#0599ce;}

#signoff {text-align:center; font-size:10px; text-transform:uppercase; letter-spacing:2px;}
#signoff a {color:#fff; padding:0 20px}
#signoff .copyright { display: block; padding:30px 10px 10px 10px;}


/* Solutions */
.interiorheader {background:#05151f;}
#solutionspage {background:url('/wp-content/themes/imaginesoftware/images/header-solutions.jpg?x87746') center center no-repeat #05151f;}
.headercontent {color:#fff; padding-right:30%;}
.headercontent p {font-size:20px; font-weight:300; line-height:34px;}

.headernav li {float:left;}
.headernav li a {color:#fff; font-weight:700; text-transform:uppercase; letter-spacing:2px; font-size:12px; display:block; padding: 20px 10px;} 
.headernav .sub-menu > li > a { display:block; padding: 0 10px; height: 56px; text-align: center; display: table; } 
.headernav .sub-menu > li > a > span { display: table-cell; vertical-align: middle; }
.headernav {position:absolute; bottom:-80px; left:0;}
.headernav li a:hover {background:rgba(255,255,255,.1)}
.headernav li.current_page_item > a {background:#fff; color:#0599ce}

.headernav {width:100%;}
.headernav ul {width:100%;}
.headernav li {display:block; width:100%;}
.headernav li .sub-menu li {width:auto;}
.headernav li a {display:inline-block; float:left;}

.leftcolumn {width:75%; float:left; box-sizing:border-box; padding:0 120px 0 40px;;}
.rightcolumn {float:left; width:25%; box-sizing:border-box;}

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

blockquote {margin:50px -30px; box-shadow:0 0 10px rgba(0,0,0,.1); padding:40px; padding-left:180px; font-style:italic; color:#0599ce; border-top:5px solid #84cde7; position:relative;}
blockquote.nologo {padding-left:40px;}
blockquote .clientlogo {float:left; margin-left:-140px;}
blockquote p {padding-bottom:0;}
blockquote .quotecredit {font-size:10px; font-style:normal; text-transform:uppercase; letter-spacing:2px; font-weight:700; text-align:center; display:block; }
.testimoniallink {background:#84cde7; font-size:10px; font-style:normal; text-transform:uppercase; letter-spacing:2px; font-weight:700; display:inline-block; padding:5px 20px; color:#fff; position:absolute; top:-25px;right:0;}
.testimoniallink:hover {color:#eee;}

/* Temp Blockquote */
blockquote {
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#0599ce+0,84cde7+100 */
	background: #0599ce; /* Old browsers */
	background: -moz-linear-gradient(top,  #0599ce 0%, #84cde7 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#0599ce), color-stop(100%,#84cde7)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #0599ce 0%,#84cde7 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #0599ce 0%,#84cde7 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #0599ce 0%,#84cde7 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #0599ce 0%,#84cde7 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0599ce', endColorstr='#84cde7',GradientType=0 ); /* IE6-9 */
	color:#fff; padding-left:270px; font-size:20px; box-shadow:0 10px 20px rgba(0,0,0,.3); border-bottom: 5px solid #b8ecff;
}
blockquote .clientlogo {width:180px; margin-left:-230px; box-shadow:0 10px 0 rgba(255,255,255,.5); padding:10px;background:#fff;}

.widget {border:1px solid #0599ce; margin-bottom:30px; display:block; padding:30px;}
.widget h2 {margin-top:0; padding:0 0 10px; font-weight:700;}
.widget .widget-title {font-size:20px; margin:0; padding:0 0  10px;; line-height:30px;}
form input, form textarea {border:1px solid #ddd; display:block; width:100%; padding:10px; box-sizing:border-box; margin-bottom:10px; font-size:14px; font-weight:700;}
.widget .smalllink {font-size:10px;}
.downloadbutton {text-transform:uppercase; letter-spacing:2px; font-weight:700; padding-left:120px;}
.downloadbutton img {float:left; margin-left:-90px; margin-top:-40px; width:70px; height:85px;}
body.page-template-page-solutions .downloadbutton img { margin-top: -10px; }
.downloadbutton:hover {background:#0599ce; color:#fff;}
.widget.downloadbutton { padding: 30px 30px 20px 120px;}
.widget.downloadbutton:after {  content: "";
  display: table;
  clear: both; }

.calltoaction {border-top:1px solid #ccc; border-bottom:1px solid #ccc; text-align:center;}
.calltoaction p {padding-bottom:10px; margin-bottom:10px;}

#relatedsolutions .three_column {padding:15px; }
.solutionsentry {box-shadow:0px 0px 10px rgba(0,0,0,.1)}
.solutionsentry .solutionsimage {height:220px; background:#ccc;}
.solutionsentry .solutionscontent {padding:40px; position:relative;}
.solutionsentry .category, .articlemeta .category {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700; color:#189ace;}
.solutionscontent h2 {font-size:22px; font-weight:100; color:#333; padding-bottom:20px;}
.solutionscontent p {font-size:12px; line-height:20px;}
.solutionscontent .date {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700; color:#b0b2b3; position:absolute; bottom:40px; left:40px;}
.solutionscontent .socialshare {position:absolute; right:40px; bottom:40px;}
.solutionscontent .socialshare li, .articlemeta .socialshare li {display:inline-block;}
.solutiontitle {background:#3e4548; color:#fff; padding:40px; text-transform:uppercase; font-weight:700; font-size:30px; }
.clientlogo {width:110px;}

.iconlist {margin-bottom:50px; padding-left: 0 !important;}
.iconlist li {width:33.333%; float:left; box-sizing:border-box; padding:10px; list-style: none !important;}
.iconlist li a {display:block; padding:20px; border:2px solid #0599ce; text-align:center; text-transform:uppercase; letter-spacing:2px; font-size:12px; font-weight:700}
.iconlist li a img {width:80%; height:auto;}
.iconlist li a:hover {background:#eee;}
.iconlist li.threeup {width:33.2%;}
.iconlist li.sixup {width:16.6%; padding-left: 0; padding-right: 20px; }

.iconlist {display:flex; width:100%; flex-wrap:wrap}
.iconlist li {width:24.9%; display:flex; }

.clientlogos {padding-left: 0 !important;}
.clientlogos li {width:20%; float:left; list-style: none !important;}
.clientlogos li a img,
.clientlogos li img {width:80%; opacity:1}
.clientlogos li a:hover img,
 .clientlogos li:hover img{ opacity:1}

.partnerheader {margin:30px 0; background:#189ace; color:#fff; padding:10px 20px;}


/* People */
#peoplepage {background:url('/wp-content/themes/imaginesoftware/images/header-people.jpg?x87746')center center no-repeat #296c88;}
.onecolumn {padding:0 15%}
.peoplelist {padding:0 5%;}
.peoplelist .peopleentry {width:48%; margin:0 1% 20px; float:left;}

.page-template-page-people .peopleentry {border-top:5px solid #189ace}
.page-template-page-people .peopleentry.loc-newyork {border-color:#189ace;}
.page-template-page-people .peopleentry.loc-newyork .peoplecontent .category {color:#189ace;}
.page-template-page-people .peopleentry.loc-sydney {border-color:#fe7b33;}
.page-template-page-people .peopleentry.loc-sydney .peoplecontent .category {color:#fe7b33;}
.page-template-page-people .peopleentry.loc-london {border-color:#2a67af;}
.page-template-page-people .peopleentry.loc-london .peoplecontent .category {color:#2a67af;}
.page-template-page-people .peopleentry.loc-hongkong {border-color:#98110f;}
.page-template-page-people .peopleentry.loc-hongkong .peoplecontent .category {color:#98110f;}
.page-template-page-people .peopleentry.loc-cleveland {border-color:#feac41;}
.page-template-page-people .peopleentry.loc-cleveland .peoplecontent .category {color:#feac41;}

.page-template-page-people-montage .onecolumn {padding:0 6%;}


/* News */
#newspage {padding:50px 0;}
#newspage .headercontent p:last-child {padding-bottom:0; margin-bottom:0;}
.newspage .leftcolumn {padding:0 80px 0 0}
.featurenews .newsimage {width:50%; float:left; height:400px;}
.featurenews .newscontent {float:left; width:50%; box-sizing:border-box;height:400px;}
.featurenews {padding-bottom:50px; margin:0 2% 50px; border-bottom:1px solid #b3dbea}
.newslist .newsentry {width:46%; margin:0 2% 30px; float:left;}

.widget ul {border-top:1px solid #eee;}
.widget ul li {border-bottom:1px solid #eee;}
.widget ul li a {display:block; padding:10px 0; font-size:12px; text-transform:uppercase; letter-spacing:2px; font-weight:700;}
.widget p {font-size:14px;}

.tweet .handle {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700;}
.tweet .date, .articlemeta .date {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700; color:#727579;}

.prev-next-posts .prev-posts-link {float:left;}
.prev-next-posts .next-posts-link {float:right;}
.prev-next-posts a {font-size:12px; text-transform:uppercase; letter-spacing:2px; font-weight:700}
.prev-next-posts {padding:0 15px;}

/* News Sidebar */
.subscribe-widget form label, .subscribe-widget form label + br {display: none;}
.subscribe-widget form {margin-top: 15px;}
.subscribe-widget p {padding: 0;}

/* News Detail */
.featureimage {height:426px; background:#ccc;}
.articlemeta {padding:20px 0; border-bottom:1px solid #ccc; margin-bottom:50px;}
.articlemeta .category, .articlemeta .date {float:left; margin-right:20px;}
.articlemeta .socialshare {float:right;}

.article h3 {font-weight:100; padding-bottom:20px; line-height:30px;}

.article {padding-bottom:30px; border-bottom:1px solid #ccc; margin-bottom:50px;}

.newspage .sectiontitle h2 {font-size:24px; padding-bottom:20px;}


/* Contact */
#contact {background-color:#01071c; height:514px; box-sizing: border-box;}
#contactmap .everest-map, #contactmap img.everest-map-background {width: 1200px; height: 514px; display:block; margin: 0 auto;}
#contactmap {background:#006a91;}
#contactmap .everest-map-marker {width: 56px; height: 56px; background: url('/wp-content/themes/imaginesoftware/images/marker.png?x87746') center no-repeat; margin-top: -28px;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;}
#contactmap .everest-map-marker.everest-map-marker-active {background-image: url('/wp-content/themes/imaginesoftware/images/marker.png?x87746') !important; background-color: #fff; z-index: 999;
    -webkit-box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);}
#contactmap .everest-map-panel {background: #fff; padding: 20px 40px 30px 40px;
    -webkit-box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.3);}
#contactmap .everest-map-panel.everest-map-panel-flipped {z-index: 998;}
#contactmap .everest-map-panel h1 {font-size: 1.6em; margin: 0; padding: 0;}
.tabs .tab {display:none;}
.tabs .tab.active {display:block;}
.tabnavigation li {float:left; width:20%; padding:30px 0;}
.tabnavigation li a {display:block; text-align:center; padding:20px;border-bottom:1px solid #ccc; text-transform:uppercase; letter-spacing:2px; font-weight:700; font-size:12px;}
.tabnavigation li.active a {border:1px solid #ccc; border-bottom:0;}

.leftcolumn .tabnavigation li  {list-style:none;}
.leftcolumn .tabnavigation {padding:0; margin:0;}
.tabs .tab {padding:30px;}
.tab h3 {margin-bottom:0;}

.formrow span .halfinput {width:49%;margin:0 1% 0 0; float:left;}
.formrow span:first-child .halfinput {margin-right:1%;}
.formrow span:last-child .halfinput {margin-right:1%;}
.formrow {padding-bottom:10px;}
.formrow label {font-size:13px; color:#189ace; font-weight:700;}
.formrow .wpcf7-not-valid-tip { font-size:14px;}

.contactdetails .socicon { margin-right: 10px; }

/* Solutions Graphic */
.solutiongraphic .solutionsgraphicholder {margin:0;}
.solutionsgraphicholder {position:relative; margin:50px 0;}
.solutionsgraphic {width:422px; height:422px; background:url('/wp-content/themes/imaginesoftware/images/solutions-graphic.png?x87746') center center no-repeat; position:relative; left:50%; transform:translateX(-50%); -webkit-transform:translateX(-50%); -ms-transform:translateX(-50%); -moz-transform:translateX(-50%);}
.solsection {width:211px; height:211px; position:absolute;}
.solsection#upperleft {left:0; top:0;}
.solsection#upperright {right:0; top:0;}
.solsection#lowerleft {left:0; bottom:0;}
.solsection#lowerright {right:0; bottom:0;}
.solsectioncontent {background:#eee; position:absolute; padding:20px; border-radius:3px; box-shadow:0 5px 10px rgba(0,0,0,.2); visibility: hidden; font-size:12px; opacity: 0; transition: transform .75s, opacity .5s; transform: scale(.5); -webkit-transform: scale(.5); -ms-transform: scale(.5); -moz-transform: scale(.5);}
.solsectioncontent span {font-size: 10px; display:block;}
.solsectioncontent ul {padding-left: 10px;}
.solsectioncontent li {list-style: square; padding-bottom: 5px;}
.leftcolumn .solsectioncontent li {list-style: square; padding-bottom: 5px;}

.solsection:hover .solsectioncontent,
.solsection:active .solsectioncontent {visibility: visible; height: auto; width: 250px; opacity: 1;  transition: transform .75s,  opacity .5s; transform: scale(.9); -webkit-transform: scale(.9); -ms-transform: scale(.9); -moz-transform: scale(.9);}

.solsection#upperleft .solsectioncontent {bottom:100px; right:100px;}
.solsection#upperright .solsectioncontent {bottom:100px; left:100px;}
.solsection#lowerleft .solsectioncontent {top:100px; right:100px;}
.solsection#lowerright .solsectioncontent {top:100px; left:100px;}


.solsectioncontent { transform:scale(1); -webkit-transform:scale(1); -ms-transform:scale(1); -moz-transform:scale(1); font-size:15px; line-height:1.2;}
.solsection#upperleft .solsectioncontent {border:2px solid #70c357; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d1f9c5+0,ffffff+100 */
background: #d1f9c5; /* Old browsers */
background: -moz-linear-gradient(top,  #d1f9c5 0%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #d1f9c5 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #d1f9c5 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d1f9c5', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.solsection#upperright .solsectioncontent {border:2px solid #1583a5; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#a2ddef+0,ffffff+100 */
background: #a2ddef; /* Old browsers */
background: -moz-linear-gradient(top,  #a2ddef 0%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #a2ddef 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #a2ddef 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a2ddef', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.solsection#lowerleft .solsectioncontent {border:2px solid #8c8e90; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e0e0e0+0,ffffff+100 */
background: #e0e0e0; /* Old browsers */
background: -moz-linear-gradient(top,  #e0e0e0 0%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #e0e0e0 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #e0e0e0 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e0e0e0', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.solsection#lowerright .solsectioncontent {border:2px solid #ffb92b; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffe9bf+0,ffffff+100 */
background: #ffe9bf; /* Old browsers */
background: -moz-linear-gradient(top,  #ffe9bf 0%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #ffe9bf 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #ffe9bf 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe9bf', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}



/* Interior */
.leftcolumn h2, .onecolumn h2 {margin-bottom:10px;}
.leftcolumn .three_column {padding:0 15px; box-sizing:border-box;}
.leftcolumn .five_column {width:100%; border:1px solid #84cde7; padding:10px 50px 10px 50px; margin-bottom:20px; }

.leftcolumn h1, .onecolumn h1 {font-size:32px;}
.leftcolumn ul li, .onecolumn ul li {list-style:square; padding-bottom:10px; }
.leftcolumn ul, .onecolumn ul {padding-left:40px;}

.onecolumn p + ul { margin-top: -25px; margin-bottom: 20px; }

.headernav li.menu-item-1806>a {display:none;}



/* By the Number */
.numbers, .leftcolumn .numbers {padding:0; margin:0;}
.numbers li, .leftcolumn .numbers li {list-style:none;background:#189ace; display:block; position:relative; width:179px; height:179px; float:left; margin:0 3px 0; overflow:hidden; border-radius:100px; box-sizing:border-box;}
.numbercontent {text-align:center; position:relative; top:50%; transform:translateY(-50%); -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); -moz-transform:translateY(-50%); box-sizing:border-box; padding:20px; color:#fff; font-size:12px;}

.thenumber {font-size:42px; line-height:40px; font-weight:700;}

.numbers li, .leftcolumn .numbers li { padding-bottom:0;}
.numbercontent {padding:0}



/* New News */
.featurenews .newsentry {width:50%; float:left; box-shadow:none; padding:20px 30px; box-sizing:border-box;}
.featurenews .newsimage {width:100%; float:none; height:155px;}
.featurenews .newscontent {float:none; width:100%; height:350px;}

.newslist .newsentry {width:100%; box-shadow:none; float:none; margin:0 0 50px; border-bottom:1px solid #ccc; padding:20px 50px; box-sizing:border-box;}
.newslist .newsentry .newsimage {width:35%; float:left;}
.newslist .newsentry .newsimage {height:117px;}
.newslist .newsentry .newscontent {padding:0 0 50px 40%; height: 200px;}
.newslist .newsentry .newscontent .date {left:40%; bottom:50px;}

.featurenews {padding-bottom:0;}
.page-template-page-news .s2_form_widget {display:none;}

.featurenews .latestholder .newsentry:first-child {border-right:1px solid #b3dbea;}
.newslist .newscontent h2 {margin:0;}
.featurenews .newscontent h2 {margin:0;}


/* Loupe */
.loupe {border:1px solid #ccc; box-shadow:0 10px 10px rgba(0,0,0,.2); border-radius:150px;}
.aligncenter {display:block; margin: 0 auto;}
.searchtext {font-size:10px; text-transform:uppercase; letter-spacing:2px; text-align:center; color:#189ace; margin-top:-20px; margin-bottom:30px;}


/* Core Competencies */
.corecomp_holder {text-align:center;}
.corecomp {display:inline-block; width:48%; margin:10px .5%; border:1px solid #ccc; height:300px; box-sizing:border-box; position:relative; overflow:hidden; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#b6ecff+0,ffffff+100 */
background: #b6ecff; /* Old browsers */
background: -moz-linear-gradient(top,  #b6ecff 0%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #b6ecff 0%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #b6ecff 0%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b6ecff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.corecomp_content {font-size:15px; background:rgba(24,154,206,.85); width:100%; height:100%; position:absolute; left:0; top:100%; color:#fff; transition: top .25s; -webkit-transition: top .25s; font-weight:700;}
.corecomp .center_vertical {position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); -webkit-transform:translate(-50%, -50%); -ms-transform:translate(-50%, -50%); -moz-transform:translate(-50%, -50%); width:75%;}
.corecomp h2.center_vertical {margin:0; font-size:24px;}
.corecomp:hover .corecomp_content { top:0; transition: top .25s; -webkit-transition: top .25s}
.corecomp h2 img {width:100px; display:block; margin:0 auto 10px;;}
.corecomp_holder {background:url(https://www.imaginesoftware.com/wp-content/uploads/2015/08/header-about.jpg) center center  #189ace; background-size:cover; padding:30px; margin-bottom:20px; box-shadow:0 10px 20px rgba(0,0,0,.3); border-bottom: 5px solid #b8ecff;}

.tabholder {padding-top:20px;}
.leftcolumn .tabnav {margin:0; padding:0; border-bottom:1px solid #189ace; border-top:1px solid #189ace;}
.leftcolumn .tabnav li  {list-style:none; display:inline-block; width:40%; text-align:center; font-size:18px; text-transform:uppercase; letter-spacing:2px; font-weight:700; padding:0;}
.leftcolumn .tabnav li a {display:block; padding:20px;}
.leftcolumn .tabnav li a.active {background:#189ace; color:#fff;}

.tabcontent {padding:20px;}
.tabcontent .tab {display:none;}
.tabcontent .tab.active {display:block;}

.wp-caption-text {text-align:center; font-size:24px; color:#0599ce;}

/* Temporary */
.section#awards {display:none;}
.home .section#awards, .page-id-5 .section#awards, .page-template-page-news .section#awards {display:block;}
.twocolumn {width:50%; float:left; padding:0 2%; box-sizing:border-box;}


/* Testimonials */
.testlides li {-webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;}

.testimonialtitle h1 {text-align:center; padding:60px 20px; font-size:36px;}

.testimonialsslider .bx-wrapper .bx-viewport {box-shadow:none;background-color:#189ace; color:#fff;border:none; left:0;}
.testimonialsslider .bx-wrapper {margin-bottom:0;}

.testimonialsslider .testimonialcontent {height:585px; width:50%; float:left; padding:0 5%; box-sizing:border-box; text-align:center;}
.testimonialsslider .testimoniallogo {height:585px; width:50%; float:left; background:#ccc;}
.testimoniallogo {position:relative;}
.testimoniallogo:after {content:""; display:block; background:rgba(0,0,0,.3); width:100%; height:100%; position:absolute; top:0; left:0;}
.testimoniallogo .center-vertical {z-index:1;}
.center-vertical {position:relative; top:50%; transform:translateY(-50%); -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); -moz-transform:translateY(-50%);}
.testimonialsslider .testimonial {font-size:20px; line-height:33px;}
.testimonialsslider .testimonialcredit {font-size:10px; text-transform:uppercase; letter-spacing:2px; font-weight:700;}
.testimonialsslider .testimoniallogo img {display:block; margin:0 auto;}

.testimonialsslider #bx-pager {text-align:center;}

.testimonialsslider #bx-pager {padding-bottom:60px;}
.testimonialsslider #bx-pager img {width:115px;}
.testimonialsslider #bx-pager a {display:inline-block; padding:20px 10px; position:relative; opacity: .3;}
.testimonialsslider #bx-pager a:hover {opacity:.8;}
.testimonialsslider #bx-pager a.active {opacity: 1;}
.testimonialsslider #bx-pager a.active:after {content:""; width:0; height:0; position:absolute; top:-27px; left:50%; transform:translateX(-50%) rotate(135deg); -webkit-transform:translateX(-50%) rotate(135deg); -ms-transform:translateX(-50%) rotate(135deg); -moz-transform:translateX(-50%) rotate(135deg);;
border-top:26px solid #189ace;
border-right:26px solid #189ace;
border-bottom:26px solid transparent;
border-left:26px solid transparent;
}

.collagewrap { }
.Collage{

    /*This is where you set the padding you want between the images*/
    padding:10px;
    overflow: hidden;

}
.Collage img{
    margin:0;
    padding:0;
    display:inline-block;
    vertical-align:bottom;
    opacity:1;
    max-width: 100%;

    /*This is where you set the border you want for the image*/
    border:6px solid #FFF;
    box-sizing: border-box;
}


/* In this example, this is the main item being resized */
.Image_Wrapper{
    /* to get the fade in effect, set opacity to 0 on the first element within the gallery area */
    opacity:0;
    -moz-box-shadow:0px 2px 4px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow:0px 2px 4px rgba(0, 0, 0, 0.1);
    box-shadow:0px 2px 4px rgba(0, 0, 0, 0.1);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

/* On page slider */
.pagecontent .bx-wrapper .bx-viewport {box-shadow:none; border:none; left:0;}

.slidenew {position:relative;}
.slidenew:after {content:""; display:block; position:absolute; top:0; left:0; background:rgba(0,0,0,.4); width:100%; height:100%;}
.slidenew .row {z-index:1;}
.slidenew .hometoptext {text-align:center; position:relative; top:50%; transform:translateY(-50%); -webkit-transform:translateY(-50%); -ms-transform:translateY(-50%); -moz-transform:translateY(-50%);}
.slidenew .rowtop { height:60%;}
.slidenew .hometoptext h1 {margin-bottom:0; padding-bottom:0;}
.slidenew .hometoptext h1 p {color:#fff; line-height:1.2; width:80%; margin:0 auto;}

.rowbottom {height:40%; text-align:center; padding-top:40px;;}
.rowbottom .number {display:inline-block; border:1px solid #fff; width:20%; margin:0 1%; height:150px; padding:20px; box-sizing:border-box; color:#fff; font-family: 'Roboto', sans-serif; background:rgba(0,0,0,.4); position:relative;}
.rowbottom .number h1 {color:#fff; font-weight:700; padding-bottom:5px; padding-top:10px;}

.rowbottom .number .center-vertical {position:absolute; top:50%; left:0; width:100%; padding:0 10px; box-sizing:border-box;}
.rowbottom .number h1, .rowbottom .number p {padding:0; margin:0}
.rowbottom .number p {line-height:20px; font-weight: 100;}

.rowbottom {position:absolute; width:100%; bottom:0; z-index:100; left:50%; transform:translateX(-50%); -webkit-transform:translateX(-50%); -ms-transform:translateX(-50%); -moz-transform:translateX(-50%);}


/* Mobile Nav */
.mobilenav, .mobilenav-holder, .mobilesocial {display:none;}

.tinynav { display: none }


/* Landing Page Type 1 */
.slide-box {position:relative; overflow:hidden; margin-bottom:30px; height:300px; border-radius: 3px;}
.slide-box .hovericon {position:absolute; top:0; left:0; width:100%; height:100%; text-align:center; background:#333;  z-index:1;}
.slide-box .hovercontent {position:absolute; top:0; right:-50%; width:50%; background:#a83338; height:100%; padding:30px; text-align:center; color:#fff;}
.slide-box .hovercontent h3 {margin:0;}
.slide-box:hover .hovericon {width:50%;}
.slide-box:hover .hovercontent {right:0;}
.slide-box * {transition:all .5s ease; }
.slide-box .hovercontent {box-sizing:border-box;}
.slide-box .hovercontent  h3 {font-family: 'Roboto', sans-serif; font-size:22px;}
.slide-box .hovericon:after {content:""; display:block; background:rgba(255,255,255,.1); width:100%; height:100%; position:absolute; top:0; left:0;}
.slide-box .hovericon .center-vertical {z-index:1;}
.slide-box.slide-left .hovercontent {position:absolute; top:0; right: auto; left:-50%; width:50%; background:#a83338; height:100%; padding:30px; text-align:center; color:#fff;}
.slide-box.slide-left:hover .hovercontent {right: auto; left:0;}
.slide-box.slide-left .hovericon {left:auto; right:0;}


.hovericon img {width:150px; height:auto;}

.landing-type-1 header {position:absolute; top:0; left:0; width:100%;}
.landing-type-1 .interiorheader {box-sizing:border-box; padding:150px 0 0;}
.landing-type-1 .interiorheader .row {padding:175px 0;}
.landing-type-1 .headercontent {padding:0 20%; text-align:center;}
.landing-type-1 .headercontent h1 {font-weight:700; color:#fff;}
.landing-type-1 .headercontent h1.largeheadline {font-size:86px; line-height:1em; font-weight:100;}

.landing-type-1 .gray-background {background:#eee; text-align:center;}

.landing-type-1 .white-background {text-align:center;}
.landing-type-1 .section-title h1 {font-size:36px; text-transform:uppercase; letter-spacing: .3em; font-weight:700; padding-bottom:50px;}

.landing-type-1 .footersection {border-top:1px solid #189ace; font-size:14px;}

.landing-type-1 .calltoaction {background:#333;}

.landing-type-1 .hover-box {width:250px; display:inline-block; height:250px; background:#ccc; margin:10px; position:relative;overflow:hidden; border:1px solid #ccc;}
.landing-type-1 .hover-box-content {height:100%; text-align:center;}
.landing-type-1 .hover-box-number {display:inline-block; border:1px solid #fff; width:170px; height:170px; border-radius:50%; color:#fff; font-size:64px; font-weight:700; display:table-cell; vertical-align:middle; align:center; margin:0 auto;}
.landing-type-1 .hover-box-content .center-vertical {text-align:center; display:table; margin-left:auto; margin-right:auto;}
.landing-type-1 .hover-box-hover {position:absolute; top:100%; left:0; height:100%; padding:10%; box-sizing:border-box; background:#fff; transition:top .25s;}
.landing-type-1 .hover-box:hover .hover-box-hover {top:0; transition:top .25s;}
.landing-type-1 .hover-box-hover p {line-height:22px; font-size:14px;}

.landing-type-1 .calltoaction .section-title h1 {padding-bottom:20px;}
.landing-type-1 .calltoaction {color:#fff;}
.landing-type-1 .calltoaction .whiteoutline {margin-top:20px;}

.landing-type-1 .nav li a {color:#fff; border:1px solid rgba(255,255,255,0); transition:border .25s;}
.landing-type-1 .nav li a:hover {border:1px solid #fff; transition:border .25s;}

/* Brochure Page */
.brochure-button {display:block; padding:0; background:#aaa; border-radius:3px; box-shadow: 0 5px 10px rgba(0,0,0,.2);  transition:background .25s;}
.brochure-image { height:300px; padding:20px; box-sizing:border-box; }
.brochure-thumb { margin:0 auto; display:block; max-width:100%; max-height:100%; box-shadow: 0 10px 20px rgba(0,0,0,.4); }
.brochure-button:hover { background:#189ace; transition:background .25s; }

.brochure-description {padding:0 30px; color:#fff; height:110px; padding-bottom: 30px;}
.brochure-page .row {display:flex; flex-wrap: wrap;}
.brochure-page a {}
.brochure-page .twocolumn {width:49%;}

.downloadform-shortcode .brochure-button, .youtube-embed { margin-top: 10px; background: transparent; box-shadow: none; }
.downloadform-shortcode .brochure-button .brochure-image { padding: 0; height: auto; width: calc(100% - 25px); }
.youtube-embed { width: calc(100% - 30px); }
.downloadform-shortcode .brochure-button .brochure-thumb { box-shadow: none; width: 100%; height: auto; margin-bottom: 15px;  }
.youtube-embed .video-container { margin-bottom: 15px; }
.downloadform-shortcode .brochure-btn { text-align: center;  width: calc(100% - 25px); }
.youtube-btn { text-align: center;  }
.downloadform-shortcode .brochure-btn .blueoutline { margin: 0 auto; }

.two_column p:empty + .video-container { margin-top: -20px; }

#supportpage .searchwrap { margin-top: -80px; float: right; padding-right:0; vertical-align:bottom; }
#supportpage > .section.pagecontent { padding-top: 40px; }

#supportpage .searchwrap form { position: relative; }
#supportpage .searchwrap form:before { content: '\e851'; position: absolute; right: 15px; top: 24px; width: 20px; height: 20px; font-family:eicons; color: #ccc; font-weight: bold; font-size: 20px; }
#supportpage .searchwrap .sectionbutton { text-indent: -9999px; position: absolute; top: 15px; right: 0; width: 40px; height: 50px; padding: 0; margin: 0; border: 0; background: none; z-index: 100; outline: 0;  } 
#supportpage .searchwrap .fieldstyle-white { padding-right: 40px; width: 300px !important; }
#supportpage .searchwrap .fieldstyle-white::-webkit-input-placeholder { /* Edge */
  color: #999;
}
#supportpage .searchwrap .fieldstyle-white:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #999;
}
#supportpage .searchwrap .fieldstyle-white::placeholder {
  color: #999;
}


#supportpage #featuredboxes { display: flex; flex-wrap: wrap; flex-direction: row; justify-content: space-between;}

#supportpage .featuredbox
{
	border: 1px solid #0599ce;
	color: #fff;
	padding: 30px;
	margin-bottom: 40px;
	width: 48%;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	background-color: rgba(8,153,206,.85) !important;
	box-sizing: border-box;
}
#supportpage .featuredbox.hasbutton  { padding-bottom: 100px; }
#supportpage .featuredbox:after
{
	content: "";
	opacity: 1;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: -1;
	width: 100%;
}

#supportpage .featuredbox h2 { margin-top: 0; margin-bottom: 15px; color: #fff;  }
#supportpage .featuredbox p { margin-bottom: 0; color: #fff; }

#supportpage .featuredbox .whiteoutline { position: absolute; bottom: 30px; left: 30px; }

#supportcontent, #supportpage #mainboxes { display: flex; flex-wrap: wrap; flex-direction: row; justify-content: space-between; }
#supportcontent #supportmain { width: 73%; }
#supportcontent #supportsidebar { width: 23%;  }

#supportpage .mainbox
{
	border: 1px solid #0599ce;
	color: #40474a;
	padding: 0 0 30px 0px;
	margin-bottom: 30px;
	width: 48%;
	box-sizing: border-box;
}
#supportpage .mainbox .inner { padding: 20px 20px 0 20px; }
#supportpage .mainbox .inner > p { margin-bottom: 0; line-height: 1.4; }
#supportpage .mainbox h2 { margin-top: 0; background: #0599ce; color: #fff; padding: 5px 20px; }

#supportpage .mainbox ul li { font-size: 13px; border-top: 1px solid #ccc; margin-top: 15px;  }
#supportpage .mainbox ul li:first-child { border-top: 0; margin-top: 0; }
#supportpage .mainbox ul li.subitem { padding-left: 15px; padding-top: 4px; padding-bottom: 2px; border: 0; margin-top: 0;  }
#supportpage .mainbox ul li.subitem p { display: inline; }
#supportpage .mainbox ul h4 { font-size: 14px; margin-bottom: 5px; }
#supportpage .mainbox ul li:first-child h4 { margin-top: 0; }
#supportpage .mainbox ul p { font-size: 13px; line-height: 1.4; color: #666; margin-bottom: 0; }
#supportpage .mainbox ul p:last-child { padding-bottom: 0; }
#supportpage .mainbox p + ul { margin-top: -10px; }
#supportpage .mainbox li:last-child p { margin-bottom: -15px; } 
#supportpage .mainbox ul + .bluebutton { margin-top: 15px; }

#supportpage #featuredboxes.count-1 > div, #supportpage .mainbox.fullwidth { display: block; width: 100%; }

#supportpage .mainbox.featured { background: #0599ce; color: #fff; }
#supportpage .mainbox.featured h2 { background: transparent; padding-top: 15px; margin-bottom: 0; padding-bottom: 0;  }
#supportpage .mainbox.featured .bluebutton { background: #fff; color: #0599ce;  }
#supportpage .mainbox.featured .bluebutton:hover { background: #333; color: #fff;  }
#supportpage .mainbox.featured ul p { color: #fff; color: rgba(255,255,255,.9); }

#supportpage .sidebarbox h2 { margin-top: 0; }

#supportpage .sidebarbox { padding-top: 35px; margin-top: 40px; border-top: 1px solid #ccc; }
#supportpage .sidebarbox:first-child { border-top: 0; margin-top: 0; padding-top: 0; }
#supportpage .sidebarbox p { margin-bottom: 0; }
#supportpage .sidebarbox ul { padding-left: 1rem;  }
#supportpage .sidebarbox ul li { list-style-type: disc; }
#supportpage .sidebarbox ul + .bluebutton { margin-top: 15px; }

@media only screen and (max-width:1023px) {
	#supportcontent #supportmain { width: 65%; }
	#supportcontent #supportsidebar { width: 32%; }
}

@media only screen and (max-width:767px) {
	#supportpage #featuredboxes, #supportpage #featuredboxes > div, #supportcontent > div, #supportpage .mainbox { display: block !important; width: 100% !important; }
	#supportmain { margin-bottom: 30px; }
	#supportpage .featuredbox { padding: 20px; }
	#supportpage .featuredbox .whiteoutline { bottom: 20px; left: 20px; }
	#supportpage .searchwrap { margin-top: -85px; float: none; padding: 0; }
	#supportpage #supporttop .fieldstyle-white  { width: 100% !important;}
	#supportpage #supporttop .blueoutline { padding: 8px 5px !important; letter-spacing: 0; width: 100% !important; }
}



/* Solutions 2020 */



body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > a, body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > ul > li > a, body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > ul > li > a, body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > ul > li > .sub-menu > li { display: none; }

body.page-template-page-solutions-2020 .headernav .menu > li.current-menu-ancestor > ul > li.current-menu-parent > .sub-menu > li { display:  block; }

body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > ul > li:not(.current-menu-ancestor) > ul.sub-menu > li:first-child { display: block; }

body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > ul > li:not(.current-menu-ancestor) > ul.sub-menu > li:first-child a { display: block; position: absolute; right: 0; visibility: hidden; }

body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > ul > li:not(.current-menu-ancestor).sellsidenav > ul > li:first-child a:before
{ content: 'Go to Sell Side>'; text-indent: 0; display: block; visibility: visible; font-size: 15px;  width: 80px;
    line-height: 1; text-align: center;  margin-top: 15px; height: 36px; overflow: hidden; position:relative;}

body.page-template-page-solutions-2020 .headernav .menu > .current-menu-ancestor > ul > li:not(.current-menu-ancestor).buysidenav > ul > li:first-child a:before
{ content: 'Go to Buy Side>'; text-indent: 0; display: block; visibility: visible; font-size: 15px; width: 80px;
    line-height: 1; text-align: center; margin-top: 15px; height: 36px; overflow: hidden; position:relative;}

body header .buysidenav > a:hover, body header .sellsidenav > a:hover { background: rgba(255,255,255,.9) !important; color: #0599ce !important; }

@media only screen and (max-width:960px) {
body header .buysidenav .sub-menu, body header .sellsidenav .sub-menu { display: block !important; padding-left: 20px;  }
}


body.page-template-page-solutions-2020 .headernav  li a { letter-spacing: .25px; }

body.page-template-page-solutions-2020 .headercontent { padding-right: 0; margin-bottom: 30px; }

body.page-template-page-solutions-2020 .headercontent h1 { color: #fff; font-size: 48px; font-weight: 300; }

body.page-template-page-solutions-2020 .menu-main-navigation-container select { background: #fff !important; }

body.page-template-page-solutions-2020 .fullcolumn > h1 { font-weight: 300; }

body.page-template-page-solutions-2020 .section.pagecontent { padding-bottom: 0; }


body.page-id-7 #menu-main-navigation-2 { display: none; } /* hide subnav from Your Biz main page */

#benefits-wrap { display: flex; flex-direction: row; flex-wrap: wrap; }
#benefits-wrap .item { flex: 1 0 19%; 
  margin: 1.3%;
 }
 
#benefits-wrap .boxitem .inner {   
  height: 100%;	
  background: #fff;
  box-shadow: 0 0 10px #bbb;
  border-radius: 12px; 
  padding: 20px;
  box-sizing: border-box;
  transition: all .2s ease-in-out; 
}


#benefits-wrap .item img { width: 90px; height: auto; }
#benefits-wrap .item h3 { font-size: 26px; color: #189ace; font-weight: bold; text-transform: none !important; letter-spacing: 0 !important; margin-top: 0; margin-bottom: 2px; line-height: 1; } 
body.page-id-3672 #benefits-wrap .item:not(.firstitem) h3 { color: #f6941f; }
#benefits-wrap .item p { margin: 0; padding: 0; font-size: 15px; line-height: 1.35; color: #333; }

#benefits-wrap .boxitem .inner:hover { background: #0099ce; color: #fff !important; transform: scale(1.06); }
#benefits-wrap .boxitem .inner:hover h3, #benefits-wrap .boxitem .inner:hover p { color: #fff !important; }

#benefits-wrap .boxitem .inner:hover img { filter: brightness(0) invert(1); }



#benefits-wrap .firstitem { display: block !important; width: 100% !important; flex: 100% !important; box-shadow: none !important; padding: 0; background: transparent; margin-bottom: 15px;  }
#benefits-wrap .firstitem:hover { background: transparent; color: inherit !important; }
#benefits-wrap .firstitem h2 { font-size: 16px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; color: #666; margin-bottom: 10px; margin-top:18px; }
#benefits-wrap .firstitem img { width: 18%; float: left; margin: 18px 25px -40px 0; }
#benefits-wrap .firstitem .text { width: 75%; max-width: 750px; float: left; }
#benefits-wrap .firstitem h3 { color: #0599ce; font-size: 50px; line-height: 1; }
#benefits-wrap .firstitem p { font-size: 22px;  }


#clientpromo
{
	margin-top:60px;
	width: 100%;
	height: 0;
	opacity: 0;
	position:relative;
	border-top: 2px solid #fff;
	background: #159ace;
	color: #fff;
	padding: 0 35px; 
	text-align: center;
	z-index: 200;
	box-sizing: border-box;
	transition-property: height, padding;
	transition-duration: 1.5s;
	transition-delay: 1.5s;
	overflow: hidden;
}

#clientpromo.closed { height: 0 !important; padding: 0 35px !important; transition-duration: 1s !important; transition-delay: 0s !important;}

#clientpromo .close { position: absolute; right: 15px; top: 12px; color: #fff; font-size: 18px; opacity: .75; cursor: pointer; }
#clientpromo .close:hover { opacity: 1; }

#clientpromo .bx-wrapper { margin-bottom: 0;}
#clientpromo .bx-viewport {  border: 0;  box-shadow: none; background: transparent !important; }
#clientslides
{
	background: #159ace;
	color: #fff;
	font-weight: 800;
	font-size: 20px;
}

#clientpromo.slideup
{
	opacity: 1;
	height: 50px;
	padding: 10px 35px;
}

	
#testimonials-wrap { margin-top: 100px; padding: 80px 0; color: #fff; background-size: cover; text-align: center; }

#clientpromo + #testimonials-wrap { margin-top: 0; }

#testimonials-wrap .logo img { width: 66%; max-width: 250px; height: auto; margin: 0 auto 50px auto; }

#testimonials-wrap .quote { font-size: 36px; line-height: 1.2; width: 80%; margin: 0 auto; }

#testimonials-wrap .attribution { margin-top: 40px; font-size: 12px; text-transform: uppercase; font-weight: 600; }

#testimonials-wrap .lowerlogos { margin-top: 70px; padding-top: 70px; border-top: 1px solid #fff; }

#testimonials-wrap .lowerlogos img { width: 30%; height: auto; }

#bizcalltoaction { background: #0099cd; color: #fff; padding: 50px 0;  }
#bizcalltoaction:after {
  content: "";
  display: table;
  clear: both;
}
#bizcalltoaction .row { max-width: 1000px; }
#bizcalltoaction h2 { text-align: center; font-size: 50px; font-weight: 300; color: #fff; margin-top: 0; margin-bottom: 25px;  }
#bizcalltoaction h3 { font-size: 24px; line-height: 1.1; max-width: 300px; margin-top: 10px;  margin-bottom: 10px; }

#bizcalltoaction .left { width: 42%; float: left;  }

#bizcalltoaction .ctaleftcontent { position: relative; min-height: 150px; }

#bizcalltoaction .ctaleftcontent:after {
  content: "";
  display: table;
  clear: both;
}


#bizcalltoaction .left .ctaleftcontent > a > img { width: 170px; height: auto; float: right; margin-left: 35px; margin-top: 5px; box-shadow: 5px 5px 10px rgba(0,0,0,.25); }

#bizcalltoaction .left p { font-size: 22px; line-height: 1.4; font-weight: 300; padding-bottom: 0; margin-bottom: 65px; }
 
#bizcalltoaction .ctaleftcontent .whiteoutline { position: absolute; bottom: 0; left: 0; } 


#bizcalltoaction .right { width: 42%; float: right; padding-left: 9%; border-left: 1px solid #fff;   }

#bizcalltoaction .formrow label { color: #fff; font-size: 13px; }

.formrow.onehalf-onehalf > div { width: 49.5%; float: right }
.formrow.onehalf-onehalf > div:first-child { float: left; }
#bizcalltoaction .formrow.twothirds-onethird > div { width: 34%; float: right }
#bizcalltoaction .formrow.twothirds-onethird > div:first-child { width: 65%; float: left; }
#bizcalltoaction .formrow.twothirds-onethird:after,.formrow.onehalf-onehalf:after {
  content: "";
  display: table;
  clear: both;
}

#bizcalltoaction form input, #bizcalltoaction form textarea { margin-bottom: 0; }
#bizcalltoaction form .whiteoutline { background: transparent; width: auto; margin-bottom: 15px; margin-top: 10px;  }
#bizcalltoaction form small { display:block; line-height: 1.2; }
#bizcalltoaction form p { margin: 0; padding: 0; }

#bizcalltoaction .wpcf7-not-valid-tip { color: #f3a6a6; }

.pdfmodal { max-width: 800px; padding: 3% 6%; }

.pdfmodal > div { max-width: 500px; margin: 0 auto; }

.pdfmodal small { display: block; line-height: 1.2; }

#buysidesellside .two_column { width: 48%; float: right; }
#buysidesellside .two_column:first-child { float: left; }
#buysidesellside .iconlist li { min-height: 199px; letter-spacing: 1px; }
#buysidesellside .iconlist li a { letter-spacing: 1px; }
#buysidesellside .iconlist { position:relative; left: -6px; }
#buysidesellside .iconlist img { display: block; margin: 0 auto; }


[class*="page-template-page-homepage-2020"] .slidenew:after { background: none; }

[class*="page-template-page-homepage-2020"] .hometext { padding-left: 20px; }
[class*="page-template-page-homepage-2020"] .hometext h1 { font-size: 60px; max-width: 450px; line-height: 1.05; letter-spacing: -0.3px; margin-bottom: 15px; }
[class*="page-template-page-homepage-2020"] .hometext h2 { font-size: 18px; font-weight: 300; color: #fff; line-height: 1.3; max-width: 450px; margin-bottom: 70px;  }

[class*="page-template-page-homepage-2020"] .homeslides .rowtop { top: 16%; }



[class*="page-template-page-homepage-2020"] #reimagine-home { background: #289ace; color: #fff; }

[class*="page-template-page-homepage-2020"] #reimagine-home h2 { text-align: center; color: #fff; font-size: 40px; font-weight: 300; margin-bottom: 15px; margin-top: 0;  }
[class*="page-template-page-homepage-2020"] #reimagine-home h3 { text-align: center; color: #fff; font-size: 18px; font-weight: 300; max-width: 1070px; margin: 0 auto;  }


[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes { display: flex; flex-wrap: wrap; align-content: space-between; max-width: 1070px; }
[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes .item { padding: 0 0 20px 0; flex: 1 1 25%; justify-content: space-evenly; margin-left: 5%; padding-left: 5%; box-sizing: content-box; position: relative; border-left: 1px solid #fff; margin-top: 50px;
}
[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes .item:first-child, [class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes .item:nth-child(4) { border-left: 0; margin-left: 0; padding-left: 0;   }

[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes .item:nth-child(n+4):before { content: ''; width: 66%; position: absolute; top: -25px; left: 25%; height: 1px; background: #fff; overflow: hidden;   }

[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes .item:nth-child(4):before { width: 78%; left: 12%; }


[class*="page-template-page-homepage-2020"] #reimagine-home .item h4 { color: #fff; font-weight: 700; font-size: 30px; text-transform: none; margin: 0 0 8px 0; padding: 0; letter-spacing: 0; line-height: 38px;}

/* [class*="page-template-page-homepage-2020"] #reimagine-home .item:hover h4 { font-size: 34px; } */

[class*="page-template-page-homepage-2020"] #reimagine-home .item p { font-size: 16px; line-height: 1.4; margin: 0; padding: 0; }

[class*="page-template-page-homepage-2020"] #bsss-wrap { overflow: hidden;}
[class*="page-template-page-homepage-2020"] #bsss-home { max-width: 1070px; margin: 0 auto; }
[class*="page-template-page-homepage-2020"] #bsss-home h3 { font-size: 40px; text-align: center; font-weight: 300; color: #289ace; margin: 0 0 20px 0; letter-spacing: -.5px; }

[class*="page-template-page-homepage-2020"] #bsss-home dl { width: 92%; float: right; }
[class*="page-template-page-homepage-2020"] #bsss-home .two_column:first-child dl { float: left; border-right: 1px solid #c9e6f3; padding-left: 0; padding-right: 8% }

[class*="page-template-page-homepage-2020"] #bsss-home dt { color: #289ace; font-size: 22px; border-top: 1px solid #289ace; padding: 12px 2px; cursor: pointer; position:relative; }
[class*="page-template-page-homepage-2020"] #bsss-home dt:first-child { border-top: 0; }
html.js [class*="page-template-page-homepage-2020"] #bsss-home dt:before { content: '+';  display: block; position: absolute; right: 0; top: 12px; font-weight: 900; }
html [class*="page-template-page-homepage-2020"] #bsss-home dt.show:before { content: '-'; right: 2px; }
html.js [class*="page-template-page-homepage-2020"] #bsss-home dd { display: none; }
html [class*="page-template-page-homepage-2020"] #bsss-home dd { color: #32383a; font-size: 16px; margin-left: 2px; margin-right: 2px; }
html [class*="page-template-page-homepage-2020"] #bsss-home dt.show + dd { display: block; }
[class*="page-template-page-homepage-2020"] #bsss-home dd a { display: block; text-align: right; margin-bottom: 15px; }


[class*="page-template-page-homepage-2020"] #platformboxes { background-image: url(/wp-content/uploads/platformboxes.jpg); background-size: cover; background-position: center top; text-align: center; }

[class*="page-template-page-homepage-2020"] #platformboxes .boxes { display: flex; flex-wrap: wrap; align-content: space-between; margin-top: 40px; padding-top: 36px; position: relative; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes:before { content: ''; width: 76.4%; height: 2px; background: #fff; overflow: hidden; position: absolute; top: 0; left: 11.9%; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes > div { text-align: left; color: #fff; font-weight: 300; padding: 20px 25px; flex: 1 1 23.49%; justify-content: space-evenly; margin-left: 2%; box-sizing: border-box; position: relative; 
background: rgb(65,134,40);
background: linear-gradient(0deg, rgba(65,134,40,.75) 0%, rgba(89,147,67,.7) 100%);
}
[class*="page-template-page-homepage-2020"] #platformboxes .boxes > div:hover { background: rgba(89,147,67,1); }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes #platformbox-2 {
background: rgb(18,81,101);
background: linear-gradient(0deg, rgba(18,81,101,.75) 0%, rgba(43,96,114,.7) 100%);
}
[class*="page-template-page-homepage-2020"] #platformboxes .boxes #platformbox-2:hover { background: rgba(43,96,114,1); }  
[class*="page-template-page-homepage-2020"] #platformboxes .boxes #platformbox-3 {
background: rgb(187,114,19);
background: linear-gradient(0deg, rgba(187,114,19,.75) 0%, rgba(187,114,19,.7) 100%);
}
[class*="page-template-page-homepage-2020"] #platformboxes .boxes #platformbox-3:hover { background: rgba(187,114,19,1);} 
[class*="page-template-page-homepage-2020"] #platformboxes .boxes #platformbox-4 {
background: rgb(69,69,69);
background: linear-gradient(0deg, rgba(69,69,69,.75) 0%, rgba(102,102,102,.7) 100%);
}
[class*="page-template-page-homepage-2020"] #platformboxes .boxes #platformbox-4:hover { background: rgba(102,102,102,1); } 
[class*="page-template-page-homepage-2020"] #platformboxes .boxes > div:before { content: ''; height: 35px; width: 2px; background: #fff; overflow: hidden; position: absolute; left: 50%; top: -36px; }


[class*="page-template-page-homepage-2020"] #platformboxes .boxes > div:first-child { margin-left: 0; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes h4 { font-weight: 300; font-size: 30px; color: #fff; text-transform: none; margin: 0 0 5px 0;  letter-spacing: 0; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes p { margin: 0 0 20px 0; padding: 0; line-height: 1.3; font-size: 18px; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes li { font-weight: 600; line-height: 1.2; margin-bottom: 14px; font-size: 16px; text-align: left; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes li.has-children { cursor: pointer; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes li ul { display: block; margin-left: 40px; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes > div > ul { margin-bottom: -40px; }
/*[class*="page-template-page-homepage-2020"] #platformboxes .boxes li.show ul { display: block; } */
[class*="page-template-page-homepage-2020"] #platformboxes .boxes li li { font-weight: 300; list-style-type: disc; margin-bottom: 1px; line-height: 1.2;  }


[class*="page-template-page-homepage-2020"] #platformboxes h2 { font-size: 40px; font-weight: 300; color: #fff; margin-bottom: 20px;  }
[class*="page-template-page-homepage-2020"] #platformboxes h3 { font-size: 18px; font-weight: 300; color: #fff; max-width: 800px; margin: 0 auto 30px auto; }


#platformboxes.alternateboxes .boxes > div { text-align: center; padding-bottom: 60px; }
#platformboxes.alternateboxes .boxes > div > p, #platformboxes.alternateboxes .boxes > div > .button_holder { opacity: 1; }
html.js #platformboxes.alternateboxes .boxes > div ul { opacity: 0; position: absolute; visibility: hidden;  transition: none;   }
html #platformboxes.alternateboxes .boxes > div.show > p, #platformboxes.alternateboxes .boxes > div.show > .button_holder { opacity: 0; position: absolute; visibility: hidden; text-align: left; }
html #platformboxes.alternateboxes .boxes > div.show ul { opacity: 1; position: relative; visibility: visible; transition: all .8s ease-in-out;   }
#platformboxes.alternateboxes .button_holder { position: absolute !important; bottom: 20px; left: 0; width: 100%;  }
#platformboxes.alternateboxes .whiteoutline { padding: 8px 20px; font-size: 13px; line-height: 13px; letter-spacing: 0; }
#platformboxes.alternateboxes .boxes > div ul ul { text-align: left; }

#homecta { text-align:center; border-top: 1px solid #ccc; }
[class*="page-template-page-homepage-2020"] #homecta { border-top: 0 !important; }
#homecta h5,#homecta h4 { color: #189ace; max-width: 720px; margin: 0 auto 30px auto; font-weight: 300; letter-spacing: -.1px; text-transform: none; font-size: 40px; line-height: 1.1; }

[class*="page-template-page-homepage-2020"] #numbersawards { background: #32383a; color: #fff; text-align: center; }
[class*="page-template-page-homepage-2020"] #numbersawards .three_column { border-left: 1px solid #999c9d; padding-top: 30px; padding-bottom: 40px;   }
[class*="page-template-page-homepage-2020"] #numbersawards .three_column:first-child { border-left: 0; }
[class*="page-template-page-homepage-2020"] #numbersawards h3 { font-weight: 300; font-size: 20px; line-height: 1; display: inline-block; max-width: 240px;min-height: 132px; }
[class*="page-template-page-homepage-2020"] #numbersawards h3 span { display: block; }
[class*="page-template-page-homepage-2020"] #numbersawards h3 .num { font-size: 65px; font-weight: 900; line-height: .9;  }
[class*="page-template-page-homepage-2020"] #numbersawards h3 .numsub { font-size: 28px; font-weight: 600; text-transform: uppercase; padding-bottom: 10px;}

html.js body.page-template-page-homepage-2020-v2 #numbersrow-2, html.js body.page-template-page-homepage-2020-v2 #numbersrow-3 { display: none;  }
body.page-template-page-homepage-2020-v2 #numbersrow-2, body.page-template-page-homepage-2020-v2 #numbersrow-3 { margin-top: 40px;  }
body.page-template-page-homepage-2020-v2 #numbersawards.showall #numbersrow-2, body.page-template-page-homepage-2020-v2 #numbersawards.showall #numbersrow-3 { display:block; }
body.page-template-page-homepage-2020-v2 #numbersawards .whiteoutline { visibility: hidden; }
html.js body.page-template-page-homepage-2020-v2 #numbersawards .whiteoutline { visibility: visible; font-size: 13px; padding: 5px 20px; margin-top: 20px; cursor: pointer;}
#numbersawards.showall .whiteoutline { opacity: .5; }

body.page-template-page-homepage-2020-v2 .numbersrow .three_column { position:relative; }
body.page-template-page-homepage-2020-v2 .numbersrow .three_column:before
{ content: ''; width: 66%; position: absolute; top: -25px; left: 18%; height: 1px; background: #999c9d; overflow: hidden;   }



[class*="page-template-page-homepage-2020"] #numbersawards .bx-wrapper { max-width: 1200px !important; margin: 0 auto !important; }
[class*="page-template-page-homepage-2020"] #numbersawards .bx-wrapper .bx-viewport { background: transparent; box-shadow: none !important; border: 0; }

[class*="page-template-page-homepage-2020"] #awardsrow { border-top: 1px solid #999c9d; margin-top: 45px; padding-top: 40px;  }
[class*="page-template-page-homepage-2020"] #awardsrow img { width: 17%; margin: 0 1%; height: auto; display: inline-block; }


[class*="page-template-page-homepage-2020"] #people { background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  }
  
[class*="page-template-page-homepage-2020"] #people .Image_Wrapper { box-shadow: none !important; }

.ls-numbers .ls-nav-prev, .ls-numbers .ls-nav-next { background: none !important; }
  
.download-items .brochure-thumb { width: 204px; height: auto; background-color: #fff; }
  
@media only screen and (min-width:769px) {

html.js [class*="page-template-page-homepage-2020"] #bsss-home .two_column { position: relative; opacity: 0; right: -300px; transition: all .8s ease-in-out; }

html.js [class*="page-template-page-homepage-2020"] #bsss-home .two_column:first-child { position: relative; right: auto; left: -300px; }

html.js [class*="page-template-page-homepage-2020"] #bsss-home.inview .two_column { right: 0; opacity: 1;  }

html.js [class*="page-template-page-homepage-2020"] #bsss-home.inview .two_column:first-child { left: 0; }

body.page-template-page-homepage-2020-v2 #numbersrow-1 .three_column:before { display: none; }

[class*="page-template-page-homepage-2020"] #numbersawards h3 { min-height: 165px; }


html.js [class*="page-template-page-homepage-2020"] .testimonialsslider .testslides > li { overflow: hidden; }

html.js [class*="page-template-page-homepage-2020"] .testimonialsslider .testslides > li > div { position: relative; opacity: 0; right: -300px; transition: all .8s ease-in-out; }

html.js [class*="page-template-page-homepage-2020"] .testimonialsslider .testslides > li > div:first-child { position: relative; right: auto; left: -300px; }

html.js [class*="page-template-page-homepage-2020"] .testimonialsslider.inview .testslides > li > div { right: 0; opacity: 1;  }

html.js [class*="page-template-page-homepage-2020"] .testimonialsslider.inview .testslides > li > div:first-child { left: 0; }


html.js #homecta { overflow: hidden; }

html.js #homecta > .row > * { position: relative; opacity: 0; bottom: -200px; transition: all .8s ease-in-out; }

html.js #homecta > .row > h5, html.js #homecta > .row > h4 { position: relative; bottom: auto; top: -300px; }

html.js #homecta.inview > .row > * { bottom: 0; opacity: 1;  }

html.js #homecta.inview > .row > h5, html.js #homecta.inview > .row > h4 { top: 0; }

.download-items .brochure-thumb { width: auto; height: 259px; }


}


@media only screen and (max-width:1200px) {

[class*="page-template-page-homepage-2020"] .hometext { padding-left: 40px; }

}


	
	
@media only screen and (max-width:960px) {

#bizcalltoaction .ctaleftcontent .whiteoutline { position: relative; }
#bizcalltoaction .left p { margin-bottom: 20px; }

[class*="page-template-page-homepage-2020"] #bsss-home dl { border: 0 !important; padding: 0 !important; width: 100% !important; float: none !important; }

[class*="page-template-page-homepage-2020"] #platformboxes .boxes { margin-top: 0; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes:before, [class*="page-template-page-homepage-2020"] #platformboxes .boxes > div:before { display: none; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes { display: block; }
[class*="page-template-page-homepage-2020"] #platformboxes .boxes > div { display: block; width: 100%; margin: 0 0 25px 0; }

[class*="page-template-page-homepage-2020"] #homeheader { height: 560px; }

.downloadform-shortcode .brochure-button .brochure-image, .downloadform-shortcode .brochure-btn, .youtube-embed { width: 100%; }

}


@media only screen and (max-width:768px) {

#benefits-wrap .firstitem { margin-bottom: 40px !important;}
#benefits-wrap .firstitem img { width: 40%; max-width: 300px; margin: 10px 0 -40px 0;  }
#benefits-wrap .firstitem .text { width: 100%; }
#benefits-wrap .firstitem h3 { font-size: 36px; }

#benefits-wrap .item { flex: 1 0 36%; margin: 3%; }
#benefits-wrap .boxitem .inner:hover  { transform:scale(1); }
#bizcalltoaction > .row > div { width: 100%; float: none; border: 0 !important; margin: 20px 0; padding: 0; }

#bizcalltoaction h2 { font-size: 42px; }
#bizcalltoaction > .row > div.right { margin-bottom: 60px; }
#bizcalltoaction .left > img { margin-left: 20px; }
.pdfmodal  { padding: 4%; }

body.page-template-page-solutions-2020 .newsentry .newsimage { height: auto; }

body.page-template-page-solutions-2020 .newscontent h2 { margin: 0; }
body.page-template-page-solutions-2020 #news .three_column { display: none; }
body.page-template-page-solutions-2020 #news .three_column:nth-child(2) { display: block; }

#promofpodesktop { display: none !important; }
#promofpomobile { display: block !important; }

.iconlist li.sixup { width: 32.5%; padding-right: 1.25%; }

[class*="page-template-page-homepage-2020"] #numbersawards .three_column { border: 0 !important; }

[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes { display: block; }
[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes .item { display: block; width: 100%; border: 0 !important; padding: 0 !important; margin: 30px 0 !important; }
[class*="page-template-page-homepage-2020"] #reimagine-home #reimagineboxes .item:before { display: none; }

[class*="page-template-page-homepage-2020"] .hometext  { padding: 0 25px; }
[class*="page-template-page-homepage-2020"] .hometext h1 { font-size: 40px; color: #fff;  }
[class*="page-template-page-homepage-2020"] .hometext h2 { font-size: 16px; margin-bottom: 20px;  }

[class*="page-template-page-homepage-2020"] #homeheader { height: 400px; }

#clientpromo.slideup { height: 80px; }

}

	
@media all and (max-width:567px){
	#clientslides { font-size: 16px; }
	#clientpromo.slideup { height: 60px; }
	#awardsrow img {     width: 42% !important;
    margin: 3% !important; }
}


@media only screen and (max-width:480px) {

#benefits-wrap .item { flex: 100%; margin: 20px 0; }
#benefits-wrap .firstitem img { width: 60%; }
#testimonials-wrap .quote { font-size: 30px; }
#testimonials-wrap .logo img { max-width: 200px; }
#testimonials-wrap .lowerlogos img { display: block; width: 80%; max-width: 300px; margin: 20px auto; }

#bizcalltoaction h2 { font-size: 36px; }
#bizcalltoaction .left > img  { width: 150px; height: auto; margin-top: -10px;  }
#bizcalltoaction .left p { font-size: 18px; }
#bizcalltoaction .formrow.twothirds-onethird > div { float: none !important ; width: 100% !important; }

#bizcalltoaction .whiteoutline { padding: 10px; letter-spacing: .5px; }

#bizcalltoaction .left .ctaleftcontent > a > img { width: 110px; }

.iconlist li.sixup { width: 48%; padding-right: 2%; }

.clientlogos li { width: 50%; }

[class*="page-template-page-homepage-2020"] #homeheader { height: 260px; }

[class*="page-template-page-homepage-2020"] .buttonlayer { font-size: 12px !important; width: auto !important; height: auto !important; line-height: 1 !important;  min-width: 90px !important  }
[class*="page-template-page-homepage-2020"] .buttonlayer span { border: 1px solid #fff !important; width: auto !important; height: auto !important; padding: 4px !important; line-height: 1 !important; min-width: 90px !important }

}

@media only screen and (max-width:380px) {

[class*="page-template-page-homepage-2020"] #homeheader { height: 200px; }
#clientslides { font-size: 14px; }


}




/* =============================================================================
   Media Queries
   ========================================================================== */
   
@media only screen and (max-width:1399px) {
.testimonialsslider #bx-pager img {width:90px;}
}

@media only screen and (max-width:1250px) {
	/* Style adjustments for viewports that meet the condition */

	.row {width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; padding: 0 30px; }
	.headernav {left:30px;}
	#people {padding: 130px 0;}
	.tabnavigation li a {padding:20px 10px;}
	
	.solsection#upperleft .solsectioncontent { width: 200px; bottom:-40%; right:-120px;}
	.solsection#upperright .solsectioncontent { width: 200px; bottom:-40%; left:-120px;}
	.solsection#lowerleft .solsectioncontent { width: 200px; top:-40%; right:-120px;}
	.solsection#lowerright .solsectioncontent { width: 200px; top:-60%; left:-120px;}

    #contact {height:auto;}
    #contactmap .everest-map,
    #contactmap img.everest-map-background {width: auto; height: auto; display:block; margin: 0 auto; max-width: 100%;}
    #contactmap .everest-map-marker {width: 20px; height: 20px; margin-top: -10px; background-size: contain;}
    #contactmap .everest-map-panel {padding: 25px !important; font-size: .8em;}
    #contactmap .everest-map-panel h1 {line-height: 1.4em; margin-bottom: 10px;}
    
    .testimonialsslider #bx-pager img {width:80px;}

}

@media only screen and (max-width:1024px) {
	/* Style adjustments for viewports that meet the condition */
	#people .two_column {padding: 0 20px;}
	.leftcolumn, .newspage .leftcolumn {padding:0 60px 0 0;}
	blockquote {margin:50px 0;}
	.downloadbutton {font-size:13px;}

	.headernav li a {letter-spacing: 1px;}
	
	

}

@media only screen and (max-width:960px) {
	/* Style adjustments for viewports that meet the condition */
	
	.two_column {width:100%; margin-bottom:30px;}
	#buysidesellside .two_column { width: 100%; }
	
	.mobilenav, .mobilenav-holder, .mobilesocial {display:block;}
	.mobilesocial {float:right; padding:30px;}
	
	header .topnav, header .nav {display:none;}
	
	header {height:auto; padding:0;}
	header .row {padding:0;}
	header .logo {float:none; padding:30px;}
	.menu-collapser {padding:0 30px; font-weight:700; text-transform:uppercase; letter-spacing:2px; background:#189ace;}
	.collapse-button {background:#40474a;}
	.mobilenav a {display:block; padding:10px 30px;}
	.mobilenav>li {position:relative; border-bottom:1px solid #eee; font-weight:700;}
	.mobilenav .sub-toggle {position:absolute; top:5px; right:0px; padding:7px 20px;}
	.mobilenav .sub-toggle i {font-style:normal; color:#40474a;}
	.mobilenav .sub-menu li {font-weight:300; font-size:13px;}
	.mobilenav .sub-menu li a {padding:5px 50px;}
	
	.leftcolumn {width:100%; float:none; padding:0; margin-bottom:50px;}
	.rightcolumn {width:100%;}
	
	.peopleentry {background-position:center left !important;}
	.peopleentry .peoplecontent {background:#0599ce; width:40%}
	.peopleentry .peoplecontent .title {color:#fff !important}
	.peopleentry.darkcontent h2, .peopleentry.darkcontent .title, .peopleentry.darkcontent p {color:#fff;}
	
	.testimonialsslider .testimonialcontent {float:none; width:100%; height:auto;}
	.testimonialsslider .center-vertical {top:0; transform:none; -webkit-transform:none; -ms-transform:none; -moz-transform:none; padding:30px;}
	.testimonialsslider .testimoniallogo {float:none; height:auto; width:100%;}
	.testimonialsslider #bx-pager {display:none;}
	.testimonialsslider {margin-bottom:60px;}
	
	.leftcolumn, .newspage .leftcolumn {padding:0;}
	.leftcolumn, .newspage .leftcolumn {padding:0;}
	
	.tinynav { display: block }
    #menu-main-navigation-2, #menu-top-nav-2 { display: none }
    
    .headernav {left:0; position:relative; bottom:0;}
    .menu-main-navigation-container select {background:#fff; padding:5px; font-family: 'Roboto', "proxima-nova", sans-serif;color:#40474a; border:none; position:relative; background: url(http://i62.tinypic.com/2e3ybe1.jpg) no-repeat right center #fff;}
	.menu-top-nav-container select {background:#fff; padding:5px; font-family: 'Roboto', "proxima-nova", sans-serif;color:#40474a; border:none; position:relative; background: url(http://i62.tinypic.com/2e3ybe1.jpg) no-repeat right center #fff;}
	
	.menu-main-navigation-container select {padding-right:30px;}
	
	.fullbioimage {float:none; width:100%;}
	.fullbiocontent {padding:20px 0 0;}

}

@media only screen and (max-width:768px) {
	/* Style adjustments for viewports that meet the condition */
	
	.slidenew .hometoptext h1 p {width:100%}
	.hometoptext a {max-width:60%}
	
	.solutionsgraphic {max-width:100%;}
	#whatwedo .two_column {padding:0;}
	
	#people {padding:80px 0;}
	#people .two_column:first-child {padding:0;}
	#people .two_column {padding:0;}
	
	#news .three_column {padding:0;}
	
	.three_column {width:100%; margin-bottom: 30px;}
	.four_column {width:100%; margin-bottom:30px;}
	
	.sectiontitle .sectionbutton {position:relative; top:auto; right:auto; margin:15px auto;}
	.award img {max-width:100%; height:auto;}
	
	
	.rowbottom .number {width:45%; height:100px; padding:15px;}
	.rowbottom .number h1 {font-size:30px; line-height:1;}
	.slidenew .hometoptext h1 {font-size:30px;}
	
	.iconlist li {width:50%;}
	.iconlist li.threeup {width:50%;}
	.iconlist li.oneup {width:100%;}
	.iconlist li.oneup a {width:100%;}
	.iconlist img {display:block; margin:0 auto;}
	
	.calltoaction a {margin-bottom:10px;}
	
	.corecomp {width:100%; margin:0 auto 10px;}
	.pagecontent .numbers li {margin-bottom:10px;}
	
	.peoplelist .peopleentry {width:100%}
	.headercontent {padding-right: 0;}
	.twocolumn {width:100%; float:none;}
	.brochure-page .twocolumn {width:100%;}
	.brochure-description {height:auto;}
	
	.featurenews {margin:0 0 50px;;}
	.featurenews .newsentry {width:100%; float:none; border-right:0; padding:0;}
	.featurenews .latestholder .newsentry:first-child {border-right:0;}
	.featurenews .newscontent {height:auto; padding-left:0; padding-right:0;}
	.newscontent p {margin-bottom:20px; max-width:100%;}
	
	.newslist .newsentry {padding:0}
	.newslist .newsentry .newscontent {height:auto; padding-left:20%;}
	.newslist .newsentry .newsimage {width:15%}
	.newimageholder {background-size:contain !important; background-color:#fff !important;}
	.newslist .newsentry .newscontent .date {left:20%}
	
	.articlemeta .socialshare {
		float:none;
	    margin-left: 0;
	    padding-left: 0;
	    display: block;
	    clear: both;
	    padding-top: 10px;
	}
	
	.featurenews .newscontent .date {position:relative; bottom:0; left:0;}
	
	.featureimage {background-size:contain !important; background-position:center center !important; background-color:#fff !important; height:auto; padding-bottom:46%;}	
	
	.onecolumn{padding:0;}
	
	.pagecontent iframe {max-width:100%;}
	.interiorheader {background-position:left center !important;}
	
	.peoplelist {overflow:hidden;}
	
	.solutionsgraphic {width:100%; height:0; padding-bottom:100%; background-size:contain;}
	.solsection {width:50%; height:50%;}
	
	#footer {text-align:center;}
	
	.newscontent .socialshare {position:relative; right:auto; bottom:auto; padding-left:0; padding-top:10px; width: 100%; text-align: left;}
	.newslist .newsentry .newscontent .date {position:relative; left:0; bottom:auto;}
	.newscontent .date {position:relative; left:0; bottom:auto;}

    .leftcolumn .tabnavigation li {display: inline-block; width: auto; float: none; margin: 0; padding: 0 5px 10px 5px;}
    .tabnavigation li a {border: 1px solid #ccc;}
    .tabnavigation li.active a {background: #0599ce; color: #fff;}
}

@media only screen and (max-width:480px) {
	/* Style adjustments for viewports that meet the condition */
	
	.widget {padding:15px;}
	.downloadbutton img {display:none;}
	
	.peopleentry .peoplecontent {position:relative; top:auto; transform:none; width:100%; margin-top:60%}
	.peopleentry {height:auto; background-size:150% !important; background-position:left top !important;}
	.biobutton {top:auto; height:auto; background:#0599ce;}
	.peopleentry .bioexcerpt {display:none;}
	.peopleentry.darkcontent h2, .peopleentry.darkcontent .title, .peopleentry.darkcontent p {margin-top:0;}
	
	.rowbottom .number h1 {font-size:24px; line-height:1;}
	.slidenew .hometoptext h1 {font-size:24px;}
	.rowbottom .number p {font-size:13px; line-height:1.2}
	
	.newsentry .newsimage {height:auto; /* background:#ccc; */}
	.newimageholder {width:100%; height:100%; padding-bottom: 46%;}
	
	.solutiongraphic .solutionsgraphicholder { padding:10%;}
	#awards .award {padding:0 10%}

}

/* =============================================================================
   Non-Semantic Helper Classes
   ========================================================================== */

.ir { display: block; border: 0; text-indent: -999em; overflow: hidden; background-color: transparent; background-repeat: no-repeat; text-align: left; direction: ltr; *line-height: 0; }
.ir br { display: none; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { *zoom: 1; }

/* =============================================================================
   Print Styles
   ========================================================================== */

@media print {
  * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; } /* Black prints faster: h5bp.com/s */
  a, a:visited { text-decoration: underline; }
  a[href]:after { content: " (" attr(href) ")"; }
  abbr[title]:after { content: " (" attr(title) ")"; }
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }  /* Don't show links for images, or javascript/internal links */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* h5bp.com/t */
  tr, img { page-break-inside: avoid; }
  img { max-width: 100% !important; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3 { page-break-after: avoid; }
}


/* GDPR */
span.checkbox-471 input[type="checkbox"] {
  float: left;
  font-size: 2em;
  height: 20px;
  margin-top: 8px;
  width: 40px;
}

span.checkbox-471 span {
  display: block;
  width: 100%;
}

span.checkbox-471 label span {
  float: left;
  width: 80%;
  line-height: 1.3;
  padding-bottom: 15px;
}




.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px; 
    height: 0; 
    overflow: hidden;
    width: 100%;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.nav-links {
  font-weight: bold;
  text-align: center;
}

.nav-links .page-numbers {
  display: inline-block;
  text-align: center;
  width: 20px;
}

.screen-reader-text, .screen-reader-text span, .ui-helper-hidden-accessible {
    position: absolute;
    top: -10000em;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0');src:url('/wp-content/themes/imaginesoftware/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0&x87746') format('embedded-opentype'),url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/**
 * BxSlider v4.1.2 - Fully loaded, responsive content slider
 * http://bxslider.com
 *
 * Written by: Steven Wanderski, 2014
 * http://stevenwanderski.com
 * (while drinking Belgian ales and listening to jazz)
 *
 * CEO and founder of bxCreative, LTD
 * http://bxcreative.com
 */


/** RESET AND LAYOUT
===================================*/

.bx-wrapper {
	position: relative;
	margin: 0 auto 60px;
	padding: 0;
	*zoom: 1;
}

.bx-wrapper img {
	max-width: 100%;
	display: block;
}

/** THEME
===================================*/

.bx-wrapper .bx-viewport {
	-moz-box-shadow: 0 0 5px #ccc;
	-webkit-box-shadow: 0 0 5px #ccc;
	box-shadow: 0 0 5px #ccc;
	border:  5px solid #fff;
	left: -5px;
	background: #fff;
	
	/*fix other elements on the page moving (on Chrome)*/
	-webkit-transform: translatez(0);
	-moz-transform: translatez(0);
    	-ms-transform: translatez(0);
    	-o-transform: translatez(0);
    	transform: translatez(0);
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
	position: absolute;
	bottom: -30px;
	width: 100%;
}

/* LOADER */

.bx-wrapper .bx-loading {
	min-height: 50px;
	background: url(/wp-content/themes/imaginesoftware/css/images/bx_loader.gif?x87746) center center no-repeat #fff;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2000;
}

/* PAGER */

.bx-wrapper .bx-pager {
	text-align: center;
	font-size: .85em;
	font-family: Arial;
	font-weight: bold;
	color: #666;
	padding-top: 20px;
}

.bx-wrapper .bx-pager .bx-pager-item,
.bx-wrapper .bx-controls-auto .bx-controls-auto-item {
	display: inline-block;
	*zoom: 1;
	*display: inline;
}

.bx-wrapper .bx-pager.bx-default-pager a {
	background: #666;
	text-indent: -9999px;
	display: block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	outline: 0;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

.bx-wrapper .bx-pager.bx-default-pager a:hover,
.bx-wrapper .bx-pager.bx-default-pager a.active {
	background: #000;
}

/* DIRECTION CONTROLS (NEXT / PREV) */

.bx-wrapper .bx-prev {
	left: 10px;
	background: url(/wp-content/themes/imaginesoftware/css/images/controls.png?x87746) no-repeat 0 -32px;
}

.bx-wrapper .bx-next {
	right: 10px;
	background: url(/wp-content/themes/imaginesoftware/css/images/controls.png?x87746) no-repeat -43px -32px;
}

.bx-wrapper .bx-prev:hover {
	background-position: 0 0;
}

.bx-wrapper .bx-next:hover {
	background-position: -43px 0;
}

.bx-wrapper .bx-controls-direction a {
	position: absolute;
	top: 50%;
	margin-top: -16px;
	outline: 0;
	width: 32px;
	height: 32px;
	text-indent: -9999px;
	z-index: 9999;
}

.bx-wrapper .bx-controls-direction a.disabled {
	display: none;
}

/* AUTO CONTROLS (START / STOP) */

.bx-wrapper .bx-controls-auto {
	text-align: center;
}

.bx-wrapper .bx-controls-auto .bx-start {
	display: block;
	text-indent: -9999px;
	width: 10px;
	height: 11px;
	outline: 0;
	background: url(/wp-content/themes/imaginesoftware/css/images/controls.png?x87746) -86px -11px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-start:hover,
.bx-wrapper .bx-controls-auto .bx-start.active {
	background-position: -86px 0;
}

.bx-wrapper .bx-controls-auto .bx-stop {
	display: block;
	text-indent: -9999px;
	width: 9px;
	height: 11px;
	outline: 0;
	background: url(/wp-content/themes/imaginesoftware/css/images/controls.png?x87746) -86px -44px no-repeat;
	margin: 0 3px;
}

.bx-wrapper .bx-controls-auto .bx-stop:hover,
.bx-wrapper .bx-controls-auto .bx-stop.active {
	background-position: -86px -33px;
}

/* PAGER WITH AUTO-CONTROLS HYBRID LAYOUT */

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-pager {
	text-align: left;
	width: 80%;
}

.bx-wrapper .bx-controls.bx-has-controls-auto.bx-has-pager .bx-controls-auto {
	right: 0;
	width: 35px;
}

/* IMAGE CAPTIONS */

.bx-wrapper .bx-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	background: #666\9;
	background: rgba(80, 80, 80, 0.75);
	width: 100%;
}

.bx-wrapper .bx-caption span {
	color: #fff;
	font-family: Arial;
	display: block;
	font-size: .85em;
	padding: 10px;
}
