/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

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

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* Ninja Forms */
.nf-form-cont .nf-field-container {
  margin-bottom: 20px;
}


#primary .nf-form-cont h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
} 
#primary .nf-form-cont ul.nf-breadcrumbs {
  display: -webkit-box; 
  display: -ms-flexbox;
  display: flex;
}

#primary .nf-form-cont ul.nf-breadcrumbs > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #006595;
  padding: .5rem 5px !important;
  margin: 1px !important;
}

#primary .nf-form-cont ul.nf-breadcrumbs > li > a {
  color: #fff;
  margin: 0;
  font-size: .9rem;
  line-height: 1.2;
}

#primary .nf-form-cont ul.nf-breadcrumbs > li.active {
  background: transparent;
  border-top: .4rem solid #006595;
}

#primary .nf-form-cont ul.nf-breadcrumbs > li.active a {
  color: #006595;
  font-weight: 400;
}

#primary .nf-mp-footer {
    clear: both;
}

#primary .nf-form-cont ul.nf-next-previous input {
  border: none;
  background: none;
  color: #006595;
  font-weight: bold;
  padding: 0;
}

#primary .label-left .nf-after-field {
    margin-left: 35%;
}

body.page-contact-us .nf-form-cont.contact-us-form .nf-form-fields-required,
body.page-contact-us .nf-form-cont.contact-us-form span.ninja-forms-req-symbol,
body.page-contact-us .nf-form-cont.contact-us-form .nf-error-msg {
  display: none;
}

body.page-quote .nf-form-cont .nf-form-fields-required,
body.page-quote .nf-form-cont span.ninja-forms-req-symbol {
  display: none;
}


@media (max-width: 767px) {
  #primary .nf-form-cont .one-half,
  #primary .nf-form-cont .one-third,
  #primary .nf-form-cont .two-thirds,
  #primary .nf-form-cont .one-fourth,
  #primary .nf-form-cont .two-fourths,
  #primary .nf-form-cont .three-fourths,
  #primary .nf-form-cont .one-sixth,
  #primary .nf-form-cont .two-sixths,
  #primary .nf-form-cont .three-sixths,
  #primary .nf-form-cont .four-sixths,
  #primary .nf-form-cont .five-sixths {
    width: 100%;
    margin-left: 0;
  }

  #primary .label-left .nf-field-label,
  #primary .label-left .listcheckbox-wrap .nf-field-label, 
  #primary .label-left .listradio-wrap .nf-field-label, 
  #primary .label-left .textarea-wrap .nf-field-label, 
  #primary .label-right .listcheckbox-wrap .nf-field-label, 
  #primary .label-right .listradio-wrap .nf-field-label, 
  #primary .label-right .textarea-wrap .nf-field-label {
    width: 100%;  
  }

  #primary .label-left .nf-field-element {
    width: 100%;
  }

}



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

td,
th {
  padding: 0;
}

.page-template-general-layout .fl-row-content {
  padding-left: 15px;
  padding-right: 15px;
}
.page-template-general-layout .fl-row-fixed-width {
  max-width: 100%;
}
.page-template-general-layout .fl-row-full-width {
  width: 100%;
}
@media (max-width: 767px) {
  .page-template-general-layout .fl-row-full-width {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .page-template-general-layout .fl-col {
    max-width: 100% !important;
  }
  .page-template-general-layout .fl-col:not(.fl-col-small) .fl-col-content {
    border-left: none;
    border-right: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .page-template-general-layout .fl-row-content-wrap {
    padding: 20px 0;
  }
}

.site-content {
  margin-top: 110px;
}
@media (max-width: 768px) {
  .site-content {
    margin-top: 65px;
  }
}
.admin-bar .site-content {
  margin-top: 80px;
}

.full-row {
  width: 100%;
}

.right {
  float: right;
  margin-left: 10px;
}

.left {
  float: left;
  margin-right: 10px;
}

.admin-bar #page {
  padding-top: 30px;
}
.admin-bar .page-header-wrapper {
  padding-top: 32px;
}

/*  Base styles: opinionated defaults
------------------------------------------------------- */
html {
  font-size: 16px;
}

body {
  font-family: "Roboto", serif;
  font-size: 62.5%;
  line-height: 16px;
  position: relative;
}
body p {
  font: 300 16px/25px "Roboto", serif;
}
body > img,
body > span {
  display: none;
}

body.scroll-footer {
    margin-bottom: 425px;
}

@media (max-width: 767px) {
  body.scroll-footer {
    overflow: hidden;
    position: fixed;
  }
}

html,
body,
#page {
  margin: 0;
  padding: 0 0 45px 0;
}

@media (max-width: 767px) {
  html body {
    padding-top: 0;
  }

  html body.bpa {
    padding-bottom: 55px;
  }
}

#content {
  min-height: 100%;
}

#primary {
  overflow: auto;
  width: 100%;
}

#footer {
  height: 430px;
  clear: both;
}

#sticky-contact {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #565656;
}
body.bpa #sticky-contact, 
body.single-partner #sticky-contact, 
body.partner #sticky-contact {
  background: #e5e6e8;
  border-top: 1px solid #cccccc;
}
#sticky-contact .container {
  padding: .75em 0;
}
#sticky-contact #bpa-name span, #sticky-contact #contact-links {
  padding: .5em 0;
  display: block;
}
#sticky-contact a.call-us, .email-info .row a.call-us {
  color: #016699;
  line-height: 150%;
  vertical-align: middle;
  margin-right: .75em;
  padding: 0;
  display: inline;
}
#sticky-contact a.call-us {
  font-size: 1em;

}
.email-info .row a.call-us {
  font-size: 1.75rem;
}
a.call-us .fa {
  padding-left:0;
}
#sticky-contact button {
  display: inline-block;
  padding: .4em 2rem;
  margin-bottom: 0;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  background-color: #eaad28;
  border: 1px solid #d8a025;
  border-radius: 4px;
  color: #000000;
  margin-left: .75em;
  padding-left: 1em;
  padding-right: 1em;
}
#nsp-phone-wrap {
  display: inline-block;
}



@media (max-width: 767px) {
  #footer {
    height: 110px;
  }
}
@media (min-width: 768px) {
  #sticky-contact #bpa-name {
    text-align: left;
  }

  #sticky-contact a.call-us {
    font-size: 1.5em;
  }
  #sticky-contact button {
    padding: .4em 2em;
    margin-left: 1.25em;
  }
}

@media (min-width: 992px) {
  #sticky-contact {
    text-align: right;
    font: 400 18px/24px Roboto, sans-serif;
  }
}

@media (min-width: 1200px) {
  #sticky-contact #contact-links {
    padding: 0;
  }
}

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

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

video {
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

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

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

b i, i b, b em, em b, strong i, strong em, i strong, em strong {
  font-family: "Roboto";
}

em, i {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
}

/*  Links
------------------------------------------------------- */
a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  text-decoration: underline;
}

.site-main a {
  cursor: pointer;
  font-weight: 400;
  text-decoration: none;
}
.site-main a:link, .site-main a:visited {
  color: #006595;
}
.site-main a:hover, .site-main a:focus, .site-main a:active {
  color: #18aae2;
}

/*  Typography
------------------------------------------------------- */
body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
  color: #333333;
  font-family: "Roboto", serif;
  font-weight: 500;
  margin: 0;
}
body h1 {
  font: 300 2.75rem/3.438rem "Roboto Slab", serif;
}
body h2 {
  font: 400 28px/2rem "Roboto Slab", serif;
}
body.single-resource h2, body.single-blog h2 {
  font-family: roboto;
  font-weight: 500;
  font-size: 1.25em;
}
body h3 {
  font: 1rem/1rem;
}
body h4 {
  font-size: 0.75rem/0.75rem;
}
body h5 {
  font-size: 0.5rem/0.5rem;
}
body .subtitle {
  color: #333;
  font: 500 18px/24px "Roboto", serif;
  padding-bottom: 5px;
}
body .text {
  font-family: "Roboto", serif;
  margin-bottom: 30px;
}
body strong {
  font-weight: 600;
}
body h1.fl-heading {
  line-height: 40px;
  margin-bottom: 20px;
}
body h1.fl-heading span {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
}
body h4.tagline {
  color: #952478;
  font: 500 18px/26px "Roboto", sans-serif;
  margin-bottom: 10px;
  padding-top: 25px;
}
body h5.tagline {
  color: #006595;
  font-weight: 500;
}
body p {
  margin-bottom: 10px;
}
body p.subtitle {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
  margin-top: 0;
}
body .fl-row ul.subtitle {
  margin: 30px 0 30px 40px;
}
body .fl-row ul.subtitle li {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
  list-style: disc;
}
body b {
  font-weight: 500;
}
body .title {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
  margin-bottom: 20px;
}
body .text {
  margin-bottom: 30px;
  margin-top: 5px;
}
body .boldme {
  font-weight: 600;
}
@media (max-width: 767px) {
  body .text,
  body .title,
  body .subtitle,
  body .fl-heading,
  body .fl-callout-title,
  body .green-link *,
  body .tagline,
  body .header-subtitle,
  body .image,
  body article p {
    text-align: center;
  }
}

/*  Lists
------------------------------------------------------- */
ol li,
ul li {
  margin: 0 0 5px;
}

ul,
ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
ul.disc,
ol.disc {
  margin-left: 15px;
}
ul.disc li,
ol.disc li {
  list-style-type: disc;
}
ul.margin,
ol.margin {
  margin-left: 30px;
}

li.widget {
  list-style-type: none;
}

.list-icon {
  background: url("../images/sprites/sol-sprite.png") no-repeat;
  height: 38px;
  padding-left: 63px;
}

.site-main article ul,
.site-main article ol {
  margin: 0 0 30px 40px;
}
@media (max-width: 767px) {
  .site-main article ul,
  .site-main article ol {
    margin-left: 0;
  }
  .site-main article ul li,
  .site-main article ol li {
    list-style-position: inside;
    list-style-type: none;
  }
}
.site-main article ul li,
.site-main article ol li {
  font: 300 16px/24px "Roboto", serif;
  list-style-type: disc;
  margin: 0 0 5px;
}
.single-post .site-main article ol li {
    list-style-type: decimal;
}
.site-main article ul li a,
.site-main article ol li a {
  font: 400 16px/24px "Roboto", serif;
}

.page-contact-us article ol li,
.page-contact-us article ul li,
.menu-about-us-sidemenu-container article ol li,
.menu-about-us-sidemenu-container article ul li,
.page-home-page article ol li,
.page-home-page article ul li,
.breadcrumbs-container ol li,
.breadcrumbs-container ul li,
.site-main article .ninja-forms-form ol li,
.site-main article .ninja-forms-form ul li {
  margin: 0 0 5px;
}
.page-contact-us article ol li a,
.page-contact-us article ul li a,
.menu-about-us-sidemenu-container article ol li a,
.menu-about-us-sidemenu-container article ul li a,
.page-home-page article ol li a,
.page-home-page article ul li a,
.breadcrumbs-container ol li a,
.breadcrumbs-container ul li a,
.site-main article .ninja-forms-form ol li a,
.site-main article .ninja-forms-form ul li a {
  font: inherit;
}
.page-contact-us article ul,
.page-contact-us article ol,
.menu-about-us-sidemenu-container article ul,
.menu-about-us-sidemenu-container article ol,
.page-home-page article ul,
.page-home-page article ol,
.breadcrumbs-container ul,
.breadcrumbs-container ol,
.site-main article .ninja-forms-form ul,
.site-main article .ninja-forms-form ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-contact-us article ul li,
.page-contact-us article ol li,
.menu-about-us-sidemenu-container article ul li,
.menu-about-us-sidemenu-container article ol li,
.page-home-page article ul li,
.page-home-page article ol li,
.breadcrumbs-container ul li,
.breadcrumbs-container ol li,
.site-main article .ninja-forms-form ul li,
.site-main article .ninja-forms-form ol li {
  list-style-type: none;
}
.page-contact-us article ul.disc,
.page-contact-us article ol.disc,
.menu-about-us-sidemenu-container article ul.disc,
.menu-about-us-sidemenu-container article ol.disc,
.page-home-page article ul.disc,
.page-home-page article ol.disc,
.breadcrumbs-container ul.disc,
.breadcrumbs-container ol.disc,
.site-main article .ninja-forms-form ul.disc,
.site-main article .ninja-forms-form ol.disc {
  margin-left: 15px;
}
.page-contact-us article ul.disc li,
.page-contact-us article ol.disc li,
.menu-about-us-sidemenu-container article ul.disc li,
.menu-about-us-sidemenu-container article ol.disc li,
.page-home-page article ul.disc li,
.page-home-page article ol.disc li,
.breadcrumbs-container ul.disc li,
.breadcrumbs-container ol.disc li,
.site-main article .ninja-forms-form ul.disc li,
.site-main article .ninja-forms-form ol.disc li {
  list-style-type: disc;
}
.page-contact-us article ul.margin,
.page-contact-us article ol.margin,
.menu-about-us-sidemenu-container article ul.margin,
.menu-about-us-sidemenu-container article ol.margin,
.page-home-page article ul.margin,
.page-home-page article ol.margin,
.breadcrumbs-container ul.margin,
.breadcrumbs-container ol.margin,
.site-main article .ninja-forms-form ul.margin,
.site-main article .ninja-forms-form ol.margin {
  margin-left: 30px;
}

/*  Tables
------------------------------------------------------- */
table {
  margin-bottom: 25px;
}
table td {
  font-weight: 400;
  padding: 10px;
}
table li {
  list-style-type: none !important;
}
table .blue {
  background: #006595 none repeat scroll 0 0;
  color: #fff;
  font-weight: 500;
  padding: 10px;
}
table .green {
  background: #33702d none repeat scroll 0 0;
  color: #fff;
  font-weight: 500;
  padding: 10px;
}
table .gray {
  background: #efefef none repeat scroll 0 0;
}

/*  Buttons
------------------------------------------------------- */
html:not(.fl-builder-edit) .button:not(.new-button),
html:not(.fl-builder-edit) .button-wrap input[type="submit"]:not(.new-button),
html:not(.fl-builder-edit) a.fl-button:not(.new-button) {
  border-radius: 3px !important;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  float: none;
  font: 500 18px/26px "Roboto", serif !important;
  min-height: 26px;
  padding: 10px 30px !important;
  position: relative;
  text-align: center;
}
@media (max-width: 480px) {
  html:not(.fl-builder-edit) .button:not(.new-button),
  html:not(.fl-builder-edit) .button-wrap input[type="submit"]:not(.new-button),
  html:not(.fl-builder-edit) a.fl-button:not(.new-button) {
    font-size: 16px !important;
    padding: 10px !important;
  }
}
html:not(.fl-builder-edit) .button:not(.new-button) .fa-caret-right,
html:not(.fl-builder-edit) .button-wrap input[type="submit"]:not(.new-button) .fa-caret-right,
html:not(.fl-builder-edit) a.fl-button:not(.new-button) .fa-caret-right {
  font-size: 18px !important;
  padding-top: 5px;
}
html:not(.fl-builder-edit) .button:not(.new-button) .fl-button-text .fa-caret-right,
html:not(.fl-builder-edit) .button-wrap input[type="submit"]:not(.new-button) .fl-button-text .fa-caret-right,
html:not(.fl-builder-edit) a.fl-button:not(.new-button) .fl-button-text .fa-caret-right {
  padding-top: 0px;
}
html:not(.fl-builder-edit) .button:hover {
  text-decoration: none !important;
}
html:not(.fl-builder-edit) .button.yellow:not(.new-button),
html:not(.fl-builder-edit) .btn-insperity,
html:not(.fl-builder-edit) .yellow-wrap input[type="submit"]:not(.new-button),
html:not(.fl-builder-edit) .home .banner a.fl-button {
  background: #fdb414;
  border-right: 2px solid #c88d0b;
  border-bottom: 2px solid #c88d0b;
  border-top: 0;
  border-left: 0;
  color: #333 !important;
}
html:not(.fl-builder-edit) .button.yellow:not(.new-button) .fa-caret-right,
html:not(.fl-builder-edit) .btn-insperity .fa-caret-right,
html:not(.fl-builder-edit) .yellow-wrap input[type="submit"]:not(.new-button) .fa-caret-right,
html:not(.fl-builder-edit) .home .banner a.fl-button .fa-caret-right {
  font-size: 18px !important;
  padding-top: 5px;
}
html:not(.fl-builder-edit) .button.yellow:hover:not(.new-button),
html:not(.fl-builder-edit) .btn-insperity:hover,
html:not(.fl-builder-edit) .yellow-wrap input[type="submit"]:hover:not(.new-button),
html:not(.fl-builder-edit) .home .banner a.fl-button:hover {
  background: #ffe76b;
  border-right: 2px solid #c88d0b !important;
  border-bottom: 2px solid #c88d0b !important;
  border-left: none !important;
  border-top: none !important;
}
html:not(.fl-builder-edit) .button.blue {
  background: #016699;
  border-right: 2px solid #233d73;
  border-bottom: 2px solid #233d73;
  border-top: 0;
  border-left: 0;
}
html:not(.fl-builder-edit) .button.blue:hover {
  background: #005f87;
}
html:not(.fl-builder-edit) .button.light-blue {
  background: #18aae2;
  border-right: 2px solid #1384b0;
  border-bottom: 2px solid #1384b0;
  border-top: 0;
  border-left: 0;
}
html:not(.fl-builder-edit) .button.light-blue:hover {
  background: #1697c9;
}
html:not(.fl-builder-edit) .button.green {
  background: #509630;
  border-right: 2px solid #267533;
  border-bottom: 2px solid #267533;
  border-top: 0;
  border-left: 0;
}
html:not(.fl-builder-edit) .button.green:hover {
  background: #448227;
}
html:not(.fl-builder-edit) .button.gray {
  background: #f7f7f7;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f7f7f7), color-stop(100%, #ededed));
  background: -moz-linear-gradient(top, #f7f7f7 0%, #ededed 100%);
  border: 1px solid #c8c8c8;
  color: #333 !important;
}
html:not(.fl-builder-edit) .button.gray:hover {
  background: #e5e5e5;
}
html:not(.fl-builder-edit) .module .button {
  max-width: none;
  padding: 10px 5%;
}
html:not(.fl-builder-edit) .button.center {
  margin: 25px auto;
}
html:not(.fl-builder-edit) .btn-insperity {
  padding: 10px 15px;
  border-radius: 3px;
}
html:not(.fl-builder-edit) .hideme {
  display: none;
}
html:not(.fl-builder-edit) a.learn-more {
  border: 1px solid #439539;
  border-radius: 3px;
  color: #439539 !important;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  margin: 20px auto 40px;
  padding: 5px 15px;
  text-transform: uppercase;
  width: 140px;
}
html:not(.fl-builder-edit) a.learn-more:hover {
  background: #439539;
  color: #fff !important;
  text-decoration: none !important;
}

/*  Forms
------------------------------------------------------- */
input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  border: 1px solid #ccc;
  -moz-border-radius: 3px;
  /* FF1+ */
  -webkit-border-radius: 3px;
  /* Saf3+, Chrome */
  border-radius: 3px;
  /* Standard. IE9 */
  -webkit-background-clip: padding-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #333 !important;
  font-family: "Roboto", sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  margin-bottom: 0;
  max-width: 100%;
  padding: 4px 6px;
}

html:not(.fl-builder-edit) input[type="text"], 
html:not(.fl-builder-edit) input[type="email"], 
html:not(.fl-builder-edit) input[type="tel"], 
html:not(.fl-builder-edit) select {
  height: 40px !important;
}

select {
  padding: 8px 1%;
  background: #fff url(../images/dropdown.jpg) 95% 8px no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  text-overflow: "";
  text-indent: 0.1px;
}

.text-wrap label,
.textarea-wrap label {
  font: 300 12px/24px "Roboto", sans-serif !important;
  letter-spacing: 1px;
}

.nf-form-content .label-above .nf-field-label {
  margin-bottom: 5px;
}
.nf-form-content .nf-input-limit {
  margin-top: 0;
}

.ninja-forms-error-msg {
  display: none;
}
.module.form.for-gating-form p.privacy {
  color: #fff;
    font-size: 14px;
    margin-top: 10px; 
    text-align: left;
}
.module.form.for-gating-form p.privacy a {
    color: #fff;
}

.btn-block {
    display: block;
    width: 100%;
}

/*  Font Awesome
------------------------------------------------------- */
.fa {
  padding-left: 5px;
}

/*  Images
------------------------------------------------------- */
img {
  height: auto;
  max-width: 100%;
}

/*  Modules
------------------------------------------------------- */
/*.module {
  background: #e9e9e9;
  padding: 30px 19px;
  border-radius: 3px;
  border: 1px solid #ddd;
  margin: 0 auto 25px;
  line-height: 20px;
  font-size: 14px;
}*/
.module a {
  color: #006495;
  font-weight: 400;
}
.module a img {
  width: 100%;
}
.module a:hover {
  text-decoration: underline;
}
.module .button {
  margin: 20px auto 0;
  max-width: 300px;
}
/*.module .title {
  color: #006595;
  font: 600 22px/30px "Roboto Slab", serif;
  padding-bottom: 10px;
}*/
@media (max-width: 767px) {
  .module .title {
    text-align: center;
  }
}
.module .subtitle {
  color: #333;
  font: 500 20px/24px "Roboto", sans-serif;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .module .subtitle {
    text-align: center;
  }
}
.module .tagline {
  font: 500 18px/18px "Roboto", sans-serif;
  margin-top: 25px;
}
.module input[type=text] {
  padding: 2px 2%;
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  box-shadow: inset -2px 2px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
/*.module.form .title {
  background-color: #666;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font: 500 22px/30px "Roboto Slab", serif !important;
  height: 70px;
  margin: -31px -20px 20px -20px;
  padding: 20px 15px;
  position: relative;
  text-align: center;
}*/
/*.module.form .title .shadow {
  background: url(../images/icon-sprite.png) -184px -117px;
  height: 14px;
  left: 0px;
  position: absolute;
  top: 100%;
  width: 10px;
}*/
.module.form.calculator .title .left-side {
  float: left;
  height: auto;
  padding: 0 2%;
  text-align: left;
  width: 60%;
}
.module.form .text {
  font-size: 16px;
  margin-bottom: 20px;
}
.module.form .wrap {
  background: #fff;
  border-radius: 3px;
  border: 1px solid #C8C8C8;
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
  margin: 0 auto;
  padding: 8px 10px;
}
.module.form .wrap .text {
  color: #006595;
  font-size: 30px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 0;
  text-align: center;
}
.module.form .wrap:hover {
  background: #f7f7f7;
}
.module.form input[type=submit] {
  width: 100%;
}
.module.form.for-insperity-ninja-form-widget /*, .module.form.for-gating-form */{
  background: url(../images/envelope.jpg) no-repeat right bottom #81C341;
  border: 1px solid #349946;
  border-top: 5px solid #349946;
}
.module.form.for-insperity-ninja-form-widget .shadow /*, .module.form.for-gating-form .shadow*/ {
  height: 14px;
  top: 100%;
  width: 10px;
}
.module.form.for-insperity-ninja-form-widget .title /*, .module.form.for-gating-form .title*/ {
  background: #349946;
  font: 700 22px/30px "Roboto Slab", serif;
  height: auto;
  margin: -10px -10px 20px -30px;
  padding: 15px;
  text-align: left;
}
.module.form.for-insperity-ninja-form-widget .widgettitle /*, .module.form.for-gating-form .widgettitle*/ {
  color: #fff;
  font-size: inherit;
}
.module.form.for-insperity-ninja-form-widget form /*, .module.form.for-gating-form form */ {
  margin: 15px 0 60px 0;
}
.module.form.for-insperity-ninja-form-widget .text /*, .module.form.for-gating-form .text*/ {
  color: #fff;
  line-height: 28px;
  margin: 15px auto;
}
.module.form.for-insperity-ninja-form-widget p/*, .module.form.for-gating-form p*/ {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}
.module.form.for-insperity-ninja-form-widget label/*, .module.form.for-gating-form label */{
  color: #fff;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}
.module.form.for-insperity-ninja-form-widget .title-area/*, .module.form.for-gating-form .title-area*/ {
  display: none;
}
.module.form.for-insperity-ninja-form-widget .text-wrap label {
  display: none;
}
.module.ebook {
  background: #EAE9E0;
  border: 1px solid #d1d0c9;
  padding: 18px 18px 30px 18px;
}
.module.ebook img {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}
.module.ebook .title {
  background: #006495;
  color: #fff;
  text-align: center;
  line-height: 48px;
}
.module.ebook .subtitle {
  color: #006495;
  font: 400 16px/22px "Roboto Slab", serif;
  padding: 10px 0;
}
.module.ebook.blue .image {
  padding: 20px 0;
  background: url(../images/guides/blue-guide.jpg);
}
.module.ebook.orange .image {
  padding: 20px 0;
  background: url(../images/guides/orange-guide.jpg);
}
.module.demo {
  background: #fff;
  padding: 10px;
  text-align: center;
}
.module.demo .wrap {
  background: #006595;
  border-radius: 3px;
  color: #fff;
  font: 300 24px/30px 'Roboto', sans-serif;
  padding: 20px;
}
.module.guide .blue-area {
  background: #006595;
  list-style-type: none;
  padding-bottom: 10px;
  padding-top: 20px;
}
.module.guide.blue {
  background: #E1DDCC;
  color: #ffffff;
  padding: 10px;
  text-align: center;
}
.module.guide h3 {
  color: #ffffff;
  font: 600 22px/30px "Roboto Slab",serif;
}
.module.guide .subtitle {
  background: transparent;
  border: 0 none;
  box-shadow: none;
  color: #fff;
  font: 300 16px/18px "Roboto Slab",serif;
  margin: 0;
  padding: 0;
}
.module.guide img {
  display: block;
  height: auto;
  margin: 30px auto;
  max-width: 260px;
}
.module.guide .button-wrapper {
  background: #e1ddcc;
  padding: 5px 20px 20px;
}
.module.guide .button {
  margin-top: 10px;
}
.module.author {
  background: #eee none repeat scroll 0 0;
  color: #333;
  margin-bottom: 30px;
  max-width: none;
  padding: 15px;
  position: relative;
}
.module.author img {
  border: 12px solid #fff;
  float: left;
  max-width: 123px;
  width: 100%;
}
.module.author h4 {
  color: #006495;
  font: 600 20px/20px "Roboto Slab",serif;
  margin-bottom: 5px;
}
.module.author h5 {
  font-size: 16px;
  margin-bottom: 15px;
}
.module.author p.text {
  margin-bottom: 0;
}
.module.author .button {
  margin: 20px 0;
  max-width: 330px;
}

.fl-module-content .module.ebook {
  padding: 18px 18px 30px 25px;
}

.module a
.module label {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  padding-bottom: 4px;
  display: block;
}

.second-form,
.third-form,
.fourth-form,
.module label.second-form,
.module label.third-form,
.module label.fourth-form {
  display: none;
}

.lpPoweredBy,
.lpEmtStarRating,
.lpPoweredByDiv {
  display: block;
}

/*  Transitions
------------------------------------------------------- */
@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade {
  opacity: 1.0 !important;
  transition: .3s;
  -ms-transition: .3s;
  -webkit-transition: .3s;
  -moz-transition: .3s;
}

.tooltip.fade {
  transition: 0;
  -ms-transition: 0;
  -webkit-transition: 0;
  -moz-transition: 0;
}

.button {
  transition: 0s;
  -ms-transition: 0s;
  -webkit-transition: 0s;
  -moz-transition: 0s;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.one-second {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.five-second {
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.tenth {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

.fifth {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}

.quarter {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s;
}

.athird {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.83s;
  animation-delay: 1.83s;
}

.two-fifth {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s;
}

.half {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.two-third {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 2.16s;
  animation-delay: 2.16s;
}

.three-quarter {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 2.25s;
  animation-delay: 2.25s;
}

.four-fifth {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 2.3s;
  animation-delay: 2.3s;
}

.full {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.full-zero {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.full-none {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*  Overlays
------------------------------------------------------- */
.overlay {
  background: #fff none repeat scroll 0 0;
  display: none;
  padding: 22px;
  position: relative;
  z-index: 10000;
}

.overlay-module {
  display: none;
  position: relative;
  z-index: 10000;
}

.overlay-squeeze {
  overflow: hidden;
}

.overlay-wrap {
  text-align: left;
}

.overlay-wrap .module-gray-new {
  margin: 0;
}

.overlay-wrap .close,
.app-close,
.buy-overlay .close {
  background: transparent url("../img/icon-sprite.png") no-repeat scroll -80px -65px;
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: -15px;
  text-indent: -999em;
  top: -15px;
  width: 31px;
  z-index: 10001;
}

.overlay-content h1 {
  font-size: 1.714em;
  margin: 0 0 1em;
}

.overlay-content h2 {
  font-size: 1.142em;
}

.overlay-content iframe {
  background: #f4f4f4 none repeat scroll 0 0;
  border: medium none;
  margin: 0 0 1em;
}

.overlay-footer {
  padding: 10px;
}

.overlay-footer .button {
  margin: 0 10px 0 0;
}

.overlay-footer .button:last-child {
  margin: 0;
}

.overlay-footer .social {
  float: left;
  margin: 8px 0 0;
}

.overlay-header {
  border-bottom: 1px solid #c9c9c9;
  margin: -22px -22px 22px;
  padding: 17px 17px 15px;
}

.overlay-header .logo {
  float: right;
  margin: 0 0 0 35px;
  width: 165px;
}

.overlay-header .logo .tagline {
  color: #393;
  font-size: 0.857em;
  line-height: 1.1;
  margin: 10px 0 0 80px;
}

.overlay-header h1 {
  margin: 0 0 0.5em;
}

.overlay-header p {
  margin: 0 0 0.5em;
}

#dialog {
  display: none;
}
#dialog.open {
  display: block;
}

.ui-dialog.certification-dialog {
  overflow: visible;
  padding: 0;
  z-index: 1113 !important;
}
.ui-dialog.certification-dialog .ui-widget-overlay {
  background-color: black;
  opacity: 0.7;
  z-index: 1112;
}
.ui-dialog.certification-dialog .ui-dialog-titlebar {
  background: none;
  border: none;
  height: 10px;
}
.ui-dialog.certification-dialog .ui-dialog-titlebar .ui-dialog-title {
  display: none;
}
.ui-dialog.certification-dialog .ui-dialog-titlebar button {
  background: url("../images/sprites/icon-sprite.png") no-repeat scroll -80px -65px transparent;
  border: none;
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: -15px;
  text-indent: -999em;
  top: -5px;
  width: 31px;
  z-index: 1113;
}
.ui-dialog.certification-dialog #dialog {
  padding: 0;
}
.ui-dialog.certification-dialog h1 {
  color: #419639;
  font-family: "Roboto Slab";
  font-size: 26px;
  font-weight: 400;
  padding: 0 20px;
  margin: 0;
}
.ui-dialog.certification-dialog .hero {
  background: url("../images/modules/cbpasealforwebBIG.png") no-repeat left top;
  background-size: 100% 100%;
  float: left;
  height: 160px;
  margin: 0 30px 0 0;
  width: 160px;
}
.ui-dialog.certification-dialog .body {
  float: left;
  width: 410px;
}
.ui-dialog.certification-dialog .group {
  float: left;
  padding: 10px;
  width: 100%;
}
.ui-dialog.certification-dialog p {
  color: #333;
  font: 400 14px/20px "Roboto",Arial,Helvetica,sans-serif;
}
.ui-dialog.certification-dialog p a {
  color: #069;
}
.ui-dialog.certification-dialog p a:hover {
  text-decoration: none;
}
.ui-dialog.certification-dialog .button {
  font: 500 14px/26px "Roboto", serif !important;
  min-height: 26px;
  padding: 8px 20px !important;
}
.ui-dialog.certification-dialog footer {
  background: #E1E1E1;
  padding: 20px 10px;
}

/*  Small Area / Itmes
------------------------------------------------------- */
.white {
  color: #ffffff;
}

.bullet {
  background: #000;
  border-radius: 250px;
  color: #fff;
  float: left;
  font-size: 20px;
  height: 30px;
  line-height: 20px;
  margin: -30px 0 0 -30px;
  padding: 5px;
  text-align: center;
  width: 30px;
  text-align: center;
}

.blue-area,
.header-section {
  background: #006695;
}

.gray-area {
  background: #EFEFEF;
  border-bottom: 1px solid #D5D2D2;
  border-top: 1px solid #D5D2D2;
}
.gray-area > .fl-row-content-wrap {
  border-bottom: none;
  border-top: none;
}

.to-services {
  color: #439538;
  font-weight: 400;
  font-size: 20px;
  font-family: "Roboto Slab", serif;
  text-decoration: none !important;
  display: block;
  margin-top: 25px;
}

.number {
  background: #efefef none repeat scroll 0 0;
  color: #333;
  display: block;
  float: left;
  margin-right: 10px;
  text-align: center;
  width: 26px;
}
@media (max-width: 767px) {
  .number {
    display: none;
  }
}

a.compare {
  display: block;
}

.text-center {
  text-align: center;
}

.no-heading-callout .fl-callout-title {
  display: none;
}

.recruit-progress-header {
  background: #498b2a;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}
.recruit-progress-header .fl-heading-text {
  font-weight: 500;
  font-size: 18px;
}

.recruit-progress-header + .fl-module-rich-text {
  background: #fff;
}

.dashed {
  color: #40964E;
  font: 300 30px/36px "Roboto Slab", serif;
  padding: 20px 0px;
  border-top: 1px dashed #333;
  border-bottom: 1px dashed #333;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .dashed {
    text-align: center;
  }
}

.recruiting-slider {
  margin: 0 auto;
  width: 620px;
}

#subscribeForm input[type="text"] {
  width: 100%;
}
#subscribeForm .button {
  display: block;
}

.fl-callout-title a,
.fl-callout-title a:visited,
.fl-callout-title a:link {
  color: inherit;
  font-weight: inherit;
}

.ret-services img {
  height: 80px !important;
}

@media (max-width: 767px) {
  .fl-button-wrap {
    text-align: center;
  }
}

.tagline {
  font-size: 14px;
  margin: 10px auto 30px;
}

.breadcrumbs .trail-end span {
  color: #333;
}

.hrFreedomGrowth .fl-module-heading {
  margin: 0 auto;
  max-width: 700px;
}
.hrFreedomGrowth .fl-module-heading .fl-heading {
  line-height: 36px;
}

.humanresourceOutsourcingdetails .fl-module-html .fl-html {
  margin: 0 auto;
  max-width: 830px;
}

.topTalent .fl-module-heading .fl-module-content {
  margin-bottom: 0;
  margin-top: 0;
}
.topTalent .fl-module-heading .fl-heading-text {
  font: 400 36px/64px "Roboto Slab", serif;
}

.video-small-area .fl-row-content-wrap {
  max-width: 1000px;
}
.video-small-area .fl-row-content-wrap .fl-module-html {
  margin: 0 auto;
  max-width: 620px;
}

.media-frame-content .thumbnail {
  background-color: transparent;
  margin-bottom: 0;
}
.media-frame-content select, .media-frame-content input[type="text"] {
  background: #fff !important;
  border: 1px solid #dfdfdf !important;
  font-family: "Open Sans",sans-serif !important;
  font-size: 12px !important;
  height: 24px !important;
}
.media-frame-content select {
  text-indent: 0;
  -webkit-appearance: menulist-button;
}

.wistia_embed {
  max-width: 100%;
}

.about-bg-pattern {
  background-image: url(http://stagingpc.com/insperity/wp-content/uploads/2015/06/about-bg.jpg);
  background-repeat: repeat;
  background-position: center center;
  background-attachment: scroll;
}

.ninja-forms-form-wrap label,
.ninja-forms-field-error p {
  font: inherit !important;
  font-weight: 300 !important;
  letter-spacing: inherit;
  text-align: left;
}

.select-all-or-none {
  display: block;
  font-size: .9em;
  clear: both;
}

.no-sidebar {
  padding-bottom: 20px;
  padding-top: 20px;
}

.form-item {
  display: block;
  margin-bottom: 10px;
}

.om-form-area #ninja_forms_form_182 #ninja_forms_field_234_div_wrap {
  float: left;
  margin-bottom: 10px;
  margin-right: 0;
}
.om-form-area #ninja_forms_form_182 #ninja_forms_field_235_div_wrap {
  float: right;
  margin-bottom: 10px;
  margin-right: 0;
}
.om-form-area #ninja_forms_form_182 #ninja_forms_field_236_div_wrap {
  clear: both;
  margin-bottom: 30px;
  width: 100%;
}
.om-form-area #ninja_forms_form_182 .submit-wrap {
  clear: both;
}

/** WordPress compatibility styles
 -------------------------------------------------- */
.alignleft,
.alignright {
  margin-top: 4px;
}

.alignleft {
  float: left;
  margin-bottom: 15px;
  margin-right: 20px;
}

.alignright {
  float: right;
  margin-bottom: 15px;
  margin-left: 20px;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/**
 * Captioned images
 * Caption shortcode filtered.
 */
.wp-caption {
  overflow: hidden;
}

.wp-caption dt {
  margin: 0;
}

.wp-caption img {
  border: 0;
  display: block;
  margin: 0;
  padding: 0;
}

.wp-caption dd {
  font-size: .9em;
  margin: 1px 0 0 0;
  padding: 2px 8px 3px 8px;
}

.sticky {
  /* Add styles here if you wish to callout sticky posts */
}

/** Standard / Utility Classes
 -------------------------------------------------- */
.clearfix,
.clear {
  *zoom: 1;
}
.clearfix:before, .clearfix:after,
.clear:before,
.clear:after {
  content: '';
  display: table;
}
.clearfix:after,
.clear:after {
  clear: both;
}

/* Pagination */
.pagination {
  margin: 30px 0;
  min-height: 20px;
}

.pagination .prev,
.pagination .next {
  display: block;
  line-height: 1.2em;
  width: 48%;
}

.pagination .next {
  float: right;
  text-align: right;
}

/* 	Breakpoint indicator
	------------------------------------------------------- */
.breakpoint-context {
  left: -999em;
  position: absolute;
  top: -999em;
  z-index: 1;
}

.list-radio-wrap .ninja-forms-field-error {
  clear: both;
  float: none;
}

/***Modal**/
.nf-modal,
div[id^=ninja-forms-modal-] {
  background: #81c341;
  border: 5px solid #FFFFFF;
  overflow: visible;
  padding-top: 30px;
  z-index: 10000 !important;
}
.nf-modal .ninja-forms-cont,
.nf-modal .nf-modal-content,
.nf-modal .ninja-forms-form-wrap,
div[id^=ninja-forms-modal-] .ninja-forms-cont,
div[id^=ninja-forms-modal-] .nf-modal-content,
div[id^=ninja-forms-modal-] .ninja-forms-form-wrap {
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 5px !important;
}
@media (min-width: 798px) {
  .nf-modal .ninja-forms-cont,
  .nf-modal .nf-modal-content,
  .nf-modal .ninja-forms-form-wrap,
  div[id^=ninja-forms-modal-] .ninja-forms-cont,
  div[id^=ninja-forms-modal-] .nf-modal-content,
  div[id^=ninja-forms-modal-] .ninja-forms-form-wrap {
    overflow: visible;
    overflow-x: visible;
    overflow-y: visible;
    padding: 15px !important;
  }
}
.nf-modal a.close-modal,
div[id^=ninja-forms-modal-] a.close-modal {
  background: #81c341;
  color: #FFFFFF;
}
.nf-modal .nf-modal-content,
div[id^=ninja-forms-modal-] .nf-modal-content {
  background: #81c341;
  border: 0;
}
.nf-modal .modal-header,
div[id^=ninja-forms-modal-] .modal-header {
  border-bottom: 0;
  padding: 0;
}
.nf-modal .modal-header h2,
div[id^=ninja-forms-modal-] .modal-header h2 {
  background: #349946;
  color: #FFFFFF;
  font: 700 36px/50px "Roboto Slab",serif;
  height: 118px;
  margin-left: -65px;
  padding: 12px 70px 0;
  position: relative;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  width: 770px;
}
.nf-modal .modal-header p,
div[id^=ninja-forms-modal-] .modal-header p {
  color: #fff;
  font-size: 18px;
  margin: 0 auto;
  padding: 30px 0;
  width: 475px;
}
.nf-modal label,
div[id^=ninja-forms-modal-] label {
  color: #FFFFFF;
}
.nf-modal label .ninja-forms-req-symbol,
.nf-modal .ninja-forms-required-items,
div[id^=ninja-forms-modal-] label .ninja-forms-req-symbol,
div[id^=ninja-forms-modal-] .ninja-forms-required-items {
  display: none;
}
@media (min-width: 798px) {
  .nf-modal .field-wrap:nth-child(-n+4),
  div[id^=ninja-forms-modal-] .field-wrap:nth-child(-n+4) {
    float: left;
    width: 49%;
  }
}
.nf-modal .field-wrap:nth-child(-n+3),
div[id^=ninja-forms-modal-] .field-wrap:nth-child(-n+3) {
  margin-right: 10px;
}
.nf-modal form input[type="submit"],
div[id^=ninja-forms-modal-] form input[type="submit"] {
  background: #FCD400;
  background: -moz-linear-gradient(top, #FCD400 0%, #EEB500 100%);
  background: -o-linear-gradient(top, #FCD400 0%, #EEB500 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FCD400), color-stop(100%, #EEB500));
  border: 1px solid #d9a102;
  border-radius: 3px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 2px rgba(255, 255, 255, 0.2);
  color: #000000;
  cursor: pointer;
  display: block;
  font: 500 16px/16px "Roboto",sans-serif;
  margin: 20px auto;
  padding: 10px;
  position: relative;
  width: 205px;
  z-index: 100;
}

.white-text h2 {
  color: #FFF !important;
}

.nf-modal-link {
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  background: #fdb314;
  border-bottom: 2px solid #c88d0b;
  border-left: 0;
  border-radius: 4px;
  border-right: 2px solid #c88d0b;
  border-top: 0;
  color: #333 !important;
  display: inline-block;
  font-size: 18px;
  font-weight: normal;
  line-height: 20px;
  margin-top: 15px;
  max-width: 100%;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  text-shadow: none;
  width: 250px;
}
.nf-modal-link:hover {
  background: #ffe66b;
  border: 1px solid #f3da5f;
  text-decoration: none;
}
.nf-modal-link:after {
  content: '\f0da';
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  margin: 0px 0px 0px 10px;
  text-decoration: none;
}

.row a.nf-modal-link:hover, .row a.nf-modal-link:after {
  text-decoration: none;
}

#ninja-forms-modal-194 {
  background: #e9e9e9;
  border: 15px solid #FFF;
  border-radius: 5px;
  max-width: 920px;
}
#ninja-forms-modal-194 .close-modal {
  background: #000;
  border: 2px solid white;
  top: -30px;
  right: -30px;
}
#ninja-forms-modal-194 .nf-modal-content {
  background: #e9e9e9;
}
#ninja-forms-modal-194 .nf-modal-content .title {
  background: #006595;
  border-radius: 3px;
  color: #FFF;
  font: 300 26px "Roboto Slab", serif;
  height: 68px;
  line-height: 42px;
  margin: -45px -30px 15px -30px;
  padding: 15px 15px;
  text-align: right;
}
#ninja-forms-modal-194 .nf-modal-content .title img {
  float: left;
  margin-left: 2%;
}
#ninja-forms-modal-194 .nf-modal-content label {
  color: #333333;
  display: block;
  font-weight: 400 !important;
  font-size: 14px !important;
  letter-spacing: 1px;
  padding-bottom: 4px;
  text-align: left;
  width: 100%;
}
#ninja-forms-modal-194 .nf-modal-content .aligncenter {
  margin: 0 2% 25px 2%;
  text-align: center;
}
#ninja-forms-modal-194 .nf-modal-content h2 {
  font-size: 20px;
  font-weight: 500;
  padding-bottom: 10px;
}
#ninja-forms-modal-194 .nf-modal-content .field-wrap {
  display: block;
  margin: 0 2% 15px 2%;
}
@media (min-width: 798px) {
  #ninja-forms-modal-194 .nf-modal-content .field-wrap {
    float: left;
    width: 46%;
  }
}
#ninja-forms-modal-194 .nf-modal-content .field-wrap input[type="text"] {
  border: 1px solid #cfcfcf;
  border-radius: 3px;
  box-shadow: inset -2px 2px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  padding: 2px 2%;
}
#ninja-forms-modal-194 .nf-modal-content .field-wrap select {
  margin-bottom: 10px;
}
#ninja-forms-modal-194 .nf-modal-content .list-radio-wrap ul {
  margin-top: 10px;
}
#ninja-forms-modal-194 .nf-modal-content .submit-wrap {
  clear: both;
  float: none;
  width: 100%;
}
#ninja-forms-modal-194 .nf-modal-content input[type="submit"] {
  background: #509630;
  border-radius: 3px;
  border-right: 2px solid #267533;
  border-bottom: 2px solid #267533;
  border-top: 0;
  border-left: 0;
  color: #fff !important;
  cursor: pointer;
  display: block;
  float: none;
  font: 500 18px/26px "Roboto", sans-serif !important;
  margin: 30px 0 0;
  max-width: 300px;
  min-height: 26px;
  padding: 10px 5%;
  position: relative;
  text-align: center;
  transition: 0s;
  -ms-transition: 0s;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -webkit-appearance: button;
}
#ninja-forms-modal-194 #ninja_forms_field_267_div_wrap {
  float: none;
  width: 100%;
}
#ninja-forms-modal-194 #ninja_forms_field_267_div_wrap .ninja-forms-field-error {
  clear: both;
}

.no-outline {
  outline: none;
}

/*!
 * Bootstrap v3.3.2 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*!
 * Generated using the Bootstrap Customizer (http://getbootstrap.com/customize/?id=eadc51ed06a995bb42ca)
 * Config saved to config.json and https://gist.github.com/eadc51ed06a995bb42ca
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

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

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

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-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333333;
  background-color: #ffffff;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #23527c;
  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

.img-rounded {
  border-radius: 6px;
}

.img-thumbnail {
  padding: 4px;
  line-height: 1.42857143;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.img-circle {
  border-radius: 50%;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  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;
}

code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #ffffff;
  background-color: #333333;
  border-radius: 3px;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: bold;
  -webkit-box-shadow: none;
  box-shadow: none;
}

pre {
  display: block;
  padding: 9.5px;
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.breadcrumb-trail,
.page-template-general-layout .fl-row-full-width .fl-row-content-wrap,
.page-template-general-layout .fl-row-fixed-width .fl-row-fixed-width {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-general-layout .fl-row-full-width .fl-row-content-wrap {
  padding-left: 0;
  padding-right: 0;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  opacity: 0;
  filter: alpha(opacity=0);
}

.tooltip.in {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.tooltip.top {
  margin-top: -3px;
  padding: 5px 0;
}

.tooltip.right {
  margin-left: 3px;
  padding: 0 5px;
}

.tooltip.bottom {
  margin-top: 3px;
  padding: 5px 0;
}

.tooltip.left {
  margin-left: -3px;
  padding: 0 5px;
}

.tooltip-inner {
  padding: 8px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background-color: #000000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}

.tooltip.top-left .tooltip-arrow {
  bottom: 0;
  right: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000000;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
}

.affix {
  position: fixed;
}

@media (min-width: 768px) {
  .container,
  .breadcrumb-trail,
  .page-template-general-layout .fl-row-full-width .fl-row-content-wrap,
  .page-template-general-layout .fl-row-fixed-width .fl-row-fixed-width {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .container,
  .breadcrumb-trail,
  .page-template-general-layout .fl-row-full-width .fl-row-content-wrap,
  .page-template-general-layout .fl-row-fixed-width .fl-row-fixed-width {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container,
  .breadcrumb-trail,
  .page-template-general-layout .fl-row-full-width .fl-row-content-wrap,
  .page-template-general-layout .fl-row-fixed-width .fl-row-fixed-width {
    width: 1060px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}

.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

.col-xs-pull-12 {
  right: 100%;
}

.col-xs-pull-11 {
  right: 91.66666667%;
}

.col-xs-pull-10 {
  right: 83.33333333%;
}

.col-xs-pull-9 {
  right: 75%;
}

.col-xs-pull-8 {
  right: 66.66666667%;
}

.col-xs-pull-7 {
  right: 58.33333333%;
}

.col-xs-pull-6 {
  right: 50%;
}

.col-xs-pull-5 {
  right: 41.66666667%;
}

.col-xs-pull-4 {
  right: 33.33333333%;
}

.col-xs-pull-3 {
  right: 25%;
}

.col-xs-pull-2 {
  right: 16.66666667%;
}

.col-xs-pull-1 {
  right: 8.33333333%;
}

.col-xs-pull-0 {
  right: auto;
}

.col-xs-push-12 {
  left: 100%;
}

.col-xs-push-11 {
  left: 91.66666667%;
}

.col-xs-push-10 {
  left: 83.33333333%;
}

.col-xs-push-9 {
  left: 75%;
}

.col-xs-push-8 {
  left: 66.66666667%;
}

.col-xs-push-7 {
  left: 58.33333333%;
}

.col-xs-push-6 {
  left: 50%;
}

.col-xs-push-5 {
  left: 41.66666667%;
}

.col-xs-push-4 {
  left: 33.33333333%;
}

.col-xs-push-3 {
  left: 25%;
}

.col-xs-push-2 {
  left: 16.66666667%;
}

.col-xs-push-1 {
  left: 8.33333333%;
}

.col-xs-push-0 {
  left: auto;
}

.col-xs-offset-12 {
  margin-left: 100%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-0 {
  margin-left: 0%;
}

@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-pull-12 {
    right: 100%;
  }

  .col-sm-pull-11 {
    right: 91.66666667%;
  }

  .col-sm-pull-10 {
    right: 83.33333333%;
  }

  .col-sm-pull-9 {
    right: 75%;
  }

  .col-sm-pull-8 {
    right: 66.66666667%;
  }

  .col-sm-pull-7 {
    right: 58.33333333%;
  }

  .col-sm-pull-6 {
    right: 50%;
  }

  .col-sm-pull-5 {
    right: 41.66666667%;
  }

  .col-sm-pull-4 {
    right: 33.33333333%;
  }

  .col-sm-pull-3 {
    right: 25%;
  }

  .col-sm-pull-2 {
    right: 16.66666667%;
  }

  .col-sm-pull-1 {
    right: 8.33333333%;
  }

  .col-sm-pull-0 {
    right: auto;
  }

  .col-sm-push-12 {
    left: 100%;
  }

  .col-sm-push-11 {
    left: 91.66666667%;
  }

  .col-sm-push-10 {
    left: 83.33333333%;
  }

  .col-sm-push-9 {
    left: 75%;
  }

  .col-sm-push-8 {
    left: 66.66666667%;
  }

  .col-sm-push-7 {
    left: 58.33333333%;
  }

  .col-sm-push-6 {
    left: 50%;
  }

  .col-sm-push-5 {
    left: 41.66666667%;
  }

  .col-sm-push-4 {
    left: 33.33333333%;
  }

  .col-sm-push-3 {
    left: 25%;
  }

  .col-sm-push-2 {
    left: 16.66666667%;
  }

  .col-sm-push-1 {
    left: 8.33333333%;
  }

  .col-sm-push-0 {
    left: auto;
  }

  .col-sm-offset-12 {
    margin-left: 100%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-pull-12 {
    right: 100%;
  }

  .col-md-pull-11 {
    right: 91.66666667%;
  }

  .col-md-pull-10 {
    right: 83.33333333%;
  }

  .col-md-pull-9 {
    right: 75%;
  }

  .col-md-pull-8 {
    right: 66.66666667%;
  }

  .col-md-pull-7 {
    right: 58.33333333%;
  }

  .col-md-pull-6 {
    right: 50%;
  }

  .col-md-pull-5 {
    right: 41.66666667%;
  }

  .col-md-pull-4 {
    right: 33.33333333%;
  }

  .col-md-pull-3 {
    right: 25%;
  }

  .col-md-pull-2 {
    right: 16.66666667%;
  }

  .col-md-pull-1 {
    right: 8.33333333%;
  }

  .col-md-pull-0 {
    right: auto;
  }

  .col-md-push-12 {
    left: 100%;
  }

  .col-md-push-11 {
    left: 91.66666667%;
  }

  .col-md-push-10 {
    left: 83.33333333%;
  }

  .col-md-push-9 {
    left: 75%;
  }

  .col-md-push-8 {
    left: 66.66666667%;
  }

  .col-md-push-7 {
    left: 58.33333333%;
  }

  .col-md-push-6 {
    left: 50%;
  }

  .col-md-push-5 {
    left: 41.66666667%;
  }

  .col-md-push-4 {
    left: 33.33333333%;
  }

  .col-md-push-3 {
    left: 25%;
  }

  .col-md-push-2 {
    left: 16.66666667%;
  }

  .col-md-push-1 {
    left: 8.33333333%;
  }

  .col-md-push-0 {
    left: auto;
  }

  .col-md-offset-12 {
    margin-left: 100%;
  }

  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-md-offset-9 {
    margin-left: 75%;
  }

  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-md-offset-6 {
    margin-left: 50%;
  }

  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-md-offset-3 {
    margin-left: 25%;
  }

  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-pull-12 {
    right: 100%;
  }

  .col-lg-pull-11 {
    right: 91.66666667%;
  }

  .col-lg-pull-10 {
    right: 83.33333333%;
  }

  .col-lg-pull-9 {
    right: 75%;
  }

  .col-lg-pull-8 {
    right: 66.66666667%;
  }

  .col-lg-pull-7 {
    right: 58.33333333%;
  }

  .col-lg-pull-6 {
    right: 50%;
  }

  .col-lg-pull-5 {
    right: 41.66666667%;
  }

  .col-lg-pull-4 {
    right: 33.33333333%;
  }

  .col-lg-pull-3 {
    right: 25%;
  }

  .col-lg-pull-2 {
    right: 16.66666667%;
  }

  .col-lg-pull-1 {
    right: 8.33333333%;
  }

  .col-lg-pull-0 {
    right: auto;
  }

  .col-lg-push-12 {
    left: 100%;
  }

  .col-lg-push-11 {
    left: 91.66666667%;
  }

  .col-lg-push-10 {
    left: 83.33333333%;
  }

  .col-lg-push-9 {
    left: 75%;
  }

  .col-lg-push-8 {
    left: 66.66666667%;
  }

  .col-lg-push-7 {
    left: 58.33333333%;
  }

  .col-lg-push-6 {
    left: 50%;
  }

  .col-lg-push-5 {
    left: 41.66666667%;
  }

  .col-lg-push-4 {
    left: 33.33333333%;
  }

  .col-lg-push-3 {
    left: 25%;
  }

  .col-lg-push-2 {
    left: 16.66666667%;
  }

  .col-lg-push-1 {
    left: 8.33333333%;
  }

  .col-lg-push-0 {
    left: auto;
  }

  .col-lg-offset-12 {
    margin-left: 100%;
  }

  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-lg-offset-9 {
    margin-left: 75%;
  }

  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-lg-offset-6 {
    margin-left: 50%;
  }

  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-lg-offset-3 {
    margin-left: 25%;
  }

  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.modal-open {
  overflow: hidden;
}

.modal {
  -webkit-overflow-scrolling: touch;
  bottom: 0;
  display: none;
  left: 0;
  outline: 0;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
}

.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #999999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  background-color: #000000;
}

.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}

.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.modal-footer:before,
.modal-footer:after {
  content: " ";
  display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.modal-footer:after {
  clear: both;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }

  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}

@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}

@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
body .tooltip.fade {
  transition: opacity;
}

/*! jQuery UI - v1.11.4 - 2015-03-11
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, draggable.css, menu.css, progressbar.css, resizable.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* Copyright 2015 jQuery Foundation and other contributors; Licensed MIT
*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  border: 0;
  font-size: 100%;
  line-height: 1.3;
  list-style: none;
  margin: 0;
  outline: 0;
  padding: 0;
  text-decoration: none;
}

.ui-helper-clearfix:before, .ui-helper-clearfix:after {
  border-collapse: collapse;
  content: "";
  display: table;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-clearfix {
  min-height: 0;
}

.ui-helper-zfix {
  filter: Alpha(Opacity=0);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.ui-front {
  z-index: 100;
}

.ui-state-disabled {
  cursor: default !important;
}

.ui-icon {
  background-repeat: no-repeat;
  display: block;
  overflow: hidden;
  text-indent: -99999px;
}

.ui-widget-overlay {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
}

.ui-accordion .ui-accordion-header {
  cursor: pointer;
  display: block;
  font-size: 100%;
  margin: 2px 0 0 0;
  min-height: 0;
  padding: .5em .5em .5em .7em;
  position: relative;
}

.ui-accordion .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-icons .ui-accordion-icons {
  padding-left: 2.2em;
}

.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
  left: .5em;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-accordion .ui-accordion-content {
  border-top: 0;
  overflow: auto;
  padding: 1em 2.2em;
}

.ui-autocomplete {
  cursor: default;
  left: 0;
  position: absolute;
  top: 0;
}

.ui-button {
  cursor: pointer;
  display: inline-block;
  line-height: normal;
  margin-right: .1em;
  overflow: visible;
  padding: 0;
  position: relative;
  text-align: center;
  vertical-align: middle;
}

.ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active {
  text-decoration: none;
}

.ui-button-icon-only {
  width: 2.2em;
}

button.ui-button-icon-only {
  width: 2.4em;
}

.ui-button-icons-only {
  width: 3.4em;
}

button.ui-button-icons-only {
  width: 3.7em;
}

.ui-button .ui-button-text {
  display: block;
  line-height: normal;
}

.ui-button-text-only .ui-button-text {
  padding: .4em 1em;
}

.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text {
  padding: .4em;
  text-indent: -9999999px;
}

.ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: .4em 1em .4em 2.1em;
}

.ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text {
  padding: .4em 2.1em .4em 1em;
}

.ui-button-text-icons .ui-button-text {
  padding-left: 2.1em;
  padding-right: 2.1em;
}

input.ui-button {
  padding: .4em 1em;
}

.ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon {
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-button-icon-only .ui-icon {
  left: 50%;
  margin-left: -8px;
}

.ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary {
  left: .5em;
}

.ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary {
  right: .5em;
}

.ui-buttonset {
  margin-right: 7px;
}

.ui-buttonset .ui-button {
  margin-left: 0;
  margin-right: -.3em;
}

input.ui-button::-moz-focus-inner, button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.ui-datepicker {
  display: none;
  padding: .2em .2em 0;
  width: 17em;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
}
.ui-datepicker .ui-datepicker-header, .ui-datepicker#ui-datepicker-div .ui-datepicker-header {
  margin-bottom: 4px;
  padding: 2px;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  height: 1.8em;
  position: absolute;
  width: 1.8em;
}
.ui-datepicker .ui-datepicker-prev .ui-icon,
.ui-datepicker .ui-datepicker-next .ui-icon {
  display: none;
}
.ui-datepicker .ui-datepicker-prev:before,
.ui-datepicker .ui-datepicker-next:before {
  font-size: 2.8em;
}
.ui-datepicker .ui-datepicker-prev:before {
  content: '\2039';
}
.ui-datepicker .ui-datepicker-next:before {
  content: '\203A';
}

.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next {
  right: 2px;
}

.ui-datepicker .ui-datepicker-prev-hover {
  left: 1px;
}

.ui-datepicker .ui-datepicker-next-hover {
  right: 1px;
}

.ui-datepicker .ui-datepicker-title {
  line-height: 1.8em;
  margin: 0 2.3em;
  text-align: center;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}

.ui-datepicker select.ui-datepicker-month, .ui-datepicker select.ui-datepicker-year {
  width: 45%;
}

.ui-datepicker table {
  border-collapse: collapse;
  font-size: .9em;
  margin: 0 0 .4em;
  width: 100%;
}

.ui-datepicker th {
  border: 0;
  font-weight: bold;
  padding: .7em .3em;
  text-align: center;
}

.ui-datepicker td {
  border: 0;
  padding: 1px;
}

.ui-datepicker td span, .ui-datepicker td a {
  display: block;
  padding: .2em;
  text-align: right;
  text-decoration: none;
}

.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  border-bottom: 0;
  border-left: 0;
  border-right: 0;
  margin: .7em 0 0 0;
  padding: 0 .2em;
}

.ui-datepicker .ui-datepicker-buttonpane button {
  cursor: pointer;
  float: right;
  margin: .5em .2em .4em;
  overflow: visible;
  padding: .2em .6em .3em .6em;
  width: auto;
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}

.ui-datepicker.ui-datepicker-multi {
  width: auto;
}

.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}

.ui-datepicker-multi .ui-datepicker-group table {
  margin: 0 auto .4em;
  width: 95%;
}

.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}

.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}

.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}

.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}

.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}

.ui-datepicker-row-break {
  clear: both;
  font-size: 0;
  width: 100%;
}

.ui-datepicker-rtl {
  direction: rtl;
}

.ui-datepicker-rtl .ui-datepicker-prev {
  left: auto;
  right: 2px;
}

.ui-datepicker-rtl .ui-datepicker-next {
  left: 2px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-prev:hover {
  left: auto;
  right: 1px;
}

.ui-datepicker-rtl .ui-datepicker-next:hover {
  left: 1px;
  right: auto;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane {
  clear: right;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button {
  float: left;
}

.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, .ui-datepicker-rtl .ui-datepicker-group {
  float: right;
}

.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 1px;
  border-right-width: 0;
}

.ui-dialog {
  left: 0;
  outline: 0;
  overflow: hidden;
  padding: .2em;
  position: absolute;
  top: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: .4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: .1em 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 90%;
}

.ui-dialog .ui-dialog-titlebar-close {
  height: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  position: absolute;
  right: .3em;
  top: 50%;
  width: 20px;
}

.ui-dialog .ui-dialog-content {
  background: none;
  border: 0;
  overflow: auto;
  padding: .5em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-buttonpane {
  background-image: none;
  border-width: 1px 0 0 0;
  margin-top: .5em;
  padding: .3em 1em .5em .4em;
  text-align: left;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  cursor: pointer;
  margin: .5em .4em .5em 0;
}

.ui-dialog .ui-resizable-se {
  background-position: 16px 16px;
  bottom: -5px;
  height: 12px;
  right: -5px;
  width: 12px;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

.ui-draggable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-menu {
  display: block;
  list-style: none;
  margin: 0;
  outline: none;
  padding: 0;
}

.ui-menu .ui-menu {
  position: absolute;
}

.ui-menu .ui-menu-item {
  cursor: pointer;
  list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
  margin: 0;
  min-height: 0;
  padding: 3px 1em 3px .4em;
  position: relative;
}

.ui-menu .ui-menu-divider {
  border-width: 1px 0 0 0;
  font-size: 0;
  height: 0;
  line-height: 0;
  margin: 5px 0;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
  margin: -1px;
}

.ui-menu-icons {
  position: relative;
}

.ui-menu-icons .ui-menu-item {
  padding-left: 2em;
}

.ui-menu .ui-icon {
  bottom: 0;
  left: .2em;
  margin: auto 0;
  position: absolute;
  top: 0;
}

.ui-menu .ui-menu-icon {
  left: auto;
  right: 0;
}

.ui-progressbar {
  height: 2em;
  overflow: hidden;
  text-align: left;
}

.ui-progressbar .ui-progressbar-value {
  height: 100%;
  margin: -1px;
}

.ui-progressbar .ui-progressbar-overlay {
  background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
  filter: alpha(opacity=25);
  height: 100%;
  opacity: 0.25;
}

.ui-progressbar-indeterminate .ui-progressbar-value {
  background-image: none;
}

.ui-resizable {
  position: relative;
}

.ui-resizable-handle {
  -ms-touch-action: none;
  display: block;
  font-size: 0.1px;
  position: absolute;
  touch-action: none;
}

.ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle {
  display: none;
}

.ui-resizable-n {
  cursor: n-resize;
  height: 7px;
  left: 0;
  top: -5px;
  width: 100%;
}

.ui-resizable-s {
  bottom: -5px;
  cursor: s-resize;
  height: 7px;
  left: 0;
  width: 100%;
}

.ui-resizable-e {
  cursor: e-resize;
  height: 100%;
  right: -5px;
  top: 0;
  width: 7px;
}

.ui-resizable-w {
  cursor: w-resize;
  height: 100%;
  left: -5px;
  top: 0;
  width: 7px;
}

.ui-resizable-se {
  bottom: 1px;
  cursor: se-resize;
  height: 12px;
  right: 1px;
  width: 12px;
}

.ui-resizable-sw {
  bottom: -5px;
  cursor: sw-resize;
  height: 9px;
  left: -5px;
  width: 9px;
}

.ui-resizable-nw {
  cursor: nw-resize;
  height: 9px;
  left: -5px;
  top: -5px;
  width: 9px;
}

.ui-resizable-ne {
  cursor: ne-resize;
  height: 9px;
  right: -5px;
  top: -5px;
  width: 9px;
}

.ui-selectable {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-selectable-helper {
  border: 1px dotted black;
  position: absolute;
  z-index: 100;
}

.ui-selectmenu-menu {
  display: none;
  left: 0;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
}

.ui-selectmenu-menu .ui-menu {
  overflow: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
}

.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
  border: 0;
  font-size: 1em;
  font-weight: bold;
  height: auto;
  line-height: 1.5;
  margin: 0.5em 0 0 0;
  padding: 2px 0.4em;
}

.ui-selectmenu-open {
  display: block;
}

.ui-selectmenu-button {
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-decoration: none;
}

.ui-selectmenu-button span.ui-icon {
  left: auto;
  margin-top: -8px;
  position: absolute;
  right: 0.5em;
  top: 50%;
}

.ui-selectmenu-button span.ui-selectmenu-text {
  display: block;
  line-height: 1.4;
  overflow: hidden;
  padding: 0.4em 2.1em 0.4em 1em;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ui-slider {
  position: relative;
  text-align: left;
}

.ui-slider .ui-slider-handle {
  -ms-touch-action: none;
  cursor: default;
  height: 1.2em;
  position: absolute;
  touch-action: none;
  width: 1.2em;
  z-index: 2;
}

.ui-slider .ui-slider-range {
  background-position: 0 0;
  border: 0;
  display: block;
  font-size: .7em;
  position: absolute;
  z-index: 1;
}

.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: .8em;
}

.ui-slider-horizontal .ui-slider-handle {
  margin-left: -.6em;
  top: -.3em;
}

.ui-slider-horizontal .ui-slider-range {
  height: 100%;
  top: 0;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  height: 100px;
  width: .8em;
}

.ui-slider-vertical .ui-slider-handle {
  left: -.3em;
  margin-bottom: -.6em;
  margin-left: 0;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  display: inline-block;
  overflow: hidden;
  padding: 0;
  position: relative;
  vertical-align: middle;
}

.ui-spinner-input {
  background: none;
  border: none;
  color: inherit;
  margin: .2em 0;
  margin-left: .4em;
  margin-right: 22px;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-button {
  cursor: default;
  display: block;
  font-size: .5em;
  height: 50%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  text-align: center;
  width: 16px;
}

.ui-spinner a.ui-spinner-button {
  border-bottom: none;
  border-right: none;
  border-top: none;
}

.ui-spinner .ui-icon {
  left: 0;
  margin-top: -8px;
  position: absolute;
  top: 50%;
}

.ui-spinner-up {
  top: 0;
}

.ui-spinner-down {
  bottom: 0;
}

.ui-spinner .ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-tabs {
  padding: .2em;
  position: relative;
}

.ui-tabs .ui-tabs-nav {
  margin: 0;
  padding: .2em .2em 0;
}

.ui-tabs .ui-tabs-nav li {
  border-bottom-width: 0;
  float: left;
  list-style: none;
  margin: 1px .2em 0 0;
  padding: 0;
  position: relative;
  top: 0;
  white-space: nowrap;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
  float: left;
  padding: .5em 1em;
  text-decoration: none;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
  margin-bottom: -1px;
  padding-bottom: 1px;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
  cursor: text;
}

.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
  cursor: pointer;
}

.ui-tabs .ui-tabs-panel {
  background: none;
  border-width: 0;
  display: block;
  padding: 1em 1.4em;
}

.ui-tooltip {
  -webkit-box-shadow: 0 0 5px #aaa;
  box-shadow: 0 0 5px #aaa;
  max-width: 300px;
  padding: 8px;
  position: absolute;
  z-index: 9999;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-widget {
  font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
  font-size: 1.1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
  font-family: Trebuchet MS,Tahoma,Verdana,Arial,sans-serif;
  font-size: 1em;
}

.ui-widget-content {
  background: #eee;
  border: 1px solid #ddd;
  color: #333;
}

.ui-widget-content a {
  color: #333;
}

.ui-widget-header {
  background: #f6a828;
  border: 1px solid #e78f08;
  color: #fff;
  font-weight: bold;
}

.ui-widget-header a {
  color: #fff;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: #f6f6f6;
  border: 1px solid #ccc;
  color: #1c94c4;
  font-weight: bold;
}

.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited {
  color: #1c94c4;
  text-decoration: none;
}

.ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
  background: #fdf5ce;
  border: 1px solid #fbcb09;
  color: #c77405;
  font-weight: bold;
}

.ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited, .ui-state-focus a, .ui-state-focus a:hover, .ui-state-focus a:link, .ui-state-focus a:visited {
  color: #c77405;
  text-decoration: none;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
  background: #fff;
  border: 1px solid #fbd850;
  color: #eb8f00;
  font-weight: bold;
}

.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
  color: #eb8f00;
  text-decoration: none;
}

.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
  background: #ffe45c;
  border: 1px solid #fed22f;
  color: #363636;
}

.ui-state-highlight a, .ui-widget-content .ui-state-highlight a, .ui-widget-header .ui-state-highlight a {
  color: #363636;
}

.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {
  background: #b81900;
  border: 1px solid #cd0a0a;
  color: #fff;
}

.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a {
  color: #fff;
}

.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text {
  color: #fff;
}

.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary {
  filter: Alpha(Opacity=70);
  font-weight: normal;
  opacity: .7;
}

.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled {
  background-image: none;
  filter: Alpha(Opacity=35);
  opacity: .35;
}

.ui-state-disabled .ui-icon {
  filter: Alpha(Opacity=35);
}

.ui-icon {
  height: 16px;
  width: 16px;
}

.ui-icon-blank {
  background-position: 16px 16px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl {
  border-top-left-radius: 4px;
}

.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr {
  border-top-right-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl {
  border-bottom-left-radius: 4px;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br {
  border-bottom-right-radius: 4px;
}

.ui-widget-overlay {
  background: #666;
  filter: Alpha(Opacity=50);
  opacity: .5;
}

.ui-widget-shadow {
  background: #000;
  border-radius: 5px;
  filter: Alpha(Opacity=20);
  margin: -5px 0 0 -5px;
  opacity: .2;
  padding: 5px;
}

.fixed-area {
  border-bottom: 1px solid #e0e0e0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.fixed-area.mobile {
  display: none;
  overflow: scroll;
  z-index: 10000;
}
.scroll-footer .fixed-area.mobile {
  z-index: 1;
}
.fixed-area.mobile .menu-mobile-menu-container {
  overflow-y: scroll;
}
.fixed-area .site-header {
  margin: 0;
  max-width: 100%;
  position: relative;
  z-index: 999;
}

@media only screen and (max-width: 1400px) {
  #page .fixed-area.page-header-wrapper {
    position: fixed;
  }
}

.top-bar {
  background: #e4e4e4;
  float: left;
  height: 30px;
  width: 100%;
}

.desktop .main-navigation {
  float: right;
}
.desktop .main-navigation li {
  font-weight: 400;
  float: left;
  margin-left: 10px;
  padding: 0 5px;
}
@media (min-width: 800px) {
  .desktop .main-navigation li {
    padding: 0 10px;
  }
}
.desktop .main-navigation a {
  color: #333;
  font-size: 12px;
  line-height: 30px;
}
.desktop .main-navigation li:hover .sub-menu {
  display: block;
}
.desktop .sub-menu {
  background: #e4e4e4 none repeat scroll 0 0;
  display: none;
  overflow: hidden;
  position: absolute;
  text-align: left;
  z-index: 999;
}
.desktop .sub-menu li {
  border-left: 0 none;
  float: none;
  margin: 0;
  padding: 0 15px;
}
.desktop .sub-menu li:hover {
  background-color: #1da6df;
}
.desktop .sub-menu li:hover a {
  color: #fff;
}
.desktop .sub-menu a {
  color: #333;
  display: block;
  font: 400 12px/12px "Roboto", serif;
  margin-top: 0;
  padding: 10px 0;
}
.desktop .search-form {
  float: left;
  height: 30px;
}
.desktop .search-form form {
  float: left;
  padding: 0;
  display: none;
}
.desktop .search-form .search {
  -webkit-appearance: none;
  appearance: none;
  background: #f4f4f4;
  border-bottom: 1px solid #efefef;
  border: 0;
  box-shadow: none;
  color: #666;
  display: none;
  font-size: 16px;
  height: 29px;
  margin-right: -10px;
  margin-top: 0;
  padding: 0 8px;
  width: 150px;
}
.desktop .search-form ::-webkit-input-placeholder {
  font-size: 14px;
}
.desktop .search-form ::-moz-placeholder {
  /* Firefox 19+ */
  font-size: 14px;
}
.desktop .search-form :-ms-input-placeholder {
  font-size: 14px;
}
.desktop .nav-icons {
  float: right;
}
.desktop .nav-icons li {
  font-weight: 400;
  float: left;
  list-style: none;
  margin-left: 10px;
  padding: 0 10px;
}
.desktop .nav-icons li.minicart {
  padding: 0;
  display:none;
}
.desktop .nav-icons a {
  color: #333;
  font-size: 0.75rem;
  line-height: 30px;
}
.desktop .nav-icons .search-icon {
  background: transparent none repeat scroll 0 0;
  color: #333;
  font-size: 12px;
  cursor: pointer;
  display: block;
  height: 30px;
  line-height: 30px;
  padding-left: 5px;
}
.desktop .nav-icons .search-icon .fa {
  padding-left: 0;
}
.desktop .nav-icons .search-icon.open span {
  display: none;
}
.desktop .nav-icons .search-icon.open.active {
  color: #00ABE8;
}
/*.desktop .nav-icons .search-icon .fa-times {
  display: none;
}
.desktop .nav-icons .search-icon.open .fa-times {
  display: inline;
}
.desktop .nav-icons .search-icon.open .fa-search {
  display: none;
}*/
.desktop .mycart {
  background: #006595;
}
.desktop .desktop-navigation.for-user {
  color: #FFF;
  cursor: pointer;
  float: right;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  margin-left: 10px;
  overflow: visible;
  position: relative;
  display: inline-block;
}
.desktop .desktop-navigation.for-user .toggle-desktop-user-menu-text {
  background-color: #666666;
  padding: 5px 10px;
  border-radius: 3px;
}
.desktop .desktop-navigation.for-user .toggle-desktop-user-menu-text:after {
    content: "\f0d7";
    font: normal normal normal 12px/1 FontAwesome;
    padding-left: 5px;
}
.desktop .desktop-navigation.for-user:hover .toggle-desktop-user-menu-text, .desktop .desktop-navigation.for-user:active .toggle-desktop-user-menu-text, 
.desktop .desktop-navigation.for-user .toggle-desktop-user-menu-text:hover, .desktop .desktop-navigation.for-user .toggle-desktop-user-menu-text:active {
    background: #fff;
    color: #333;
}
.desktop .desktop-navigation.for-user .menu-sign-in-container {
  background-color: #e4e4e4;
  display: none;
  min-width: 180px;
  position: absolute;
  right: 0;
  top: 30px;
  z-index: 110;
}
.desktop .desktop-navigation.for-user ul li {
  display: block;
  float: none;
  line-height: 1.25;
  margin: 0;
}
.desktop .desktop-navigation.for-user ul li a {
  display: block;
  line-height: inherit;
  padding: 8px 7px;
  transition: all 0.2s ease 0s;
}
.desktop .desktop-navigation.for-user ul li a, .desktop .desktop-navigation.for-user ul li a:link, .desktop .desktop-navigation.for-user ul li a:visited {
  color: #333;
}
.desktop .desktop-navigation.for-user ul li a:hover, .desktop .desktop-navigation.for-user ul li a:active, .desktop .desktop-navigation.for-user ul li a:focus {
  background-color: #1da6df;
  color: #fff;
  text-decoration: underline;
}
.desktop .desktop-navigation.for-user:hover .menu-sign-in-container, .desktop .desktop-navigation.for-user:active .menu-sign-in-container, .desktop .desktop-navigation.for-user:focus .menu-sign-in-container {
  display: block;
}
.desktop .signin a,
.desktop .mycart a {
  color: #fff;
  padding: 7px 0;
  width: 100%;
}
.desktop .signin i,
.desktop .mycart i {
  display: none;
}

.bottom-bar {
  float: left;
  background-color: #fff;
  width: 100%;
}
.bottom-bar .logo {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  padding-right: 15px;
  margin-top: 10px;
  width: 25%;
}
.bottom-bar .logo img {
  max-height: 60px;
  max-width: 100%;
}
.bottom-bar .custom-menu {
  float: left;
  margin-top: 0;
  width: 75%;
}

.custom-menu .ubermenu-main {
  border: none;
}

.ubermenu-tabs {
  min-height: 10px !important;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-has-submenu-drop {
  height: 80px;
  text-align: center;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-has-submenu-drop > .ubermenu-target {
  background-color: #fff !important;
  border-left: 1px solid #efefef;
  color: #006497 !important;
  font-size: 16px;
  font-weight: 400;
  height: auto !important;
  line-height: 78px;
  padding: 0;
  z-index: 100;
  text-align: center;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-has-submenu-drop:hover > .ubermenu-target, 
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-current-menu-item > .ubermenu-target  {
    background-color: #006497 !important;
    color: #fff !important;
    border-bottom: 2px solid #006497;
    border-left: 1px solid #006497;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-item-has-children > .ubermenu-target .fa-caret-down {
  bottom: -28px;
  color: #006497;
  display: none;
  left: 50%;
  margin-left: -15px;
  position: absolute;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-item-has-children > .ubermenu-tab-content-panel {
  border-top: none;
  display: none !important;
  position: fixed;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-item-has-children:hover > .ubermenu-tab-content-panel {
  display: block !important;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-item-has-children:hover > .ubermenu-target .fa-caret-down {
  display: block;
}
.ubermenu-tabs .ubermenu-tabs-group > .ubermenu-item-has-children .ubermenu-content-block {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel {
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .small-bussiness .widget_black_studio_tinymce {
  background-color: #359946 !important;
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .small-bussiness .widget_black_studio_tinymce img {
  margin-left: 25px;
}
@media (max-width: 1200px) {
  .ubermenu-tabs .column-1 .ubermenu-tab-content-panel .small-bussiness .widget_black_studio_tinymce img {
    margin: 0 auto;
  }
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce {
  background-color: #359946;
  border-radius: 5px;
  padding-top: 0 !important;
  padding-bottom: 15px !important;
  width: 45% !important;
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce:last-child {
  background-color: #006595;
  margin-left: 5%;
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce h3 {
  color: #fff !important;
  font: 500 28px/28px "Roboto", serif;
  margin: 0 !important;
  padding-bottom: 5px;
}
@media (max-width: 1200px) {
  .ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce h3 {
    font: 500 24px/28px "Roboto", serif;
  }
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce h5 {
  color: #fff;
  font: 400 16px/16px "Roboto", serif;
  padding-bottom: 10px;
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce img {
  height: 90px;
  float: left;
}
@media (max-width: 1200px) {
  .ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce img {
    display: block;
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce p {
    display: inline-block;
    width: 100%;
  }
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce .fade {
  color: #fff;
  float: right;
  font: 400 14px/18px "Roboto Slab", serif;
  margin-top: 10px;
  max-width: 50%;
}
@media (max-width: 1200px) {
  .ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce .fade {
    float: left;
  }
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce .fade span {
  display: inline-block;
  float: left;
  width: 73px;
}
.ubermenu-tabs .column-1 .ubermenu-tab-content-panel .widget_black_studio_tinymce .fade .fa {
  float: left;
  padding-top: 3px;
}
.ubermenu-tabs .column-1 .ubermenu-content-block {
  padding-left: 0 !important;
}
.ubermenu-tabs .column-2 .solutions-list li {
  border-left: 0 none;
  cursor: pointer;
  float: left !important;
  height: 22px;
  margin: 0 0 20px 0 !important;
  padding: 0 15px 0 42px;
  text-align: left;
}
.ubermenu-tabs .column-2 .solutions-list li:nth-child(odd) {
  width: 46% !important;
}
.ubermenu-tabs .column-2 .solutions-list li:nth-child(even) {
  width: 54% !important;
}
.ubermenu-tabs .column-2 .solutions-list li a {
  color: #006497 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  padding: 0 !important;
}
.ubermenu-tabs .column-2 .solutions-list li a img {
  max-width: 20px;
}
.ubermenu-tabs .column-2 .solutions-list li a .ubermenu-target-text {
  padding-left: 40px;
  padding-top: 1px;
}
.ubermenu-tabs .column-2 .solutions-list li:hover a {
  color: #1da6df;
}
.ubermenu-tabs .column-2 .solutions-list li:hover a:hover {
  text-decoration: underline;
}
.ubermenu-tabs .column-2 .ubermenu-content-block {
  padding-left: 0 !important;
}
.ubermenu-tabs .column-3 .ubermenu-tab-content-panel .widget_black_studio_tinymce {
  margin-top: 30px !important;
}
.ubermenu-tabs .column-3 .ubermenu-tab-content-panel .container > li:first-child ul,
.ubermenu-tabs .column-3 .ubermenu-tab-content-panel .container > li:first-child a {
  padding-left: 0;
  padding-top: 0;
}
.ubermenu-tabs .column-3 .ubermenu-item-type-column > ul > li {
  margin-top: 0;
}
.ubermenu-tabs .column-3 .ubermenu-item-type-column > ul > li > a {
  color: #439539;
  font: 400 24px/40px "Roboto Slab", serif;
  padding-bottom: 0;
  padding-left: 15px;
  padding-top: 0;
}
.ubermenu-tabs .column-3 .ubermenu-item-type-column > ul > li > a .fa {
  display: none;
}
.ubermenu-tabs .column-3 .ubermenu-item-type-column > ul > li > ul {
  padding: 0;
}
.ubermenu-tabs .column-3 .ubermenu-item-type-column > ul > li > ul a {
  color: #006497 !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  margin-left: 15px;
  padding: 0 !important;
}
.ubermenu-tabs .column-3 .ubermenu-content-block {
  padding-left: 0 !important;
}
.ubermenu-tabs .ubermenu-tab-content-panel {
  background-color: #E4E4E4 !important;
  box-shadow: none !important;
  min-height: auto !important;
  padding: 30px 0 !important;
}
.ubermenu-tabs h2 {
  color: #439539;
  font: 400 24px/40px "Roboto Slab", serif;
  padding-bottom: 10px;
}
.ubermenu-tabs p {
  color: #333;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 0;
  margin-top: 0;
  width: 95%;
}
/*All Resources heading on submenu */
.menu-item-all-resources a {
    padding-left: 15px !important;
}

@media (max-width: 768px) {
  .fixed-area.desktop {
    display: none;
  }

  .fixed-area.mobile {
    background-color: #fff;
    display: block;
  }

  .rm-additional-content {
    display: none;
  }

  .logo {
    padding: 10px;
  }

  .nav-icons {
    float: right;
    margin-right: 0px;
    margin-top: 10px;
  }
  .nav-icons a {
    float: right;
    margin-left: 15px;
    font-size: .65rem;
    line-height: 1;
    text-transform: uppercase;
  }

  .nav-icons a i {
    font-size: 18px;
    padding-left: 0;
    display: block;
    text-align: center;
  }
  .nav-icons a, .nav-icons a:link, .nav-icons a:visited {
    color: #999;
    text-decoration: none;
  }
  .nav-icons a:hover, .nav-icons a:active, .nav-icons a:focus {
    color: #DDDDDD;
    text-decoration: none;
  }
  .nav-icons a i {
    font-size: 25px;
    top: 0;
  }
}
@media (max-width: 560px) {
  .fixed-area.mobile .functionality > a img {
    padding-bottom: 10px;
    padding-top: 10px;
    width: 135px;
  }

  .nav-icons {
    margin-right: 0;
    margin-top: 13px;
  }
  .nav-icons a {
    margin-right: 3px;

  }

  #click-menu.overlay {
    right: 5px !important;
  }
}
.fixed-area.mobile {
  border-bottom: 0;
  overflow: visible;
}
.fixed-area.mobile .logo {
  padding: 0;
}
@media (max-width: 560px) {
  .fixed-area.mobile .logo a img {
    width: 125px;
  }
}
.fixed-area.mobile .functionality {
  border-bottom: 5px solid #006595;
  padding: 10px;
}
@media (max-width: 560px) {
  .fixed-area.mobile .functionality {
    padding-bottom: 5px;
    padding-top: 5px;
  }
}
@media (max-width: 560px) {
  .fixed-area.mobile .functionality .nav-icons {
    max-width: 100%;
  }
}
.fixed-area.mobile .functionality .nav-icons a.target-open, .fixed-area.mobile .functionality .nav-icons a.target-open:link, .fixed-area.mobile .functionality .nav-icons a.target-open:visited, .fixed-area.mobile .functionality .nav-icons a.target-open:hover, .fixed-area.mobile .functionality .nav-icons a.target-open:active, .fixed-area.mobile .functionality .nav-icons a.target-open:focus {
  color: #006497;
}
.fixed-area.mobile .std-form input {
  background: #fff none repeat scroll 0 0;
  border: 1px solid #555;
  height: 42px;
  margin-bottom: 0;
  margin-top: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.page-header-wrapper .mobile-navigation,
.page-header-wrapper .mobile-search-wrapper {
  background-color: #DDDDDD;
  overflow: auto;
  position: absolute;
  width: 100%;
}

.page-header-wrapper .mobile-navigation {
  left: -100%;
  transition: left 0.4s ease-out;
}
.page-header-wrapper .mobile-navigation.open {
  left: 0;
}

.page-header-wrapper .mobile-search-wrapper {
  height: 0;
  overflow: hidden;
  transition: height 0.15s ease-out;
}
.page-header-wrapper .mobile-search-wrapper.open {
  height: 42px;
}
.mobile-navigation .menu {
  font-family: "Roboto Slab", serif;
  font-size: 16px;
}
.mobile-navigation .menu li {
  display: block;
  float: none;
  margin-bottom: 0;
}
.mobile-navigation .menu li li a {
  padding-left: 32px;
}
.mobile-navigation .menu li li .sub-menu {
  display: none;
}
.mobile-navigation .menu li .sub-menu {
  display: block;
  height: 0;
  overflow: hidden;
}
.mobile-navigation .menu li.sub-menu-expanded .sub-menu {
  height: auto;
}
.mobile-navigation .menu li.menu-item-has-children > a::after {
  background-color: #DDDDDD;
  content: '\25b6';
  display: inline-block;
  font-size: 0.875em;
  padding-left: 6px;
  padding-right: 12px;
  position: absolute;
  right: 0;
}
.mobile-navigation .menu li.menu-item-has-children.sub-menu-expanded > a::after {
  content: '\25bc';
}
li .mobile-navigation .menu li.menu-item-has-children a::after {
  display: none;
}
.mobile-navigation .menu li:last-of-type a {
  border-bottom: 1px solid #FFFFFF;
}
.mobile-navigation .menu li:last-of-type li a {
  border-bottom: none;
}
.mobile-navigation .menu a {
  border-top: 1px solid #FFFFFF;
  display: block;
  line-height: 20px;
  padding: 12px 0px 12px 12px;
  position: relative;
  white-space: nowrap;
}
.mobile-navigation .menu a, .mobile-navigation .menu a:link, .mobile-navigation .menu a:visited, .mobile-navigation .menu a:hover, .mobile-navigation .menu a:active, .mobile-navigation .menu a:focus {
  text-decoration: none;
}

.site-footer {
  background-color: #fafafa;
  border: none;
  color: #565656;
  position: relative;
}
.site-footer#footer {
  border: none;
  padding-top: 0px;
}
.site-footer.footer-actions-holder {
  z-index: 1000;
}
.site-footer .menu-area {
  display: none;
  padding: 10px 0 20px 0;
}
@media (min-width: 768px) {
  .site-footer .menu-area {
    display: block;
  }
} 
.site-footer .bottom-area {
  border-top: 1px solid #cccccc;
  padding: 20px 0 0 0;
}
.site-footer .bottom-area .container {
  padding-bottom: 50px;
  position: relative;
}
.site-footer .row h3 {
  margin: 15px 0 5px;
}
.site-footer .row ul {
  margin: 0 0 10px;
}
.site-footer .row li {
  line-height: 18px;
  margin: 0 0 0 -5px;
  padding: 0 5px;
}
.site-footer .row a,
.site-footer .row h3 {
  color: #565656;
  padding-left: 5px;
}
.site-footer .row a {
  display: inline-block;
  font-size: 0.75rem;
  padding: 3px 5px;
}
.site-footer .row li:hover {
  background-color: #dcdcdc;
}
.site-footer .row a:hover {
  text-decoration: none;
}
.site-footer .row .col-sm-3.right {
  float: right;
}
.site-footer .copyright {
  float: left;
  font-size: 0.75rem;
}
.site-footer .util {
  clear: left;
  float: left;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .site-footer .util {
    clear: none;
    float: right;
  }
}
.site-footer .util a {
  color: #565656;
}
.site-footer .util ul {
  margin: 0;
}
.site-footer .util li {
  float: left;
  margin: 0 2px;
}
.site-footer .util li:first-child {
  margin-left: 0;
}
.site-footer .util li::after {
  content: " | ";
  padding-left: 2px;
}
.site-footer .util li:last-child::after {
  content: "";
  margin-right: 0;
}

.footer-actions {
  bottom: -1px;
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1000;
  height: 0;
}

.scroll-footer .footer-actions {
  height: auto;
}
/*.footer-actions .tabs {
  background: none !important;
  border-bottom: none;
  position: absolute;
  right: 0;
  top: -39px;
  z-index: 999;
}
@media (max-width: 768px) {
  .footer-actions .tabs {
    left: 0;
    right: 0;
    width: 100%;
  }
}
.footer-actions .tabs li {
  border-radius: 3px 3px 0 0;
  cursor: pointer;
  float: right;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  margin-left: 10px;
  padding: 0 25px;
}
 @media (max-width: 560px) {
 .footer-actions .tabs li {
    border-radius: 0;
    font-size: 1rem;
    margin-left: 0;
    padding: 0;
    text-align: center;
  }
  .footer-actions .tabs li.form-email, .footer-actions .tabs li.form-chat {
    width: 30%;
  }
  .footer-actions .tabs li.form-phone {
    width: 40%;
  }
}
.footer-actions .tabs li .fa {
  display: inline-block;
  margin-right: 5px;
  padding-left: 0;
}
.footer-actions .tabs li.form-phone {
  background-color: #fbb619;
  border-left: 1px solid #c88d0b;
  border-right: 1px solid #c88d0b;
  border-top: 1px solid #c88d0b;
}
.footer-actions .tabs li.form-phone .fa {
  color: #ef5f24;
}
.footer-actions .tabs li.form-email {
  background-color: #85c742;
  border-left: 1px solid #349946;
  border-right: 1px solid #349946;
  border-top: 1px solid #349946;
}
.footer-actions .tabs li.form-email .fa {
  color: #58a53b;
}
.footer-actions .tabs li.form-chat {
  background-color: #18aae2;
  border-left: 1px solid #158fbf;
  border-right: 1px solid #158fbf;
  border-top: 1px solid #158fbf;
}
.footer-actions .tabs li.form-chat .fa {
  color: #006595;
}*/
.footer-actions .email-info {
  font-size: 12px;
}
.footer-actions .email-info .ninja-forms-cont {
  font-size: 16px;
}
.footer-actions .email-info .ninja-forms-cont label {
  text-align: left;
}
.footer-actions .email-info .list-radio-wrap label input {
  margin-right: 8px;
  margin-top: 4px;
}

.footer-actions .email-info .nf-form-fields-required,
.footer-actions .email-info span.ninja-forms-req-symbol,
.footer-actions .email-info .nf-form-errors {
  display: none;
}

.email-info,
.chat-info {
  background-color: #e6e7e8;
  border-top: 1px solid #cccccc;
  bottom: -500px;
  font-family: "Roboto";
  padding-top: 60px;
  position: relative;
  -webkit-transition: all 500ms ease-in; 
  transition: width all 500ms ease-in;
}
.email-info .info {
  padding-right: 15px;
}
@media (max-width: 585px), (max-width: 768px) and (orientation: landscape) {
  .scroll-footer .email-info, .scroll-footer
  .chat-info {
    height: 100%;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    width: 100%;
    z-index: 1000;
  }
}
@media (max-width: 767px) {
  .email-info {
    bottom: -1200px;
  }
}
.email-info h3,
.chat-info h3 {
  font-size: 1.9em;
  font-weight: 500;
  line-height: 1.25em;
  font-family: "Roboto slab";
  text-align: center;
  margin-bottom: .5em;
}
.email-info p,
.chat-info p {
  font-size: 1;
  line-height: 1.5em;
  padding: 5px 0;
  text-align: center;
}
.email-info p.lead,
.chat-info p.lead {
  font-size: 1.25em;
  font-weight: 400;
  line-height: 1.5em;
  text-align: center;
  margin-bottom: .5em;
}
.email-info p.note,
.chat-info p.note {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.email-info .ninja-forms-form-wrap,
.chat-info .ninja-forms-form-wrap {
  padding: 0 25px;
}
.email-info .ninja-forms-form-wrap label,
.chat-info .ninja-forms-form-wrap label {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5em !important;
  letter-spacing: 1px;
}
.email-info input[type="text"],
.email-info input[type="tel"],
.email-info select,
.chat-info input[type="text"],
.chat-info select {
  border-radius: 3px;
  color: #333 !important;
  font-size: 16px;
  font-weight: 300;
  height: 40px;
  padding: 4px 6px;
  width: 100%;
}
.email-info .ninja-forms-required-items,
.chat-info .ninja-forms-required-items {
  display: none;
}

 @media (min-width: 560px) {
 .email-info .half-wrap,
  .chat-info .half-wrap {
    float: left;
    width: 48%;
  }
  .email-info .half-wrap.left-wrap,
  .chat-info .half-wrap.left-wrap {
    margin-right: 4%;
  }
}
@media (min-width: 768px) {
/*  .email-info .info,
  .chat-info .info {
    float: left;
    width: 40%;
  }

  .email-info .ninja-forms-cont,
  .chat-info .ninja-forms-cont {
    float: right;
    width: 55%;
  }
*/
.email-info .info {
  padding-right: 50px;
}
.footer-actions .email-info {
  font-size: 16px;
}
  .email-info h3,
  .chat-info h3 {
    text-align: left;
  }
  .email-info p,
  .chat-info p, 
  .email-info p.lead,
  .chat-info p.lead {
    text-align: left;
  }
}
.email-info .list-radio-wrap span li,
.chat-info .list-radio-wrap span li {
  float: left;
  margin-left: -10px;
  margin-right: 10px;
}
.email-info .fa-close,
.chat-info .fa-close {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}
.email-info.open,
.chat-info.open {
  bottom: 0;
  -webkit-transition: all 500ms ease-out; 
  transition: width all 500ms ease-out;
}

.chat-info {
  display: none;
  background-color: #18AAE2;
  border-top: 1px solid #158FBF;
}

.social {
  margin-left: 5px;
}
.social .icon {
  background: url(../images/icon-sprite.png);
  cursor: pointer;
  display: block;
  float: left;
  height: 16px;
  margin: 0 10px 0 0;
  width: 16px;
}
.social .thelinkedin {
  background-position: -50px 0;
}
.social .theyoutube {
  background-position: -70px 0;
}
.social .thetwitter {
  background-position: -90px 0;
}
.social .thefacebook {
  background-position: -110px 0;
}

.blogpost {
  margin: 30px -15px;
}
.blogpost p {
  margin-bottom: 20px;
  margin-top: 0;
}

body:not(.single-post) .blog {
  padding-bottom: 3rem;
  padding-top: 0;
}
body:not(.single-post) .blog .module.form .field-wrap:not(.hidden-wrap) {
  margin-bottom: 5px;
}
body:not(.single-post) .blog .module.form .button {
  display: block;
  max-width: 230px;
}

.single-post section.content {
  padding-top: 30px;
}
.single-post section.modules {
  padding-bottom: 30px;
}
.single-post .type {
  background: #006595 none repeat scroll 0 0;
  color: #fff;
  font: 600 14px/25px "Roboto Slab", serif;
  left: 0;
  padding: 5px 20px;
  position: absolute;
  text-align: center;
  top: 0;
}

.post .meta .author {
  font-family: "Roboto Slab", serif;
  margin-bottom: 50px;
  text-align: right;
}
@media (max-width: 767px) {
  .post .meta .author {
    display: none;
  }
}
.post .meta img {
  border: 3px solid #006595;
  width: 100%;
}
.post .meta a {
  color: #1ea8e0;
  display: block;
  font-weight: 600;
  line-height: 20px;
}
.post .share-area-container .addthis_toolbox {
  background: #efefef none repeat scroll 0 0;
  border-radius: 3px;
  font: 300 12px/24px "Roboto Slab", serif;
  max-width: 100px;
  padding: 40px 10px 55px;
  text-align: center;
}
.post .share-area-container .addthis_toolbox a {
  display: block;
  max-height: 28px;
  width: 100%;
}
.post .share-area-container .addthis_toolbox a:hover {
  opacity: 0.6;
}
.post .share-area-container .addthis_toolbox a > span {
  background-position: center center;
  background-size: 20px 20px !important;
  border-radius: 3px;
  color: #fff;
  height: 27px !important;
  line-height: 24px !important;
  margin: 2px auto;
  text-align: center;
  width: 100% !important;
}
.post .share-area-container .addthis_toolbox a .at-icon {
  height: 24px !important;
  width: 24px !important;
}
.post .share-area-container .addthis_toolbox a.addthis_bubble_style {
  display: none !important;
}
.post .share-area-container .addthis_toolbox a.addthis_button_facebook .at-icon-wrapper {
  background-color: #618AC7 !important;
}
.post .share-area-container .addthis_toolbox a.addthis_button_twitter .at-icon-wrapper {
  background-color: #7BD2F6 !important;
}
.post .share-area-container .addthis_toolbox a.addthis_button_google_plusone .at-icon-wrapper {
  background-color: #E85600 !important;
}
.post .share-area-container .addthis_toolbox a.addthis_button_linkedin .at-icon-wrapper {
  background-color: #5BABD1 !important;
}
.post .share-area-container .addthis_toolbox a.addthis_button_email .at-icon-wrapper {
  background-color: #82C342 !important;
}
.post .share-area-container .addthis_toolbox a.addthis_button_compact .at-icon-wrapper {
  background-color: #FC805F !important;
}
.post .share-area-container .share-bubble {
  background: #fff none repeat scroll center center;
  border-radius: 250px;
  border: 1px solid #ddd;
  color: #333;
  display: block;
  font-size: 14px;
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  text-align: center;
  top: -50px;
  width: 40px;
}
.single-resource .post .share-area-container .share-bubble {
  top: -60px;
}
.single-resource .callout {
  font-weight: 500;
}
.post .text {
  margin-bottom: 30px;
  margin-top: 5px;
}
.post .info {
  font: 700 16px/24px "Roboto Slab", serif;
}
.single-post .post .info {
  margin-bottom: 10px;
}
.post ul {
  margin: 20px 0 20px 30px;
}
.post ul li {
  list-style-type: disc;
}
.post .title {
  color: #006595;
  font: 700 26px/30px "Roboto Slab", serif;
}
.single-post .post .title {
  margin-bottom: 10px;
}
.post .hero {
  position: relative;
}
.post .hero img {
  border-top: 5px solid #006497;
  width: 100%;
}

.share-col .share-text {
  font-size: 14px;
  font-weight: 500;
  margin-top: -30px;
  position: relative;
  text-align: center;
  top: 45px;
  width: 100%;
}
body.single-post .share-col .share-text {
  top: 35px;
}

.related {
  margin: 0 auto 60px;
}
.related h4 {
  color: #006497;
  font: 600 18px/20px "Roboto Slab", serif;
  margin: 30px 0px;
  text-align: left;
}
.related h5 {
  font-weight: 300;
  padding-bottom: 10px;
}
.related .article-list {
  border: 0;
  display: inline-block;
  float: left;
  text-align: left;
  vertical-align: top;
  width: 50%;
}
.related .article-list:nth-of-type(even) {
  padding-right: 2%;
}
.related .article-list:nth-of-type(odd) {
  padding-left: 2%;
}
.related .article-list h2 {
  font: 600 20px/24px "Roboto Slab", serif;
  margin-bottom: 20px;
  max-width: 70%;
}
.related .article-list .byline a {
  color: #1EA8E0;
}
.related .article-list .placeholder {
  background: #CCCCCC;
  height: 142px;
  width: 100%;
}
.related .article-list .type {
  background: none;
  color: #000000;
  display: block;
  font-family: "Roboto", serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 14px;
  margin: 20px 0;
  padding: 0;
  position: relative;
  text-align: left;
  text-transform: uppercase;
}
.related .article-list .share {
  float: right;
  text-align: center;
}
.related .article-list img {
  border-top: 0;
}

@media (min-width: 1025px) {
  .single .content-area .col-md-8 {
    width: 66.66666667%;
  }
  .single .content-area .col-md-4 {
    width: 33.33333333%;
  }
  .single .content-area .col-md-7 {
    width: 58.33333333%;
  }
}
@media (min-width: 561px) {
  .single .content-area .post .meta .author {
    display: block;
  }
  .single .content-area .col-md-2 {
    float: left;
    width: 16.66666667%;
  }
  .single .content-area .col-sm-10 {
    float: left;
    width: 83.33333333%;
  }
}
@media (max-width: 767px) {
  .single #primary {
    padding-bottom: 0;
  }
  .single section.modules {
    width: 100%;
  }
  .single section.modules .col-sm-3 {
    float: left;
  }
}
@media (max-width: 560px) {
  .single .share-col {
    display: none;
  }
}

@media (max-width: 991px) {
  .single-resource .content-area .col-md-7 {
    float: left;
    width: 83.33333333%;
  }
}
@media (max-width: 560px) {
  .single-resource .content-area .col-md-7 {
    float: left;
    width: 100%;
  }
}

@media (max-width: 767px) {
  body.single .text,
  body.single .title,
  body.single .subtitle,
  body.single .fl-heading,
  body.single .fl-callout-title,
  body.single .green-link *,
  body.single .tagline,
  body.single .header-subtitle,
  body.single .image,
  body.single article p {
    text-align: left;
  }
}

.pagination-posts {
  clear: both;
  font: 300 16px/24px "Roboto", serif;
  height: 20px;
  margin-bottom: 25px;
}
@media (max-width: 560px) {
  .pagination-posts {
    margin-bottom: 50px;
  }
}
.pagination-posts span,
.pagination-posts a {
  border: none;
}
.pagination-posts span.pages {
  font-weight: 500;
  margin-right: 10px;
}
.pagination-posts span.current,
.pagination-posts a.page:hover {
  background: #439539 none repeat scroll 0 0;
  border-radius: 250px;
  color: #fff !important;
  display: inline-block;
  font-weight: 400;
  height: 28px;
  line-height: 22px;
  margin: 0 6px;
  padding: 3px 0 6px !important;
  text-align: center;
  text-decoration: none !important;
  width: 28px;
}
.pagination-posts a.page {
  background: #ded9c9 none repeat scroll 0 0;
  border-radius: 250px;
  color: #333 !important;
  display: inline-block;
  font-weight: 400;
  height: 28px;
  line-height: 22px;
  margin: 0 6px;
  padding: 3px 0 6px !important;
  text-align: center;
  width: 28px;
}
.pagination-posts a.nextpostslink,
.pagination-posts a.previouspostslink,
.pagination-posts a.first,
.pagination-posts a.last {
  background: transparent none repeat scroll 0 center;
  color: #439539 !important;
  font-family: "Roboto Slab", serif !important;
  width: auto;
}
.pagination-posts a.nextpostslink:before {
  content: "Next ";
}
.pagination-posts a.previouspostslink:after {
  content: " Previous";
}
.resources .row {
  padding: 0 0 30px;
}
.resources .entry .type {
  display: block;
  font: 400 14px/14px "Roboto", sans-serif;
  letter-spacing: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.resources .entry .share {
  float: right;
  font-size: 12px;
  margin: -25px 15px 0 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .resources .entry .share {
    text-align: center;
  }
}
.resources .entry h3 a {
  color: #006595 !important;
  font: 700 20px/26px "Roboto Slab", serif !important;
  margin: 10px 0 5px !important;
}
.resources .entry p {
  line-height: 24px;
  margin: 10px 0;
}
.resources .entry .col-md-8 {
  position: relative;
}
@media (max-width: 767px) {
  .resources .post .col-md-4 {
    padding-bottom: 10px;
  }
  .resources .post .col-md-8 {
    padding-bottom: 25px;
  }
  .resources .post .post {
    text-align: left;
  }
  .resources .post .post p {
    text-align: left;
  }
  .resources .post .post .addthis_bubble_style a {
    text-align: center;
  }
}
.resources article h3 {
  max-width: 85%;
}

.resources .addthis_toolbox > a,
.featured-area .addthis_toolbox > a {
  display: none;
}
.resources .addthis_toolbox a.addthis_counter,
.featured-area .addthis_toolbox a.addthis_counter {
  display: block;
  position: absolute;
  right: 20px;
  top: -5px;
}
.resources .addthis_toolbox > .addthis_counter,
.featured-area .addthis_toolbox > .addthis_counter {
  background: #439539 none repeat scroll center center !important;
  border: 1px solid #439539;
  border-radius: 250px;
  color: #fff;
  font-weight: 500;
  height: 39px;
  line-height: 30px;
  margin: 0 15px;
  padding-top: 3px;
  text-align: center;
  width: 39px !important;
}
.resources .addthis_toolbox > .addthis_counter a.addthis_button_expanded,
.featured-area .addthis_toolbox > .addthis_counter a.addthis_button_expanded {
  background: none !important;
  color: #fff;
  display: inline-block !important;
  float: none;
  font-size: 16px !important;
  line-height: 29px;
  margin: 0;
  padding: 0;
  width: auto !important;
}
.resources .addthis_toolbox > .addthis_counter .addthis_button_compact,
.featured-area .addthis_toolbox > .addthis_counter .addthis_button_compact {
  display: none;
}

.featured-area .addthis_toolbox > .addthis_counter a.addthis_button_expanded {
  margin-top: 5px;
}

.paginated-posts .continue,
.article-list .continue {
  clear: left;
  color: #439539 !important;
  font-family: "Roboto Slab", serif !important;
  font-size: 16px;
  font-weight: 700 !important;
  margin-top: 10px !important;
}

.wp-pagenavi {
  margin-bottom: 35px;
}
.wp-pagenavi span.pages {
  margin-left: 0;
  padding-left: 0;
}

.share {
  float: right;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

/*body.blog .share-bubble, body.archive .share-bubble,*/ body.search .share-bubble, body.single .article-list .share-bubble {
  background: #439539 none repeat scroll center center;
  border: 1px solid #439539;
  border-radius: 250px;
  color: #fff;
  display: block;
  font-weight: 500;
  height: 39px;
  line-height: 30px;
  margin: 0 15px;
  padding-top: 3px;
  text-align: center;
  width: 39px;
}
body.blog .featured-area .share-bubble, body.archive .featured-area .share-bubble, body.search .featured-area .share-bubble, body.single .article-list .featured-area .share-bubble {
  background: #006595 none repeat scroll center center;
  border: 1px solid #006595;
}

.featured-area .hero {
  margin-bottom: -10px;
}
.featured-area .post .text {
  background: #00aae7 none repeat scroll 0 0;
  color: #ffffff;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 20px;
  position: relative;
}
.featured-area h1.title a {
  color: #fff;
  display: block;
  font: 700 28px/32px "Roboto Slab", serif;
  margin-bottom: 10px;
}
.featured-area .info {
  font: 300 16px/24px "Roboto Slab", serif;
  margin: 10px 0;
}
.featured-area .boldme a {
  color: #fff;
}
.featured-area a.continue {
  color: #fff;
  display: block;
  font: 600 16px/24px "Roboto Slab", serif;
  margin: 20px 0 10px;
}
.featured-area .share-box {
  float: right;
  font-family: "Roboto Slab", serif;
  font-size: 12px;
  margin: 5px 15px 0 0;
  text-align: center;
}
@media (max-width: 767px) {
  .featured-area .share-box {
    text-align: center;
  }
}
.featured-area .type {
  background: #006595 none repeat scroll 0 0;
  color: #fff;
  font: 600 14px/25px "Roboto Slab", serif;
  left: 0;
  padding: 5px 20px;
  position: absolute;
  text-align: center;
  top: 0;
}
.featured-area .module {
  margin-bottom: 0;
}
.featured-area .resource-col {
  margin: 20px 2%;
}
@media (max-width: 980px) {
  .featured-area .resource-col {
    clear: both;
  }
}
@media (min-width: 980px) {
  .featured-area .resource-col {
    float: left;
    width: 29%;
  }
}
@media (min-width: 1200px) {
  .featured-area .resource-col {
    margin: 20px 6% 30px;
    width: 21%;
  }
}
.featured-area .resource-col .hero {
  margin-bottom: 10px;
}
@media screen and (min-width: 585px) and (max-width: 979px) {
  .featured-area .resource-col .hero {
    float: left;
    max-width: 30%;
  }
}
.featured-area .resource-col.post .text {
  background: #FFFFFF;
  color: #000000;
  font-size: 16px;
  padding: 0;
}
@media screen and (min-width: 585px) and (max-width: 979px) {
  .featured-area .resource-col.post .text {
    margin-left: 35%;
  }
}
.featured-area .resource-col h1.title a {
  color: #006595;
  font: 700 20px/28px "Roboto Slab", serif;
}
.featured-area .resource-col h1.title a:hover, .featured-area .resource-col h1.title a:focus {
  text-decoration: none;
}
.featured-area .resource-col .boldme a {
  color: #000000;
}
.featured-area .resource-col .info {
  font-weight: bold;
}
.featured-area .resource-col .info .topic {
  color: #333;
  font-family: "Roboto", serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  padding: 0 4px 0 0;
  text-transform: uppercase;
}
.featured-area .resource-col .info .date {
  font-family: "Roboto Slab", serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: none;
}
.featured-area .resource-col .addthis_toolbox {
  display: none;
}
.featured-area .resource-col a.continue {
  color: #439539;
  display: block;
  font: 700 16px/16px "Roboto Slab", serif;
  padding-top: 15px;
}
.featured-area .resource-col a.continue:hover, .featured-area .resource-col a.continue:focus {
  text-decoration: none;
}

.featured-area .addthis_32x32_style .addthis_counter.addthis_bubble_style a.addthis_button_expanded {
  margin-top: 3px;
  width: auto !important;
}

@media (max-width: 767px) {
  .featured-area .module.form * {
    text-align: left;
  }
  .featured-area .post .title,
  .featured-area .post .info,
  .featured-area .post p,
  .featured-area .post a {
    text-align: left;
  }
  .featured-area .post .addthis_bubble_style a {
    text-align: center;
  }
}

@media (max-width: 1025px) {
  .post-type-archive-resource section.resources .attachment-post-thumbnail {
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .post-type-archive-resource section.resources p,
  .page-template-resource-archive-template section.resources p {
    text-align: left;
  }
}

.social-module h2 {
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  -o-border-radius: 3px 3px 0 0;
  -webkit-border-radius: 3px 3px 0 0;
  background-color: #666;
  border-radius: 3px 3px 0 0;
  color: #fff;
  display: block;
  font: 600 20px/22px "Roboto Slab", serif;
  padding: 20px;
  text-align: left;
}
.social-module .social-holder {
  background: #eeeeee;
  border-bottom: 1px solid #d6d6d6;
  border-color: #d6d6d6;
  border-radius: 0 0 3px 3px;
  border-style: solid;
  border-width: 0 1px 1px;
  box-shadow: 0px 1px 0px #f6f6f6;
  display: block;
  padding: 20px 12px;
}
@media (max-width: 1200px) {
  .social-module .social-holder {
    padding: 20px 0;
  }
}
.social-module .social-holder ul {
  padding-bottom: 30px;
}
.social-module .social-holder ul li {
  display: block;
  float: left;
  list-style: outside none none;
  margin: 0 4% 20px;
}
.social-module .social-holder ul li:last-of-type {
  margin-right: 0;
}
.social-module .social-holder ul a {
  background: url(../images/connectus.png);
  display: block;
  height: 27px;
  padding: 0;
}
.social-module .social-holder .li-connect {
  width: 27px;
}
.social-module .social-holder .tw-connect {
  background-position: -27px 0 !important;
  width: 35px;
}
.social-module .social-holder .gp-connect {
  background-position: -62px 0 !important;
  width: 29px;
}
.social-module .social-holder .fb-connect {
  background-position: -91px 0 !important;
  width: 12px;
}
.social-module .social-holder .yt-connect {
  background-position: -103px 0 !important;
  width: 22px;
}
.social-module .social-holder .rss-connect {
  background-position: -125px 0 !important;
  width: 26px;
}

@media (max-width: 1025px) {
  .col-md-4.right-side {
    margin-top: 20px;
    padding-left: 10px;
  }
}

/*  Breadcrumbs
------------------------------------------------------- */
.breadcrumbs-container {
  background: #fafafa none repeat scroll 0 0;
  border-bottom: 1px solid #e0e0e0;
  color: #999;
  font: 500 12px/18px "Roboto", sans-serif;
  margin-top: -1px;
  padding: 6px 2% 0;
  position: relative;
}
.breadcrumbs-container .breadcrumbs {
  border-bottom: none;
}
@media (max-width: 992px) {
  .breadcrumbs-container {
    display: none;
  }
}
.breadcrumbs-container li {
  clear: none;
  float: left;
  margin-right: 5px;
}
.breadcrumbs-container a.link {
  color: #666;
}
.breadcrumbs-container a {
  color: #666;
  font: 500 12px/18px "Roboto", sans-serif;
  margin: 0 3px;
}
.breadcrumbs-container h2.trail-browse {
  display: none;
}
.breadcrumbs-container .trail-items li:after {
  content: "\003E";
}
.breadcrumbs-container ul.trail-items {
  margin-left: -15px;
}

.callout-icon {
  margin-bottom: 30px;
  margin-top: 30px;
}
.callout-icon > .fl-module-content {
  text-align: center;
}
.callout-icon .fl-callout {
  display: inline;
}
@media (max-width: 767px) {
  .callout-icon .fl-callout {
    display: block;
  }
  .callout-icon .fl-callout .fl-module-content {
    padding: 0;
  }
}
.callout-icon .fl-callout-photo {
  display: inline-block;
  max-width: 90px;
}
.callout-icon .fl-callout-photo img {
  max-width: inherit;
}
@media (max-width: 767px) {
  .callout-icon .fl-callout-photo {
    max-width: 20%;
  }
}
.callout-icon .fl-callout-content {
  display: inline-block;
  max-width: 370px;
  width: auto;
}
@media (max-width: 1200px) {
  .callout-icon .fl-callout-content {
    max-width: 350px;
  }
}
@media (max-width: 1025px) {
  .callout-icon .fl-callout-content {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .callout-icon {
    padding-left: 0;
    width: 100%;
  }
  .callout-icon * {
    text-align: center !important;
  }
  .callout-icon .fl-callout-content li {
    list-style-type: none !important;
  }
  .callout-icon .fl-callout-photo,
  .callout-icon .fl-callout-content {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}
.callout-icon.icon-big .fl-callout-photo {
  max-width: 300px;
}
.callout-icon.financial-solutions {
  margin-bottom: 10px;
}
@media (max-width: 560px) {
  .callout-icon.financial-solutions * {
    text-align: left;
  }
}
.callout-icon.financial-solutions .fl-callout-content {
  max-width: 350px;
}
@media (max-width: 1200px) {
  .callout-icon.financial-solutions .fl-callout-content {
    max-width: 350px;
  }
}
@media (max-width: 1025px) {
  .callout-icon.financial-solutions .fl-callout-content {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  .callout-icon.financial-solutions .fl-callout-content {
    max-width: 80%;
    padding-left: 20px;
  }
}
.callout-icon.financial-solutions .fl-callout-photo img {
  max-width: 100%;
  width: 60px !important;
}
@media (max-width: 767px) {
  .callout-icon.financial-solutions .fl-callout-photo {
    max-width: 20%;
  }
}
.callout-icon.financial-solutions h4.fl-callout-title span {
  font: 500 18px/24px "Roboto", sans-serif;
}
.callout-icon.financial-solutions h4.tagline {
  font: 500 18px/24px "Roboto", sans-serif;
  margin-bottom: 20px;
}
.callout-icon.financial-solutions.icon-big .fl-callout-photo {
  max-width: 140px;
}
.callout-icon.financial-solutions.icon-big .fl-callout-photo img {
  max-height: inherit;
  width: 120px !important;
}
.callout-icon.financial-solutions.icon-big h2 {
  padding: 25px 0 5px;
}
.callout-icon.financial-solutions.icon-big h2 span {
  color: #439538;
  font: 500 24px/30px "Roboto Slab", serif;
}
.callout-icon.financial-solutions.icon-big a {
  text-decoration: underline;
}
.callout-icon.financial-solutions.icon-big a:hover {
  text-decoration: none;
}
.callout-icon.financial-solutions .fl-callout-title a {
  text-decoration: none;
}
.callout-icon.financial-solutions .fl-module-content {
  margin-bottom: 0;
}
.callout-icon.blue .fl-callout-photo {
  border-radius: 3px;
  height: 65px;
  margin-right: 20px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 32px;
  width: 65px;
  background: #006595;
}
@media (max-width: 767px) {
  .callout-icon.blue .fl-callout-photo {
    margin: 0 auto 20px !important;
    width: 65px !important;
  }
}
.page-recruiting-options .callout-icon.icon-big.blue {
  border-bottom: 1px solid #efefef;
  padding-bottom: 20px;
  position: relative;
}
.page-recruiting-options .callout-icon.icon-big.blue:last-child {
  border-bottom: 0 solid #efefef;
}
.page-recruiting-options .callout-icon.icon-big.blue .fl-callout-photo {
  left: 30px;
  padding-left: 0;
  padding-right: 0;
  padding-top: 10px;
  position: absolute;
  top: 20px;
}
@media (max-width: 767px) {
  .page-recruiting-options .callout-icon.icon-big.blue .fl-callout-photo {
    left: 0;
    position: relative;
    top: 0;
  }
}
.page-recruiting-options .callout-icon.icon-big.blue .fl-callout-content {
  float: left;
  max-width: 100%;
  padding-left: 150px;
  position: relative;
}
.page-recruiting-options .callout-icon.icon-big.blue .fl-callout-content .fl-button-wrap .fa-caret-right {
  padding-top: 0;
}
.page-recruiting-options .callout-icon.icon-big.blue h3 {
  padding-bottom: 0;
}
.page-recruiting-options .callout-icon.icon-big.blue h3 a {
  color: #006595;
  font: 400 20px/20px "Roboto Slab", serif;
}
.page-recruiting-options .callout-icon.icon-big.blue p a {
  color: #18AAE2;
  font-weight: 400;
}

.video-area {
  background-color: #EFEFEF;
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
}
.video-area > div {
  border-bottom: none !important;
  border-top: none !important;
  background: none;
}
.video-area h1.fl-heading {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
  margin-bottom: 20px;
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 1200px) {
  .video-area .fl-col-small {
    width: 100% !important;
  }
  .video-area .fl-col-small:first-child .fl-col-content {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .video-area .fl-col-small,
  .video-area .fl-heading {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .video-area .fl-col-small {
    max-width: 100%;
    width: 100% !important;
  }
}

.FAQ h3.fl-heading span {
  font: 400 28px/36px "Roboto Slab", serif;
}
.FAQ .fl-accordion-item {
  border: none;
}
@media (max-width: 767px) {
  .FAQ .fl-accordion-item {
    text-align: center;
  }
  .FAQ .fl-accordion-item .fl-accordion-button,
  .FAQ .fl-accordion-item .fl-accordion-button-label {
    display: inline;
  }
}
.FAQ .fl-accordion-button-label {
  color: #006595;
  cursor: pointer;
  font: 500 16px/24px "Roboto", serif;
  margin-bottom: 10px;
}
.FAQ .fl-accordion-button {
  padding: 0;
}
.FAQ .fl-accordion-content {
  padding-left: 0;
  padding-right: 0;
}
.FAQ .fl-accordion-button-icon {
  display: none;
}

.recruitingServices {
  color: #fff !important;
}
@media (min-width: 768px) {
  .recruitingServices .fl-row-content {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .recruitingServices .fl-row-content {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .recruitingServices .fl-row-content {
    width: 1060px;
  }
}
.recruitingServices p.subtitle {
  font: 300 20px/28px "Roboto", sans-serif;
  padding-bottom: 25px !important;
}
@media (max-width: 767px) {
  .recruitingServices.fl-row-full-width {
    padding: 0 !important;
  }
}
.recruitingServices img {
  height: 125px !important;
}
.recruitingServices h1.fl-callout-title {
  line-height: 36px;
  margin-bottom: 20px;
}
.recruitingServices h1.fl-callout-title span {
  font: 400 28px/36px "Roboto Slab", serif;
}
.recruitingServices h1.fl-callout-title span a:link, .recruitingServices h1.fl-callout-title span a:active, .recruitingServices h1.fl-callout-title span a:hover, .recruitingServices h1.fl-callout-title span a:focus {
  color: #FFFFFF;
  cursor: default;
}

@media (max-width: 767px) {
  .header-section {
    margin-bottom: 20px;
  }
}
.header-section h2.fl-heading span {
  font: 400 28px/36px "Roboto Slab", serif;
}
.header-section p {
  color: #ffffff;
  font: 300 20px/28px "Roboto", sans-serif;
}
.header-section .fl-col-small:last-child ul {
  margin: 0 auto !important;
  text-align: center;
}
.header-section .fl-col-small:last-child ul li {
  list-style-type: none !important;
  padding: 10px;
  text-transform: uppercase;
}
.header-section .fl-col-small:last-child ul li a {
  font: 400 14px/24px "Roboto", sans-serif;
}
.header-section .fl-col-small:last-child ul li a:hover {
  color: #00abe8 !important;
  text-decoration: underline;
}
.header-section .fl-col-small:last-child ul li.current-menu-item a {
  color: #00abe8 !important;
  text-decoration: underline;
}
.header-section .fa-chevron-circle-down {
  bottom: -60px;
  margin-left: -20px;
  padding-left: 0;
  position: absolute;
}
@media (max-width: 767px) {
  .header-section .fa-chevron-circle-down {
    bottom: -50px;
  }
}
.header-section .fl-col-group:nth-child(2) {
  position: relative;
}

.financial-solutions-box {
  float: right;
  -moz-border-radius: 3px;
  /* FF1+ */
  -webkit-border-radius: 3px;
  /* Saf3+, Chrome */
  border-radius: 3px;
  /* Standard. IE9 */
  -webkit-background-clip: padding-box;
}
@media (max-width: 767px) {
  .financial-solutions-box {
    float: none;
  }
}
.financial-solutions-box h2.fl-heading span,
.financial-solutions-box h2.fl-heading b {
  font-weight: 600;
}
.financial-solutions-box h3.fl-heading {
  margin-top: -20px !important;
}
.financial-solutions-box h3.fl-heading span {
  font: 300 16px/24px "Roboto", sans-serif;
}
.financial-solutions-box .phone {
  background: #fff none repeat scroll 0 0;
  border-radius: 3px;
  border: 1px solid #ddd;
  color: #006595;
  font: 500 26px/32px "Roboto", sans-serif;
  margin: 0 auto 15px;
  max-width: 268px;
  padding: 14px;
  text-align: center;
  width: 100%;
}
@media (max-width: 767px) {
  .financial-solutions-box .phone {
    max-width: 245px;
  }
}
.financial-solutions-box a.fl-button {
  width: 100%;
}
@media (max-width: 767px) {
  .financial-solutions-box {
    border-left: 1px solid #DDDDDD !important;
    border-right: 1px solid #DDDDDD !important;
  }
  .financial-solutions-box .fl-col-content {
    padding: 20px !important;
  }
  .financial-solutions-box p {
    text-align: center;
  }
}
.financial-solutions-box .fl-module-rich-text:last-child .fl-module-content {
  margin: 20px 0;
}
.financial-solutions-box .fl-module-html .fl-module-content {
  margin: 0;
}
.financial-solutions-box #nsp_op_support_chat,
.financial-solutions-box #nsp_op_sales_chat,
.financial-solutions-box #nsp_pm_sales_chat,
.financial-solutions-box #nsp_pm_support_chat {
  padding-bottom: 60px;
}
.financial-solutions-box #nsp_op_support_chat .LPMcontainer,
.financial-solutions-box #nsp_op_sales_chat .LPMcontainer,
.financial-solutions-box #nsp_pm_sales_chat .LPMcontainer,
.financial-solutions-box #nsp_pm_support_chat .LPMcontainer {
  height: 100% !important;
  margin-bottom: 30px;
  width: 100% !important;
}
.financial-solutions-box #nsp_op_support_chat img,
.financial-solutions-box #nsp_op_sales_chat img,
.financial-solutions-box #nsp_pm_sales_chat img,
.financial-solutions-box #nsp_pm_support_chat img {
  width: 100%;
}
@media (max-width: 767px) {
  .financial-solutions-box #nsp_op_support_chat,
  .financial-solutions-box #nsp_op_sales_chat,
  .financial-solutions-box #nsp_pm_sales_chat,
  .financial-solutions-box #nsp_pm_support_chat {
    margin: 0 auto;
    max-width: 245px;
  }
}
.sys-req .financial-solutions-box #nsp_op_sales_chat {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 75px;
}
.sys-req .financial-solutions-box #nsp_pm_sales_chat {
  padding-bottom: 75px;
}

@media (max-width: 767px) {
  .video-tour * {
    text-align: center !important;
  }
}
@media (max-width: 1200px) {
  .video-tour > .fl-module-content,
  .video-tour .fl-module-video-block > .fl-module-content {
    margin-right: 35px !important;
  }
  .video-tour > .fl-module-content h3,
  .video-tour .fl-module-video-block > .fl-module-content h3 {
    font: 700 24px/28px "Roboto Slab", sans-serif !important;
  }
}
@media (max-width: 992px) {
  .video-tour > .fl-module-content,
  .video-tour .fl-module-video-block > .fl-module-content {
    margin-right: 25px !important;
  }
  .video-tour > .fl-module-content .cf-sm-6,
  .video-tour .fl-module-video-block > .fl-module-content .cf-sm-6 {
    width: 100% !important;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .video-tour > .fl-module-content,
  .video-tour .fl-module-video-block > .fl-module-content {
    margin: 0 !important;
  }
}
.video-tour .row {
  padding-left: 5px;
}
.video-tour .row h2.title {
  padding-left: 10px;
}
@media (max-width: 992px) {
  .video-tour .row {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .video-tour .row {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .video-tour .row .text {
    width: 100% !important;
  }
}
.video-tour .poster {
  padding: 20px 40px;
}
@media (max-width: 1200px) {
  .video-tour .poster {
    background: none !important;
    margin-bottom: 0 !important;
    min-height: 10px !important;
    padding: 20px 0 !important;
  }
  .video-tour .poster * {
    display: inline-block !important;
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .video-tour .poster {
    padding-bottom: 0 !important;
  }
  .video-tour .poster h3,
  .video-tour .poster p {
    text-align: center;
    width: 100% !important;
  }
}
@media (max-width: 992px) {
  .video-tour .poster .text {
    width: 100% !important;
  }
}
.video-tour .cf-bb-video-container.video {
  padding: 45px;
}
@media (max-width: 992px) {
  .video-tour .cf-bb-video-container.video {
    padding: 20px;
  }
}
@media (max-width: 992px) {
  .video-tour .text {
    width: 100% !important;
  }
}

.community-involvement.sub-menu .widget_nav_menu ul,
.tabs .widget_nav_menu ul {
  margin: 0 !important;
}
.community-involvement.sub-menu .widget_nav_menu ul li a,
.tabs .widget_nav_menu ul li a {
  color: #333 !important;
  display: inline !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 14px;
  text-transform: uppercase;
}
.community-involvement.sub-menu ul#menu-time-and-attendance-header-menu li,
.tabs ul#menu-time-and-attendance-header-menu li {
  color: #333333;
}
.community-involvement.sub-menu .fl-row-content-wrap,
.tabs .fl-row-content-wrap {
  margin-left: auto;
  margin-right: auto;
}
.community-involvement.sub-menu li.mini-nav-trigger,
.tabs li.mini-nav-trigger {
  cursor: pointer;
  display: none;
  text-transform: uppercase;
}
.community-involvement.sub-menu .mini-list,
.tabs .mini-list {
  margin-bottom: -2px;
}
@media (max-width: 768px) {
  .community-involvement.sub-menu .mini-list,
  .tabs .mini-list {
    display: none;
  }
  .community-involvement.sub-menu .mini-list li,
  .community-involvement.sub-menu .mini-list li a,
  .tabs .mini-list li,
  .tabs .mini-list li a {
    padding: 10px 4%;
    text-align: left !important;
    width: 100%;
  }
  .community-involvement.sub-menu .mini-list li.current-menu-item,
  .tabs .mini-list li.current-menu-item {
    background: #18aae2 none repeat scroll 0 0;
    border-bottom: 0 none;
  }
}
.page-id-2148 .community-involvement.sub-menu .mini-list, .page-id-2148
.tabs .mini-list {
  margin-bottom: -3px;
}
.community-involvement.sub-menu .trigger,
.tabs .trigger {
  display: none !important;
  text-align: left !important;
}
@media (max-width: 768px) {
  .community-involvement.sub-menu .trigger,
  .tabs .trigger {
    display: block !important;
  }
}
@media (max-width: 768px) {
  .community-involvement.sub-menu .fl-row-content,
  .tabs .fl-row-content {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .tabs,
  .community-involvement.sub-menu {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .tabs .fl-row-content-wrap,
  .community-involvement.sub-menu .fl-row-content-wrap {
    padding-bottom: 0;
    padding-top: 0;
  }
}

.green-link a.fl-callout-cta-link {
  color: #439538;
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 25px;
  text-decoration: none !important;
}
.green-link a.fl-callout-cta-link:hover {
  text-decoration: underline;
}

article a.to-services {
  color: #439538;
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 25px;
  text-decoration: none !important;
}
article a.to-services:hover {
  text-decoration: underline;
}

.recruitingServices h1,
.recruitingServices p {
  color: white !important;
}
.recruitingServices .fl-row-content-wrap {
  max-width: 100% !important;
  width: 100% !important;
}

.PDF-area,
.downloadeBook {
  background-color: #EFEFEF;
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
}
.PDF-area > div,
.downloadeBook > div {
  border-bottom: none !important;
  border-top: none !important;
  background: none;
}
.PDF-area img,
.downloadeBook img {
  max-width: 170px !important;
}
.PDF-area .fl-callout-photo,
.downloadeBook .fl-callout-photo {
  width: 30%;
}
.PDF-area .fl-callout-photo .fl-photo,
.downloadeBook .fl-callout-photo .fl-photo {
  text-align: right;
}
.PDF-area .fl-callout-content,
.downloadeBook .fl-callout-content {
  width: 70%;
}
.PDF-area h5.fl-callout-title,
.downloadeBook h5.fl-callout-title {
  color: #333;
  font: 500 28px/36px "Roboto Slab", serif;
}
@media (max-width: 768px) {
  .PDF-area .fl-callout-content,
  .downloadeBook .fl-callout-content {
    width: 100%;
  }
  .PDF-area *,
  .downloadeBook * {
    text-align: center !important;
  }
}
.PDF-area a.more,
.downloadeBook a.more {
  font: 400 16px/24px "Roboto Slab", serif;
  text-decoration: underline;
}
.PDF-area a.more:hover,
.downloadeBook a.more:hover {
  text-decoration: none;
}
.PDF-area.fl-module-photo,
.downloadeBook.fl-module-photo {
  border: none;
}
@media (max-width: 768px) {
  .PDF-area.fl-module-photo .fl-photo-content,
  .downloadeBook.fl-module-photo .fl-photo-content {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .PDF-area .fl-callout-photo,
  .downloadeBook .fl-callout-photo {
    width: 100% !important;
  }
  .PDF-area *,
  .downloadeBook * {
    text-align: center !important;
  }
}
.PDF-area h3,
.downloadeBook h3 {
  font: 500 28px/36px "Roboto Slab", serif;
}
.PDF-area h3 a,
.PDF-area h3 span,
.PDF-area h3 a:hover,
.downloadeBook h3 a,
.downloadeBook h3 span,
.downloadeBook h3 a:hover {
  color: #333;
}
.PDF-area h3 a:hover,
.downloadeBook h3 a:hover {
  text-decoration: underline;
}
.PDF-area .fl-col:nth-child(2),
.downloadeBook .fl-col:nth-child(2) {
  max-width: 670px;
}
.PDF-area .fl-col:nth-child(2) .fl-rich-text p,
.downloadeBook .fl-col:nth-child(2) .fl-rich-text p {
  margin-bottom: 15px;
  margin-top: 15px;
}
.PDF-area .fl-button-wrap .fl-button-text i,
.downloadeBook .fl-button-wrap .fl-button-text i {
  padding-top: 2px;
}

.header-section {
  color: white !important;
}
.header-section a,
.header-section p {
  color: white !important;
}
.header-section ul,
.header-section ol {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.header-section ul li,
.header-section ol li {
  list-style: outside none none;
}
.header-section .fl-html {
  text-align: center;
}
.header-section .fl-html .fa-chevron-circle-down {
  color: #81C342;
}
.header-section .subtitle a {
  color: #18AAE2 !important;
  font-weight: 400;
}
.header-section.color-white .subtitle {
  color: #fff;
  font: 300 20px/28px "Roboto", sans-serif;
}
.header-section.color-white .subtitle a {
  font-weight: 400;
}
.header-section.green {
  background: #359946;
}
.header-section.green .fl-html .fa-chevron-circle-down {
  color: #006595;
}
.header-section.green .fl-col-small:last-child ul li.current-menu-item a {
  color: #93de4c !important;
  text-decoration: underline;
}
.header-section.green .fl-col-small:last-child ul li a:hover {
  color: #93de4c !important;
  text-decoration: underline;
}
.header-section.green .green a {
  color: #93de4c !important;
}
.header-section.green .subtitle a {
  color: #93de4c !important;
}

.menu-community-involvement,
.tabs {
  background-color: #FAFAFA;
  border-bottom: 1px solid #E0E0E0;
  margin: 0;
  text-align: center;
}
.menu-community-involvement div,
.tabs div {
  border-bottom: none !important;
}
.menu-community-involvement .widget_nav_menu ul li,
.tabs .widget_nav_menu ul li {
  display: inline-block;
  font-weight: 400;
  height: 35px;
  line-height: 17px;
  list-style: none !important;
  margin: 0;
  padding: 10px 25px;
  text-align: center;
}
@media (max-width: 768px) {
  .menu-community-involvement .widget_nav_menu ul li,
  .tabs .widget_nav_menu ul li {
    height: 40px;
  }
}
.menu-community-involvement .widget_nav_menu ul li:hover, .menu-community-involvement .widget_nav_menu ul li.current-menu-item,
.tabs .widget_nav_menu ul li:hover,
.tabs .widget_nav_menu ul li.current-menu-item {
  border-bottom: 3px solid #006595 !important;
}
.menu-community-involvement .widget_nav_menu ul li a,
.tabs .widget_nav_menu ul li a {
  color: #333 !important;
  display: inline !important;
  font-weight: 400 !important;
  font: 300 14px/14px "Roboto", sans-serif;
  text-transform: uppercase;
}
.menu-community-involvement .widget_nav_menu ul li a:hover,
.tabs .widget_nav_menu ul li a:hover {
  text-decoration: none;
}

.system {
  border-bottom: 1px solid #ddd;
  font: 300 14px/24px "Roboto", sans-serif;
}
.system ul {
  margin-left: 0 !important;
}
.system ul li {
  font: 300 14px/24px "Roboto", sans-serif !important;
}

@media (max-width: 768px) {
  .chart .col-md-2,
  .system .col-md-4 {
    float: left;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .chart,
  .system {
    text-align: center;
  }
}

.price {
  margin: 0 30px 0 35px;
  width: 100px;
}
.price p {
  font: 600 32px/32px "Roboto", sans-serif;
  margin-top: 7px;
}
.price .small {
  font: 400 16px/16px "Roboto", sans-serif;
  text-align: center;
}

@media (max-width: 768px) {
  .org-plus .price {
    margin: 20px auto;
  }
  .org-plus p,
  .org-plus h2 {
    text-align: center;
  }
  .org-plus li {
    list-style: none !important;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .sys-req h3, .sys-req p {
    text-align: center !important;
  }
  .sys-req li {
    list-style: none !important;
    text-align: center;
  }
}

.support-section .row.text-center {
  padding-bottom: 25px;
}

.text-center {
  text-align: center;
}

ul.subtitle.support {
  color: white;
  margin-left: 15px !important;
}
ul.subtitle.support li {
  line-height: 25px;
  list-style-type: disc !important;
  margin-bottom: 0;
}
ul.subtitle.support li a {
  color: #18aae2 !important;
  font-weight: 400;
  text-transform: none;
}

.descriptionsNow .fl-callout {
  width: 100%;
}
.descriptionsNow .fl-callout-content {
  width: 70%;
}
.descriptionsNow .fl-callout-photo {
  width: 30%;
}
@media (max-width: 768px) {
  .descriptionsNow {
    text-align: center;
  }
  .descriptionsNow .fl-callout-content {
    width: 100%;
  }
  .descriptionsNow .fl-callout-photo {
    width: 100%;
  }
  .descriptionsNow ul {
    margin: 0 0 30 0;
  }
  .descriptionsNow ul li {
    list-style: none;
    text-align: center;
  }
  .descriptionsNow .price {
    margin: 0 auto 20px;
  }
  .descriptionsNow .col-md-4 {
    margin-bottom: 20px;
    text-align: center;
  }
}

.small-icons img.fl-photo-img {
  height: 115px !important;
  width: 115px !important;
}

.top-gray-bar {
  background: #393939;
}
.top-gray-bar h1 {
  padding: 25px 0;
}
.top-gray-bar h1 span {
  font: 300 36px/50px 'Roboto', sans-serif !important;
}

.workforce-solutions h3 {
  background: #006495;
}
.workforce-solutions h3 span {
  display: inline-block;
  font: 600 22px/30px 'Roboto Slab', sans-serif;
  padding: 10px;
}
.workforce-solutions .fl-button-wrap a {
  width: 100% !important;
}
.workforce-solutions .fl-module-photo > .fl-module-content {
  background: url("../images/blue-guide.jpg") repeat scroll 0 0;
  padding-bottom: 20px;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .workforce-solutions {
    display: none;
    max-width: 280px !important;
  }
}

.center-blue-arrow .arrow {
  max-width: 840px;
  background: url("../images/arrow.png") top center no-repeat;
  color: #fff;
  line-height: 30px;
  text-align: center;
  font-weight: 500;
  margin: 0 auto 80px;
  font-size: 16px;
  width: 100%;
}

.paymentCallout {
  background: #006595;
  color: #FFF;
  padding: 30px;
}
.paymentCallout .fl-callout-title span {
  color: #FFF;
}

@media (max-width: 768px) {
  .plans-holder {
    border-bottom: 20px solid #ffffff;
  }
}
.plans-holder .plans-heading {
  background: #006595;
  border-radius: 3px 3px 0 0;
  margin-bottom: 0;
  padding: 20px;
}
.plans-holder .plans-heading.orange {
  border-bottom: 5px solid #f26323;
}
.plans-holder .plans-heading.yellow {
  border-bottom: 5px solid #fcb415;
}
.plans-holder .plans-heading.green {
  border-bottom: 5px solid #81c341;
}
.plans-holder .plans-heading.blue {
  border-bottom: 5px solid #18aae2;
}
.plans-holder .plans-heading .fl-heading span {
  color: #fff;
  font: 500 28px/28px "Roboto Slab", serif;
}
.plans-holder .plans-heading h2 {
  color: #fff;
  font: 500 28px/28px "Roboto Slab", serif;
}
.plans-holder a {
  display: block;
  margin-top: 20px;
  font-size: 16px;
}
.plans-holder a.orange {
  color: #f26323;
}
.plans-holder a.yellow {
  color: #fcb415;
}
.plans-holder a.green {
  color: #81c341;
  background: none;
}
.plans-holder a.blue {
  color: #18aae2;
  background: none;
}
.plans-holder .text {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
}
.plans-holder ul {
  margin: 0 0 20px !important;
}
.plans-holder ul li {
  text-align: left;
  font-size: 18px !important;
  margin: 0 0 6px 17px !important;
  font-weight: 400 !important;
  list-style: disc;
}
@media (max-width: 768px) {
  .plans-holder ul li {
    margin: 0 0 6px !important;
  }
}
.plans-holder .fl-module-rich-text {
  min-height: 420px;
}

.reform .fl-callout-title a,
.reform .fl-callout-title a:hover {
  color: #333;
  font: 500 18px/24px "Roboto", sans-serif;
  text-decoration: none;
}

.healthReform h5 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin: 0 0 5px 0;
  padding: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .healthReform h5 {
    text-align: center;
  }
}
.healthReform p {
  color: #333333;
  line-height: 18px;
  font-size: 14px;
}
.healthReform .fl-row-fixed-width {
  max-width: 900px;
}
.healthReform h2.fl-callout-title {
  border-radius: 3px 3px 0 0;
  color: #fff;
  background: #419639;
  padding: 0 8px;
  width: 140px;
  height: 40px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.healthReform h2.fl-callout-title span {
  font: 400 15px/30px "Roboto Slab", serif;
}
.healthReform .white .fl-callout-text-wrap {
  background: #fff;
  border: 1px solid #b8c6d4;
  padding: 20px 25px;
  box-shadow: inset 0px 0px 40px rgba(0, 0, 0, 0.1);
  min-height: 180px;
}
.healthReform .green .fl-module-content {
  background: #419639;
  border: 1px solid #dceeca;
  color: #fff;
  margin-top: 30px;
  min-height: 180px;
  padding: 20px;
}
.healthReform .green .fl-module-content p,
.healthReform .green .fl-module-content h3 span {
  color: #ffffff;
}
.healthReform .fl-module-content {
  margin: 0;
}
.healthReform .fl-module-photo {
  margin-top: 110px;
}
.healthReform .fl-col:nth-child(3) {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .healthReform .fl-col:nth-child(2) {
    display: none;
  }
}

.chart {
  border-bottom: 1px solid #efefef;
}
.chart .row {
  border-bottom: 1px solid #EAEAEA !important;
}
@media (min-width: 1025px) {
  .chart .row {
    position: relative;
  }
  .chart .row .gray {
    height: 100%;
    position: absolute;
    right: 16.66666667%;
  }
  .chart .row .gray:last-child {
    right: 0;
  }
  .chart .row:last-child .gray {
    height: 100%;
    position: relative;
    right: 0;
  }
}
.chart .row.no-border {
  border-bottom: 0 !important;
}
.chart .blue {
  background: #006595;
}
.chart .green {
  background: #419639;
}
.chart .blue,
.chart .green {
  border-right: 1px solid #fff !important;
  height: auto;
  max-height: none;
  padding: 12px;
  border-bottom: 2px solid #fff !important;
  color: #fff;
  text-align: center !important;
  font-size: 14px;
}
.chart .bluedot {
  color: #006595;
  line-height: 36px;
}
.chart .greendot {
  color: #419639;
  line-height: 36px;
}
.chart .graydot {
  color: #18AAE2;
  line-height: 36px;
}
.chart .gray {
  text-align: center;
  background: #efefef;
  border-right: 1px solid #fff !important;
  border-left: 1px solid #fff !important;
  color: #666;
  min-height: 36px;
}
@media (max-width: 768px) {
  .chart .col-md-3 {
    float: left;
    width: 50%;
  }
  .chart .col-md-6 {
    margin: 10px 0;
    text-align: center;
  }
  .chart .three .col-md-2 {
    float: left;
    width: 33.33%;
  }
}

.buy-now-pm-block .fl-callout-photo {
  width: 25%;
  margin-left: 5%;
}
.buy-now-pm-block .fl-callout-content {
  width: 70%;
}
.buy-now-pm-block .fl-callout-content a.details {
  color: #006595;
  display: block;
  font-weight: 500;
  margin: 15px 0;
}
.buy-now-pm-block .button {
  font-size: 14px !important;
  min-width: 110px !important;
  padding: 2px 10px !important;
}
@media (max-width: 992px) {
  .buy-now-pm-block .button {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .buy-now-pm-block {
    border-bottom: 20px solid #EFEFEF;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .buy-now-pm-block * {
    text-align: center !important;
  }
  .buy-now-pm-block .fl-callout-photo,
  .buy-now-pm-block .fl-callout-content {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  .buy-now-pm-block .button {
    margin-bottom: 20px;
  }
}

.plan {
  margin-left: 20px !important;
}
.plan .design {
  margin-bottom: 0;
  margin-left: 20px;
}
.plan .design li {
  list-style-type: circle;
}

.box-plan {
  background: #efefef;
  border-radius: 3px;
  margin: 20px 0 40px;
}
.box-plan .title {
  background: #006595;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font: 500 28px/28px "Roboto Slab", serif;
  margin-bottom: 0;
  padding: 20px;
}
.box-plan .title.orange {
  border-bottom: 5px solid #f26323;
}
.box-plan .title.yellow {
  border-bottom: 5px solid #fcb415;
}
.box-plan .title.green {
  border-bottom: 5px solid #81c341;
}
.box-plan .title.blue {
  border-bottom: 5px solid #18aae2;
}
.box-plan .section {
  border-radius: 0 0 3px 3px;
  border-top: 0;
  border: 1px solid #cccccc;
  min-height: 420px;
  padding: 30px;
}
.box-plan .short .section {
  min-height: 350px;
}
.box-plan ul {
  margin: 0 0 20px;
}
.box-plan li {
  font-size: 18px;
  font-weight: 400 !important;
  list-style: disc;
  margin: 0 0 6px 17px !important;
  text-align: left;
}
.box-plan .text {
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
}
.box-plan a.green {
  color: #81c341;
  background: none;
}
.box-plan a.blue {
  background: none;
  color: #18aae2;
}

@media (max-width: 768px) {
  .payrollSoftware .bullet {
    display: none;
  }
  .payrollSoftware .fl-module {
    border-bottom: 1px solid #efefef;
    margin-bottom: 20px;
  }
  .payrollSoftware .fl-module:first-child {
    border-bottom: none;
  }
}

.recruitingServices h1,
.recruitingServices p {
  color: white !important;
}
.recruitingServices .fl-row-content-wrap {
  max-width: 100% !important;
  width: 100% !important;
}

.blue-area,
.header-section {
  background: #006695;
}

.blue-area h2.fl-heading {
  font: 400 34px/44px "Roboto Slab", serif;
  max-width: 620px;
}
.blue-area h2.fl-heading .fl-heading-text {
  font: 400 34px/44px "Roboto Slab", serif;
}

.blue-area h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.5em;
}

@media (max-width: 768px) {
  .blue-area h2.fl-heading {
    max-width: 100%;
  }
}
.blue-area a.fl-button {
  color: #333333 !important;
}

.gray-area {
  background: #EFEFEF;
}

.share-bar {
  background: #E9E9E9;
  margin: -45px 0 60px;
  padding: 10px;
}
.share-bar ul {
  float: right;
  margin: 0 0 0 10px !important;
}
.share-bar ul li {
  float: right;
  list-style-type: none !important;
  margin-bottom: 0 !important;
}
.share-bar ul li a {
  background: url(../images/blog_social.png) !important;
  display: block;
  float: left;
  height: 24px;
  margin-left: 10px;
  width: 24px;
}
.share-bar ul li a.twitter {
  background-position: -24px 0 !important;
}
.share-bar ul li a.linkedin {
  background-position: -72px 0 !important;
}
.share-bar ul li a.mail {
  background-position: -96px 0 !important;
}
.share-bar ul li a:hover {
  opacity: 0.7;
}
.share-bar .share {
  color: #000000;
  float: right;
  font-size: 12px;
  font-weight: 500;
  padding-top: 4px;
  text-transform: uppercase;
}

.wistia-sharebar {
  margin: 0 auto;
  max-width: 640px;
}

.modal-body .share-bar {
  margin: -40px 0 0;
}
.modal-body .modal-close {
  background: #000000;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 1.2rem;
  padding: 3px 5px 5px;
  position: absolute;
  right: -10px;
  top: -10px;
}
.spin-modal .modal-body {
  text-align: center;
}
.spin-modal .modal-body iframe {
  margin: 0 auto;
}

.redirect-overlay {
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.redirect-overlay h3 {
  color: #fff;
}

p + .share-bar {
  margin: -18px 0 60px;
}

.poster + .share-bar {
  margin: -5px 0 60px;
}

.tinynav {
  display: none;
  width: 100%;
}
@media (max-width: 768px) {
  .tinynav {
    display: block;
  }
}

.page-template-general-layout .video-tour-gray-area {
  -moz-border-radius: 3px;
  /* FF1+ */
  -webkit-border-radius: 3px;
  /* Saf3+, Chrome */
  border-radius: 3px;
  /* Standard. IE9 */
  -webkit-background-clip: padding-box;
}
@media (max-width: 768px) {
  .page-template-general-layout .video-tour-gray-area {
    border: 1px solid #d1d0c9;
    max-width: 280px !important;
  }
  .page-template-general-layout .video-tour-gray-area .fl-col-content {
    border: none;
    padding: 18px 18px 30px !important;
  }
}

.orgSection .fl-callout-content {
  border: 1px solid #ddd;
  border-radius: 3px;
  margin: 0 auto;
  width: 320px;
}
.orgSection .fl-callout-content .fl-callout-title {
  background: #006595 none repeat scroll 0 0;
  border-radius: 3px 3px 0 0;
  color: #fff;
  line-height: 75px;
  margin: 0;
}
.orgSection .fl-callout-content .fl-callout-title span {
  font: 300 20px/75px "Roboto", sans-serif;
}
.orgSection .fl-callout-content ul {
  margin: 30px 0;
}
.orgSection .fl-callout-content ul li {
  list-style: outside none none;
  margin-bottom: 8px;
}
.orgSection .fl-callout-content a {
  margin: 20px auto;
}
@media (min-width: 768px) {
  .orgSection .fl-callout-content {
    float: right;
    margin: auto;
  }
}
@media (min-width: 768px) {
  .orgSection .fl-col-small:nth-child(2) .fl-callout-content {
    float: left;
  }
}

html:not(.fl-builder-edit) #comparison {
  display: none;
}

#comparison {
  border-bottom: 1px solid #efefef;
  border-top: 1px solid #efefef;
  font: 300 16px/20px 'Roboto Slab', serif;
  line-height: 36px;
  position: relative;
}
#comparison h2.fl-heading {
  color: #333;
  line-height: 36px;
  margin-bottom: 20px;
}
#comparison h2.fl-heading span {
  font: 400 28px/36px "Roboto Slab", serif;
}
#comparison .fa-check-square-o {
  font-size: 20px;
}

.tags {
  cursor: pointer;
  display: block;
  float: left;
  position: relative;
}

.tag-title {
  background: 0;
  color: #42973a;
  font: 400 15px/16px "Roboto Slab", serif;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}

div[class*="tooltip"] {
  cursor: default;
}

.tooltip1 {
  background: url(../images/client-liason-blank.png);
  height: 260px;
  width: 196px;
  z-index: 10;
}
.tooltip1 .tag-title {
  -ms-transform: rotate(12deg);
  -webkit-transform: rotate(12deg) translate3d(0, 0, 0);
  left: -21px;
  position: relative;
  top: 207px;
  transform: rotate(12deg) translate3d(0, 0, 0);
}

.tooltip2 {
  background: url(../images/hr-specialist-blank.png);
  height: 246px;
  margin-left: -40px;
  top: 50px;
  width: 168px;
  z-index: 8;
}
.tooltip2 .tag-title {
  -ms-transform: rotate(-0.5deg);
  -webkit-transform: rotate(-0.5deg) translate3d(0, 0, 0);
  left: 2px;
  position: relative;
  top: 204px;
  transform: rotate(-0.5deg) translate3d(0, 0, 0);
}

.tooltip3 {
  background: url(../images/payroll-specialist-blank.png);
  height: 243px;
  margin-left: -34px;
  top: -10px;
  width: 176px;
  z-index: 10;
}
.tooltip3 .tag-title {
  -ms-transform: rotate(-5.5deg);
  -webkit-transform: rotate(-5.5deg) translate3d(0, 0, 0);
  left: 8px;
  position: relative;
  top: 198px;
  transform: rotate(-5.5deg) translate3d(0, 0, 0);
}

.tooltip4 {
  background: url(../images/hr-manager-blank.png);
  height: 259px;
  margin-left: -28px;
  top: 55px;
  width: 195px;
  z-index: 5;
}
.tooltip4 .tag-title {
  -ms-transform: rotate(-8.5deg);
  -webkit-transform: rotate(-8.5deg) translate3d(0, 0, 0);
  left: 62px;
  position: relative;
  top: 198px;
  transform: rotate(-8.5deg) translate3d(0, 0, 0);
  width: 50%;
}

.tooltip5 {
  background: url(../images/performance-specialist-blank.png);
  height: 246px;
  margin-left: -64px;
  top: 17px;
  width: 176px;
  z-index: 8;
}
.tooltip5 .tag-title {
  -ms-transform: rotate(5deg);
  -webkit-transform: rotate(5deg) translate3d(0, 0, 0);
  left: 34px;
  position: relative;
  top: 193px;
  transform: rotate(5deg) translate3d(0, 0, 0);
  width: 50% !important;
}

.tooltip6 {
  background: url(../images/safety-consultant-blank.png);
  height: 263px;
  margin-left: -44px;
  top: 20px;
  width: 197px;
  z-index: 10;
}
.tooltip6 .tag-title {
  -ms-transform: rotate(-8.5deg);
  -webkit-transform: rotate(-8.5deg) translate3d(0, 0, 0);
  left: 12px;
  position: relative;
  top: 215px;
  transform: rotate(-8.5deg) translate3d(0, 0, 0);
}

.recruit-progress-blocks ul {
  min-height: 150px;
}
.recruit-progress-blocks ul li {
  font: 300 14px/16px "Roboto", sans-serif !important;
  line-height: 16px;
  margin-bottom: 5px;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .site-main article .recruit-progress-blocks ul li {
    margin-left: 15px;
  }
}

.slider-blue-info {
  margin-bottom: 100px;
}
.slider-blue-info .fl-slide {
  position: relative;
}
.slider-blue-info .fl-slide-photo-wrap {
  position: relative;
  width: 100%;
}
.slider-blue-info .fl-slide-photo-wrap .fl-slide-photo {
  margin: 0 auto;
}
.slider-blue-info .fl-slide-content-wrap {
  position: relative;
  width: 100%;
}
.slider-blue-info .fl-slide-content-wrap .fl-slide-content {
  background: #006595;
  margin: 10px auto 0;
  max-width: 600px;
  padding: 0;
}
.slider-blue-info .fl-slide-text {
  padding: 30px;
}
.slider-blue-info .bx-viewport {
  overflow: visible !important;
}
.slider-blue-info .bx-controls {
  margin: -150px auto 0;
  max-width: 600px;
  position: relative;
}
.slider-blue-info .bx-controls .bx-next {
  right: -20px;
}
.slider-blue-info .fl-slide-foreground {
  -moz-box-align: start;
  -moz-box-orient: vertical;
  -ms-flex-align: start;
  -ms-flex-direction: column;
  -webkit-align-items: flex-start;
  -webkit-box-align: start;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  /* optional */
  align-items: flex-start;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.slider-blue-info .fl-slide-foreground .fl-slide-content-wrap {
  -moz-box-ordinal-group: 2;
  -ms-flex-order: 2;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 2;
  order: 2;
}
.slider-blue-info .fl-slide-foreground .fl-slide-photo-wrap {
  -moz-box-ordinal-group: 1;
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 1;
  order: 1;
}

.support-icon {
  background: url(../images/sprites/pm-icon-sprite.png);
  height: 47px;
  margin: 25px auto 5px;
  width: 47px;
}
.support-icon.support-icon5 {
  background-position: -188px 0;
}
.support-icon.support-icon4 {
  background-position: -141px 0;
}
.support-icon.support-icon3 {
  background-position: -94px 0;
}
.support-icon.support-icon2 {
  background-position: -47px 0;
}

.calculator {
  font: 300 14px/24px "Roboto", sans-serif !important;
}
.calculator .form-slide {
  padding-bottom: 30px;
}
.calculator .row {
  padding: 20px 0;
}
.calculator .sliders {
  margin: 20px 0;
}
.calculator input {
  border-radius: 3px;
  border: 1px solid #ddd;
  font-size: 18px;
  height: 40px;
  margin-top: 10px;
  padding: 4px;
  text-align: right;
  width: 100%;
}
.calculator .markers {
  margin-left: 0.4%;
}
.calculator .mark {
  background: none;
  float: left;
  left: 1.5%;
  position: absolute;
  top: 42px;
}
.calculator .mark.employee-count2 {
  left: 12.1%;
}
.calculator .mark.employee-count3 {
  left: 23.6%;
}
.calculator .mark.employee-count4 {
  left: 35.1%;
}
.calculator .mark.employee-count5 {
  left: 48.1%;
}
.calculator .mark.employee-count6 {
  left: 57.6%;
}
.calculator .mark.employee-count7 {
  left: 76.9%;
}
.calculator .mark.employee-count8 {
  left: 96%;
}
.calculator .mark.period-count2 {
  left: 23.1%;
}
.calculator .mark.period-count3 {
  left: 45.4%;
}
.calculator .mark.period-count4 {
  left: 48.8%;
}
.calculator .mark.period-count5 {
  left: 97.1%;
}
.calculator .mark.hourly-count2 {
  left: 6.7%;
}
.calculator .mark.hourly-count3 {
  left: 12.5%;
}
.calculator .mark.hourly-count4 {
  left: 21.1%;
}
.calculator .mark.hourly-count5 {
  left: 39%;
}
.calculator .mark.hourly-count6 {
  left: 48.7%;
}
.calculator .mark.hourly-count7 {
  left: 58.2%;
}
.calculator .mark.hourly-count8 {
  left: 77.5%;
}
.calculator .mark.hourly-count9 {
  left: 96.7%;
}
.calculator .mark.rate-count2 {
  left: 9.7%;
}
.calculator .mark.rate-count3 {
  left: 14.6%;
}
.calculator .mark.rate-count4 {
  left: 19.6%;
}
.calculator .mark.rate-count5 {
  left: 24.4%;
}
.calculator .mark.rate-count6 {
  left: 34.1%;
}
.calculator .mark.rate-count7 {
  left: 48.6%;
}
.calculator .mark.rate-count8 {
  left: 63.3%;
}
.calculator .mark.rate-count9 {
  left: 77.7%;
}
.calculator .mark.rate-count10 {
  left: 96.6%;
}
.calculator .mark.minutes-count2, .calculator .mark.error-count2, .calculator .mark.prod-count2 {
  left: 27.1%;
}
.calculator .mark.minutes-count3, .calculator .mark.error-count3, .calculator .mark.prod-count3 {
  left: 52.7%;
}
.calculator .mark.minutes-count4, .calculator .mark.error-count4, .calculator .mark.prod-count4 {
  left: 78%;
}
.calculator .mark.minutes-count5, .calculator .mark.error-count5, .calculator .mark.prod-count5 {
  left: 97.1%;
}
.calculator .mark.average-count2 {
  left: 25%;
}
.calculator .mark.average-count3 {
  left: 49.1%;
}
.calculator .mark.average-count4 {
  left: 72.7%;
}
.calculator .mark.average-count5 {
  left: 96.8%;
}
@media all and (max-width: 1200px) {
  .calculator .mark.employee-count5 {
    left: 47.5%;
  }
  .calculator .mark.employee-count6 {
    left: 57%;
  }
  .calculator .mark.employee-count7 {
    left: 76.2%;
  }
  .calculator .mark.employee-count8 {
    left: 95.4%;
  }
  .calculator .mark.period-count4 {
    left: 48.7%;
  }
  .calculator .mark.period-count5 {
    left: 96.6%;
  }
  .calculator .mark.hourly-count8 {
    left: 76.9%;
  }
  .calculator .mark.hourly-count9 {
    left: 96%;
  }
  .calculator .mark.rate-count2 {
    left: 9.4%;
  }
  .calculator .mark.rate-count3 {
    left: 14.3%;
  }
  .calculator .mark.rate-count4 {
    left: 19.3%;
  }
  .calculator .mark.rate-count5 {
    left: 24.1%;
  }
  .calculator .mark.rate-count6 {
    left: 33.8%;
  }
  .calculator .mark.rate-count7 {
    left: 48.3%;
  }
  .calculator .mark.rate-count8 {
    left: 63%;
  }
  .calculator .mark.rate-count9 {
    left: 77.4%;
  }
  .calculator .mark.minutes-count4, .calculator .mark.error-count4, .calculator .mark.prod-count4 {
    left: 77.4%;
  }
  .calculator .mark.rate-count10, .calculator .mark.average-count5 {
    left: 96.1%;
  }
  .calculator .mark.minutes-count5, .calculator .mark.prod-count5, .calculator .mark.error-count5 {
    left: 96.4%;
  }
}
@media all and (max-width: 980px) {
  .calculator .mark {
    display: none;
  }
}
.calculator .mark:before {
  background: #666;
  content: "";
  display: block;
  height: 5px;
  margin: 0 auto;
  width: 1px;
}
.calculator .math-bar {
  background: #006595;
  color: #fff;
  font-size: 18px;
  margin-top: 30px;
  padding: 20px;
}
.calculator .math-bar span {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}
.calculator .text {
  margin-top: 0;
}
.calculator .button.yellow {
  display: block;
}
@media all and (max-width: 767px) {
  .calculator .main-content .number {
    display: none;
  }
}

/*.purlData {
  bottom: 0;
  color: white;
  display: block;
  font-family: "Roboto", sans-serif;
  margin: 0 auto;
  position: fixed;
  text-align: left;
  width: 100%;
  z-index: 998;
}
.purlData a:hover {
  text-decoration: none;
}
.purlData .imageleft,
.purlData .certification,
.purlData .bioleft,
.purlData .ProfilePhone,
.purlData .ProfileEmail,
.purlData .ProfileVcard,
.purlData .ProfileLinkedIn {
  display: none;
}
.purlData .certification {
  text-align: right;
}
.purlData .certification a {
  background: transparent url("../images/modules/cbpasealforweb.png") no-repeat scroll left top;
  display: block;
  height: 80px;
  width: 100%;
}
.purlData .certification.left {
  float: left;
  padding-left: 10px;
  width: 10%;
}
.purlData .biocopy-wrapper {
  background-color: #00aae6;
  border: 1px solid #007099;
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  clear: both;
  display: block;
  margin-right: 10px;
  padding: 0 10px;
  position: relative;
  overflow: hidden;
}
.purlData .biocopy-wrapper .biocopy {
  min-height: 39px;
}
.purlData .biocopy-wrapper .biocopy br {
  display: none;
}
.purlData .biocopy-wrapper .biocopy .profile-right {
  display: block;
  float: left;
}
.purlData .biocopy-wrapper .biocopy .ProfileName {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding-top: 7px;
}
.purlData .biocopy-wrapper .biocopy .ProfileTitle {
  font-family: 'Roboto Slab', serif;
  font-size: 14px;
  font-weight: 500;
}
.purlData .biocopy-wrapper .biocopy.open {
  min-height: 130px;
  transition: all .5s ease;
}
.purlData .biocopy-wrapper .biocopy.open br {
  display: block;
}
.purlData .biocopy-wrapper .biocopy.open .ProfileName {
  font-size: 22px;
  font-weight: 400;
  margin-top: 15px;
}
.purlData .biocopy-wrapper .biocopy.open .ProfileTitle {
  clear: both;
  font-size: 18px;
  opacity: .7;
}
.purlData .biocopy-wrapper .biocopy.open .footer-title {
  display: none;
}
.purlData .biocopy-wrapper .biocopy.open .imageleft,
.purlData .biocopy-wrapper .biocopy.open .certification,
.purlData .biocopy-wrapper .biocopy.open .bioleft {
  display: block;
}
.purlData .biocopy-wrapper .biocopy.open .ProfilePhone,
.purlData .biocopy-wrapper .biocopy.open .ProfileEmail,
.purlData .biocopy-wrapper .biocopy.open .ProfileVcard,
.purlData .biocopy-wrapper .biocopy.open .ProfileLinkedIn {
  display: inline-block;
}
.purlData .biocopy-wrapper .biocopy.open .ProfileVcard {
  margin-right: 20px;
}
.purlData .imageleft {
  float: left;
  margin: 15px 15px 0 15px;
  text-align: right;
  max-width: 10%;
}
.purlData img.imageleft {
  border: 8px solid #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.purlData .bioleft {
  float: left;
  padding-top: 4px;
  width: 70%;
}
.purlData .name_title,
.purlData .name_title span {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 4px;
}
.purlData a {
  color: white;
}
.purlData a .title {
  color: #ccc;
}
.purlData .ProfilePhone {
  background: transparent url("../images/modules/phone.png") no-repeat scroll left center;
  margin-right: 20px;
  padding-left: 15px;
}
.purlData .ProfileEmail {
  background: transparent url("../images/modules/email.png") no-repeat scroll left center;
  padding-left: 23px;
}
.purlData .ProfileLinkedIn {
  background: transparent url("../images/modules/vcard.png") no-repeat scroll left center;
  padding-left: 23px;
}
.purlData a.close {
  background-image: url("../images/modules/close-btn.png");
  background-position: right top;
  background-repeat: no-repeat;
  cursor: pointer;
  font-size: 12px;
  font-weight: bold;
  height: 15px;
  line-height: 115%;
  padding-right: 20px;
  position: absolute;
  right: 30px;
  text-align: right;
  top: 5px;
  width: 50px;
  z-index: 9999;
}
.purlData a.close.open {
  background-position: right bottom;
}
.purlData .footer-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  display: block;
  height: 35px;
  left: 24px;
  position: absolute;
  top: 1px;
  width: 500px;
}
.purlData .footer-title span {
  color: #ffffff;
  font-size: 12px;
  font-weight: normal;
}
.purlData .footer-title .ProfleTitle {
  font-size: 14px;
  font-weight: bold;
}
*/

.gray-header h1,
.gray-header h1.fl-heading span {
  font: 300 36px/40px "Roboto", sans-serif;
}

.funds {
  margin-bottom: 20px;
}
.funds a,
.funds span {
  border-right: 1px solid #dddddd;
  display: inline-block;
  font: 400 16px/24px "Roboto", sans-serif;
  margin-right: 3px;
  padding-right: 5px;
  text-align: center;
}

#fundFacts h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 15px 0 5px;
}

#fundFacts li {
  text-align: left;
}

.modal-backdrop.in {
  height: 100%;
  opacity: 0.5 !important;
  z-index: 1030;
}

#quantity-modal #headerArea {
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  margin-top: 4%;
  padding-bottom: 35px;
  width: 100%;
}
#quantity-modal #headerArea .headerImg img {
  float: left;
  padding-top: 25px;
}
#quantity-modal #headerArea .headerContent h3 {
  color: #000000;
  font-family: "Roboto";
  font-size: 27px;
  font-weight: 400;
  line-height: 28px;
  padding: 35px 0 10px;
}
#quantity-modal #headerArea p {
  color: #000000;
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
}
#quantity-modal .modal-body .section-header {
  background-color: #006695;
  color: #ffffff;
  padding: 5px 20px;
}
#quantity-modal .modal-body #expensable-form {
  background-color: #efefef;
  padding: 20px;
}
#quantity-modal .modal-body label {
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 300;
}
#quantity-modal .modal-body #quantity-input {
  width: 40px;
}

#pm-exp-confirm-modal .modal-dialog * {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 300;
}

.minicart p {
  color: #333333;
  font-size: 8pt;
  margin: 0;
  padding: 0;
}
.minicart p.qty {
  color: #333333;
  font-family: "Roboto";
  font-size: 12px;
  font-weight: 400;
  margin: 0 0 5px;
  padding: 0;
}
.minicart p a#cartBtn {
  background-color: #006695;
  color: #fff;
  display: none;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  text-decoration: none;
}
.minicart #cartDiv {
  background-color: #fff;
  border: 3px solid #006695;
  border-radius: 3px;
  display: none;
  overflow-x: hidden;
  padding: 10px;
  position: absolute;
  right: 20px;
  top: 28px;
  width: 290px;
  z-index: 1030;
}
.minicart #cartDiv .cartItem,
.minicart #cartDiv .cartBtn {
  float: left;
  width: 100%;
}
.minicart #cartDiv .cartItem {
  border-top: 1px solid #e0e0e0;
  min-height: 75px;
  padding: 15px 0;
}
.minicart #cartDiv .cartItem:first-child {
  border-top: medium none;
  padding: 0 0 15px;
}
.minicart #cartDiv .cartItemImg {
  float: left;
  width: 85px;
}
.minicart #cartDiv .cartItemDetails {
  float: left;
  width: 195px;
}
.minicart #cartDiv h3 {
  color: #006695;
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 400;
  margin: 1px 0 0;
  padding: 0;
}
.minicart a.btn-insperity {
  display: block;
  text-align: center;
}
.minicart a.btn-insperity:hover {
  text-decoration: none;
}
.minicart .btn-insperity {
  background: transparent linear-gradient(#ffd700, #ecae00) repeat scroll 0 0;
  border: 1px solid #d19c24;
  border-radius: 3px;
  box-shadow: 1px 1px 1px #666;
  color: #428bca !important;
  display: inline-block;
  font-family: "Roboto";
  font-size: 18px !important;
  font-weight: 500;
  margin-bottom: 2%;
  padding: 8px 15px;
}

.pagination-meta {
  font: 400 14px/24px "Roboto", sans-serif;
  margin-bottom: 30px;
}
.pagination-meta .bold {
  font-style: italic;
  font-weight: 500;
}

.thank-you .general-info {
  border-bottom: 2px solid #D8D8D8;
  margin-bottom: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.thank-you .general-info h1,
.thank-you .general-info h2,
.thank-you .general-info h3,
.thank-you .general-info h4,
.thank-you .general-info h5,
.thank-you .general-info h6 {
  color: #68A961;
}

.thank-you-resources .post {
  padding-bottom: 30px;
  padding-top: 30px;
}
.thank-you-resources h2 {
  color: #68A961;
}
.thank-you-resources .related-resources h2 {
  background: #006696;
  padding: 5px 0 5px 10px;
}

.accordian .button.green {
  margin: 20px 0;
}

.slider-width-600 {
  float: none;
  margin: 0 auto;
  width: 640px !important;
}

.slider-width-800 {
  float: none;
  margin: 0 auto;
  max-width: 840px;
  width: 100%;
}

.page-orgplus .slider-prev,
.page-orgplus .slider-next,
.cf-homepage-slider .slider-prev,
.cf-homepage-slider .slider-next {
  background-color: #006595;
  opacity: 1;
  padding: 5px;
}

.cf-homepage-slider .bx-wrapper .bx-pager.bx-default-pager {
  bottom: -60px;
}
.cf-homepage-slider .bx-wrapper .bx-pager.bx-default-pager .bx-pager-item {
  -moz-border-radius: 21px;
  /* FF1+ */
  -webkit-border-radius: 21px;
  /* Saf3+, Chrome */
  border-radius: 21px;
  /* Standard. IE9 */
  -webkit-background-clip: padding-box;
  border: 1px solid #000;
  margin: 0 4px;
}
.cf-homepage-slider .bx-wrapper .bx-pager.bx-default-pager a {
  -moz-border-radius: 21px;
  /* FF1+ */
  -webkit-border-radius: 21px;
  /* Saf3+, Chrome */
  border-radius: 21px;
  /* Standard. IE9 */
  -webkit-background-clip: padding-box;
  background-color: #fff;
  height: 14px;
  margin: 2px;
  width: 14px;
}
.cf-homepage-slider .bx-wrapper .bx-pager.bx-default-pager a:hover, .cf-homepage-slider .bx-wrapper .bx-pager.bx-default-pager a.active {
  background-color: #006595;
}
.cf-homepage-slider .fl-slide-foreground {
  *zoom: 1;
  margin: 0 auto;
  max-width: 500px;
}
.cf-homepage-slider .fl-slide-foreground:before, .cf-homepage-slider .fl-slide-foreground:after {
  content: '';
  display: table;
}
.cf-homepage-slider .fl-slide-foreground:after {
  clear: both;
}
.cf-homepage-slider .fl-slide-foreground .fl-slide-content {
  margin: 60px 0 0 20px;
}
@media (max-width: 992px) {
  .cf-homepage-slider .fl-slide-foreground .fl-slide-photo {
    display: none;
  }
}

.questionBlock .fl-col .fl-callout-photo {
  width: 20%;
}

.question-gren .fl-col .fl-heading {
  max-width: 700px;
}

.smaller-testimonial .fl-row-content-wrap {
  max-width: 1000px;
}

.single .share-area .social {
  max-width: 100px;
}

.quote-request.form-area .fl-row-content {
  padding-left: 0;
  padding-right: 0;
}
.quote-request.form-area .fl-module-content .fl-row-content-wrap {
  padding: 25px 15px;
}
.quote-request.form-area .fl-module-content .fl-row-content-wrap .web-address-wrap .web-address {
  width: 74%;
}
@media (max-width: 768px) {
  .quote-request.form-area .fl-module-content .fl-row-content-wrap .web-address-wrap .web-address {
    max-width: 103%;
    width: 103%;
  }
}
.quote-request.form-area .org-profile-wrap-full .org-profile-wrap-full .fl-row-content-wrap {
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .quote-request.form-area {
    padding-left: 0;
    padding-right: 0;
  }
  .quote-request.form-area .fl-row-full-width {
    padding-left: 0;
    padding-right: 0;
  }
}
.quote-request.form-area .ninja-forms-field-error {
  clear: left;
}
.quote-request.form-area .ninja-forms-field-error p {
  color: #F00;
  margin: 0;
  padding: 0;
}
.quote-request.form-area .list-checkbox-wrap ul {
  clear: left;
  float: left;
  width: 100%;
}
.quote-request.form-area .list-checkbox-wrap ul li {
  width: 33%;
}
.quote-request.form-area .list-checkbox-wrap ul li:nth-child(3n+1) {
  clear: left;
}
@media (max-width: 560px) {
  .quote-request.form-area .list-checkbox-wrap ul li {
    width: 50%;
  }
  .quote-request.form-area .list-checkbox-wrap ul li:nth-child(3n+1) {
    clear: none;
  }
  .quote-request.form-area .list-checkbox-wrap ul li:nth-child(2n+1) {
    clear: left;
  }
}
.quote-request.form-area .list-checkbox-wrap ul li label {
  text-align: left;
}
.quote-request.form-area .list-checkbox-wrap ul li label input {
  float: left;
  margin-left: 0;
  margin-top: 4px;
}
.quote-request.form-area #ninja_forms_field_91_error,
.quote-request.form-area #ninja_forms_field_89_error {
  clear: both;
}
.quote-request.form-area .org-profile.address.state {
  margin-bottom: 10px;
}
.quote-request.form-area > .fl-row-content-wrap {
  width: 100%;
}
@media (max-width: 768px) {
  .quote-request.form-area > .fl-row-content-wrap {
    padding-bottom: 20px;
    padding-top: 0;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .quote-request.form-area .ninja-forms-all-fields-wrap .fl-row-content-wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.quote-request.form-area .contact-profile-wrap-full,
.quote-request.form-area .grant-profile-wrap-full,
.quote-request.form-area .contact-details-wrap-full,
.quote-request.form-area .channel-contact-wrap-full,
.quote-request.form-area .channel-relationship-wrap-full {
  background: #efefef none repeat scroll 0 0;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  clear: both;
}
.quote-request.form-area .nf-desc p {
  color: #339933;
  font: 400 20px/24px "Roboto Slab", serif;
  padding: 20px 0;
  text-align: left;
}
.quote-request.form-area label {
  padding: 5px 0;
}
@media (max-width: 992px) {
  .quote-request.form-area .list-radio-wrap > label {
    width: 100%;
  }
}
.quote-request.form-area .text-wrap label,
.quote-request.form-area .textarea-wrap label,
.quote-request.form-area .list-dropdown-wrap label,
.quote-request.form-area .cf_web_address-wrap label,
.quote-request.form-area .insperity_employees-wrap label {
  box-sizing: border-box;
  display: inline-block;
  float: left;
  padding-right: 30px;
  width: 15%;
}
@media (max-width: 992px) {
  .quote-request.form-area .text-wrap label,
  .quote-request.form-area .textarea-wrap label,
  .quote-request.form-area .list-dropdown-wrap label,
  .quote-request.form-area .cf_web_address-wrap label,
  .quote-request.form-area .insperity_employees-wrap label {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .quote-request.form-area .text-wrap label,
  .quote-request.form-area .textarea-wrap label,
  .quote-request.form-area .list-dropdown-wrap label,
  .quote-request.form-area .cf_web_address-wrap label,
  .quote-request.form-area .insperity_employees-wrap label {
    width: 100%;
  }
}
.quote-request.form-area .text-wrap input,
.quote-request.form-area .text-wrap textarea,
.quote-request.form-area .textarea-wrap input,
.quote-request.form-area .textarea-wrap textarea,
.quote-request.form-area .list-dropdown-wrap input,
.quote-request.form-area .list-dropdown-wrap textarea,
.quote-request.form-area .cf_web_address-wrap input,
.quote-request.form-area .cf_web_address-wrap textarea,
.quote-request.form-area .insperity_employees-wrap input,
.quote-request.form-area .insperity_employees-wrap textarea {
  font: 300 16px/24px "Roboto", serif;
  height: 40px;
  margin: 0 0 10px;
  width: 75%;
}
@media (max-width: 768px) {
  .quote-request.form-area .text-wrap input,
  .quote-request.form-area .text-wrap textarea,
  .quote-request.form-area .textarea-wrap input,
  .quote-request.form-area .textarea-wrap textarea,
  .quote-request.form-area .list-dropdown-wrap input,
  .quote-request.form-area .list-dropdown-wrap textarea,
  .quote-request.form-area .cf_web_address-wrap input,
  .quote-request.form-area .cf_web_address-wrap textarea,
  .quote-request.form-area .insperity_employees-wrap input,
  .quote-request.form-area .insperity_employees-wrap textarea {
    width: 100%;
  }
}
.quote-request.form-area .text-wrap textarea,
.quote-request.form-area .textarea-wrap textarea,
.quote-request.form-area .list-dropdown-wrap textarea,
.quote-request.form-area .cf_web_address-wrap textarea,
.quote-request.form-area .insperity_employees-wrap textarea {
  height: 200px !important;
  resize: none;
}
@media (max-width: 992px) {
  .quote-request.form-area .text-wrap textarea,
  .quote-request.form-area .textarea-wrap textarea,
  .quote-request.form-area .list-dropdown-wrap textarea,
  .quote-request.form-area .cf_web_address-wrap textarea,
  .quote-request.form-area .insperity_employees-wrap textarea {
    height: 100px;
  }
}
.quote-request.form-area .text-wrap select,
.quote-request.form-area .textarea-wrap select,
.quote-request.form-area .list-dropdown-wrap select,
.quote-request.form-area .cf_web_address-wrap select,
.quote-request.form-area .insperity_employees-wrap select {
  margin-left: 0 !important;
}
.quote-request.form-area .button-profile-wrap-full {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .quote-request.form-area .button-profile-wrap-full > .fl-row-content-wrap {
    padding-bottom: 0;
    padding-top: 20px;
  }
}
.quote-request.form-area .third-wrap,
.quote-request.form-area .ninja-forms-field.third {
  float: left;
  width: 31%;
}
.quote-request.form-area .third-wrap label,
.quote-request.form-area .ninja-forms-field.third label {
  float: left;
  padding-right: 5%;
  width: 21%;
}
.quote-request.form-area .third-wrap input[type="text"],
.quote-request.form-area .third-wrap select,
.quote-request.form-area .ninja-forms-field.third input[type="text"],
.quote-request.form-area .ninja-forms-field.third select {
  float: none;
  width: 70%;
}
.quote-request.form-area .third-wrap input[type="text"].third,
.quote-request.form-area .third-wrap select.third,
.quote-request.form-area .ninja-forms-field.third input[type="text"].third,
.quote-request.form-area .ninja-forms-field.third select.third {
  width: 70%;
}
.quote-request.form-area .third-wrap p,
.quote-request.form-area .ninja-forms-field.third p {
  color: #333333;
  font: 400 15px/20px "Roboto", serif;
  margin: 0;
  padding: 0;
}
.quote-request.form-area .third-wrap .ninja-forms-field-error p,
.quote-request.form-area .ninja-forms-field.third .ninja-forms-field-error p {
  color: #F00;
  font: 400 15px/20px "Roboto", serif;
  margin: 0;
  padding: 0;
}
.quote-request.form-area .label-above label {
  width: 100%;
}
.quote-request.form-area .label-above input[type="text"] {
  clear: left;
  width: 100%;
}
.quote-request.form-area .label-above textarea {
  clear: left;
  width: 90%;
}
.quote-request.form-area .gf_right_half-wrap,
.quote-request.form-area .gf_left_half-wrap,
.quote-request.form-area .half-right-wrap,
.quote-request.form-area .half-left-wrap {
  float: left;
  width: 48%;
}
.quote-request.form-area .gf_right_half-wrap.list-dropdown-wrap,
.quote-request.form-area .gf_left_half-wrap.list-dropdown-wrap,
.quote-request.form-area .half-right-wrap.list-dropdown-wrap,
.quote-request.form-area .half-left-wrap.list-dropdown-wrap {
  margin-right: 50%;
}
.quote-request.form-area .gf_right_half-wrap textarea,
.quote-request.form-area .gf_right_half-wrap select,
.quote-request.form-area .gf_left_half-wrap textarea,
.quote-request.form-area .gf_left_half-wrap select {
  width: 80%;
}
.quote-request.form-area .gf_right_half-wrap,
.quote-request.form-area .half-right-wrap {
  margin-left: 4%;
}
.quote-request.form-area .half-right-wrap.label-left label,
.quote-request.form-area .half-left-wrap.label-left label {
  padding-right: 30px;
  width: 21%;
}
.quote-request.form-area .half-right-wrap.label-left input,
.quote-request.form-area .half-left-wrap.label-left input {
  width: 59%;
}
.quote-request.form-area .normal-text p {
  color: #333333;
  font: 300 16px/24px "Roboto", serif;
}
.quote-request.form-area .email-wrap {
  width: 92%;
}
.quote-request.form-area .email-wrap input {
  width: 88%;
}
.quote-request.form-area .email-wrap label {
  width: 10.5%;
}
.quote-request .ninja-forms-response-msg {
  margin-bottom: 50px;
}
.quote-request.comm-involvement .ninja-forms-response-msg {
  margin-bottom: 0;
}
.quote-request .ninja-forms-all-fields-wrap .channel-company-wrap-full {
  margin-top: -40px;
}
@media (min-width: 769px) {
  .quote-request .ninja-forms-all-fields-wrap .channel-company-wrap-full {
    margin-top: 0px;
  }
}
.quote-request .ninja-forms-all-fields-wrap .channel-company-wrap-full .fl-row-content-wrap {
  padding-bottom: 0;
}

.page-event-sponsorship .ninja-forms-all-fields-wrap .channel-company-wrap-full {
  margin-bottom: -20px;
  margin-top: -30px;
}
.page-event-sponsorship .ninja-forms-all-fields-wrap .channel-company-wrap-full .fl-row-content-wrap {
  padding-bottom: 0;
}

.module.featured-resource h2 {
  color: #333;
  font: 600 22px/28px "Roboto Slab", serif;
  margin: 0;
  padding: 0;
  text-align: left;
}
.module.featured-resource h4.tagline {
  font: 600 20px/26px "Roboto Slab", serif;
  margin-top: 5px;
  padding-top: 0;
}
.module.featured-resource p.text {
  font-size: 16px;
  margin: 10px 0;
}
.module.featured-resource .button {
  margin: 20px 0 0 0;
  max-width: 250px;
}

.insperity-office-form {
  margin-bottom: 50px;
}
.insperity-office-form input[type="text"],
.insperity-office-form input[type="email"],
.insperity-office-form textarea {
  width: 100%;
}
@media (min-width: 768px) {
  .insperity-office-form input[type="text"],
  .insperity-office-form input[type="email"],
  .insperity-office-form textarea {
    min-width: 220px;
    width: 50%;
  }
}
.insperity-office-form button {
  background: #419639;
  border: 0;
  border-bottom: 1px solid #2b6326;
  border-radius: 3px;
  border-right: 1px solid #2b6326;
  box-shadow: none;
  color: #FFF;
  height: 40px;
  margin-bottom: 0;
  padding: 4px 10px;
}
.insperity-office-form .form-item.for-actions button {
  display: block;
  margin-bottom: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .insperity-office-form .form-item.for-actions button {
    display: inline-block;
    width: auto;
  }
}
.insperity-office-form#insperity-office-register label {
  font-weight: bold;
}
.insperity-office-form#insperity-office-register .insperity-office-registration-number input[type="text"],
.insperity-office-form#insperity-office-register .insperity-office-spc input[type="text"] {
  display: inline-block;
  margin-bottom: 5px;
  width: 90%;
}
@media (min-width: 768px) {
  .insperity-office-form#insperity-office-register .insperity-office-registration-number input[type="text"],
  .insperity-office-form#insperity-office-register .insperity-office-spc input[type="text"] {
    width: 50%;
  }
}
.insperity-office-form#insperity-office-register .insperity-office-registration-number input[type="text"]:last-of-type,
.insperity-office-form#insperity-office-register .insperity-office-spc input[type="text"]:last-of-type {
  margin-bottom: 0;
}
.insperity-office-form#insperity-office-register .form-item.for-actions button {
  width: 90%;
}
@media (min-width: 768px) {
  .insperity-office-form#insperity-office-register .form-item.for-actions button {
    display: inline-block;
    width: auto;
  }
}

.fl-content-slider-navigation .slider-prev,
.fl-content-slider-navigation .slider-next {
  background: #006595;
  opacity: 1;
  padding: 5px;
}

.search-results .share {
  margin-top: -30px;
  padding-left: 15px;
}
.search-results .share .share-bubble {
  margin-left: 5px;
}
.search-results article .attachment-post-thumbnail {
  width: 100%;
}
.search-results article .type {
  display: block;
  font: 400 14px/14px "Roboto", sans-serif;
  letter-spacing: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.search-results article h3 a {
  color: #006595;
  font: 700 20px/26px "Roboto Slab", serif;
  margin: 10px 0 5px;
}
.search-results article p {
  line-height: 24px;
  margin: 10px 0;
}
.search-results .site-main .container > .row > .col-md-9 {
  border-left: 1px solid #E4E4E4;
}

body.insperity-hidewrapper .page-header-wrapper,
body.insperity-hidewrapper .breadcrumbs-container,
body.insperity-hidewrapper #footer .menu-area, 
body.insperity-hidewrapper #footer .util,
body.insperity-hidewrapper .footer-actions {
  display: none;
}

body.insperity-hidewrapper #content {
  margin-top: 0;
}

body.insperity-hidewrapper #footer {
    height: auto;
    padding: 0;
}

.modal.bootbox .bootbox-close-button.close {
  background-color: #000;
  border-color: #FFF;
  border-radius: 16px;
  border-style: solid;
  border-width: 2px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  color: #FFF;
  display: inline-block;
  font-size: 32px;
  height: 32px;
  line-height: 23px;
  opacity: 1;
  padding-left: 5px;
  position: absolute;
  right: -16px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  top: -6px;
  width: 32px;
}

.ninja-forms-cont div.privacy-field p, 
.nf-field-container.privacy-field div {
  font-size: 14px;
}

.about-title {
  color: #333;
  font: 400 30px/32px "Roboto Slab", serif;
  padding: 20px 0 30px;
}

.about-text {
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 30px;
}

.green-flag {
  position: relative;
}
.green-flag:after {
  border-bottom: 5px solid transparent;
  border-left: 8px solid #419639;
  border-top: 5px solid transparent;
  height: 0;
  left: 123%;
  position: absolute;
  top: 0px;
  width: 0;
}

.fl-module.download .fl-callout-title .fl-callout-title-link {
  font: 500 28px/36px "Roboto Slab",serif;
}

.get-quote-button a {
  display: block;
  padding: 10px 30px;
  max-width: 250px;
}

.community-contact-sidebar .fl-module-photo img {
  max-width: 60px;
}

.module .field-wrap.label-right label {
  width: auto;
}

.site-content .page-header {
  border-bottom: none;
  margin: 0;
  padding-bottom: 0;
}

.board-of-directors-content .module.white {
  color: #333;
}
.board-of-directors-content .toggle-wrap {
  *zoom: 1;
}
.board-of-directors-content .toggle-wrap:before, .board-of-directors-content .toggle-wrap:after {
  content: '';
  display: table;
}
.board-of-directors-content .toggle-wrap:after {
  clear: both;
}
.board-of-directors-content .committees {
  list-style: none;
  margin: 0px;
}
.board-of-directors-content .committees li {
  list-style: none;
  margin-bottom: 0px;
}
.board-of-directors-content .director-image {
  float: left;
  padding-right: 10px;
  width: 20%;
}
.board-of-directors-content .director-info {
  float: left;
  width: 80%;
}
.board-of-directors-content .director-info .toggle {
  margin-top: 15px;
  max-height: 0px;
  overflow: hidden;
  transition: all .5s ease;
}
.board-of-directors-content .director-info .toggle-trigger {
  color: #006595;
  cursor: pointer;
  margin-top: 10px;
}
.board-of-directors-content .director-info .toggle-trigger .less {
  display: none;
}
.board-of-directors-content .director-info.desc-visible .toggle {
  max-height: 1000px;
  text-align: left;
  transition: all .5s ease;
}
.board-of-directors-content .director-info.desc-visible .toggle-trigger .more {
  display: none;
}
.board-of-directors-content .director-info.desc-visible .toggle-trigger .less {
  display: inline;
}
@media (max-width: 585px) {
  .board-of-directors-content .director-image {
    float: none;
    text-align: center;
    width: 100%;
  }
  .board-of-directors-content .director-info {
    float: none;
    width: 100%;
  }
}

@media (max-width: 980px) {
  .fl-module-testimonial-block .img-responsive {
    width: auto;
  }
}
.widget-area .module .ninja-forms-form-wrap select {
  margin-bottom: 10px;
}

.archive .resource-col.post .hero img {
  border-top: 0px;
}

.hr-menu .fl-menu ul.menu li.current-menu-item {
  border-left: none;
}
.hr-menu .fl-menu ul.menu li.current-menu-item a:after {
  height: 66px;
}
.hr-menu .fl-menu ul.menu li.current-menu-item:last-child a:after {
  width: 0;
}
@media (max-width: 768px) {
  .hr-menu .fl-menu ul.menu li.current-menu-item:last-child a:after {
    width: 2px;
  }
}

#menu-about-us-sidemenu {
  margin-left: 0;
}
#menu-about-us-sidemenu li {
  color: #006595;
  cursor: pointer;
  font-weight: 500;
  list-style-type: none;
  margin: 0;
  padding: 4px 10px;
}
#menu-about-us-sidemenu li a {
  font-weight: 500;
  text-decoration: none;
}
#menu-about-us-sidemenu li a:hover,
#menu-about-us-sidemenu li a:focus,
#menu-about-us-sidemenu li li:hover {
  color: #23527c;
  text-decoration: none;
}
#menu-about-us-sidemenu li.current-menu-item {
  background: #006595;
  color: #fff;
  border-radius: 3px;
}
#menu-about-us-sidemenu li.current-menu-item a {
  color: #fff;
}
@media (max-width: 768px) {
  #menu-about-us-sidemenu {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu-about-us-sidemenu-container {
    margin: 0 auto 40px;
  }
}

.about-us .fl-col:not(.fl-col-small) .fl-heading {
  font: 400 28px/36px "Roboto Slab", serif;
  margin: 0 !important;
}
.about-us .fl-col:not(.fl-col-small) .fl-heading-text {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
}
@media (max-width: 768px) {
  .about-us .fl-col-small .fl-col-content {
    border-left: none;
    border-right: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
.about-us .subtitle a {
  color: #337ab7;
}

.banner.about .h2 {
  margin-top: 150px;
}
.banner.about .fl-module.paul {
  background: url(../images/about/paul.png);
  float: right;
  height: 420px;
  margin: 0 auto;
  max-width: 509px;
  padding-top: 20px;
  width: 100%;
}
.banner.about .text {
  color: #FFFFFF;
  font: 300 18px/24px "Roboto", sans-serif;
  margin-bottom: 5px;
  margin-left: 262px;
  max-width: 220px;
}
.banner.about .green {
  color: #8DC63F;
  font: 300 26px/32px "Roboto", sans-serif;
  margin: 5px 0 0 262px;
}
.banner.about .small {
  font: italic 300 12px/14px "Roboto", sans-serif;
}
@media (max-width: 992px) {
  .banner.about .fl-col:nth-child(2) {
    display: none;
  }
  .banner.about .fl-col-small {
    width: 100% !important;
  }
  .banner.about .fl-col-small .fl-module-content {
    margin-bottom: 60px;
    margin-top: 60px;
  }
  .banner.about .fl-col-small .fl-module-content .fl-heading {
    text-align: center;
  }
  .banner.about .h2 {
    margin-top: 50px;
  }
}

.senior {
  font: 300 16px/24px "Roboto", sans-serif;
}
.senior .pic {
  border-radius: 250px;
  border: 8px solid #fff;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  height: 216px;
  margin: 0 auto 20px;
  overflow: hidden;
  position: relative;
  width: 216px;
}
.senior .pic .mask {
  background: #000;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  color: #fff;
  display: none;
  left: 0;
  padding: 70px 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
}
.senior .pic .mask a {
  color: #fff;
  font-size: 14px;
}
.senior .pic .mask a:hover {
  text-decoration: none;
}
.senior .pic .mask i {
  color: #fff;
  font-size: 26px;
}
.senior .pic:hover > .mask {
  display: block;
}
.senior .name {
  font: 600 20px/24px "Roboto", sans-serif;
  color: #006595;
  margin-bottom: 10px;
}
.senior .text-center {
  font: 400 14px/20px "Roboto", sans-serif;
  color: #333;
}
@media (max-width: 768px) {
  .senior .fl-module-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.senior .bio {
  background: #d1eef9;
  display: none;
  margin-top: 50px;
  padding: 40px 50px;
  position: relative;
  text-align: left;
}
@media (max-width: 768px) {
  .senior .bio {
    left: 0;
    margin-left: 0;
    padding: 40px 20px;
    width: 100%;
  }
  .senior .bio .inner {
    width: 100%;
  }
  .senior .bio .inner * {
    text-align: left;
  }
}
.senior .bio .fa-caret-up {
  color: #d1eef9;
  font-size: 90px;
  margin-left: -13px;
  margin-top: -98px;
  position: absolute;
}
@media (max-width: 768px) {
  .senior .bio .fa-caret-up {
    display: none;
  }
}
.senior .bio .fa-caret-up.middle {
  left: 50%;
  margin-left: -26px;
}
.senior .bio .fa-caret-up.last {
  right: 161.5px;
}
.senior .bio .inner {
  width: 100%;
}
.senior .bio .inner p {
  font-size: 15px;
}
.senior .bio h4.subtitle {
  color: #006595;
  font-size: 18px;
  margin: 0;
  padding: 0 0 10px 0;
  text-align: left;
}
.senior .bio .bio-title {
  border-bottom: #333;
  border-bottom: 1px solid #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-align: left;
}
.senior .bio .fa-close {
  color: #333;
  font-size: 30px;
  position: absolute;
  right: 20px;
  top: 20px;
}

.timeline-slide {
  position: relative;
}

.timeline-slide.hideme {
  margin-top: 120px;
  display: none;
}

.timeline .line {
  background: #18aae2;
  bottom: 0;
  position: absolute;
}
.timeline .title {
  border: 8px solid #18aae2;
  color: #006595;
  font: 700 54px/54px "Roboto Slab", serif;
  margin: 0 auto;
  max-width: 100%;
  padding: 15px 0;
  text-align: center;
  text-transform: uppercase;
  width: 400px;
}
@media (max-width: 560px) {
  .timeline .title {
    font: 700 40px/54px "Roboto Slab", serif;
  }
}
.timeline .plus {
  background: #006595;
  border-radius: 250px;
  color: #18aae2;
  cursor: pointer;
  padding: 8px;
  position: absolute;
  text-align: center;
  width: 48px;
}
.timeline .plus:hover {
  opacity: 0.7;
}
.timeline img {
  display: block;
  margin: 40px auto;
}
.timeline .line1 {
  height: 8px;
  top: -93px;
  width: 312px;
}
.timeline .line2 {
  height: 394px;
  top: -92px;
  width: 8px;
}
.timeline .line3 {
  height: 8px;
  top: 294px;
  width: 210px;
}
.timeline .line4 {
  height: 8px;
  right: 164px;
  top: 294px;
  width: 46px;
}
.timeline .line5 {
  display: none;
  height: 338px;
  right: 137px;
  top: -198px;
  width: 8px;
}
.timeline .line6 {
  height: 8px;
  right: 137px;
  top: 136px;
  width: 0px;
}
.timeline .line7 {
  height: 8px;
  right: 810px;
  top: 136px;
  width: 0px;
}
.timeline .line8 {
  display: none;
  height: 645px;
  left: 106px;
  top: -356px;
  width: 8px;
}
.timeline .line9 {
  height: 8px;
  left: 106px;
  top: 284px;
  width: 0px;
}
.timeline .line10 {
  height: 8px;
  left: 810px;
  top: 284px;
  width: 0px;
}
.timeline .line11 {
  display: none;
  height: 369px;
  right: 47px;
  top: -208px;
  width: 8px;
}
.timeline .line12 {
  height: 8px;
  right: 55px;
  top: 153px;
  width: 0px;
}
.timeline .line13 {
  height: 8px;
  right: 810px;
  top: 149px;
  width: 0px;
}
.timeline .line14 {
  display: none;
  height: 535px;
  left: 25px;
  top: -343px;
  width: 8px;
}
.timeline .line15 {
  height: 8px;
  left: 33px;
  top: 184px;
  width: 0px;
}
.timeline .plus1 {
  right: 117px;
  top: 274px;
}
.timeline .plus2 {
  display: none;
  left: 86px;
  top: 116px;
}
.timeline .plus3 {
  display: none;
  right: 27px;
  top: 264px;
}
.timeline .plus4 {
  display: none;
  left: 5px;
  top: 129px;
}
.timeline .plus5 {
  display: none;
  right: 75px;
  top: 164px;
}
.timeline .caption {
  font-size: 18px;
  line-height: 26px;
  position: absolute;
  width: 215px;
}
.timeline .caption1 {
  right: -20px;
  top: 90px;
}
.timeline .caption2 {
  display: none;
  right: -20px;
  top: 180px;
}
.timeline .caption3 {
  display: none;
  right: -20px;
  top: 80px;
}
.timeline .caption4 {
  display: none;
  right: -20px;
  top: 190px;
}
.timeline .caption5 {
  display: none;
  right: -20px;
  top: 20px;
}
.timeline .more {
  color: #016699;
  font-size: 14px;
  font-style: italic;
  position: absolute;
  right: -23px;
  top: 283px;
}
.timeline .pic {
  height: 400px;
  margin: 0 auto;
  width: 600px;
}
.timeline .pic img {
  width: 100%;
}
.timeline .pic2,
.timeline .pic3,
.timeline .pic4,
.timeline .pic5 {
  display: none;
}
@media (max-width: 1200px) {
  .timeline .line,
  .timeline .plus,
  .timeline .more {
    display: none;
  }
  .timeline .timeline-slide {
    float: left;
    height: auto;
    margin: 0 1.5% 20px !important;
    width: 30.33%;
  }
  .timeline .timeline-slide.hideme,
  .timeline .pic,
  .timeline .caption {
    display: block !important;
    font-size: 14px;
    left: 0;
    line-height: 20px;
    height: auto;
    margin-top: 0;
    max-width: 100%;
  }
  .timeline .timeline-slide.hideme img,
  .timeline .pic img,
  .timeline .caption img {
    display: inline-block;
  }
  .timeline .caption {
    margin: 0 auto 25px;
    position: relative;
    top: 0;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .timeline .timeline-slide {
    margin: 0 2.5% 20px !important;
    width: 45%;
  }
}
@media (max-width: 768px) {
  .timeline .timeline1,
  .timeline .timeline3,
  .timeline .timeline5 {
    clear: left;
  }
}
@media (max-width: 560px) {
  .timeline .timeline-slide {
    margin: 0 0 20px !important;
    width: 100%;
  }
}

.quick-facts {
  color: #006595;
}
.quick-facts .h2 span {
  color: #006595;
  font-size: 36px;
  text-align: center;
}
.quick-facts .est {
  font: 700 18px/22px "Roboto Slab", serif;
  text-transform: uppercase;
}
.quick-facts .year {
  font: 700 80px/86px "Roboto", sans-serif;
  letter-spacing: -0.5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .quick-facts .year {
    font-size: 40px;
    line-height: 50px;
  }
}
.quick-facts .fl-callout .fl-callout-photo {
  display: block;
  float: left;
  padding-right: 5%;
  width: 20%;
}
@media (max-width: 767px) {
  .quick-facts .fl-callout .fl-callout-photo {
    margin-bottom: 20px;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
}
.quick-facts .fl-callout .fl-callout-content {
  display: block;
  float: left;
  width: 75%;
}
@media (max-width: 767px) {
  .quick-facts .fl-callout .fl-callout-content {
    padding-right: 0;
    text-align: center;
    width: 100%;
  }
}
.quick-facts .fl-callout .fl-callout-content h3 {
  padding-bottom: 0;
}
.quick-facts .fl-callout .fl-callout-content h3 span {
  color: #006595;
  font: 700 18px/22px "Roboto Slab", serif;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .quick-facts .fl-col {
    max-width: 100% !important;
    text-align: center;
    width: 100% !important;
  }
}

.wo li {
  font: 400 20px/24px "Roboto Slab", serif !important;
  list-style-type: none !important;
  padding: 38px 0 !important;
}
@media (max-width: 768px) {
  .wo li {
    padding: 5px 0 !important;
  }
}
.wo li a {
  color: #18aae2;
  font-size: 17px !important;
  font-weight: 400;
  text-decoration: underline;
}
.wo li a:hover {
  text-decoration: none;
}
.wo li .fa-caret-right {
  color: #18aae2;
}
.wo .services li {
  font: 400 17px/24px "Roboto", sans-serif !important;
  padding: 0 0 10px !important;
}
.wo .fl-col-group:nth-child(4) ul {
  margin-left: 0;
}
@media (max-width: 768px) {
  .wo .fl-col-group:nth-child(4) {
    text-align: center;
  }
  .wo .fl-col-group:nth-child(4) ul {
    width: 100%;
  }
  .wo .fl-col-group:nth-child(4) ul li {
    text-align: center;
  }
}
.wo .fl-col-group:nth-child(2) {
  margin: 0 auto !important;
  max-width: 990px;
}
.wo .fl-col-group:nth-child(2) ul {
  margin-left: 0;
}

.community {
  background-color: #00a9e7;
}
.community h2 span,
.community p {
  color: #fff !important;
}
.community .slider {
  position: relative;
  font-size: 16px;
  margin: 60px auto 0;
  max-width: 600px;
  overflow: hidden;
}
.community .slider .fl-slide-foreground {
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  bottom: 0;
  color: #fff;
  font: 300 14px/20px "Roboto", sans-serif;
  height: 95px;
  padding: 20px 3%;
  position: absolute;
  width: 100%;
  z-index: 200;
}
@media (max-width: 560px) {
  .community .slider .fl-slide-foreground {
    padding: 0 1%;
  }
}
.community .slider .fl-slide-content-wrap {
  width: 100%;
}
.community .slider .fl-slide-content-wrap p {
  font: 300 14px/20px "Roboto", sans-serif;
  margin: 0 !important;
  padding: 0 !important;
}
.community .slider .fl-slide-content-wrap .fl-slide-content {
  background-color: inherit;
}
@media (max-width: 768px) {
  .community .slider .fl-slide-content-wrap .fl-slide-content {
    padding: 0;
  }
}
@media (max-width: 560px) {
  .community .slider .fl-content-slider-navigation {
    top: 30%;
  }
}

.cta {
  background: #00466a none repeat scroll 0 0;
  color: #fff;
  margin-top: -1px;
  padding: 50px 0;
}
.cta img {
  height: 44px !important;
}
.cta h2 span {
  font-weight: 400;
}

.cta-large div {
  text-align: center;
}
.cta-large div:first-child {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cta-large div:last-child {
  padding-top: 0;
  padding-bottom: 0;
}
.cta-large button:after {
    content: '\f0da';
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    margin: 0px 0px 0px 10px;
    text-decoration: none;
}


@media (min-width: 768px) {
  .cta-large {
      display: table;
      table-layout: fixed;
      width: 100%;
      margin-right: 0;
      margin-left: 0;
  }
  .fl-builder .cta-large {
      margin-right: -15px;
      margin-left: -15px;
  }
  .cta-large [class^="col-"] {
      display: table-cell;
      float: none;
      vertical-align: middle;
  }

  .cta-large div:first-child {
      text-align: left;
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 0;
  }
  .cta-large div:first-child h2 {
      text-align: left;
  }

  .cta-large div:last-child {
      text-align: right;
      padding-top: 50px;
      padding-bottom: 50px;
      padding-right: 0;
  }
}

@media (max-width: 992px) {
  .cta .fl-col:first-child {
    display: none;
  }
  .cta .fl-col {
    text-align: center;
    width: 100% !important;
  }
  .cta .fl-heading {
    text-align: center !important;
  }
  .cta a {
    display: block !important;
    margin: 0 auto;
    max-width: 300px;
  }
}
@media (max-width: 560px) {
  .cta .fl-module-content {
    margin-left: 0;
    margin-right: 0;
  }
}

.circle img {
  background: #fff none repeat scroll 0 0;
  border-radius: 250px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 4px;
}

.page-about-us .est {
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  float: none;
  margin: 0;
  transform: rotate(0deg);
}

.page-template-general-layout.page-id-14136 .fl-row-full-width.fl-node-56b084747f834 > .fl-row-content-wrap,
.page-template-general-layout.page-id-14136 .fl-row-full-width.fl-node-56b089435f1ed > .fl-row-content-wrap {
  width: 100%;
}
.page-template-general-layout.page-id-14136 .fl-node-56b084747f834 .fl-row-content,
.page-template-general-layout.page-id-14136 .fl-node-56b089435f1ed .fl-row-content {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .page-template-general-layout.page-id-14136 .fl-node-56b084747f834 .fl-row-content,
  .page-template-general-layout.page-id-14136 .fl-node-56b089435f1ed .fl-row-content {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .page-template-general-layout.page-id-14136 .fl-node-56b084747f834 .fl-row-content,
  .page-template-general-layout.page-id-14136 .fl-node-56b089435f1ed .fl-row-content {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .page-template-general-layout.page-id-14136 .fl-node-56b084747f834 .fl-row-content,
  .page-template-general-layout.page-id-14136 .fl-node-56b089435f1ed .fl-row-content {
    width: 1060px;
  }
}
.page-template-general-layout.page-id-14136 .fl-node-56b24c47b9b87 .fl-row-content {
  max-width: 700px;
}
.page-template-general-layout.page-id-14136 .fl-node-56b084747f834 {
  color: #FFF;
  margin: 0 auto;
  text-align: center;
}
.page-template-general-layout.page-id-14136 .fl-node-56b084747f834 h1 {
  color: #FFF;
  font-family: "Roboto Slab", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 40px;
  margin: 0 auto;
  min-width: 260px;
  padding: 0 0 40px;
  width: 50%;
}
.page-template-general-layout.page-id-14136 .fl-node-56b084747f834 .phone {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
}
.page-template-general-layout.page-id-14136 .fl-node-56b084747f834 .phone strong {
  font-weight: 500;
}
.page-template-general-layout.page-id-14136 .fl-node-56b089435f1ed p.text {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
}
.page-template-general-layout.page-id-14136 .fl-node-56b24c47b9b87 {
  font-weight: 400;
  max-width: 700px;
}
.page-template-general-layout.page-id-14136 .fl-node-56b24c47b9b87 h3.fl-callout-title {
  padding-bottom: 0;
}
.page-template-general-layout.page-id-14136 .fl-node-56b24c47b9b87 p.compu-phone {
  font-size: 20px;
}

.community-involvement.banner {
  background-color: #00AAE8;
}
.community-involvement.banner .fl-heading-text {
  display: inline-block;
  font: 400 44px/50px "Roboto Slab", serif;
  max-width: 300px;
}
@media (max-width: 768px) {
  .community-involvement.banner .fl-heading-text {
    display: inline-block;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .community-involvement.banner .fl-col:nth-child(2) {
    display: none;
  }
  .community-involvement.banner .fl-col {
    margin-bottom: 40px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}
.community-involvement.sub-menu {
  background-color: #FAFAFA;
  border-bottom: 1px solid #E0E0E0;
}
.community-involvement.sub-menu div {
  border-bottom: none !important;
}
.community-involvement #menu-community-involvement.menu {
  background: none;
  border: none;
  margin: 0;
  text-align: center;
}
.community-involvement #menu-community-involvement.menu li {
  display: inline-block;
  font-weight: 400;
  list-style: none !important;
  margin: 0;
  padding: 10px 25px 0;
  text-align: center;
}
.community-involvement #menu-community-involvement.menu li:hover, .community-involvement #menu-community-involvement.menu li.current-menu-item {
  border-bottom: 3px solid #006595 !important;
}
.community-involvement #menu-community-involvement.menu li a {
  color: #333 !important;
  display: inline !important;
  font-weight: 400 !important;
  font: 300 14px/14px "Roboto", sans-serif;
  text-transform: uppercase;
}
.community-involvement #menu-community-involvement.menu li a:hover {
  text-decoration: none;
}
.community-involvement.sub-menu .fl-row-fixed-width > .fl-col-group:nth-child(2) {
  display: none;
}
@media (max-width: 768px) {
  .community-involvement.message .fl-row-content-wrap {
    padding-bottom: 0;
    padding-top: 30px;
  }
}
.community-involvement.message h2 .fl-heading-text {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
  margin-bottom: 20px;
}
.community-involvement.message p {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
}
.community-involvement.campaigns-info-area .fl-row-content-wrap {
  padding-top: 0;
}
@media (max-width: 1200px) {
  .community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) {
    width: 70% !important;
  }
}
@media (max-width: 992px) {
  .community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) {
    width: 100% !important;
    text-align: center;
  }
}
.community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) h3 {
  padding-bottom: 20px;
}
.community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) h3 span {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
}
@media (max-width: 992px) {
  .community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) .fl-callout-has-photo {
    display: block;
  }
}
.community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) .fl-callout-has-photo .fl-callout-photo {
  width: 170px;
}
@media (max-width: 992px) {
  .community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) .fl-callout-has-photo .fl-callout-photo {
    width: 100%;
  }
}
.community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) .fl-callout-has-photo .fl-callout-content {
  width: 580px !important;
}
@media (max-width: 1200px) {
  .community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) .fl-callout-has-photo .fl-callout-content {
    width: 500px !important;
  }
}
@media (max-width: 992px) {
  .community-involvement.campaigns-info-area .fl-col:not(.fl-col-small) .fl-callout-has-photo .fl-callout-content {
    text-align: center;
    width: 100% !important;
  }
}
.community-involvement.campaigns-info-area .fl-col-small .fl-callout-title a {
  color: #000000;
}
.community-involvement.campaigns-info-area .fl-col-small .fl-callout-title a:hover {
  color: #000000;
  text-decoration: none;
}
@media (max-width: 1200px) {
  .community-involvement.campaigns-info-area .fl-col-small {
    width: 30% !important;
  }
}
@media (max-width: 992px) {
  .community-involvement.campaigns-info-area .fl-col-small {
    width: 100% !important;
  }
  .community-involvement.campaigns-info-area .fl-col-small > .fl-col-content {
    margin-left: 0 !important;
  }
}
.community-involvement.campaigns-info-area .fl-col-small > .fl-col-content {
  -moz-border-radius: 3px;
  /* FF1+ */
  -webkit-border-radius: 3px;
  /* Saf3+, Chrome */
  border-radius: 3px;
  /* Standard. IE9 */
  -webkit-background-clip: padding-box;
}
@media (max-width: 1200px) {
  .community-involvement.campaigns-info-area .fl-col-small > .fl-col-content {
    margin-left: 20px;
  }
  .community-involvement.campaigns-info-area .fl-col-small > .fl-col-content .fl-button {
    padding: 10px !important;
  }
}
.community-involvement.campaigns-info-area .fl-col-small h3 {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .community-involvement.campaigns-info-area .fl-col-small * {
    text-align: center !important;
  }
}
@media (max-width: 768px) {
  .community-involvement.campaigns-info-area .fl-col-group > .fl-col-small .fl-col-content {
    border: 1px solid #dddddd !important;
    padding: 20px !important;
  }
}
.community-involvement.campaigns-info-area .communityBlock .fl-callout-title a span {
  color: #000000;
  font: 500 18px/26px "Roboto",sans-serif;
}
@media (max-width: 768px) {
  .community-involvement.sub-menu-column-type .fl-callout-title, .community-involvement.sub-menu-column-type .fl-callout-text {
    text-align: center;
  }
  .community-involvement.sub-menu-column-type > .fl-row-content-wrap {
    padding: 0;
  }
}
.community-involvement.sub-menu-column-type .fl-callout-title {
  padding-bottom: 20px;
}
.community-involvement.sub-menu-column-type .fl-callout-title span {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
}
.community-involvement.sub-menu-column-type p {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
}
.community-involvement.sub-menu-column-type ul {
  margin: 0 auto !important;
  max-width: 300px;
}
.community-involvement.sub-menu-column-type li {
  height: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .community-involvement.sub-menu-column-type .fl-col-small {
    border-top: 1px solid #E0E0E0 !important;
  }
}
.community-involvement.list-area {
  background-color: #EFEFEF;
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
}
.community-involvement.list-area > .fl-row-content-wrap {
  background-color: none;
  border: none !important;
  margin: 0 auto;
}
.community-involvement.list-area ul {
  margin-left: 15px;
}
.community-involvement.list-area li {
  font: 300 14px/24px "Roboto", sans-serif;
  list-style: disc;
  padding-bottom: 6px;
}

body.page-in-kind-donations #primary .nf-form-cont .nf-form-fields-required,
body.page-in-kind-donations #primary .nf-form-cont .ninja-forms-req-symbol {
  display: none;
}


/*@media (max-width: 768px) {
  .community-involvement.form-area {
    padding-left: 0;
    padding-right: 0;
  }
  .community-involvement.form-area .fl-row-full-width {
    padding-left: 0;
    padding-right: 0;
  }
}
.community-involvement.form-area .ninja-forms-field-error p {
  color: #F00;
  font: 400 12px/24px "Roboto", serif;
  margin: 0;
  padding: 0;
}
.community-involvement.form-area .org-profile.address.state {
  margin-bottom: 10px;
}
.community-involvement.form-area #ninja_forms_field_91_error {
  display: none;
}
.community-involvement.form-area #ninja_forms_field_89_error {
  clear: both;
}
.community-involvement.form-area > .fl-row-content-wrap {
  width: 100%;
}
@media (max-width: 768px) {
  .community-involvement.form-area > .fl-row-content-wrap {
    padding-bottom: 20px;
    padding-top: 0;
    width: 100%;
  }
}
.community-involvement.form-area .ninja-forms-all-fields-wrap .fl-row-content-wrap {
  padding: 0;
}
@media (max-width: 768px) {
  .community-involvement.form-area .ninja-forms-all-fields-wrap .fl-row-content-wrap {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
.community-involvement.form-area .contact-profile-wrap-full,
.community-involvement.form-area .grant-profile-wrap-full,
.community-involvement.form-area .contact-details-wrap-full,
.community-involvement.form-area .channel-contact-wrap-full,
.community-involvement.form-area .channel-relationship-wrap-full {
  background: #efefef none repeat scroll 0 0;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  clear: both;
}
.community-involvement.form-area .nf-desc p {
  color: #339933;
  font: 400 20px/24px "Roboto Slab", serif;
  padding: 20px 0;
  text-align: left;
}
.community-involvement.form-area label {
  font: 400 12px/24px "Roboto", serif;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 5px 0;
}
.community-involvement.form-area .list-radio-wrap span label {
  font: 300 16px/24px "Roboto", serif;
}
@media (max-width: 992px) {
  .community-involvement.form-area .list-radio-wrap > label {
    width: 100%;
  }
}
.community-involvement.form-area .text-wrap label,
.community-involvement.form-area .textarea-wrap label,
.community-involvement.form-area .list-dropdown-wrap label,
.community-involvement.form-area .cf_web_address-wrap label,
.community-involvement.form-area .insperity_employees-wrap label {
  box-sizing: border-box;
  display: inline-block;
  float: left;
  font: 400 12px/24px "Roboto", serif !important;
  padding-right: 30px;
  width: 15%;
}
@media (max-width: 992px) {
  .community-involvement.form-area .text-wrap label,
  .community-involvement.form-area .textarea-wrap label,
  .community-involvement.form-area .list-dropdown-wrap label,
  .community-involvement.form-area .cf_web_address-wrap label,
  .community-involvement.form-area .insperity_employees-wrap label {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .community-involvement.form-area .text-wrap label,
  .community-involvement.form-area .textarea-wrap label,
  .community-involvement.form-area .list-dropdown-wrap label,
  .community-involvement.form-area .cf_web_address-wrap label,
  .community-involvement.form-area .insperity_employees-wrap label {
    width: 100%;
  }
}
.community-involvement.form-area .text-wrap input,
.community-involvement.form-area .text-wrap textarea,
.community-involvement.form-area .textarea-wrap input,
.community-involvement.form-area .textarea-wrap textarea,
.community-involvement.form-area .list-dropdown-wrap input,
.community-involvement.form-area .list-dropdown-wrap textarea,
.community-involvement.form-area .cf_web_address-wrap input,
.community-involvement.form-area .cf_web_address-wrap textarea,
.community-involvement.form-area .insperity_employees-wrap input,
.community-involvement.form-area .insperity_employees-wrap textarea {
  font: 300 16px/24px "Roboto", serif;
  height: 40px;
  margin: 0 0 10px;
  width: 75%;
}
@media (max-width: 768px) {
  .community-involvement.form-area .text-wrap input,
  .community-involvement.form-area .text-wrap textarea,
  .community-involvement.form-area .textarea-wrap input,
  .community-involvement.form-area .textarea-wrap textarea,
  .community-involvement.form-area .list-dropdown-wrap input,
  .community-involvement.form-area .list-dropdown-wrap textarea,
  .community-involvement.form-area .cf_web_address-wrap input,
  .community-involvement.form-area .cf_web_address-wrap textarea,
  .community-involvement.form-area .insperity_employees-wrap input,
  .community-involvement.form-area .insperity_employees-wrap textarea {
    width: 100%;
  }
}
.community-involvement.form-area .text-wrap textarea,
.community-involvement.form-area .textarea-wrap textarea,
.community-involvement.form-area .list-dropdown-wrap textarea,
.community-involvement.form-area .cf_web_address-wrap textarea,
.community-involvement.form-area .insperity_employees-wrap textarea {
  height: 200px !important;
  resize: none;
}
@media (max-width: 992px) {
  .community-involvement.form-area .text-wrap textarea,
  .community-involvement.form-area .textarea-wrap textarea,
  .community-involvement.form-area .list-dropdown-wrap textarea,
  .community-involvement.form-area .cf_web_address-wrap textarea,
  .community-involvement.form-area .insperity_employees-wrap textarea {
    height: 100px;
  }
}
.community-involvement.form-area .text-wrap select,
.community-involvement.form-area .textarea-wrap select,
.community-involvement.form-area .list-dropdown-wrap select,
.community-involvement.form-area .cf_web_address-wrap select,
.community-involvement.form-area .insperity_employees-wrap select {
  margin-left: 0 !important;
}
.community-involvement.form-area .button-profile-wrap-full {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .community-involvement.form-area .button-profile-wrap-full > .fl-row-content-wrap {
    padding-bottom: 0;
    padding-top: 20px;
  }
}
.community-involvement.form-area .third-wrap,
.community-involvement.form-area .ninja-forms-field.third {
  float: left;
  width: 31%;
}
.community-involvement.form-area .third-wrap label,
.community-involvement.form-area .ninja-forms-field.third label {
  float: left;
  padding-right: 5%;
  width: 21%;
}
.community-involvement.form-area .third-wrap input[type="text"],
.community-involvement.form-area .third-wrap select,
.community-involvement.form-area .ninja-forms-field.third input[type="text"],
.community-involvement.form-area .ninja-forms-field.third select {
  float: none;
  width: 70%;
}
.community-involvement.form-area .third-wrap input[type="text"].third,
.community-involvement.form-area .third-wrap select.third,
.community-involvement.form-area .ninja-forms-field.third input[type="text"].third,
.community-involvement.form-area .ninja-forms-field.third select.third {
  width: 70%;
}
.community-involvement.form-area .third-wrap p,
.community-involvement.form-area .ninja-forms-field.third p {
  color: #333333;
  font: 400 12px/24px "Roboto", serif;
  margin: 0;
  padding: 0;
}
.community-involvement.form-area .third-wrap .ninja-forms-field-error p,
.community-involvement.form-area .ninja-forms-field.third .ninja-forms-field-error p {
  color: #F00;
  font: 400 12px/24px "Roboto", serif;
  margin: 0;
  padding: 0;
}
.community-involvement.form-area .label-above label {
  width: 100%;
}
.community-involvement.form-area .label-above input[type="text"] {
  clear: left;
  width: 100%;
}
.community-involvement.form-area .label-above textarea {
  clear: left;
  width: 90%;
}
.community-involvement.form-area .gf_right_half-wrap,
.community-involvement.form-area .gf_left_half-wrap,
.community-involvement.form-area .half-right-wrap,
.community-involvement.form-area .half-left-wrap {
  float: left;
  width: 48%;
}
.community-involvement.form-area .gf_right_half-wrap.list-dropdown-wrap,
.community-involvement.form-area .gf_left_half-wrap.list-dropdown-wrap,
.community-involvement.form-area .half-right-wrap.list-dropdown-wrap,
.community-involvement.form-area .half-left-wrap.list-dropdown-wrap {
  margin-right: 50%;
}
.community-involvement.form-area .gf_right_half-wrap textarea,
.community-involvement.form-area .gf_right_half-wrap select,
.community-involvement.form-area .gf_left_half-wrap textarea,
.community-involvement.form-area .gf_left_half-wrap select {
  width: 80%;
}
.community-involvement.form-area .gf_right_half-wrap,
.community-involvement.form-area .half-right-wrap {
  margin-left: 4%;
}
.community-involvement.form-area .half-right-wrap.label-left label,
.community-involvement.form-area .half-left-wrap.label-left label {
  padding-right: 30px;
  width: 21%;
}
.community-involvement.form-area .half-right-wrap.label-left input,
.community-involvement.form-area .half-left-wrap.label-left input {
  width: 59%;
}
.community-involvement.form-area .normal-text p {
  color: #333333;
  font: 300 16px/24px "Roboto", serif;
}
.community-involvement.form-area .email-wrap {
  width: 92%;
}
.community-involvement.form-area .email-wrap input {
  width: 88%;
}
.community-involvement.form-area .email-wrap label {
  width: 10.5%;
}
*/
.community-involvement .reports .fl-button {
  margin-left: 20px;
  padding: 4px 50px 4px 20px !important;
}
.community-involvement .reports .fl-button:hover {
  background: #439539 !important;
  color: #fff !important;
  text-decoration: none !important;
}
@media (max-width: 768px) {
  .community-involvement .reports .fl-callout-photo {
    text-align: center;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .community-involvement .reports .fl-callout-content {
    text-align: center;
    width: 100% !important;
  }
}
.community-involvement .reports .fl-callout-content a.fl-button {
  margin: 0;
  width: 200px;
}

@media (max-width: 768px) {
  .responsibilityBlock ul li {
    list-style-type: none !important;
  }
}
.responsibilityBlock .fl-callout-title {
  display: none;
  margin: 0;
}

.home .fl-row-content {
  margin-right: auto;
  margin-left: auto;
  max-width: inherit;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .home .fl-row-content {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .home .fl-row-content {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .home .fl-row-content {
    width: 1060px;
  }
}
.home .banner {
  height: auto;
  padding: 0;
}
.home .banner .fl-module-content {
  margin-left: 0;
}
.home .banner .fl-button span {
  float: left;
}
.home .banner .fl-button i {
  float: right;
  padding-top: 1px;
}
.home .banner h1 {
  color: #fff;
  font: 300 44px/54px "Roboto Slab",sans-serif;
  max-width: 454px;
}
@media (max-width: 560px) {
  .home .banner h1 {
    font: 300 27px/45px "Roboto Slab",sans-serif;
  }
}
.home .banner .fl-col-group {
  float: left;
  width: 50%;
}
@media (max-width: 992px) {
  .home .banner .fl-col-group:first-child {
    width: 100%;
  }
  .home .banner .fl-col-group:first-child * {
    margin: 0 auto;
    text-align: center;
  }
  .home .banner .fl-col-group:nth-child(n+2) {
    display: none;
  }
}
@media (max-width: 992px) {
  .home .banner .fl-row-content-wrap {
    padding: 30px 0;
  }
}
.home .banner .banner-right {
  float: right;
  height: 480px;
  max-width: 409px;
  position: relative;
  width: 1000%;
}
.home .banner .banner-icon {
  background: url(../images/sprites/banner-sprite.png);
  position: absolute;
}
.home .banner .banner-icon.spider {
  background: url(../images/sprites/banner-sprite.png) -119px 0;
  height: 100%;
  width: 100%;
}
.home .banner .banner-icon.man {
  width: 120px;
  height: 304px;
  left: 145px;
  top: 93px;
}
.home .banner .banner-icon.icon-one {
  background-position: 0 -305px;
  height: 32px;
  left: 73px;
  top: 12px;
  width: 34px;
}
.home .banner .banner-icon.icon-two {
  background-position: 0 -337px;
  height: 33px;
  left: 22px;
  top: 143px;
  width: 30px;
}
.home .banner .banner-icon.icon-three {
  background-position: 0 -370px;
  height: 33px;
  left: 35px;
  top: 265px;
  width: 31px;
}
.home .banner .banner-icon.icon-four {
  background-position: 0 -403px;
  height: 33px;
  left: 19px;
  top: 354px;
  width: 28px;
}
.home .banner .banner-icon.icon-five {
  background-position: 0 -436px;
  height: 30px;
  left: 135px;
  top: 436px;
  width: 34px;
}
.home .banner .banner-icon.icon-six {
  background-position: -34px -335px;
  height: 38px;
  left: 327px;
  top: 21px;
  width: 34px;
}
.home .banner .banner-icon.icon-seven {
  background-position: -34px -373px;
  height: 33px;
  left: 319px;
  top: 152px;
  width: 35px;
}
.home .banner .banner-icon.icon-eight {
  background-position: -34px -407px;
  height: 35px;
  left: 358px;
  top: 244px;
  width: 34px;
}
.home .banner .banner-icon.icon-nine {
  background-position: -34px -442px;
  height: 30px;
  left: 338px;
  top: 380px;
  width: 39px;
}
.home .banner .banner-icon.icon-ten {
  background-position: -34px -305px;
  height: 30px;
  left: 242px;
  top: 433px;
  width: 34px;
}
.home .cf-home-text h2 {
  color: #006595;
  font-size: 30px;
  font-weight: 300;
  line-height: 44px;
  margin: 0 auto !important;
  max-width: 75%;
  text-align: center;
}
@media (max-width: 992px) {
  .home .cf-home-text h2 {
    max-width: 100%;
  }
}
.home .cf-circular-row {
  overflow: hidden;
}
.home .cf-circular-row .cf-circle-link a {
  color: #fff;
}
.home .cf-circular-row .hr-line hr {
  margin: 0 auto 45px;
  max-width: 800px;
}
@media (max-width: 992px) {
  .home .cf-circular-row .fl-row-content {
    padding-left: 0;
    padding-right: 0;
  }
}
.home .cf-cirlce {
  background: rgba(0, 38, 73, 0.8);
  border-radius: 500px;
  margin: -150px auto;
  width: 100%;
  color: #fff;
  text-align: center;
  position: relative;
  padding: 210px 0;
}
@media (max-width: 992px) {
  .home .cf-cirlce {
    background: #002649;
    border-radius: 0;
  }
}
.home .cf-cirlce h2 {
  padding-bottom: 50px !important;
  padding-top: 7px !important;
}
.home .cf-cirlce .fl-heading-text {
  color: #00aae7;
  font: 300 32px/32px "Roboto Slab",serif;
}
.home .cf-cirlce .fl-rich-text p {
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  margin: 0 auto 45px;
  max-width: 65%;
  padding: 0 5%;
}
@media (max-width: 768px) {
  .home .cf-cirlce .fl-rich-text p {
    max-width: 80%;
  }
}
@media (max-width: 560px) {
  .home .cf-cirlce .fl-rich-text p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .home .cf-cirlce .fl-rich-text {
    margin: 0 auto;
    max-width: 90%;
    width: 90%;
  }
}
@media (max-width: 560px) {
  .home .cf-cirlce .fl-rich-text {
    max-width: 100%;
    width: 100%;
  }
}
.home .cf-circle-list {
  text-align: center;
}
.home .cf-circle-list h4 {
  margin-bottom: 35px;
  text-align: center;
}
.home .cf-circle-list h4 a {
  color: #00aae7;
  font: 400 22px/22px "Roboto",sans-serif;
}
.home .cf-circle-list ul {
  margin: 0 auto;
  max-width: 65%;
}
.home .cf-circle-list li {
  float: left;
  font-weight: 300;
  padding-bottom: 10px;
  text-align: center;
  width: 50%;
}
.home .cf-circle-list li:last-child {
  padding-bottom: 45px;
}
@media (max-width: 768px) {
  .home .cf-circle-list li {
    width: 100%;
  }
}
.home .cf-circle-list .fl-button-wrap {
  margin-bottom: 35px;
  text-align: center;
}
.home .cf-circle-list .fl-button span {
  float: left;
}
.home .cf-circle-list .fl-button i {
  float: right;
}
.home .cf-circle-list .fl-callout-button {
  margin-bottom: 35px;
}
.home .cf-individual-solutions {
  color: #006595;
}
.home .cf-individual-solutions h2 {
  color: #006595;
  font: 300 28px/28px "Roboto Slab",serif;
  padding-bottom: 30px !important;
  text-align: center;
}
.home .cf-individual-solutions p {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  margin: 0 auto;
  max-width: 70%;
  padding-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .home .cf-individual-solutions p {
    max-width: 90%;
    width: 90%;
  }
}
.home .cf-individual-solutions .fl-callout .fl-callout-photo {
  display: inline-block;
  max-width: 56px;
  padding-right: 10px;
  width: 20%;
}
@media (max-width: 1200px) {
  .home .cf-individual-solutions .fl-callout .fl-callout-photo {
    width: 14%;
  }
}
@media (max-width: 768px) {
  .home .cf-individual-solutions .fl-callout .fl-callout-photo {
    width: 15%;
  }
}
.home .cf-individual-solutions .fl-callout .fl-callout-photo .fl-photo {
  text-align: left;
}
.home .cf-individual-solutions .fl-callout .fl-callout-content {
  display: inline-block;
  width: 80%;
}
@media (max-width: 1200px) {
  .home .cf-individual-solutions .fl-callout .fl-callout-content {
    width: 86%;
  }
}
@media (max-width: 768px) {
  .home .cf-individual-solutions .fl-callout .fl-callout-content {
    width: 75%;
  }
}
.home .cf-individual-solutions .fl-callout .fl-callout-content .fl-callout-title {
  display: none;
}
.home .cf-individual-solutions .fl-callout .fl-callout-content .fl-callout-cta-link {
  font: 400 16px/24px "Roboto Slab",serif;
}
.home .cf-individual-solutions .fl-callout .fl-callout-content .fl-callout-cta-link:hover {
  color: #006595;
}
@media (max-width: 560px) {
  .home .cf-individual-solutions .fl-module-content {
    margin: 20px 0;
  }
}
.home .cf-testimonials h2 {
  font: 300 28px/42px "Roboto Slab",serif;
  margin: 0 auto !important;
  text-align: center;
  width: 85%;
}
@media (max-width: 560px) {
  .home .cf-testimonials h2 {
    width: 100%;
  }
}
.home .cf-testimonials .fl-slide-foreground {
  position: relative;
}
.home .cf-testimonials .fl-slide-content-wrap,
.home .cf-testimonials .fl-slide-photo-wrap {
  position: absolute;
}
.home .cf-testimonials .fl-slide-content-wrap {
  left: 30%;
  width: 70%;
}
.home .cf-testimonials .fl-slide-photo-wrap {
  left: 0;
  width: 30%;
}
.home .cf-testimonials .fl-slide-photo-wrap .fl-slide-photo {
  margin-right: 0;
}
.home .cf-testimonials .fl-slide-photo-wrap .fl-slide-photo img {
  float: right;
}
.home .cf-testimonials .quote {
  color: #333;
  float: right;
  font: 400 20px/24px "Roboto",serif;
  margin-top: 10px;
  max-width: 550px;
  text-align: center;
}
.home .cf-testimonials .quote span {
  color: #333;
  display: block;
  font-size: 16px;
  margin-top: 10px;
}
.home .cf-testimonials .fl-content-slider img {
  float: left;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .home .cf-testimonials .fl-content-slider .left-test {
    float: left;
    width: 100%;
  }
  .home .cf-testimonials .fl-content-slider .left-test > div {
    text-align: center;
  }
  .home .cf-testimonials .fl-content-slider .left-test > div img {
    float: none;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .home .cf-testimonials .fl-content-slider .quote-holder {
    float: left;
    width: 100%;
  }
  .home .cf-testimonials .fl-content-slider .quote-holder .quote {
    float: none;
  }
}
@media (max-width: 992px) {
  .home .cf-testimonials .fl-content-slider .fl-slide-mobile-photo {
    display: block;
    width: 100%;
  }
  .home .cf-testimonials .fl-content-slider .fl-slide-mobile-photo img {
    float: none;
    margin: 0 auto;
  }
  .home .cf-testimonials .fl-content-slider .fl-slide-content-wrap {
    left: 0;
    position: relative;
    width: 100%;
  }
  .home .cf-testimonials .fl-content-slider .fl-slide-content-wrap .fl-slide-content {
    background: none;
  }
  .home .cf-testimonials .fl-content-slider .fl-slide-content-wrap .quote {
    float: none;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }
}
.home .cf-testimonials .cf-homepage-slider {
  font-size: 16px;
  margin: 0 auto;
  overflow: hidden;
  padding: 60px 0;
  position: relative;
}
@media (max-width: 992px) {
  .home .cf-testimonials .cf-homepage-slider {
    padding: 20px 0;
  }
}
@media (max-width: 560px) {
  .home .cf-testimonials .cf-homepage-slider .fl-module-content {
    margin: 20px 0;
  }
  .home .cf-testimonials .cf-homepage-slider .bx-viewport {
    padding-left: 4%;
  }
}
.home .cf-mission-row {
  background: #00aae7;
  color: #fff;
  min-height: 420px;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  z-index: 300;
}
.home .cf-mission-row > .fl-row-content-wrap {
  padding-top: 70px;
}
@media (max-width: 992px) {
  .home .cf-mission-row > .fl-row-content-wrap {
    background: none;
  }
}
@media (max-width: 992px) {
  .home .cf-mission-row .city-col {
    display: none;
  }
  .home .cf-mission-row .fl-col-small {
    width: 100% !important;
  }
  .home .cf-mission-row .fl-col-small * {
    text-align: center !important;
  }
  .home .cf-mission-row .fl-col-small p {
    float: none;
    margin: 0 auto;
    max-width: 80%;
    width: 80%;
  }
}
.home .cf-mission-row h3 {
  color: #fff;
  font: 300 28px/42px "Roboto Slab",serif;
  margin: 0 auto !important;
  text-align: center;
  width: 65%;
}
.home .cf-mission-row p {
  max-width: 350px;
  float: right;
  margin-top: 40px;
  font: 300 18px/28px "Roboto", sans-serif;
}
.home .cf-mission-row p a {
  display: block;
  margin-top: 30px;
  text-decoration: underline;
  color: #fff;
  font-weight: 300;
}
.home .cf-mission-row p a:hover {
  text-decoration: none;
}
.home .cf-mission-row .cityscape {
  position: relative;
  width: 540px;
  height: 297px;
  float: left;
  margin-left: 20px;
}
.home .cf-mission-row .cityscape .icon {
  background: url(../images/sprites/city-sprite.png);
  position: absolute;
}
.home .cf-mission-row .cityscape .icon.light-blue-bldg-small {
  background-position: 0 -330px;
  height: 234px;
  left: 18px;
  top: 106px;
  width: 95px;
}
.home .cf-mission-row .cityscape .icon.modern-bldg {
  background-position: 0 -244px;
  height: 86px;
  left: -5px;
  top: 250px;
  width: 110px;
  z-index: 10;
}
.home .cf-mission-row .cityscape .icon.dark-blue-bldg-small {
  background-position: -95px -371px;
  height: 193px;
  left: 86px;
  top: 143px;
  width: 92px;
  z-index: 10;
}
.home .cf-mission-row .cityscape .icon.medium-tree {
  background-position: 0 -156px;
  height: 88px;
  left: 45px;
  top: 248px;
  width: 65px;
  z-index: 11;
}
.home .cf-mission-row .cityscape .icon.house {
  background-position: -110px -254px;
  height: 117px;
  left: 191px;
  top: 219px;
  width: 79px;
}
.home .cf-mission-row .cityscape .icon.small-tree {
  background-position: -120px -82px;
  height: 47px;
  left: 170px;
  top: 289px;
  width: 31px;
  z-index: 13;
}
.home .cf-mission-row .cityscape .icon.skinny-bldg {
  background-position: -65px -107px;
  height: 137px;
  left: 274px;
  top: 199px;
  width: 42px;
  z-index: 11;
}
.home .cf-mission-row .cityscape .icon.mound {
  background-position: 0 -91px;
  height: 14px;
  left: 292px;
  top: 322px;
  width: 56px;
  z-index: 12;
}
.home .cf-mission-row .cityscape .icon.small-house {
  background-position: 0 -105px;
  height: 51px;
  left: 303px;
  top: 285px;
  width: 45px;
}
.home .cf-mission-row .cityscape .icon.tall-tree {
  background-position: -107px -129px;
  height: 125px;
  left: 321px;
  top: 210px;
  width: 65px;
  z-index: 11;
}
.home .cf-mission-row .cityscape .icon.dark-blue-bldg-tall {
  background-position: -189px -302px;
  height: 262px;
  left: 362px;
  top: 74px;
  width: 94px;
  z-index: 10;
}
.home .cf-mission-row .cityscape .icon.light-blue-bldg-tall {
  background-position: -189px 0;
  height: 302px;
  left: 440px;
  top: 34px;
  width: 100px;
}
.home .cf-guide h2 {
  color: #006595;
  font: 300 28px/42px "Roboto Slab",serif;
  margin: 0 auto -30px !important;
  text-align: center;
}
.home .cf-guide .fl-rich-text img {
  margin-top: -20px;
}
.home .cf-guide h3 {
  padding: 0;
}
.home .cf-guide h3 span a {
  color: #439538;
  font-size: 18px;
  font-weight: 500;
}
.home .cf-guide p {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  margin: 15px 0 !important;
  padding: 0 !important;
}
@media (max-width: 768px) {
  .home .cf-guide .fl-col-group .fl-col {
    width: 100%;
  }
  .home .cf-guide .fl-col-group .fl-col-small {
    display: none;
  }
}
.home .cf-guide .fl-col-group .fl-col-small {
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 20px;
}
.home .cf-guide .fl-col-group .cf-more-resources a {
  font-size: 14px;
  text-decoration: underline;
}
.home .cf-guide .fl-col-group .cf-more-resources a:hover {
  text-decoration: none;
}
.home .cf-guide .fl-col-group .cf-more-resources .fl-module-content {
  margin: 10px 20px;
}
.home .cf-guide .fl-button span {
  float: left;
}
.home .cf-guide .fl-button i {
  float: right;
}
.home .cf-guide .fl-callout-text-wrap {
  margin-bottom: -20px;
}
.home .cf-guide .fl-col-group:nth-child(2) {
  margin: 0 auto;
  max-width: 650px;
}
.home .cf-guide .fl-module-callout .fl-module-content {
  margin-right: 0;
}
.home .cf-guide .fl-col-small .fl-module-content {
  margin: 0 20px;
}
.home .panels .marketing-panel {
  max-height: 170px;
  width: 100%;
}
.home .panels .marketing-panel a {
  display: inline-block;
  width: 100%;
}
.home .panels .marketing-panel img {
  width: 100%;
}
.home .panels .details {
  background: #d6d6d6 none repeat scroll 0 0;
  color: #333;
  font-size: 14px;
  height: 139px;
  line-height: 22px;
  min-height: 221px;
  position: relative;
  width: 100%;
  z-index: 100;
}
.home .panels .details .title-holder {
  background: #efefef none repeat scroll 0 0;
  border-top: 1px solid #d6d6d6;
  color: #333;
  font-family: "Roboto Slab",sans-serif;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.home .panels .details p {
  font-size: 14px;
  margin-bottom: 0;
  margin-top: -10px;
  padding: 0 16px;
}
.home .panels .details a {
  color: #333;
  display: block;
  float: right;
  font-size: 14px;
  margin-top: 0;
  padding-right: 16px;
}
.home .panels .details .fa-caret-right {
  color: #00aae7;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .home .panels .details .title-holder {
    line-height: normal;
  }
  .home .panels .details p {
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .home .panels .fl-module-content {
    margin-left: 0;
    margin-right: 0;
  }
  .home .panels .fl-module-content .details {
    margin-top: -10px;
  }
}
.home .panels .the-panel {
  height: 220px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .home .panels .fl-col-small {
    width: 100% !important;
    max-width: 500px;
  }
  .home .panels .the-panel {
    height: auto;
    overflow: unset;
  }
  .home .panels .marketing-panel {
    max-height: inherit;
    width: 100%;
  }
}

.channel-program.banner {
  background: url("../images/channel-bg.png") repeat scroll 0 0;
}
.channel-program.banner .fl-photo {
  text-align: right;
}
.channel-program.banner .pretitle {
  color: #fff;
  font: 300 26px/40px "Roboto", sans-serif;
}
.channel-program.banner .title {
  color: #fff;
  font: 500 44px/50px "Roboto Slab", serif;
  margin-bottom: 10px;
}
.channel-program.banner .subtitle {
  color: #fff;
  font: 300 24px/32px "Roboto", sans-serif;
}
.channel-program.banner .fl-module-content {
  margin: 30px 0 0;
}
@media (max-width: 768px) {
  .channel-program.banner .fl-row-content-wrap {
    padding-bottom: 0;
    padding-top: 10px;
  }
}
@media (max-width: 768px) {
  .channel-program.banner .fl-heading-text {
    display: inline-block;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .channel-program.banner .fl-col:nth-child(2) {
    display: none;
  }
  .channel-program.banner .fl-col {
    margin-bottom: 40px;
    margin-top: 20px;
    text-align: center;
    width: 100%;
  }
}
.channel-program.message .fl-callout-title,
.channel-program.message .fl-callout-title, .channel-program.list-area .fl-callout-title,
.channel-program.list-area .fl-callout-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .channel-program.message .fl-callout-title,
  .channel-program.message .fl-callout-title, .channel-program.list-area .fl-callout-title,
  .channel-program.list-area .fl-callout-title {
    text-align: center;
  }
}
.channel-program.message .fl-callout-title span,
.channel-program.message .fl-callout-title span, .channel-program.list-area .fl-callout-title span,
.channel-program.list-area .fl-callout-title span {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
}
.channel-program.message p, .channel-program.list-area p {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px !important;
}
@media (max-width: 768px) {
  .channel-program.message p, .channel-program.list-area p {
    text-align: center;
  }
}
.channel-program.message ul, .channel-program.list-area ul {
  color: #339933;
  font: 500 18px/24px "Roboto", sans-serif;
  margin-left: 0;
  padding-bottom: 5px;
}
.channel-program.message ul li, .channel-program.list-area ul li {
  color: #333;
  font-size: 20px;
  font-weight: 300;
  list-style-type: disc;
  margin-left: 16px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .channel-program.message ul li, .channel-program.list-area ul li {
    list-style-type: none;
    text-align: center;
  }
}
.channel-program.message .fl-module-content, .channel-program.list-area .fl-module-content {
  margin: 30px 0;
}
.channel-program.message .fl-button, .channel-program.list-area .fl-button {
  padding: 10px 50px !important;
}
@media (max-width: 768px) {
  .channel-program.message .fl-button-wrap, .channel-program.list-area .fl-button-wrap {
    text-align: center;
  }
}
.channel-program.list-area {
  background-color: #EFEFEF;
  border-bottom: none;
  border-top: 1px solid #E0E0E0;
}
.channel-program.list-area > div {
  border-bottom: none !important;
  border-top: none !important;
  background: none;
}
.channel-program.banner-blue {
  background: #006695;
}
.channel-program.banner-blue h2.fl-heading {
  text-align: center;
}
.channel-program.banner-blue h2.fl-heading span {
  color: #fff;
  font: 500 28px/34px "Roboto Slab", serif;
  text-transform: uppercase;
}
.channel-program.banner-blue h3.fl-heading span {
  color: #fff !important;
  font: 400 28px/36px "Roboto Slab", serif;
}
.channel-program.banner-blue .blue-text-area {
  margin: 0 auto;
  max-width: 820px;
}
.channel-program.banner-blue .blue-text-area .fl-module-content {
  margin: 0;
}
.channel-program.banner-blue .blue-text-area p {
  color: #fff !important;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
}
.channel-program.banner-blue .blue-text-area p.subtitle {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
}
.channel-program.channelServices {
  background-color: #EFEFEF;
  border-bottom: 1px solid #E0E0E0;
  border-top: none;
  padding-bottom: 10px;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .channel-program.channelServices {
    display: none;
  }
}
.channel-program.channelServices > div {
  border-bottom: none !important;
  border-top: none !important;
  background: none;
}
.channel-program.channelServices img {
  display: block;
  margin: 10px auto 0;
  max-height: 38px;
  max-width: 40px;
}
.channel-program.channelServices .fl-photo-caption {
  color: #333;
  font: 400 16px/20px "Roboto Slab", serif;
  margin-bottom: 0;
  padding: 10px 0;
  text-align: center;
}
.channel-program.channelServices .fl-row-content-wrap {
  padding: 0;
}
.channel-program.channelServices .fl-module-content {
  margin-bottom: 0;
  margin-top: 0;
}
.channel-program.channelServices.fixed-channel-menu {
  position: fixed;
  top: 111px;
  z-index: 100;
}
.channel-program.channelServices.fixed-channel-menu-admin {
  position: fixed;
  top: 143px;
  z-index: 100;
}
.channel-program.channelAccounting h2.fl-callout-title {
  padding-top: 5px;
  background: url("../images/channel-icon1.svg") no-repeat 0 0;
  background-size: 30px 35px;
  padding-left: 50px;
}
.channel-program.channelBanking h2.fl-callout-title {
  padding-top: 5px;
  background: url("../images/channel-icon2.svg") no-repeat 0 0;
  background-size: 30px 35px;
  padding-left: 50px;
}
.channel-program.channelChambers h2.fl-callout-title {
  padding-top: 5px;
  background: url("../images/channel-icon3.svg") no-repeat 0 0;
  background-size: 35px 35px;
  padding-left: 50px;
}
.channel-program.channelTechnology h2.fl-callout-title {
  padding-top: 5px;
  background: url("../images/channel-icon4.svg") no-repeat 0 0;
  background-size: 40px 35px;
  padding-left: 50px;
}
.channel-program.channelProfessional h2.fl-callout-title {
  padding-top: 5px;
  background: url("../images/channel-icon5.svg") no-repeat 0 0;
  background-size: 30px 35px;
  padding-left: 50px;
}

article .expense-management ul {
  font: 300 16px/24px "Roboto", sans-serif;
  margin: 0 0 0 13px;
}
article .expense-management ul li {
  list-style-type: disc;
  margin: 0 0 5px !important;
}

.expense-management h3.fl-callout-title span {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 10px;
}
.expense-management h2.fl-heading {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
  margin-bottom: 20px;
}
.expense-management a {
  font: 400 16px/24px "Roboto", sans-serif;
}
.expense-management .to-services {
  color: #439538;
  display: block;
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 400;
  margin-top: 25px;
  text-decoration: none !important;
}
.expense-management .to-services .fl-html {
  text-align: center;
}
.expense-management p.subtitle {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
}
.expense-management.gainVisibility .fl-col-small .fl-photo-content {
  background: #1baae1 none repeat scroll 0 0;
  border-radius: 250px;
  height: 100px;
  margin: 20px auto 25px;
  padding-top: 20px;
  width: 100px;
}
.expense-management.gainVisibility .fl-col-small:first-child img {
  height: 55px !important;
}
.expense-management.gainVisibility .fl-col-small:nth-child(2) img {
  height: 53px !important;
}
.expense-management.gainVisibility .fl-col-small:nth-child(3) img {
  height: 56px !important;
}
.expense-management.gainVisibility .fl-col-small:nth-child(4) img {
  height: 58px !important;
}
.expense-management.gainVisibility p {
  margin-bottom: 0;
}
.expense-management.gainVisibility .to-services {
  margin-bottom: 20px;
  margin-top: -30px;
}
.expense-management.video-area {
  background-color: #EFEFEF;
  border-bottom: 1px solid #E0E0E0;
  border-top: 1px solid #E0E0E0;
}
.expense-management.video-area > div {
  border-bottom: none !important;
  border-top: none !important;
  background: none;
}
.expense-management.video-area h1.fl-heading {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
  margin-bottom: 20px;
  margin-top: 50px;
  text-align: center;
}
@media (max-width: 1200px) {
  .expense-management.video-area .fl-col-small {
    width: 100% !important;
  }
  .expense-management.video-area .fl-col-small:first-child .fl-col-content {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .expense-management.video-area .fl-col-small {
    max-width: 100%;
    width: 100% !important;
  }
}
.expense-management.applicationIndustries img {
  height: 77px !important;
}
.expense-management.expenseSupport h3.fl-callout-title {
  display: none;
}
.expense-management.expenseSupport .fl-col-group:nth-child(2) {
  margin: 0 auto;
  max-width: 500px;
}
.expense-management.expenseSupport .fl-col-group:nth-child(2) .fl-col-small .fl-callout-photo {
  display: inline-block;
  float: left;
  width: 85px;
}
@media (max-width: 768px) {
  .expense-management.expenseSupport .fl-col-group:nth-child(2) .fl-col-small .fl-callout-photo {
    width: 100%;
  }
}
.expense-management.expenseSupport .fl-col-group:nth-child(2) .fl-col-small .fl-callout-content {
  display: inline-block;
  float: left;
  width: 148px;
}
@media (max-width: 768px) {
  .expense-management.expenseSupport .fl-col-group:nth-child(2) .fl-col-small .fl-callout-content {
    margin-bottom: 30px;
    width: 100%;
  }
}
.expense-management.expenseSupport h2.fl-heading {
  padding-top: 40px !important;
  padding-bottom: 30px !important;
}
.expense-management.expenseSupport .fl-col-group:nth-child(3) h2.fl-heading {
  padding-bottom: 0 !important;
  margin-bottom: -30px !important;
}
.expense-management.operationHours .fl-col-group:nth-child(2) .fl-col-content {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
}
.expense-management.operationHours .fl-module-content {
  margin: 0;
}
.expense-management.operationHours .fl-col-group:first-child {
  margin: 0 auto;
  max-width: 450px;
}
.expense-management.expenseSupport h2 {
  margin-top: 40px !important;
}
.expense-management.expenseSupport p {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
}
.expense-management.softwareSection {
  padding-bottom: 40px;
}
.expense-management.softwareSection .fl-row-content {
  max-width: 520px;
}
.expense-management.softwareSection h3.fl-callout-title {
  font-weight: 400;
  font-size: 18px;
  display: block;
  margin-top: 0px;
  padding-bottom: 0 !important;
}
.expense-management.softwareSection p {
  padding-bottom: 5px !important;
}
.expense-management.softwareSection p span {
  font-size: 30px;
  line-height: 36px;
  font-family: "Roboto Slab", serif;
  font-weight: 500;
  margin-bottom: -25px;
}
.expense-management.softwareSection .fl-button-wrap a {
  background: #509630;
  border-right: 2px solid #267533;
  border-bottom: 2px solid #267533;
  border-top: 0;
  border-left: 0;
}
.expense-management.softwareSection .fl-button-wrap a span {
  font: 500 18px/26px "Roboto", sans-serif !important;
}

.expense-management.video-area p {
  margin: 0 !important;
  padding: 0 !important;
}
.expense-management.video-area h3 span,
.expense-management.video-area h2 span {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
}

@media (max-width: 992px) {
  .energyExpense .fl-callout-content {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .energyExpense .fl-callout-content,
  .energyExpense .fl-callout-photo {
    margin-right: 0;
    max-width: 100% !important;
    text-align: center;
    width: 100% !important;
  }
  .energyExpense .fl-callout-content li,
  .energyExpense .fl-callout-photo li {
    list-style-type: none !important;
  }
}

.manageExpense .fl-col-group:nth-child(3) .fl-col {
  display: none;
}
.manageExpense .fl-photo-content {
  background: #1baae1 none repeat scroll 0 0;
  border-radius: 250px;
  display: block;
  height: 100px;
  margin: 20px auto 25px;
  width: 100px;
}
.manageExpense .fl-photo-content img {
  margin-top: 17px;
  width: 60% !important;
}

.health-reform-boxes .fl-photo-content {
  width: 100%;
}
.health-reform-boxes .fl-photo-content img {
  width: 100% !important;
}

.page-orgplus-realtime .fa-close {
  cursor: pointer;
}
.page-orgplus-realtime #comparison {
  color: #333;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 2.25;
}
.page-orgplus-realtime #comparison .comparison-edition {
  color: #FFF;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-top: 0;
  min-height: 40px;
  padding: 0 0 10px;
}
.page-orgplus-realtime #comparison .comparison-colhead-express .rate,
.page-orgplus-realtime #comparison .comparison-colhead-pro .rate {
  font-family: 'Roboto Slab', serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding: 3px;
}
.page-orgplus-realtime #comparison .comparison-colhead-express .small,
.page-orgplus-realtime #comparison .comparison-colhead-pro .small {
  font-family: Roboto, sans-serif;
  font-size: 12px;
  line-height: 1;
}
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button {
  border-radius: 3px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto 20px;
  padding: 10px 10%;
  text-align: center;
  text-transform: uppercase;
  width: auto;
}
@media (max-width: 768px) {
  .page-orgplus-realtime .orgplus-realtime-express-button,
  .page-orgplus-realtime .orgplus-realtime-pro-button {
    width: 100%;
  }
  .page-orgplus-realtime .orgplus-realtime-express-button .fl-module-content,
  .page-orgplus-realtime .orgplus-realtime-pro-button .fl-module-content {
    margin-left: 0;
    margin-right: 0;
  }
}
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:link, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:visited {
  background-color: #FFF;
  border: 1px solid #006595;
}
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button .fl-button-text, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:link,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:link .fl-button-text, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:visited,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:visited .fl-button-text {
  color: #006595;
}
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:link.active, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:visited.active, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:hover, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:active, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:focus {
  background-color: #006695;
}
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:link.active,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:link.active .fl-button-text, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:visited.active,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:visited.active .fl-button-text, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:hover,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:hover .fl-button-text, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:active,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:active .fl-button-text, .page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:focus,
.page-orgplus-realtime .orgplus-realtime-express-button a.fl-button:focus .fl-button-text {
  color: #FFF;
}
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:link, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:visited {
  background-color: #FFF;
  border: 1px solid #419639;
}
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button .fl-button-text, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:link,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:link .fl-button-text, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:visited,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:visited .fl-button-text {
  color: #419639;
}
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:link.active, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:visited.active, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:hover, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:active, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:focus {
  background-color: #419639;
}
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:link.active,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:link.active .fl-button-text, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:visited.active,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:visited.active .fl-button-text, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:hover,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:hover .fl-button-text, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:active,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:active .fl-button-text, .page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:focus,
.page-orgplus-realtime .orgplus-realtime-pro-button a.fl-button:focus .fl-button-text {
  color: #FFF;
}
.page-orgplus-realtime a.compare {
  display: block;
  margin: 20px 0;
}
.page-orgplus-realtime .box {
  border: 1px solid #DDDDDD;
  border-radius: 3px;
  box-shadow: 0 0 170px rgba(0, 0, 0, 0.1) inset;
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
  margin: 0 auto;
  padding: 6% 0 6% 6%;
}
@media (max-width: 768px) {
  .page-orgplus-realtime .box {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .page-orgplus-realtime .box .fl-callout-photo {
    display: none;
  }
}
.page-orgplus-realtime .box .fl-callout-photo .fl-photo {
  text-align: right;
}
.page-orgplus-realtime .box p,
.page-orgplus-realtime .box li {
  font-size: 18px;
}
@media (max-width: 768px) {
  .page-orgplus-realtime .box li {
    text-align: center;
  }
}
.page-orgplus-realtime .box h2 {
  color: #00ABE8;
  font-family: "Roboto Slab", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  padding-bottom: 10px;
  padding-top: 15px;
  text-align: left;
}
@media (max-width: 768px) {
  .page-orgplus-realtime .box h2 {
    text-align: center;
  }
}
.page-orgplus-realtime .box h3 {
  color: #006595;
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 5px;
  text-align: left;
}
@media (max-width: 768px) {
  .page-orgplus-realtime .box h3 {
    text-align: center;
  }
}
.page-orgplus-realtime .box p {
  margin-bottom: 25px;
  margin-top: 25px;
}
.page-orgplus-realtime .box p:first-child {
  margin-bottom: 15px !important;
}
.page-orgplus-realtime .box p strong {
  font-size: 20px;
  font-weight: 400;
}
.page-orgplus-realtime .box .button.yellow {
  margin-right: 20px;
}
@media (max-width: 1025px) {
  .page-orgplus-realtime .box .button.yellow {
    margin-bottom: 15px;
    margin-right: 10px;
  }
}

.page-locations .locationBlock .fl-rich-text p {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 0;
}
.page-locations .locationBlock .fl-html a {
  display: block;
  padding: 5px 0;
  text-align: center;
}
.page-locations .locationBlock a {
  color: #337ab7;
  font: 400 16px/24px "Roboto", sans-serif;
}
@media (max-width: 992px) {
  .page-locations .locationBlock .fl-col:not(.fl-col-small) {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .page-locations .locationBlock .fl-col:not(.fl-col-small) {
    padding-left: 0px;
  }
}
@media (max-width: 768px) {
  .page-locations .locationBlock .fl-col-small .fl-module-content {
    margin-bottom: 0px;
    margin-top: 0px;
  }
}
.page-locations .bottom-row {
  background: #efefef;
  border-top: 1px solid #d5d2d2;
}
.page-locations .bottom-row > .fl-row-content-wrap {
  background: #efefef;
  border-top: none;
}
.page-locations .bottom-row h3 span {
  color: #333;
  font: 400 20px/36px "Roboto Slab", serif;
  margin-bottom: 5px;
}
.page-locations .bottom-row h4.subtitle {
  color: #333;
  font: 500 18px/24px "Roboto", sans-serif;
  padding-bottom: 5px;
}
.page-locations .bottom-row p.text {
  font: 300 16px/24px "Roboto", sans-serif;
  margin-top: 0;
}
@media (max-width: 992px) {
  .page-locations .fl-col:not(.fl-col-small) {
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .page-locations .fl-col:not(.fl-col-small) {
    padding-left: 0px;
  }
}
.page-locations .fl-col-small {
 /*width: 33.33% !important;*/
}
@media (max-width: 768px) {
  .page-locations .fl-col-small {
    width: 100% !important;
  }
  .page-locations .fl-col-small:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.page-advertising .module input[type="text"] {
  width: 100%;
}
.page-advertising .module .button {
  display: block;
}
@media (max-width: 992px) {
  .page-advertising .fl-col:not(.fl-col-small) {
    width: 100% !important;
  }
  .page-advertising .fl-col-small {
    width: 100% !important;
  }
  .page-advertising .fl-col-small:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

.page-about-us .fl-row-content {
  padding-left: 0;
  padding-right: 0;
}
.page-about-us .white .title {
  color: #fff;
  font-size: 36px;
  margin-bottom: 10px;
}
.page-about-us .testimonials .name {
  color: #888;
  font-size: 16px;
  margin-bottom: 15px;
  padding-top: 15px;
}
.page-about-us .testimonials img {
  margin-right: 20px;
}
.page-about-us .testimonials .testimonial-holder {
  padding-left: 20px;
}
.page-about-us .testimonials a {
  display: block;
  font-size: 18px;
  margin: 40px auto 0;
  text-align: center;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .page-about-us .testimonials .fl-col {
    width: 100% !important;
  }
  .page-about-us .testimonials .fl-col .fl-photo-content {
    display: inherit;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
  }
  .page-about-us .testimonials .fl-col img {
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-about-us .testimonials .fl-col.testimonial-holder {
    padding-left: 0;
    text-align: center;
  }
}

.page-payroll-software .PDF-area {
  background: #ffffff;
}

.page-all-solutions .fl-builder-content > .fl-row:first-child {
  background: #efefef;
  border-bottom: 1px solid #d5d2d2;
}
.page-all-solutions .fl-builder-content > .fl-row:first-child > .fl-row-content-wrap {
  background: #efefef;
  border-bottom: none;
}
.page-all-solutions h1.fl-heading {
  padding-bottom: 10px;
}
.page-all-solutions h1.fl-heading .fl-heading-text {
  color: #333;
  font: 400 28px/36px "Roboto Slab",serif;
}
@media (max-width: 768px) {
  .page-all-solutions .cf-color-box-header {
    margin-bottom: 20px;
  }
}
.page-all-solutions .cf-color-box-header .fl-callout-title a {
  color: #fff;
}
.page-all-solutions .cf-color-box-header > .fl-col-content {
  border-radius: 3px;
  color: #fff;
}
.page-all-solutions .cf-color-box-header .fl-callout-photo {
  display: block;
  width: 200px;
}
.page-all-solutions .cf-color-box-header .fl-callout-photo img {
  width: 170px !important;
}
@media (max-width: 992px) {
  .page-all-solutions .cf-color-box-header .fl-callout-photo {
    float: left;
    padding-right: 0;
    margin-bottom: 20px;
    width: 100% !important;
  }
  .page-all-solutions .cf-color-box-header .fl-callout-photo .fl-photo-content {
    text-align: center;
  }
}
.page-all-solutions .cf-color-box-header .fl-callout-photo .fl-photo {
  text-align: left;
}
@media (max-width: 768px) {
  .page-all-solutions .cf-color-box-header .fl-callout-photo .fl-photo {
    text-align: center;
  }
}
.page-all-solutions .cf-color-box-header .fl-callout-content {
  width: 250px;
}
@media (max-width: 1200px) {
  .page-all-solutions .cf-color-box-header .fl-callout-content {
    width: 230px;
  }
}
@media (max-width: 992px) {
  .page-all-solutions .cf-color-box-header .fl-callout-content {
    float: left;
    padding-right: 0;
    width: 100% !important;
  }
  .page-all-solutions .cf-color-box-header .fl-callout-content .fl-button {
    padding: 10px 15px !important;
  }
}
@media (max-width: 768px) {
  .page-all-solutions .cf-color-box-header .fl-callout-content {
    text-align: center;
  }
}
.page-all-solutions .cf-color-box-header .fl-callout-content span,
.page-all-solutions .cf-color-box-header .fl-callout-content h4 {
  color: #fff;
}
.page-all-solutions .cf-color-box-header .fl-callout-content h4 {
  font-size: 16px;
}
.page-all-solutions .cf-color-box-header .fl-callout-content ul {
  margin: 8px 0 30px 40px;
}
@media (max-width: 768px) {
  .page-all-solutions .cf-color-box-header .fl-callout-content ul {
    margin: 8px 0 30px;
  }
}
.page-all-solutions .cf-color-box-header .fl-callout-content li {
  font: 300 12px/24px "Roboto", sans-serif;
  list-style-type: disc;
  margin: 0 0 5px;
}
.page-all-solutions .cf-color-box-header .fl-callout-content p.text {
  font: 300 12px/24px "Roboto", sans-serif;
}
.page-all-solutions .cf-color-box-header .fl-callout-content .tagline {
  margin-top: 0;
  padding-top: 0;
}
.page-all-solutions .fl-row-full-width:nth-child(2) .fl-module-content {
  margin-left: 0px;
}
.page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-photo {
  display: block;
  margin-right: 30px;
  padding-right: 0;
  width: 45px;
}
@media (max-width: 992px) {
  .page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-photo {
    display: none;
  }
}
@media (max-width: 768px) {
  .page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-photo {
    display: block;
    float: left;
    margin-right: 5%;
    width: 15%;
  }
  .page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-photo .fl-photo {
    text-align: left;
  }
}
.page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-content {
  width: 265px;
}
.page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-content h3 {
  padding-bottom: 15px;
}
.page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-content p {
  color: #444;
  font-family: "Open Sans",sans-serif;
  font-size: 13px;
  line-height: 20px;
}
@media (max-width: 1200px) {
  .page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-content {
    width: 225px;
  }
}
@media (max-width: 992px) {
  .page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-content {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-content {
    float: left;
    width: 80%;
  }
  .page-all-solutions .fl-row-full-width:nth-child(2) .fl-callout-content * {
    text-align: left !important;
  }
}
.page-all-solutions .fl-row-full-width:nth-child(2) .fl-module-heading h2 {
  font-weight: 400;
}
@media (min-width: 768px) {
  .page-all-solutions .fl-module-content {
    position: relative;
  }
}
.page-all-solutions .fl-callout-button a {
  color: #000 !important;
}
.page-all-solutions .fl-callout-button a span {
  color: #000 !important;
}

.page-client-testimonials .fl-module-content .text p {
  font: 300 16px/24px "Roboto", sans-serif;
}
.page-client-testimonials .fl-module-content .tagline b {
  font: 500 14px/24px "Roboto", sans-serif;
}
.page-client-testimonials .fl-module-content .img-responsive:hover {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6) !important;
}
.page-client-testimonials .fl-module-content a:hover {
  text-decoration: none;
}
@media (max-width: 992px) {
  .page-client-testimonials .fl-col {
    width: 100% !important;
  }
  .page-client-testimonials .fl-col .cf-md-6 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-reports .community-involvement.campaigns-info-area .fl-col-small > .fl-col-content {
    border: none !important;
  }
}

.page-contact-us article {
  background-color: #EFEFEF;
}
.page-contact-us .fl-col h1.fl-callout-title {
  margin-bottom: 30px;
}
.page-contact-us .fl-col h1.fl-callout-title span {
  color: #006595;
  font: 400 32px/36px "Roboto Slab",serif;
}
.page-contact-us .salesBox h2,
.page-contact-us .salesBox h2 span {
  color: #339933;
  font: 500 22px/28px "Roboto",sans-serif;
  margin: 0;
}
.page-contact-us .salesBox p {
  font-size: 18px;
  margin: 0 0 20px;
}
.page-contact-us .salesBox select {
  max-width: 300px;
}
@media (max-width: 992px) {
  .page-contact-us .salesBox {
    width: 50% !important;
  }
}
@media (max-width: 768px) {
  .page-contact-us .salesBox {
    margin-bottom: 15px;
    width: 100% !important;
  }
}
@media (max-width: 992px) {
  .page-contact-us .fl-col-small {
    width: 50% !important;
  }
}
@media (max-width: 768px) {
  .page-contact-us .fl-col-small {
    width: 100% !important;
  }
}
.page-contact-us .fl-col-small .fl-module {
  background: #fff;
  border-radius: 3px;
  border-top: 8px solid #359946;
  margin-bottom: 20px;
  padding: 0 15px;
}
.page-contact-us .fl-col-small .fl-module h2.fl-callout-title {
  margin: 0 0 15px 0;
}
.page-contact-us .fl-col-small .fl-module h2.fl-callout-title span {
  color: #359946;
  font: 400 20px/26px "Roboto Slab",serif;
}
.page-contact-us .fl-col-small .fl-module h3.subtitle {
  color: #339933;
  font: 500 18px/24px "Roboto",sans-serif;
  margin: 0 0 5px 0;
  padding-bottom: 5px;
}
.page-contact-us .fl-col-small .fl-module:first-child h2.fl-callout-title {
  margin: 0 0 30px 0;
  padding: 0;
}
.page-contact-us .fl-col-small .fl-module:first-child h2.fl-callout-title span {
  color: #006595;
  font: 400 32px/36px "Roboto Slab",serif;
}
.page-contact-us .fl-col-small .fl-module:first-child h2.title {
  color: #359946;
  font: 400 20px/26px "Roboto Slab",serif;
  margin: 0 0 15px 0;
}
.page-contact-us .fl-col-small .fl-module ul.text {
  margin-bottom: 20px;
}
.page-contact-us .fl-col-small .fl-module p,
.page-contact-us .fl-col-small .fl-module li {
  font: 300 18px/24px "Roboto",sans-serif;
  margin: 0 0 5px 0;
}
.page-contact-us .fl-col-small .fl-module p a,
.page-contact-us .fl-col-small .fl-module li a {
  color: #333;
  font-weight: 400;
  text-decoration: none;
}
.page-contact-us .fl-col-small .fl-module:last-child {
  background: none;
  border-radius: 0;
  border-top: none;
  margin-bottom: 20px;
  padding: 0;
}
.page-contact-us .fl-col-small .fl-module:last-child .fl-module-content {
  margin: 0;
  padding: 0;
}
.page-contact-us .fl-col-small .fl-module:last-child .fl-module-content a {
  padding: 15px !important;
  width: 100%;
}
.page-contact-us .serviceBox .fa {
  color: #339933;
}

.page-buy-now .gray-area .fl-row-content {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1200px) {
  .page-buy-now .gray-area .fl-row-content .button.gray {
    padding: 10px !important;
  }
}
.page-buy-now .gray-area .fl-row-content .button.yellow {
  padding: 10px 5px !important;
}

.page-energy-industry .fl-callout-photo img {
  width: 48px !important;
}

.page-energy-industry .fl-callout-photo img {
  width: 48px !important;
}

.page-medical-industry .callout-icon h3,
.page-mobile-convenience .callout-icon h3,
.page-policy-enforcement .callout-icon h3 {
  display: none;
}

.page-meetings-incentives .callout-icon img,
.page-streamlined-workflow .callout-icon img {
  width: 52px !important;
}

.page-mobile-convenience .stores a {
  display: inline-block;
  margin-bottom: -10px;
}
@media (max-width: 768px) {
  .page-mobile-convenience .stores a {
    display: block;
    margin: 10px auto;
  }
}

.page-expense-management h1.fl-heading span {
  font: 400 44px/50px "Roboto Slab", serif;
}

.page-expensable-card .fl-row-full-width:nth-child(2) .fl-row-content-wrap {
  max-width: 900px;
}
.page-expensable-card .fl-row-full-width:nth-child(2) ul {
  margin: 0 auto;
  max-width: 400px;
}
@media (max-width: 768px) {
  .page-expensable-card .fl-row-full-width:nth-child(2) ul {
    margin: 0 0 0 13px;
    max-width: 100%;
  }
}
.page-expensable-card .fl-row-full-width:nth-child(4) .fl-col-group:first-child {
  max-width: 700px;
  margin: 0 auto;
}
.page-expensable-card .fl-row-full-width:nth-child(4) .fl-col-group:nth-child(2) {
  margin: 0 auto;
  max-width: 900px;
}
.page-expensable-card .fl-row-full-width:nth-child(4) .fl-col-group:nth-child(2) .fl-col-small {
  padding: 0 30px;
}
@media (max-width: 768px) {
  .page-expensable-card .fl-row-full-width:nth-child(4) .fl-col-group:nth-child(2) .fl-col-small {
    margin: 0 0 0 13px;
    padding: 0;
  }
}

.page-detailed-reporting h3.fl-callout-title span {
  font-weight: 500;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-module:first-child {
  border-bottom: none;
  margin-bottom: 10px;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-module {
  border-bottom: 1px solid #efefef;
  padding-bottom: 40px;
  padding-top: 40px;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-module:last-child {
  border-bottom: none;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-callout-title {
  color: #333;
  font: 500 18px/24px "Roboto", sans-serif;
  padding-bottom: 5px;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-callout {
  display: block;
  width: 100%;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-callout-content,
.page-detailed-reporting .expense-management:nth-child(2) .fl-callout-photo {
  display: inline-block;
  float: left;
  padding: 0;
  width: 50% !important;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-callout-title,
.page-detailed-reporting .expense-management:nth-child(2) .fl-callout-text-wrap {
  display: block;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}
.page-detailed-reporting .expense-management:nth-child(2) .fl-callout-title {
  padding-top: 80px;
}
@media (max-width: 768px) {
  .page-detailed-reporting .expense-management:nth-child(2) * {
    text-align: center;
  }
  .page-detailed-reporting .expense-management:nth-child(2) .fl-callout-photo,
  .page-detailed-reporting .expense-management:nth-child(2) .fl-callout-content {
    max-width: 100%;
    width: 100% !important;
  }
  .page-detailed-reporting .expense-management:nth-child(2) .fl-module {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .page-detailed-reporting .expense-management:nth-child(2) .fl-callout-content {
    width: 100% !important;
  }
  .page-detailed-reporting .expense-management:nth-child(2) .fl-callout-content .fl-callout-title {
    padding-top: 20px;
  }
}

.page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(2),
.page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(3) {
  color: #fff;
}
.page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(2) .title,
.page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(3) .title {
  background: #00abe8 none repeat scroll 0 0;
  color: #fff;
  border-radius: 0;
  font: 400 24px/40px "Roboto Slab",serif;
  margin: 20px 0 20px -28px;
  padding: 0 0 0 55px;
  position: relative;
  text-transform: none;
  width: 65%;
}
@media (max-width: 768px) {
  .page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(2) .title,
  .page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(3) .title {
    margin: 20px auto;
    padding: 10px 0;
    text-align: center;
    width: 95%;
  }
  .page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(2) .fl-col-small .fl-col-content,
  .page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(3) .fl-col-small .fl-col-content {
    padding: 80px 40px !important;
  }
  .page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(2) .fl-col-small p,
  .page-financial-analysis .fl-row-full-width:first-child .fl-col-group:nth-child(3) .fl-col-small p {
    text-align: center;
  }
}

.page-thank-you h2.fl-callout-title {
  margin-bottom: 20px;
}
.page-thank-you h2.fl-callout-title span {
  color: #333;
  font: 400 28px/36px "Roboto Slab", serif;
}
.page-thank-you p.subtitle {
  color: #333;
  font: 300 20px/28px "Roboto", sans-serif;
  margin-bottom: 25px;
  padding-left: 90px !important;
}
@media (max-width: 768px) {
  .page-thank-you p.subtitle {
    padding-left: 50px !important;
  }
}
@media (max-width: 560px) {
  .page-thank-you p.subtitle {
    padding-left: 0 !important;
  }
}
.page-thank-you .fl-module-content {
  max-width: 700px;
}

body.page-in-kind-donations #primary .nf-form-cont .nf-form-fields-required,
body.page-in-kind-donations #primary .nf-form-cont .ninja-forms-req-symbol {
  display: none;
}

/*.page-quote .ninja-forms-form-wrap .fl-row-content-wrap {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (max-width: 768px) {
  .page-quote .ninja-forms-form-wrap .field-wrap,
  .page-quote .ninja-forms-form-wrap .ninja-forms-field {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100% !important;
  }
  .page-quote .ninja-forms-form-wrap .field-wrap select,
  .page-quote .ninja-forms-form-wrap .field-wrap input[type="text"],
  .page-quote .ninja-forms-form-wrap .field-wrap textarea,
  .page-quote .ninja-forms-form-wrap .field-wrap label,
  .page-quote .ninja-forms-form-wrap .ninja-forms-field select,
  .page-quote .ninja-forms-form-wrap .ninja-forms-field input[type="text"],
  .page-quote .ninja-forms-form-wrap .ninja-forms-field textarea,
  .page-quote .ninja-forms-form-wrap .ninja-forms-field label {
    width: 100% !important;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
}*/

.page-investor-relations .investorContent iframe {
  min-height: 500px;
}
.page-investor-relations .relationLinks select {
  display: none;
}
@media (max-width: 768px) {
  .page-investor-relations .relationLinks select {
    display: block;
    width: 100%;
  }
  .page-investor-relations .relationLinks .investorRelation {
    display: none;
  }
}

.page-hr-outsourcing .callout-icon.financial-solutions .fl-callout-content {
  max-width: 205px;
}
.page-hr-outsourcing .callout-icon.financial-solutions .fl-callout-photo img {
  max-height: inherit;
  width: 50px !important;
}
.page-hr-outsourcing .callout-icon.financial-solutions ul {
  margin-left: 0;
}
.page-hr-outsourcing .callout-icon.financial-solutions ul li {
  margin-left: 15px;
}
.page-hr-outsourcing .testimonials-slider .fl-row-content {
  max-width: 800px;
}
@media (max-width: 768px) {
  .page-hr-outsourcing .testimonials-slider .fl-photo {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .page-hr-outsourcing .testimonials-slider .fl-col-group:first-child .fl-module-content {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.page-hr-outsourcing .testimonials-slider .fl-col-group:first-child h3.fl-heading {
  line-height: 42px;
  margin: 0 auto 30px;
  text-align: center;
  width: 90%;
}
.page-hr-outsourcing .testimonials-slider .fl-col-group:first-child h3.fl-heading span {
  color: #006595;
  font: 400 28px/42px "Roboto Slab",serif;
}
@media (max-width: 560px) {
  .page-hr-outsourcing .testimonials-slider .fl-col-group:first-child h3.fl-heading {
    width: 100%;
  }
  .page-hr-outsourcing .testimonials-slider .fl-col-group:first-child h3.fl-heading span {
    font: 400 24px/35px "Roboto Slab",serif;
  }
}
.page-hr-outsourcing .testimonials-slider .fl-col-group:nth-child(2) h3 span {
  color: #888888;
  font: 400 14px/24px "Roboto Slab",serif;
  padding-left: 20px;
}
.page-hr-outsourcing .testimonials-slider .fl-col-group:nth-child(2) .fl-module-content {
  margin-bottom: 0;
}
.page-hr-outsourcing .testimonials-slider .fl-col-small:first-child img {
  background: #fff none repeat scroll 0 0;
  border-radius: 250px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  max-width: 127px;
  padding: 4px;
  width: 100%;
}
.page-hr-outsourcing .testimonials-slider .tagline {
  margin: 30px auto 10px;
}
.page-hr-outsourcing p.subtitle {
  margin: 0 auto 30px;
  width: 80%;
}
.page-hr-outsourcing .videointro {
  margin: 0 auto;
  max-width: 400px;
}
.page-hr-outsourcing .hrservicecenter p,
.page-hr-outsourcing .videodescription p {
  margin: 0 auto;
  max-width: 800px;
}
.page-hr-outsourcing .hrExpertise {
  background: #FAFAFA;
}
.page-hr-outsourcing .hrExpertise .fl-col-content {
  background: #FAFAFA;
}
.page-hr-outsourcing .hrExpertise .fl-col-content > .fl-module {
  background: #FDFDFD;
  margin: 0 auto;
  max-width: 900px;
}
.page-hr-outsourcing .hrExpertise .fl-col-content > .fl-module:first-child {
  padding-top: 50px;
}
.page-hr-outsourcing .hrExpertise .fl-col-content > .fl-module:last-child {
  background: #FAFAFA;
  max-width: 920px;
}
@media (max-width: 768px) {
  .page-hr-outsourcing .hrExpertise .fl-col-content > .fl-module:last-child {
    display: none;
  }
}
.page-hr-outsourcing .hrExpertise .videodescription p {
  max-width: 600px;
}
.page-hr-outsourcing .hrExpertise .to-services {
  margin-bottom: 20px;
}
.page-hr-outsourcing .PDF-area {
  background: #FFF;
}
@media (max-width: 768px) {
  .page-hr-outsourcing .hraccessto .callout-icon,
  .page-hr-outsourcing .hrFeatures .callout-icon {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
.page-hr-outsourcing .hraccessto .h3.fl-heading,
.page-hr-outsourcing .hrFeatures .h3.fl-heading {
  line-height: 35px;
}

.page-training a.learn-more {
  display: block;
}
.page-training h5.tagline {
  font-size: 16px;
}
.page-training .fl-module-html .learn-more-row {
  text-align: center;
}
.page-training .fl-module-html .learn-more-row h5.tagline {
  margin-bottom: 15px;
}
.page-training .financial-solutions-box .fl-photo-content {
  width: 100%;
}
.page-training .financial-solutions-box .fl-photo-content img {
  width: 100% !important;
}

.page-investment-funds .module.ebook,
.page-participant-services .module.ebook,
.page-employer-resources .module.ebook,
.page-investment-choices .module.ebook,
.page-plan-implementation .module.ebook {
  font-weight: 300;
}
.page-investment-funds .image,
.page-participant-services .image,
.page-employer-resources .image,
.page-investment-choices .image,
.page-plan-implementation .image {
  background: url("../images/demo.jpg") repeat scroll 0 0;
  display: block;
  height: 164px;
  width: 275px;
}

.page-employer-resources .fl-widget .insperity-ninja-form-widget-description-wrapper {
  font-weight: 300;
}

.page-participant-services .header-section.color-white .fl-callout-title,
.page-plan-administration .header-section.color-white .fl-callout-title {
  color: #fff;
}

.page-orgplus .widget_nav_menu .sub-menu,
.page-training .widget_nav_menu .sub-menu {
  background: #efefef;
  display: none;
  right: 0;
  text-align: left;
  top: 35px;
  width: 250px;
  z-index: 100;
}
.page-orgplus .widget_nav_menu .sub-menu li,
.page-training .widget_nav_menu .sub-menu li {
  clear: left;
  float: left;
  text-align: left;
  width: 100%;
}
.page-orgplus .widget_nav_menu .sub-menu li:hover,
.page-training .widget_nav_menu .sub-menu li:hover {
  background-color: #1da6df;
  border-bottom: none !important;
}
.page-orgplus .widget_nav_menu .menu-item-has-children:hover,
.page-training .widget_nav_menu .menu-item-has-children:hover {
  position: relative;
}
.page-orgplus .widget_nav_menu .menu-item-has-children:hover .sub-menu,
.page-training .widget_nav_menu .menu-item-has-children:hover .sub-menu {
  display: block;
  position: absolute;
}
.page-orgplus .widget_nav_menu .menu,
.page-training .widget_nav_menu .menu {
  text-align: right;
}

.search #sidebar {
  padding: 0 20px 0 0;
}
.search #sidebar #sidebar-header {
  padding-left: 10px;
}
.search #sidebar h1 {
  color: #419639;
  font-family: "Roboto Slab";
  font-size: 30px;
  font-weight: 500;
  line-height: 3.438rem;
}
.search #sidebar .module-container {
  margin: 0 0 30px;
}
.search #sidebar .module-container .wrap {
  padding: 0 10px;
}
.search #sidebar .filter {
  border-radius: 4px;
  float: left;
  line-height: 18px;
  margin: 0 0 10px;
  width: 100%;
}
.search #sidebar .filter.active {
  background: #e7e7e7 none repeat scroll 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
.search #sidebar .filter.active > .header {
  background: #006595 none repeat scroll 0 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
.search #sidebar .filter.active > .header .label {
  color: #fff;
}
.search #sidebar .filter.active > .header .count {
  background: #4d94b5 none repeat scroll 0 0;
  color: #fff;
}
.search #sidebar .filter.active > .menu {
  display: block;
}
.search #sidebar .filter .header {
  border-radius: 4px;
  min-height: 30px;
  overflow: hidden;
  padding: 5px 5px 5px 8px;
}
.search #sidebar .filter .header .count {
  background: #e7e7e7 none repeat scroll 0 0;
  border-radius: 4px;
  color: #393;
  display: inline-block;
  float: right;
  font-size: 0.857em;
  text-align: center;
  vertical-align: top;
  width: 26px;
}
.search #sidebar .filter .label {
  color: #069;
  font-size: 15px;
  font-weight: normal;
  line-height: normal;
  padding: 0;
  text-align: left;
  vertical-align: top;
  white-space: normal;
}
.search #sidebar .filter .menu {
  display: none;
  padding: 10px 0 17px 5px;
}
.search #sidebar .filter .menu .filter {
  box-shadow: none;
  margin: 0 0 5px;
}
.search #sidebar .filter .menu .filter:last-child {
  margin-bottom: 15px;
}
.search #sidebar .filter .menu a {
  display: block;
  overflow: hidden;
}
.search #sidebar .filter .menu .label {
  font-size: 13px;
  width: 105px;
}
.search #sidebar .filter .menu .count {
  display: block;
  float: right;
  font-size: 12px;
  text-align: center;
  width: 26px;
}
.search header .entry {
  margin-bottom: 15px;
}
.search header h3 {
  margin-bottom: 15px;
}
.search header h3 a {
  color: #069;
  font-family: "Roboto Slab";
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
}
.search header h3 a:hover {
  text-decoration: none;
}
.search header .type {
  font-family: "Roboto";
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 0.25em;
  text-transform: uppercase;
}
.search .entry-summary p,
.search .entry-summary a {
  font: 400 14px/25px "Roboto",serif;
}
.search .entry-summary a {
  color: #069;
}

.page-why-us .subtitle,
.recruitingServices .subtitle {
  margin: 0 auto !important;
  max-width: 830px;
}

.page-financial-solutions .humanresourceOutsourcingdetails h2 a,
.page-financial-solutions .humanresourceOutsourcingdetails h2 a:hover,
.page-organizational-planning .humanresourceOutsourcingdetails h2 a,
.page-organizational-planning .humanresourceOutsourcingdetails h2 a:hover,
.page-performance-management .humanresourceOutsourcingdetails h2 a,
.page-performance-management .humanresourceOutsourcingdetails h2 a:hover {
  color: #439538 !important;
  font: 500 24px/30px "Roboto Slab", serif !important;
}
.page-financial-solutions .humanresourceOutsourcingdetails h2 a:hover,
.page-organizational-planning .humanresourceOutsourcingdetails h2 a:hover,
.page-performance-management .humanresourceOutsourcingdetails h2 a:hover {
  text-decoration: underline;
}
.page-financial-solutions .humanresourceOutsourcingdetails h4.tagline,
.page-organizational-planning .humanresourceOutsourcingdetails h4.tagline,
.page-performance-management .humanresourceOutsourcingdetails h4.tagline {
  color: #333;
  font: 500 18px/24px "Roboto", sans-serif;
  margin-top: 0;
  padding-top: 0;
}

.page-performance-management .gray-area .fl-callout-title {
  margin-bottom: 10px;
}

.page-reveal .gray-area .fl-heading {
  margin: 0 auto !important;
  max-width: 1100px;
}
.page-reveal .blue-area .fl-module-content {
  margin-bottom: 0;
  margin-top: 0;
}
.page-reveal .blue-area .fl-heading {
  max-width: 700px;
  line-height: 35px;
}
.page-reveal .fl-row-full-width:last-child h2 {
  font: 400 28px/36px "Roboto Slab",serif;
}
.page-reveal .fl-row-full-width:last-child .fl-rich-text p {
  font: 300 20px/28px "Roboto", sans-serif;
}
.page-reveal .fl-row-full-width:last-child .fl-row-content-wrap {
  max-width: 1020px;
}
.page-reveal .fl-row-full-width:last-child .fl-module-html {
  margin: 0 auto !important;
  max-width: 750px;
}

.page-expense-management .fl-row-bg-none .fl-module-callout .fl-callout-photo {
  margin-bottom: 30px;
}

.page-sourcing-services .orgSection:last-child {
  padding-bottom: 30px;
}
.page-sourcing-services .orgSection .orgCallout .fl-callout-content {
  background-color: #fff;
  border-radius: 0;
  width: 100%;
}
.page-sourcing-services .orgSection .orgCallout h3.fl-callout-title {
  background: #006595;
  border-radius: 0;
  color: #fff;
  font: 700 30px/75px "Roboto Slab", serif;
  margin-bottom: 0;
  text-align: center;
}
.page-sourcing-services .orgSection .orgCallout h3.fl-callout-title span {
  font: 700 30px/75px "Roboto Slab", serif;
}
.page-sourcing-services .orgSection .orgCallout .tagline {
  font: 400 14px/38px "Roboto", sans-serif;
  line-height: 14px;
  margin-bottom: 0;
  margin-top: -20px;
  padding-bottom: 8px;
}
.page-sourcing-services .orgSection .orgCallout .tagline.callout-left, .page-sourcing-services .orgSection .orgCallout .tagline.callout-right {
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 30px;
  padding-top: 20px;
}
.page-sourcing-services .orgSection .orgCallout ul {
  margin-bottom: 0;
}
.page-sourcing-services .orgSection .orgCallout ul li {
  font-size: 18px;
  margin-bottom: 0;
  padding: 0;
  text-align: center;
}
.page-sourcing-services .orgSection .orgCallout ul li.money {
  font: 700 44px/44px "Roboto Slab", serif;
  padding: 0 0 25px;
}
.page-sourcing-services .orgSection .orgCallout .fl-callout-button {
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}
.page-sourcing-services .orgSection .orgCallout .fl-callout-button .fl-button {
  max-width: 250px;
  width: 100%;
}
.page-sourcing-services .orgSection .orgCallout .fl-button {
  max-width: 250px;
  width: 100%;
}
.page-sourcing-services .orgSection .orgCallout.fullWidthCall .fl-callout-content {
  background: #EFEFEF;
}
.page-sourcing-services .orgSection .orgCallout.fullWidthCall ul {
  float: left;
  margin-bottom: 0;
  margin-top: 0;
  padding-top: 30px;
  width: 50%;
}
.page-sourcing-services .orgSection .orgCallout.fullWidthCall ul:first-child {
  border-right: 1px solid #ddd;
}
@media (max-width: 560px) {
  .page-sourcing-services .orgSection .orgCallout.fullWidthCall ul {
    width: 100%;
  }
  .page-sourcing-services .orgSection .orgCallout.fullWidthCall ul:first-child {
    border-bottom: 1px solid #ddd;
    border-right: none;
  }
}
.page-sourcing-services .orgSection .footnote {
  font-size: 14px;
}
@media (max-width: 768px) {
  .page-sourcing-services .orgSection .fl-module-content {
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.page-whats-included .green .fl-row-content-wrap {
  background-color: #369947;
  width: 1140px;
}
.page-whats-included .fl-row-full-width.business .fl-row-content-wrap {
  padding-left: 40px;
  padding-right: 40px;
}
.page-whats-included .fl-row-full-width.business .wo-body {
  font-size: 20px;
  font-weight: 300;
  margin-left: 0;
  max-width: 900px;
}
.page-whats-included .fl-row-full-width.business .wo-body .fl-callout-title,
.page-whats-included .fl-row-full-width.business .wo-body .fl-callout-title span {
  color: #333;
  font: 400 28px/34px "Roboto Slab",serif;
}
.page-whats-included .fl-row-full-width.business .wo-body p {
  color: #333;
  font-family: "Roboto";
  line-height: 28px;
  margin-bottom: 25px;
}
.page-whats-included .fl-row-full-width.business .wo-body p strong {
  font-weight: 400;
}
.page-whats-included .services-included .fl-callout-title {
  color: #359946;
  font-weight: 400;
}
.page-whats-included .services-included .fl-callout-text ul {
  margin-left: 20px;
}
.page-whats-included .services-included .fl-photo {
  text-align: left;
}
.page-whats-included .esc {
  font-size: 32px;
  margin-left: -54px;
  max-width: 503px;
  padding-left: 22px;
  text-transform: none;
}
.page-whats-included .service-center .esc {
  margin-left: -69px;
}
.page-whats-included .service-center .fl-row-content {
  padding-left: 0;
  padding-right: 0;
}
.page-whats-included .service-center .wo-blue {
  color: #006595;
}
.page-whats-included .service-center .inner-left p {
  color: #333;
  font-family: "Roboto";
  font-size: 16px;
}
.page-whats-included .service-center .fl-col:first-child .fl-col-content {
  padding-left: 30px;
  padding-right: 60px;
}
.page-whats-included .service-center .fl-col:nth-child(2) .fl-col-content {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
}
.page-whats-included .service-center .fl-col:nth-child(2) h3.fl-callout-title {
  color: #18aae2;
  font-size: 16px;
  font-weight: 400;
}
.page-whats-included .service-center .fl-col:nth-child(2) h3.fl-heading {
  font: 400 28px/34px "Roboto Slab",serif;
}
.page-whats-included .service-center .fl-col:nth-child(2) h3.fl-heading span {
  font: 400 28px/34px "Roboto Slab",serif;
}
.page-whats-included .service-team .service-team-heading {
  margin-left: -14px;
}
.page-whats-included .service-team .fl-col:first-child .fl-col-content {
  padding-left: 15px;
  padding-right: 15px;
}
.page-whats-included .service-team .fl-col:nth-child(2) .fl-module-html {
  margin-top: -40px;
}
.page-whats-included .service-team .white-translucent {
  background: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  height: auto;
  margin-right: 20px;
  padding: 30px;
}
.page-whats-included .service-team .wo-blue {
  color: #006595;
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 25px 0;
  padding: 0;
}
.page-whats-included .service-team-area {
  height: 360px;
  padding-left: 0;
  position: relative;
}
.page-whats-included .service-team-area .tag,
.page-whats-included .service-team-area img {
  -moz-transition: .3s;
  -ms-transition: .3s;
  -webkit-transition: .3s;
  cursor: pointer;
  display: block;
  float: left;
  position: relative;
  transition: .3s;
}
.page-whats-included .service-team-area .tag:hover,
.page-whats-included .service-team-area img:hover {
  margin-top: -15px;
}
.page-whats-included .service-team-area .tag-title {
  color: #42973a;
  font: 400 15px/16px "Roboto Slab", serif;
  text-align: center;
}
.page-whats-included .service-team-area .liason {
  background: url("../images/clients/client-liason-blank.png");
  height: 260px;
  margin-left: 30px;
  width: 196px;
  z-index: 10;
}
.page-whats-included .service-team-area .liason .tag-title {
  transform: rotate(12deg) translate3d(0, 0, 0);
  -ms-transform: rotate(12deg);
  -webkit-transform: rotate(12deg) translate3d(0, 0, 0);
  left: -21px;
  top: 207px;
  position: relative;
}
.page-whats-included .service-team-area .hr-special {
  background: url("../images/clients/hr-specialist-blank.png");
  height: 246px;
  margin-left: -40px;
  top: 50px;
  width: 168px;
  z-index: 8;
}
.page-whats-included .service-team-area .hr-special .tag-title {
  -ms-transform: rotate(-0.5deg);
  -webkit-transform: rotate(-0.5deg) translate3d(0, 0, 0);
  left: 2px;
  position: relative;
  top: 204px;
  transform: rotate(-0.5deg) translate3d(0, 0, 0);
}
.page-whats-included .service-team-area .payroll-special {
  background: url("../images/clients/payroll-specialist-blank.png");
  height: 243px;
  margin-left: -34px;
  top: -10px;
  width: 176px;
  z-index: 10;
}
.page-whats-included .service-team-area .payroll-special .tag-title {
  -ms-transform: rotate(-5.5deg);
  -webkit-transform: rotate(-5.5deg) translate3d(0, 0, 0);
  left: 8px;
  position: relative;
  top: 198px;
  transform: rotate(-5.5deg) translate3d(0, 0, 0);
}
.page-whats-included .service-team-area .hr-manager {
  background: url("../images/clients/hr-manager-blank.png");
  height: 259px;
  margin-left: -28px;
  top: 95px;
  width: 195px;
  z-index: 5;
}
.page-whats-included .service-team-area .hr-manager .tag-title {
  transform: rotate(-8.5deg) translate3d(0, 0, 0);
  -ms-transform: rotate(-8.5deg);
  -webkit-transform: rotate(-8.5deg) translate3d(0, 0, 0);
  left: 62px;
  top: 198px;
  position: relative;
  width: 50%;
}
.page-whats-included .service-team-area .performance-special {
  background: url("../images/clients/performance-specialist-blank.png");
  height: 246px;
  margin-left: -64px;
  top: 17px;
  width: 176px;
  z-index: 8;
}
.page-whats-included .service-team-area .performance-special .tag-title {
  -ms-transform: rotate(5deg);
  -webkit-transform: rotate(5deg) translate3d(0, 0, 0);
  left: 34px;
  position: relative;
  top: 193px;
  transform: rotate(5deg) translate3d(0, 0, 0);
  width: 50%;
}
.page-whats-included .service-team-area .safety {
  background: url("../images/clients/safety-consultant-blank.png");
  height: 263px;
  margin-left: -44px;
  top: 90px;
  width: 197px;
  z-index: 10;
}
.page-whats-included .service-team-area .safety .tag-title {
  -ms-transform: rotate(-8.5deg);
  -webkit-transform: rotate(-8.5deg) translate3d(0, 0, 0);
  left: 12px;
  position: relative;
  top: 215px;
  transform: rotate(-8.5deg) translate3d(0, 0, 0);
}
.page-whats-included .service-team-area .tooltips {
  background: #006595;
  border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  color: #fff;
  display: none;
  font-size: 14px;
  height: auto;
  left: 0;
  max-width: 260px;
  padding: 20px 25px;
  position: absolute;
  top: 0;
  width: auto;
  z-index: 20;
}
.page-whats-included .service-team-area .tooltips ul {
  margin-bottom: 0;
  margin-left: 18px;
}
.page-whats-included .service-team-area .tooltips li {
  font-size: 14px;
  margin-bottom: 5px;
}
.page-whats-included .service-team-area .tooltips.tooltip1 {
  left: 40px;
  top: -100px;
}
.page-whats-included .service-team-area .tooltips.tooltip2 {
  left: 210px;
  top: -155px;
}
.page-whats-included .service-team-area .tooltips.tooltip3 {
  left: 345px;
  top: -145px;
}
.page-whats-included .service-team-area .tooltips.tooltip4 {
  left: 495px;
  top: -10px;
}
.page-whats-included .service-team-area .tooltips.tooltip5 {
  left: 665px;
  top: -215px;
}
.page-whats-included .service-team-area .tooltips.tooltip6 {
  left: 780px;
  top: -85px;
}
.page-whats-included .service-team-area .tooltip-close {
  background: #81c341;
  border-radius: 250px;
  border: 3px solid #fff;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  float: right;
  font-weight: 500;
  height: 30px;
  line-height: 20px;
  padding: 2px;
  position: relative;
  right: -40px;
  text-align: center;
  top: -35px;
  width: 30px;
}
.page-whats-included .service-team-area .service-team-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-module-callout .fl-callout-photo {
  width: 50px;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-module-callout .fl-callout-title {
  color: #333;
  font: 400 24px/47px "Roboto Slab",serif;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-row-content {
  padding-left: 0;
  padding-right: 0;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-col {
  margin-top: 50px;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-col-content {
  border: 1px solid #c9c7c7;
  float: left;
  font-size: 16px;
  padding-bottom: 50px;
  padding: 20px 60px;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-module-rich-text,
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-module-html {
  float: left;
  width: 50%;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .btn {
  background: #FCD400;
  background: -moz-linear-gradient(top, #FCD400 0%, #EEB500 100%);
  background: -o-linear-gradient(top, #FCD400 0%, #EEB500 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FCD400), color-stop(100%, #EEB500));
  border-radius: 5px;
  border: 1px solid #d9a102;
  color: #333333;
  font-family: 'Roboto';
  font-weight: 500;
  padding: 10px 30px;
  position: relative;
  z-index: 100;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .btn:hover {
  background: #fddf40;
  text-decoration: none;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-module-html .fl-html {
  margin-top: 40px;
  text-align: center;
}
.page-whats-included .entry-content .speak-to-specialist-last-row .fl-col-group {
  padding-left: 15px;
  padding-right: 15px;
}

.page-recruiting .callout-icon.blue .fl-module-content {
  text-align: left;
}

.page-recruiting-options .other-services .fl-module-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 350px;
}
@media (max-width: 768px) {
  .page-recruiting-options .other-services .fl-module-content {
    max-width: 80%;
  }
}
@media (max-width: 560px) {
  .page-recruiting-options .other-services .fl-module-content {
    max-width: 100%;
  }
}

.page-whats-included .fl-row-full-width .fl-row-content-wrap,
.page-template-hr-outsourcing-resource-archive-template .fl-row-full-width .fl-row-content-wrap,
.page-testimonials .fl-row-full-width .fl-row-content-wrap,
.group-blog.page-overview .fl-row-full-width .fl-row-content-wrap {
  max-width: 1030px;
}
.page-whats-included .green .fl-row-content-wrap,
.page-template-hr-outsourcing-resource-archive-template .green .fl-row-content-wrap,
.page-testimonials .green .fl-row-content-wrap,
.group-blog.page-overview .green .fl-row-content-wrap {
  background-color: #369947;
  margin: 0 auto;
  padding-bottom: 65px;
  padding-top: 50px;
}
.page-whats-included .green .fl-heading,
.page-template-hr-outsourcing-resource-archive-template .green .fl-heading,
.page-testimonials .green .fl-heading,
.group-blog.page-overview .green .fl-heading {
  padding-left: 20px !important;
}
.page-whats-included .green h2,
.page-template-hr-outsourcing-resource-archive-template .green h2,
.page-testimonials .green h2,
.group-blog.page-overview .green h2 {
  line-height: 50px;
}
.page-whats-included .secondary-navigation,
.page-template-hr-outsourcing-resource-archive-template .secondary-navigation,
.page-testimonials .secondary-navigation,
.group-blog.page-overview .secondary-navigation {
  max-width: 100%;
}
@media (min-width: 768px) {
  .page-whats-included .secondary-navigation .fl-row-content-wrap .fl-row-content,
  .page-template-hr-outsourcing-resource-archive-template .secondary-navigation .fl-row-content-wrap .fl-row-content,
  .page-testimonials .secondary-navigation .fl-row-content-wrap .fl-row-content,
  .group-blog.page-overview .secondary-navigation .fl-row-content-wrap .fl-row-content {
    max-width: 1060px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page-whats-included .secondary-navigation .fl-row-content-wrap .fl-col-content,
.page-template-hr-outsourcing-resource-archive-template .secondary-navigation .fl-row-content-wrap .fl-col-content,
.page-testimonials .secondary-navigation .fl-row-content-wrap .fl-col-content,
.group-blog.page-overview .secondary-navigation .fl-row-content-wrap .fl-col-content {
  padding-left: 0;
  padding-right: 0;
}

.group-blog.page-overview .quick-fact .wo-facts {
  width: 94%;
}
.group-blog.page-overview .quick-fact .break .dotted-line {
  width: 373px;
}

.page-template-hr-outsourcing-resource-archive-template .site-main .wo-facts {
  width: 100%;
}
.page-template-hr-outsourcing-resource-archive-template .site-main .wo-contact-box .new-button.yellow span {
  padding: 5px 15px 5px;
}
.page-template-hr-outsourcing-resource-archive-template .site-main .app-button .new-button.blue {
  width: 100%;
}
.page-template-hr-outsourcing-resource-archive-template .site-main .module-gray-new .chat-button {
  width: 100%;
}

@media (max-width: 768px) {
  .page-template-hr-outsourcing-resource-archive-template .green .fl-row-content-wrap,
  .page-testimonials .green .fl-row-content-wrap,
  .page-whats-included .green .fl-row-content-wrap,
  .page-overview .green .fl-row-content-wrap {
    background-color: #379849;
    background-image: none;
    width: 100%;
  }
}

.page-site-map h1 {
  color: #333;
  font-family: 'Roboto';
  font-size: 28px;
  font-weight: 500;
}
.page-site-map .site-map-list ul {
  margin: 0;
}
.page-site-map .site-map-list li {
  list-style-type: none;
  margin-bottom: 12px;
  margin-top: 12px;
  text-align: left;
}
@media (max-width: 768px) {
  .page-site-map .site-map-list li {
    text-align: left;
  }
}
.page-site-map .site-map-list li a {
  font: 400 16px/20px "Roboto Slab",serif;
}
.page-site-map .site-map-list li ul {
  margin-left: 32px;
}
.page-site-map .module-gray-new.module-wrap {
  border: none;
  margin: 0;
  padding: 0;
}

/*
.page-site-map .module-gray-new.module-wrap .field-wrap:not(.hidden-wrap):not(.split-field-container):not(.browser-detect-container) {
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
*/

.page-site-map .module-gray-new.module-wrap .field-wrap {
    margin-top: 0px;
    padding-left: 0px;
    padding-right: 0px;
}

.page-site-map .textbox-container, .page-site-map .lastname-container, .page-site-map .phone-container, .page-site-map .email-container, .page-site-map .listselect-container, .page-site-map .listradio-container, .page-site-map .submit-container, .page-site-map .nf-error-msg {
    padding-left: 20px;
    padding-right: 20px;
}

.page-site-map .nf-before-form-content {
    display:none;
}

.page-site-map .module-gray-new.module-wrap {
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #d6d6d6;
  margin-top: 0;
}

.page-site-map .module-gray-new.module-content {
  border-bottom: 1px solid #d6d6d6;
}

.page-site-map, .module-content {
    border-bottom: 1px solid #d6d6d6 !important;
}

.page-site-map .module-gray-new .module-content {
    border: none;
}

.financial-solutions-box #nsp_op_support_chat, .financial-solutions-box #nsp_op_sales_chat, .financial-solutions-box #nsp_pm_sales_chat, .financial-solutions-box #nsp_pm_support_chat {
    padding-bottom: 0px;
}



.module-gray-new .module-content, .module-gray-new.module-wrap {
  border:none;
}

.page-site-map .module-gray-new.module-wrap .nf-desc .module-content {
  border-left: none;
  border-right: none;
}

.page-site-map .module-gray-new.module-wrap .new-button.green {
  line-height: 35px;
  width: 100%;
}

@media (max-width: 767px) {
  .page-automation article *,
  .page-features article *,
  .page-expense-management article *,
  .page-payments article *,
  .page-corporate article *,
  .page-desktop article *,
  .page-support article *,
  .page-performance-now article *,
  .page-performsmart article *,
  .page-time-and-attendance article *,
  .page-how-we-do-it article * {
    list-style-type: none;
    text-align: center !important;
  }
  .page-automation article .fl-callout-photo,
  .page-automation article .fl-callout-content,
  .page-features article .fl-callout-photo,
  .page-features article .fl-callout-content,
  .page-expense-management article .fl-callout-photo,
  .page-expense-management article .fl-callout-content,
  .page-payments article .fl-callout-photo,
  .page-payments article .fl-callout-content,
  .page-corporate article .fl-callout-photo,
  .page-corporate article .fl-callout-content,
  .page-desktop article .fl-callout-photo,
  .page-desktop article .fl-callout-content,
  .page-support article .fl-callout-photo,
  .page-support article .fl-callout-content,
  .page-performance-now article .fl-callout-photo,
  .page-performance-now article .fl-callout-content,
  .page-performsmart article .fl-callout-photo,
  .page-performsmart article .fl-callout-content,
  .page-time-and-attendance article .fl-callout-photo,
  .page-time-and-attendance article .fl-callout-content,
  .page-how-we-do-it article .fl-callout-photo,
  .page-how-we-do-it article .fl-callout-content {
    max-width: 100% !important;
    width: 100% !important;
  }
}

.take-a-spin .wo-app {
  margin: 0;
  min-width: unset;
  padding: 30px 100px;
}
@media screen and (min-width: 770px) and (max-width: 992px) {
  .take-a-spin .wo-app {
    text-align: center;
  }
}
@media (min-width: 770px) {
  .take-a-spin .wo-app {
    padding: 20px 15px 0;
  }
}
@media (min-width: 1200px) {
  .take-a-spin .wo-app {
    padding: 30px 30px 0;
  }
}
@media screen and (min-width: 770px) and (max-width: 992px) {
  .take-a-spin .wo-app img,
  .take-a-spin .wo-app .wo-app-text {
    float: none;
    margin: 5px 0;
    width: auto;
  }
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  background: #FFFFFF;
  margin-top: 60px;
  max-width: 68%;
  padding: 20px 40px;
}
.mfp-gallery .mfp-image-holder .mfp-figure:after {
  background: none;
  box-shadow: none;
}

.entry-content.no-margin {
  margin-top: -30px;
}

.page-expense-management-features .col-sm-4 {
  padding-left: 20px;
  padding-right: 20px;
}

.page-privacy-policy .paragraph_txt,
.page-privacy-policy p {
  text-align: left;
}
@media (min-width: 768px) {
  .page-privacy-policy .paragraph_txt,
  .page-privacy-policy p {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-video-tour .fl-module-heading h1.fl-heading {
    text-align: center;
  }
}
.page-video-tour .fl-module-video-block .cf-bb-video-container.video {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1025px) {
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video {
    border: 2px solid #ddd;
  }
}
.page-video-tour .fl-module-video-block .cf-bb-video-container.video .poster {
  padding: 20px 20px;
  background-size: 100% !important;
}
@media (max-width: 1200px) {
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video .poster {
    background: none !important;
    margin-bottom: 0;
    min-height: inherit;
    padding-left: 0;
    padding-right: 0;
  }
}
.page-video-tour .fl-module-video-block .cf-bb-video-container.video p.text {
  margin-bottom: 40px;
  width: 65%;
}
@media (max-width: 1200px) {
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video p.text {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video p.text {
    margin-bottom: 20px;
  }
}
.page-video-tour .fl-module-video-block .cf-bb-video-container.video .tagline {
  margin-bottom: 10px;
  width: 68%;
}
@media (max-width: 1200px) {
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video .tagline {
    width: 100%;
  }
}
.page-video-tour .fl-module-video-block .cf-bb-video-container.video .title {
  padding-left: 15px;
}
.page-video-tour .fl-module-video-block .cf-bb-video-container.video .cf-sm-6 {
  float: left;
}
@media (max-width: 768px) {
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video .cf-sm-6 {
    clear: left;
    text-align: center;
    width: 100%;
  }
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video .cf-sm-6 .text {
    width: 100%;
  }
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video .row {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
    width: 100%;
  }
  .page-video-tour .fl-module-video-block .cf-bb-video-container.video .poster + .row {
    width: inherit;
  }
}
@media (max-width: 768px) {
  .page-video-tour .fl-module-video-block .fl-module-content {
    margin-right: 0;
  }
}

body.archive.tax-insperity_product #search-bar , body.post-type-archive-resource #search-bar, body.tax-resource_type #search-bar {
}
.blog.paged #search-bar, .post-type-archive-resource.paged #search-bar {
  margin-top: 0px;
}

#search-bar form {
  padding-left: 0 !important;
}
#search-bar h2 {
  color: #333;
  font: 400 16px/28px "Roboto Slab",serif;
}

@media (min-width: 1200px) {
  #search-bar.hr-outrsourcing form {
    padding-left: 0;
  }
}
#search-bar select {
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  background: #fff url(../images/dropdown.jpg) 91% 1px no-repeat;
  color: #999 !important;
  font-size: .7rem;
  height: 1.5;
  text-indent: 0.1px;
  text-overflow: '';
}
body.archive.tax-insperity_product #search-bar select, .post-type-archive-resource #search-bar select, body.tax-resource_type #search-bar select {
}

@media (max-width: 1200px) {
body.archive.tax-insperity_product #search-bar form, .post-type-archive-resource #search-bar form, body.tax-resource_type #search-bar form {
    padding-left: 30px;
  }

  #search-bar select {
    max-width: 100%;
    width: 100%;
  }
}

#search-bar input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-bottom-left-radius: 250px;
  border-right: 0;
  border-top-left-radius: 250px;
  border: 1px solid #999;
  box-shadow: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  font-size: 12px;
  height: 30px;
  min-width: 135px;
  padding: 0 5px 0 10px;
}
.blog #search-bar input {
  min-width: 96%;
}
#search-bar input[type=submit] {
  background: #fff url(../images/search.png) 0 7px no-repeat;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 250px;
  border-left: 0;
  border-right: 1px solid #999;
  border-top-left-radius: 0;
  border-top-right-radius: 250px;
  height: 30px;
  margin-left: -5px;
  min-width: 0 !important;
  width: 31px !important;
}
.blog #search-bar input[type=submit] {
  position: absolute;
  right: 15px;
}
#search-bar .blog-search-label {
  color: #006595;
  font: 600 18px/28px "Roboto Slab",serif;
}
.blog #search-bar .blog-search-label {
  text-align: left;
}
@media (min-width: 560px) {
  #search-bar .col-md-2 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 992px) {
  .blog #search-bar .blog-search-label {
    text-align: right;
  }
  .blog #search-bar input {
    min-width: 92%;
  }
}
@media (min-width: 1025px) {
  #search-bar .col-md-2 {
    width: 16.6667%;
  }
}
@media (min-width: 560px) {
  #search-bar .full-row {
    float: left;
    width: 100%;
  }
}
@media (min-width: 1025px) {
  #search-bar .full-row {
    width: 16.6667%;
  }
  #search-bar .full-row.col-md-1 {
    width: 8.33333%;
  }
}
@media (min-width: 560px) {
  #search-bar .col-md-3 {
    float: left;
    width: 50%;
  }
}
@media (min-width: 1025px) {
  #search-bar .col-md-3 {
    float: left;
    width: 25%;
  }
}
@media (max-width: 560px) {
  #search-bar .col-md-3 input[type=search] {
    width: 93%;
  }
}
@media (max-width: 1025px) {
  #search-bar .col-md-3 input[type=search] {
    width: 90%;
  }
}
@media (max-width: 992px) {
  #search-bar .col-md-3 input[type=search] {
    width: 91%;
  }
}
@media (max-width: 560px) {
  #search-bar .col-md-3 input[type=submit] {
    margin-left: -1%;
    width: 8% !important;
  }
}
@media (max-width: 1025px) {
  #search-bar .col-md-3 input[type=submit] {
    margin-left: -1%;
    width: 11% !important;
  }
}
@media (max-width: 992px) {
  #search-bar .col-md-3 input[type=submit] {
    margin-left: -1%;
    width: 10% !important;
  }
}
#search-bar.hr-outrsourcing {
  border: none;
  margin: 10px 0 0;
  padding: 0 0 25px;
}
#search-bar.hr-outrsourcing h2 {
  font: 500 18px/28px "Roboto",serif;
  margin-bottom: 10px;
}
#search-bar.hr-outrsourcing .holder {
  clear: both;
  padding-top: 15px;
  width: 100%;
}
#search-bar.hr-outrsourcing #insperity_product {
  max-width: 170px;
}
@media (min-width: 992px) and (max-width: 1025px) {
  body.blog #search-bar .col-md-2.small-col.full-row {
    max-width: 100px;
  }
  body.blog #search-bar .col-md-2.full-row {
    width: 100%;
  }
  body.blog #search-bar .col-md-2 {
    width: 25%;
  }
  body.blog #search-bar .col-md-1 {
    width: 5%;
  }
  body.blog #search-bar .col-md-3 {
    width: 30%;
  }
  body.blog #search-bar .col-md-3 input[type=search] {
    width: 90%;
  }
  body.blog #search-bar .col-md-3 input[type=submit] {
    margin-left: -5%;
  }
}
@media (min-width: 992px) and (max-width: 1025px) {
  body.post-type-archive-resource #search-bar .std-form {
    padding-left: 10px;
  }
  body.post-type-archive-resource #search-bar .col-md-2.full-row {
    width: 100%;
  }
  body.post-type-archive-resource #search-bar .col-md-2 {
    width: 23%;
  }
  body.post-type-archive-resource #search-bar .col-md-3 {
    width: 25%;
  }
  body.post-type-archive-resource #search-bar .col-md-3 input[type=search] {
    width: 85%;
  }
  body.post-type-archive-resource #search-bar .col-md-3 input[type=submit] {
    margin-left: -10%;
    width: 15% !important;
  }
  body.post-type-archive-resource #search-bar .col-md-1 {
    width: 5.333333%;
  }
}
@media (max-width: 991px) {
  body.post-type-archive-resource #search-bar .col-md-1 {
    clear: left;
    width: 100%;
  }
}

.col-sm-8.border {
  border-right: 1px solid #333;
  min-height: 280px;
}

.page-template-templatesresource-archive-template-php .banner {
  color: #fff;
  height: 168px;
  padding: 50px 0;
}
.page-template-templatesresource-archive-template-php .banner.small {
  background: #333 none repeat scroll 0 0;
  height: auto;
  padding: 25px 0;
}
.page-template-templatesresource-archive-template-php .banner.small .title {
  color: #ffffff;
  font: 300 36px/40px "Roboto",sans-serif;
  margin-bottom: 0;
}
.page-template-templatesresource-archive-template-php .resources {
  padding: 85px 0;
}

.product-intro {
  background: #006595;
  color: #fff;
  padding: 30px 0;
  position: relative;
}
.product-intro .col-sm-8.border {
  border-right: 1px solid #fff;
}
.product-intro .title {
  color: #fff;
  padding-top: 25px;
}
.product-intro .subtitle {
  color: #fff;
}
.product-intro .subtitle a {
  color: #18aae2;
  font-weight: 400;
}
.product-intro i {
  bottom: -61px;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 400;
}
.product-intro i.green {
  color: #81c342;
}
.product-intro.green {
  background: #359946;
}
.product-intro.green .subtitle {
  font: 300 20px/28px "Roboto", sans-serif;
}
.product-intro.green .subtitle a {
  color: #93de4c;
  font-weight: 400;
}
.product-intro.green i.green {
  color: #006595;
}
.product-intro.gray {
  background: none;
  margin-bottom: -60px;
  padding: 30px 0 0;
}
.product-intro.gray .title {
  color: #333;
  font: 400 28px/36px "Roboto", sans-serif;
  padding-bottom: 0;
}
.product-intro.gray .subtitle {
  color: #359946;
}
.product-intro.gray .subtitle a {
  color: #18aae2;
  font-weight: 400;
}

.page-template-hr-outsourcing-resource-archive-template .col-md-9.post {
  padding-top: 30px;
}
.page-template-hr-outsourcing-resource-archive-template .filter-sidebar {
  padding-top: 30px;
}
.page-template-hr-outsourcing-resource-archive-template .resource-header h1 {
  color: #419639;
  font: 500 30px/32px "Roboto Slab", sans-serif;
}
.page-template-hr-outsourcing-resource-archive-template .resource-header h2 {
  color: #006595;
  float: left;
  font: 500 18px/18px "Roboto Slab", sans-serif;
}
.page-template-hr-outsourcing-resource-archive-template .resource-header .more {
  border-left: 2px solid #ccc;
  float: left;
  font-size: 14px;
  line-height: 18px;
  margin-left: 11px;
  padding-left: 11px;
}
.page-template-hr-outsourcing-resource-archive-template .resource-header .sub-head {
  margin-bottom: 15px;
  margin-top: 5px;
}

.headline_overview {
  color: #006695;
  font-family: 'DepotNew-Light', Arial, Helvetica, sans-serif;
  font-size: 32px;
}

.headline_h1 {
  color: #439539;
  font-family: 'DepotNew-Medium', Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 32px;
  padding-bottom: 25px;
}

.headline_h2 {
  color: #006695;
  font-family: 'DepotNew-Medium', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 24px;
}

.headline_h3 {
  color: #333333;
  font-family: 'DepotNew-Bold', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

/*intro paragraphy*/
.intro_paragraph {
  color: #333333;
  font-family: 'DepotNew-Light', Arial, Helvetica, sans-serif;
  font-size: 19px;
}

/*bullets*/
.list_style {
  margin-left: 25px;
  margin-top: 7px;
}

.list_style li {
  color: #333333;
  font-family: 'DepotNew-Regular', Arial, Helvetica, sans-serif !important;
  font-size: 16px;
  font-weight: 400;
  padding: 1px;
}
.list_style li strong {
  font-family: "Roboto";
  font-weight: 500;
}

/*rule styles*/
.hr_style {
  margin-bottom: 30px;
  margin-top: 30px;
}

/*indented paragraph*/
.headline_italic {
  color: #333333;
  font-family: 'DepotNew-LightItalic', Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.indent_paragraph {
  margin-left: 25px;
}

/*basic paragraph text*/
.paragraph_txt {
  color: #333333;
  font-family: 'DepotNew-Regular', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/*badge styles*/
.badge_image {
  float: left;
  height: 145px;
  margin-top: -50px;
  padding-bottom: 15px;
  width: 200px;
}

.badge_txt {
  float: left;
}

.badge_h1_blue {
  color: #006695;
  font-family: 'DepotNew-Medium', Arial, Helvetica, sans-serif;
  font-size: 62px;
  line-height: 52px;
  margin: 0;
  padding: 0;
}

.badge_h2_blue {
  color: #006695;
  font-family: 'DepotNew-Light', Arial, Helvetica, sans-serif;
  font-size: 50px;
  line-height: 50px;
  margin: 0;
  padding: 0;
}

#main-header h1 {
  color: #439539;
  font-family: 'DepotNew-Light', Arial, Helvetica, sans-serif;
  font-size: 32px;
  left: 200px;
  line-height: 52px;
  margin: 0;
  padding: 0;
  position: relative;
  top: 15px;
}

#badge_h1_green {
  color: #439539;
  font-family: 'DepotNew-Light', Arial, Helvetica, sans-serif;
  font-size: 32px;
  line-height: 52px;
  margin: 0;
  padding: 0;
}

#masthead .body h1 {
  visibility: hidden;
}

#main-header h1 {
  visibility: hidden;
}

.header-title {
  border-bottom: 1px solid #e2e2e2;
  margin: 0 0 60px;
  padding: 15px 0 10px 37px;
}
.header-title h1 .fl-heading-text {
  color: #419639;
  font-family: "Roboto",Arial,Helvetica,sans-serif;
  font-weight: 300;
}

.module.white {
  background: none;
  margin-top: 20px;
  padding: 10px 19px;
}
.module.white h2 {
  color: #393;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
  margin-top: 5px;
}

/*  Author page
------------------------------------------------------- */
body.author h1 {
    font-size: 1.6rem;
    color: #006497;
    font-weight: 500;
    line-height: 1.2;
}

h2.author-title {
  color: #006497;
  font-family: "Roboto Slab", serif;
  font-size: 22px;
  padding: 25px 20px;
}

.blog-author {
  background: #eee;
  color: #333;
  float: left;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
}
.blog-author img {
  border: 12px solid #fff;
  height: 123px;
  width: 123px;
}
.blog-author h4 {
  color: #006495;
  display: block;
  font: 600 16px/20px "Roboto Slab",serif;
  margin-bottom: 5px;
}
.blog-author h5 {
  text-align: left;
  font: 400 16px/20px "Roboto", sans-serif;
  font-weight: 500;
  margin-bottom: 5px;
}
.blog-author p {
  font: 400 14px/20px "Roboto", sans-serif;
}

.author-posts {
  clear: left;
}
.author-posts h2 {
  color: #006497;
  font-family: "Roboto Slab",serif;
  font-size: 22px;
  padding: 40px 20px;
}

.author .post article {
  padding-bottom: 30px;
}
.author .post article .type {
  font-size: 14px;
  line-height: 14px;
  display: block;
  letter-spacing: 0;
  text-transform: uppercase;
}
.author .post article h3 a {
  font: 600 20px/26px "Roboto Slab",serif;
  margin: 5px 0;
  width: 80%;
}
.author .post article .share {
  float: right;
  font-size: 12px;
  margin: -25px 15px 0 20px;
  text-align: center;
}
.author .post article .share .share-bubble {
  background: #439539 none repeat scroll center center;
  border: 1px solid #439539;
  border-radius: 250px;
  color: #fff;
  display: block;
  font-weight: 500;
  height: 39px;
  line-height: 30px;
  margin: 0 15px;
  padding-top: 3px;
  text-align: center;
  width: 39px;
}
.author .post article a.continue {
  color: #439539;
  font-family: "Roboto Slab",serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}
.author .post article .col-md-9 > .addthis_toolbox {
  display: none;
}

.insperity-requestless-modal-form .close-button-for-requestless-modal {
  background-color: #000;
  border: 2px solid #fff;
  border-radius: 16px;
  color: #fff;
  cursor: pointer;
  font-size: 22px;
  height: 32px;
  position: absolute;
  right: -8px;
  text-align: center;
  top: -8px;
  width: 32px;
  z-index: 100;
}
.insperity-requestless-modal-form .close-button-for-requestless-modal .fa {
  padding: 0 0 0 1px;
  vertical-align: middle;
}
.insperity-requestless-modal-form .modal-dialog {
  width: 94%;
}
@media (min-width: 768px) {
  .insperity-requestless-modal-form .modal-dialog {
    width: 750px;
  }
}
.insperity-requestless-modal-form .modal-content {
  background-color: #81C341;
  border: 4px solid #FFF;
  border-radius: 0;
  color: #FFF;
  padding: 30px 12% 20px;
}
.insperity-requestless-modal-form .modal-content h1, .insperity-requestless-modal-form .modal-content h2, .insperity-requestless-modal-form .modal-content h3, .insperity-requestless-modal-form .modal-content h4, .insperity-requestless-modal-form .modal-content h5, .insperity-requestless-modal-form .modal-content h6 {
  background-color: #349946;
  color: #FFF;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: .8em;
  margin-left: -20%;
  padding: 25px 20%;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 140%;
}
.insperity-requestless-modal-form .modal-content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 -4% 1.5em;
  text-align: center;
}
.insperity-requestless-modal-form .modal-content form {
  *zoom: 1;
}
.insperity-requestless-modal-form .modal-content form:before, .insperity-requestless-modal-form .modal-content form:after {
  content: '';
  display: table;
}
.insperity-requestless-modal-form .modal-content form:after {
  clear: both;
}
.insperity-requestless-modal-form .modal-content .submit-wrap input[type="button"] {
  background: #FCD400;
  background: -moz-linear-gradient(top, #FCD400 0%, #EEB500 100%);
  background: -o-linear-gradient(top, #FCD400 0%, #EEB500 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FCD400), color-stop(100%, #EEB500));
  border: 1px solid #d9a102;
  border-radius: 3px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2), inset 0px 1px 2px rgba(255, 255, 255, 0.2);
  color: #000000;
  cursor: pointer;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin: 20px auto;
  padding: 10px;
  position: relative;
  width: 205px;
  z-index: 100;
}

.insperity-requestless-modal-form .modal-content .nf-field-container {
  padding: 0 4px;
}
/*@media (min-width: 425px) {
  .insperity-requestless-modal-form .modal-content .nf-field-container {
    float: left;
    width: 50%;
  }
}
.insperity-requestless-modal-form .modal-content .nf-field-container.submit-container {
  clear: both;
  padding: 0;
  width: 100%;
}*/
.insperity-requestless-modal-form .modal-content .nf-field-container.insperity_product-wrap {
  height: 0;
  margin: 0;
}
.insperity-requestless-modal-form .modal-content .ninja-forms-form-wrap label {
  font-size: 14px;
}
.insperity-requestless-modal-form .modal-body {
  min-height: 300px;
  padding: 0 0;
}

.insperity-requestless-modal-form .nf-form-fields-required,
.insperity-requestless-modal-form span.ninja-forms-req-symbol,
.insperity-requestless-modal-form .nf-error-msg.nf-error-field-errors {
  display: none;
}

aside.widget {
  margin-bottom: 30px;
}
aside.widget:last-child {
  margin-bottom: 0;
}

.module.featured-resource-sidebar {
  background: #E1DDCC;
  border: 9px solid #E1DDCC;
  color: #FFFFFF;
  margin-bottom: 20px;
  padding: 0;
  text-align: center;
}
.module.featured-resource-sidebar .featured-text {
  padding: 25px 8px;
}
.module.featured-resource-sidebar h2.title {
  color: #FFFFFF;
}
.module.featured-resource-sidebar a.button {
  border: 1px solid rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  /* FF3.5+ */
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  /* Saf3+, Chrome */
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  /* Standard. Opera 10.5, IE9 */
  color: #000000;
  margin: 25px auto 20px;
}

.page-template-default .content,
.error404 .content,
.search .content {
  padding: 40px 0;
}

.search-results .page-header {
  margin-bottom: 20px;
}
.search-results .col-md-8 .search-form {
  margin-bottom: 40px;
}
.search-results .col-md-12 {
  padding-left: 0;
}
.search-results article {
  border-bottom: 1px solid #E4E4E4;
  *zoom: 1;
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.search-results article:before, .search-results article:after {
  content: '';
  display: table;
}
.search-results article:after {
  clear: both;
}
.search-results .loading-screen {
  margin: 100px auto;
  text-align: center;
}

/* print friendly */
.printfriendly {
  display: none;
}

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

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

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

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

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

  pre,
  blockquote {
    border: 1px solid #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;
  }
}

/* Custom style for 30 years magazine resource */
body.postid-22958 #insperity_ninja_form_widget-3 {
  display: none;
}


/*styles for moving the sticky footer button to the header in certain cases
@media(min-width: 769px) {
  body:not(.bpa):not(.partner) #sticky-contact {
    display: none;
  }
  body:not(.bpa):not(.partner) .bottom-bar .custom-menu {
    width: 59%;
  }
}
@media(min-width: 876px) {
  body:not(.bpa):not(.partner) .bottom-bar .custom-menu {
    width: 52%;
  }
}
@media(min-width: 992px) {
  body:not(.bpa):not(.partner) .bottom-bar .custom-menu {
    width: 53%;
  }
}
@media(min-width: 992px) {
  body:not(.bpa):not(.partner) .bottom-bar .custom-menu {
    width: 56%;
  }
}
@media(min-width: 769px) and (max-width: 875px) {
  body:not(.bpa):not(.partner) #header-form-email {
    width: 16%;
    font-size: 14px !important;
    padding: 5px !important;
    margin-top: .75rem;
  }
}
#header-form-email {
  display: none;
}
body:not(.bpa):not(.partner) #header-form-email {
  display: block;
  margin-top: .75rem;
  float: right;
}
*/
/* Ninja Forms 3.X */

.field-wrap button.btn-block, 
.field-wrap input[type=button].btn-block, 
.field-wrap input[type=submit].btn-block  {
  display:block;
  width: 100%;
}

.hide-nf-form-fields-required .nf-form-fields-required {
  display: none;
}



