/* Neat 1.7.0
 * http://neat.bourbon.io
 * Copyright 2012-2014 thoughtbot, inc.
 * MIT License */
html {
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

/*
    Variable: fontsize-root
    'px' font size on root (html) element (with units removed).  Browser default is 16px.  Used to determine sizes for rem function.

    -@ based on http://css-tricks.com/snippets/css/less-mixin-for-rem-font-sizing/
    */
/*
    Mixin: rem (https://github.com/tobymackenzie/html-boilerplate/blob/master/web/_/styles/src/mixins/_units.scss)
    Output a property with pixel values for non 'rem' supporting browsers followed by the 'rem' equivalent for rem support browsers.  Can't currently accept values with comma separation, like multiple backgrounds or the like.

    -@ based on http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
    */
/*
    Mixin: stripUnit
    Strip the unit from a value that has a unit

    -@ based on http://css-tricks.com/snippets/css/less-mixin-for-rem-font-sizing/
    */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device 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/10/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 of focused elements when they are also in an
 * active/hover state.
 */
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"] {
  -moz-box-sizing: border-box;
  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.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  /* 2 */ }

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

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

td, th {
  padding: 0; }

body {
  -webkit-font-smoothing: antialiased;
  color: #333;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75em;
  line-height: 1.5; }

h1, h2, h3, h4, h5, h6 {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin: 0 0 0.75em;
  color: #0073CF; }

h1 {
  font-size: 2.083em;
  line-height: 1.2em;
  margin: 0 0 0.5em; }

h2 {
  font-size: 1.3em;
  line-height: 1.5em;
  margin: 1.25em 0 0.75em; }

h3 {
  font-size: 1.14em;
  line-height: 1.2em;
  margin: 1em 0 0.5em; }

h4, h5, h6 {
  font-size: 1em;
  margin: 1.364em 0 0.25em; }

p {
  margin: 0 0 0.75em; }

a {
  color: #002C77;
  text-decoration: none;
  -webkit-transition: color 0.2s linear;
  transition: color 0.2s linear;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear; }
  a:active, a:focus, a:hover {
    color: #00102a;
    text-decoration: underline; }
  a:active, a:focus {
    outline: none; }

hr {
  border: none !important;
  border-bottom: 1px solid #ddd !important;
  margin: 1.5em 0 !important; }

img, picture {
  margin: 0;
  max-width: 100%; }

blockquote {
  margin-left: 2em;
  margin-right: 2em; }

pre {
  font-size: 1.1em;
  margin: 0 0 1.364em; }

hr {
  height: 1px;
  border: 1px solid #666; }

strong {
  font-family: Helvetica, Arial, sans-serif; }

figure {
  margin: 0; }

ul, ol {
  padding-left: 2em; }

ul ul, ul ol, ol ol, ol ul {
  margin: 0.5em 0 0; }

li {
  margin: 0 0 0.5em;
  padding: 0; }

ul {
  list-style-type: disc; }

/* Word Style lists presettings */
ol {
  list-style-type: decimal; }

ol ol {
  list-style-type: lower-alpha; }

ol ol ol {
  list-style-type: decimal; }

dl {
  margin: 0 0 2em; }

dt {
  margin: 0 0 1em;
  padding: 0; }

dd {
  margin: 0 0 0.5em;
  padding: 0; }

.reset ul, .reset ol, .reset li {
  margin: 0;
  padding: 0;
  list-style: none; }

nav ul, nav ol, nav li {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0; }

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

/* Corrects overflow displayed oddly in IE9 */
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
  white-space: nowrap; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  height: auto; }

html, body {
  height: 100%; }

body {
  -webkit-overflow-scrolling: touch; }

.header, .main, .footer {
  clear: both;
  float: left;
  width: 100%; }

.wrap {
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 0 20px;
  padding: 0 1.25rem;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out; }
  .wrap:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 480px)  {
    .wrap {
      padding: 0 40px;
      padding: 0 2.5rem; } }
  @media screen and (min-width: 768px)  {
    .wrap {
      padding: 0 60px;
      padding: 0 3.75rem; } }
  @media screen and (min-width: 1024px)  {
    .wrap {
      max-width: 980px;
      padding: 0;
      margin: 0 auto; } }

.header {
  position: relative;
  padding: 20px 0 0;
  margin-bottom: 12px;
  text-align: center; }
  .header .site-logo {
    width: 150px;
    height: 41px;
    margin: 0 auto 20px;
    background: url(../../Images/l_battelle.png) no-repeat 0 0;
    text-indent: -9999em;
    font-size: 0;
    line-height: 0; }
    .header .site-logo a {
      display: block;
      height: 100%; }
  .header .utility .menu {
    display: none; }
  .header .utility .site-search {
    display: block;
    margin: 0 0 10px; }
    .header .utility .site-search fieldset {
      padding: 0;
      margin: 0; }
    .header .utility .site-search label {
      display: none; }
    .header .utility .site-search input[type="text"] {
      padding: 7px;
      background: #ccc;
      border: 0;
      color: #444;
      font-size: 1em;
      margin: 0;
      font-style: italic;
      font-weight: bold; }
    .header .utility .site-search input[type="submit"] {
      display: none; }
  .header .utility .social-media {
    display: block;
    padding: 0;
    margin: 0 0 10px 0; }
    .header .utility .social-media li {
      width: 25px;
      height: 25px;
      display: inline-block;
      margin: 0 0 0 -2px;
      border-radius: 50%;
      border: 1px solid #484c50;
      background: url(../../Images/sp_social-icons.png) no-repeat; }
      .header .utility .social-media li a {
        display: block;
        height: 100%;
        width: 100%;
        text-indent: -9999em; }
      .header .utility .social-media li.facebook {
        background-position: 0px 0px; }
      .header .utility .social-media li.twitter {
        background-position: -25px 0px; }
      .header .utility .social-media li.linkedin {
        background-position: -50px 0px; }
      .header .utility .social-media li.youtube {
        background-position: -75px 0px; }
      .header .utility .social-media li.rss {
        margin-right: 0;
        background-position: -100px 0px; }
  @media screen and (min-width: 768px)  {
    .header {
      text-align: left; }
      .header .site-logo {
        float: left;
        margin: 0 20px 20px 0; }
      .header .utility {
        float: right; }
        .header .utility .menu {
          display: block;
          text-align: right;
          margin: 0 0 10px 0; }
          .header .utility .menu li {
            display: inline-block;
            margin-right: 10px; }
        .header .utility .site-search {
          display: inline-block;
          width: 180px;
          vertical-align: middle; }
        .header .utility .social-media {
          display: inline-block;
          vertical-align: middle; } }
  @media screen and (min-width: 1024px)  {
    .header .site-logo {
      margin: 0 0 20px 40px; }
    .header .utility {
      margin-top: 5px; }
      .header .utility .menu {
        display: inline-block;
        margin: 0;
        vertical-align: middle; }
        .header .utility .menu li {
          margin-right: 30px; }
      .header .utility .site-search {
        margin: 0 10px 0 0; }
      .header .utility .social-media {
        margin: 0; } }

.aside {
  display: block !important;
  width: 100% !important;
  margin-bottom: 20px !important; }
  @media screen and (min-width: 768px)  {
    .aside {
      float: left;
      width: 230px !important;
      margin: 0 !important; } }

.content {
  display: block !important;
  width: 100% !important;
  margin-bottom: 20px; }
  @media screen and (min-width: 768px)  {
    .content {
      float: right;
      width: -webkit-calc(100% - 250px) !important;
      width: calc(100% - 250px) !important;
      margin: 0 !important; } }

@media screen and (max-width: 1023px)  {
  .content .sf_colsIn, .content .sf_colsOut {
    display: block !important;
    float: left !important;
    width: 100% !important;
    margin: 0 !important; } }

@media screen and (max-width: 479px)  {
  .sf_colsIn, .sf_colsOut {
    display: block !important;
    float: left !important;
    width: 100% !important;
    margin: 0 !important; } }

@media screen and (max-width: 767px)  {
  .sf_3cols_1_33, .sf_3cols_2_34, .sf_3cols_3_33 {
    display: block !important;
    float: left !important;
    width: 100% !important;
    margin: 0 !important; } }

@media screen and (max-width: 639px)  {
  .sf_2cols_2_50, .sf_2cols_1_50 {
    display: block !important;
    float: left !important;
    width: 100% !important;
    margin: 0 !important; } }

@media screen and (min-width: 640px)  {
  .sf_2cols_2in_50, .sf_2cols_1in_50 {
    margin: 0 !important; }
  .sf_2cols_1in_50 {
    padding-right: 6px !important; }
  .sf_2cols_2in_50 {
    padding-left: 6px !important; }
  .sf_3cols_1in_33, .sf_3cols_2in_34, .sf_3cols_3in_33 {
    margin: 0 !important; }
  .sf_3cols_1in_33 {
    padding-right: 6px !important; }
  .sf_3cols_2in_34 {
    padding-right: 6px !important;
    padding-left: 6px !important; }
  .sf_3cols_3in_33 {
    padding-left: 6px !important; } }

.sfContentBlock.ag-about-table table td {
  vertical-align: top !important; }
  .sfContentBlock.ag-about-table table td:first-child {
    min-width: 70px;
    min-width: 4.375rem; }
    @media screen and (max-width: 767px)  {
      .sfContentBlock.ag-about-table table td:first-child {
        padding-left: 5px;
        padding-left: 0.3125rem; } }
    @media screen and (min-width: 768px)  {
      .sfContentBlock.ag-about-table table td:first-child {
        min-width: 100px;
        min-width: 6.25rem; } }
  .sfContentBlock.ag-about-table table td h2 {
    margin-top: 0; }

.main {
  margin: 0 0 2em; }

.main .content-block .sfContentBlock > h2 {
  margin-top: 0; }

.sf_1col_1_100.featured-banner {
  width: 100%;
  margin: 0 0 1em; }

.featured-banner img, .aside img, .widget img {
  max-width: 100%;
  vertical-align: bottom; }

.aside img {
  max-width: 100%; }

/* Banner Image
------------------------------------------*/
.featured-banner {
  position: relative; }

.featured-banner .entry-content {
  position: absolute;
  top: 35px;
  left: 25px;
  width: 370px;
  padding: 20px 25px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 1.333em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  color: #fff; }

.featured-banner h1 {
  color: #fff;
  font: normal 1.75em/1.2em Arial, Helvetica, sans-serif; }

.featured-banner a.button {
  padding: 10px 17px 10px 43px;
  font-size: 0.937em;
  background: #e7e7e7 url(../../Images/bg_hero-link.png) no-repeat 11px 50%;
  text-transform: uppercase;
  text-decoration: none; }

.featured-banner a.button:hover {
  background-color: #f4f4f4; }

/* Lead In Block
------------------------------------------*/
.lead-in {
  width: 100%;
  margin: 0 0 1em;
  clear: both; }

.lead-in h1 {
  margin-bottom: 0.25em;
  color: #002C77; }

.lead-in p {
  font: normal 1.416em/1.294em Arial, Helvetica, sans-serif; }

.lead-in.grey-line p, .content-block.grey-line h1 {
  padding-bottom: 1em;
  border-bottom: 1px solid #e4e4e4; }

.content-block.grey-line h1 {
  padding-bottom: 0.5em; }

.lead-in.grey-line br {
  display: none; }

.footer {
  position: relative;
  color: #fff; }
  .footer a {
    color: #fff; }
  .footer .primary {
    float: left;
    width: 100%;
    padding: 25px 0 30px;
    background: #002d4f; }
    .footer .primary .footer-navigation {
      display: block;
      margin: 0 0 10px; }
      .footer .primary .footer-navigation li {
        display: inline-block;
        margin-right: 5px; }
        .footer .primary .footer-navigation li a {
          display: block;
          padding-left: 20px;
          background: url(../../Images/bg_footer-link.gif) no-repeat 0 2px; }
    .footer .primary .about {
      display: block;
      color: #ccc; }
    .footer .primary .org {
      display: inline-block;
      text-align: center; }
    .footer .primary .location {
      border: 4px solid #fff; }
  .footer .secondary {
    float: left;
    width: 100%;
    padding: 10px 0;
    background: #1a326d;
    font-size: 0.938em;
    text-align: center; }
    .footer .secondary .copyright {
      display: block; }
    .footer .secondary .menu {
      display: block; }
      .footer .secondary .menu li {
        display: inline-block;
        padding: 0;
        margin: 0 0 5px; }
        .footer .secondary .menu li:after {
          content: '|';
          padding-left: 5px;
          margin-right: 5px; }
        .footer .secondary .menu li:last-child:after {
          display: none; }
  @media screen and (min-width: 768px)  {
    .footer .primary .footer-navigation {
      float: left; }
    .footer .primary .org {
      position: absolute;
      top: 0;
      right: 0; }
    .footer .primary .location {
      margin: 0 0 15px; }
    .footer .secondary .copyright {
      float: left;
      display: inline-block;
      max-width: 40%;
      text-align: left; }
    .footer .secondary .menu {
      float: right;
      display: inline-block; } }

@media screen and (min-width: 1024px)  {
  .footer .secondary .copyright {
    max-width: 710px; } }

.chromeframe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 20px;
  background-color: #f50000;
  background-image: -webkit-linear-gradient(#f50000, #d30000);
  background-image: linear-gradient(#f50000, #d30000);
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center; }
  .chromeframe a {
    text-decoration: underline;
    color: #fff;
    font-style: italic; }

button a {
  color: #fff; }

a.more, button.more, input.more {
  padding-left: 25px;
  background: url(../../Images/i_blue-link.png) no-repeat 0 50%; }

button.more, input.more {
  background-color: #efefef;
  background-position: 5px 50%;
  color: #002C77;
  text-transform: uppercase; }

input.more {
  width: auto;
  height: 28px;
  padding-right: 10px;
  border: 0;
  cursor: pointer; }

.case-study-group-list-wrapper a.more {
  margin-top: 0;
  display: block;
  cursor: pointer; }

fieldset {
  border: 0;
  margin: 0 0 0.75em;
  padding: 1.5em; }

input, label, select {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75em; }

label {
  font-weight: 600;
  margin-bottom: 0.375em; }
  label.required::after {
    content: "*"; }
  label abbr {
    display: none; }

textarea, input[type="email"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="url"], input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="time"], input[type="week"], select {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
  margin-bottom: 0.75em;
  padding: 0.5em;
  -webkit-transition: border-color;
  transition: border-color;
  width: 100%; }
  textarea:hover, input[type="email"]:hover, input[type="number"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="tel"]:hover, input[type="text"]:hover, input[type="url"]:hover, input[type="color"]:hover, input[type="date"]:hover, input[type="datetime"]:hover, input[type="datetime-local"]:hover, input[type="month"]:hover, input[type="time"]:hover, input[type="week"]:hover, select:hover {
    border-color: #c4c4c4; }
  textarea:focus, input[type="email"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, select:focus {
    border-color: #002C77;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 35, 93, 0.7);
    outline: none; }

textarea {
  resize: vertical; }

input[type="search"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }

input[type="checkbox"], input[type="radio"] {
  display: inline;
  margin-right: 0.375em; }

input[type="file"] {
  padding-bottom: 0.75em;
  width: 100%; }

select {
  margin-bottom: 1.5em;
  max-width: 100%;
  width: auto; }

/* =Forms
==================================================================================================================*/
/* Buttons */
input[type="submit"] {
  width: auto;
  height: auto;
  padding: 0.45em 0.75em 0.45em 2.5em;
  background: #e7e7e7 url(../../Images/i_blue-link.png) no-repeat 10% 50%;
  border: 1px solid #e7e7e7;
  color: #000;
  font-size: 100%;
  line-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  *overflow: visible;
  text-decoration: none; }

input[type="submit"]:hover {
  background-color: #f4f4f4;
  border-color: #ddd; }

a.button {
  float: left;
  display: block;
  background: #e7e7e7;
  border: 0;
  color: #000;
  text-decoration: none; }

a.button:hover {
  background-color: #86c683; }

input[type="checkbox"], input[type="radio"] {
  width: auto;
  height: auto;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* Addresses box sizing set to content-box in IE8/9 */
  padding: 0;
  /* Addresses excess padding in IE8/9 */
  border: 0; }

input[type="search"] {
  padding-left: 30px;
  background: #fff;
  -webkit-appearance: textfield;
  /* Addresses appearance set to searchfield in S5, Chrome */
  -moz-box-sizing: content-box;
  /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Corrects inner padding displayed oddly in S5, Chrome on OSX */ }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
  /* Corrects inner padding and border displayed oddly in FF3/4 */ }

textarea {
  width: 90%;
  min-height: 5em;
  overflow: auto;
  /* Removes default vertical scrollbar in IE6/7/8/9 */
  vertical-align: top;
  /* Improves readability and alignment in all browsers */
  resize: none;
  /* no resizing */ }

/* Form Structure
------------------------------------------*/
.fieldset {
  float: left;
  width: 100%;
  margin: 0 0 1em;
  background: #edf1f4;
  border: 1px solid #dae3e9;
  border-radius: 3px; }

.field, .fieldgroup {
  position: relative;
  margin-bottom: 1.5em; }

.fieldgroup .field {
  float: left;
  margin-right: 2em; }

.buttons {
  margin-bottom: 1em; }

.field input:focus, .field textarea:focus, .field select:focus {
  border-color: #4d3d2c; }

.inline-label label {
  display: inline;
  margin-left: 0.5em;
  font-family: Arial, Helvetica, sans-serif; }

/* Checkboxes & Radios
------------------------------------------*/
.checkboxes ul, .radios ul {
  padding-left: 0.5em; }

.checkboxes li, .radios li {
  list-style: none;
  margin-bottom: 0.5em; }

.checkboxes input[type="checkbox"] {
  width: auto;
  height: auto; }

.checkboxes label {
  display: inline;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif; }

/* Field tips
------------------------------------------*/
em.summary {
  display: block;
  padding: 0.5em 0.2em;
  font-style: normal; }

span.req-field {
  display: block;
  margin: 0 0 0.5em; }

span.req-field label {
  display: inline; }

span.req-field .req {
  padding: 0.25em;
  margin-left: 0.25em;
  background: #b6c8d3;
  color: #fff;
  font-size: 0.86em;
  font-style: normal;
  text-transform: uppercase;
  border-radius: 3px; }

/* Validation
------------------------------------------*/
.field-validation {
  display: block;
  width: 100%;
  margin: 0.5em 0 1em;
  overflow: hidden;
  border-radius: 3px; }

.field-validation-info, .field-validation-error, .field-validation-success {
  padding: 0.6em 0.6em 0.6em 2.5em;
  border: 1px solid;
  color: #fff;
  line-height: 100%; }

/* Info.   */
.field-validation-info {
  background-color: #48a6d1;
  background-position: -3px -1706px;
  border-color: #3c96c0; }

/* Error   */
.field-validation-error {
  background-color: #d65e5e;
  background-position: -3px -757px;
  border-color: #c44e4e; }

/* Success */
.field-validation-success {
  background-color: #6fb26c;
  background-position: -3px -717px;
  border-color: #5fa05b; }

#utility .field-validation {
  width: 215px; }

/* Inline Form elements
------------------------------------------*/
[class*="form-inline"] > label, [class*="form-inline"] > .sfFieldWrp {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  zoom: 1;
  *display: inline; }

/* 30/70 Split*/
.form-inline-30 > label {
  width: 30%; }

.form-inline-30 > .sfFieldWrp {
  width: 67%; }

/* 40/60 Split*/
.form-inline-40 > label {
  width: 40%; }

.form-inline-40 > .sfFieldWrp {
  width: 57%; }

/* 50/50 Split*/
.form-inline-50 > label {
  width: 50%; }

.form-inline-50 > .sfFieldWrp {
  width: 47%; }

/* Filter Area
------------------------------------------*/
.filter {
  margin: 0 0 1em; }

.filter select {
  margin-right: 1em; }

/* =Supplier Registration Form
==================================================================================================================*/
.supplier-registration .sfRadioList, .supplier-registration .sfCheckListBox {
  display: block;
  margin-top: 1em; }

.supplier-registration input[type="text"] {
  width: 95%;
  margin: 0 0 1em;
  background: #f4f4f4;
  border: 0; }

.supplier-registration input[type="radio"], .supplier-registration input[type="checkbox"] {
  float: left;
  margin: 6px 0 0;
  line-height: 30px; }

.supplier-registration input[type="radio"] + label, .supplier-registration input[type="checkbox"] + label {
  float: left;
  padding: 0;
  margin-left: 0.5em;
  margin-right: 0.5em;
  line-height: 26px; }

.supplier-registration .state input[type="text"] {
  width: 75px; }

.supplier-registration .zip input[type="text"] {
  width: 125px; }

.supplier-registration .company-contact label {
  display: inline;
  margin: 0 0.5em; }

.supplier-registration .small-disadvantaged-business input[type="text"], .supplier-registration .certified-eight-a input[type="text"], .supplier-registration .hub-zone input[type="text"] {
  width: 50px; }

/* Business Classification */
.supplier-registration .sfCheckListBox {
  float: left;
  display: block;
  width: 100%; }

.supplier-registration .sfCheckListBox .field {
  float: left;
  margin: 0 0 0.5em; }

.supplier-registration .sfCheckListBox .field.half {
  width: 50%; }

.supplier-registration .sfCheckListBox .field.third {
  width: 24%; }

.supplier-registration .sfCheckListBox .field.third.first {
  width: 40%;
  margin-right: 10%; }

.supplier-registration .small-disadvantaged-business, .supplier-registration .certified-eight-a, .supplier-registration .hub-zone {
  float: right;
  width: 153px; }

.supplier-registration .hub-zone {
  width: 154px; }

.supplier-registration .small-disadvantaged-business label, .supplier-registration .certified-eight-a label, .supplier-registration .hub-zone label {
  float: left;
  margin-left: 0;
  margin-right: 0; }

.supplier-registration .small-disadvantaged-business .sfFieldWrp, .supplier-registration .certified-eight-a .sfFieldWrp, .supplier-registration .hub-zone .sfFieldWrp {
  float: left;
  display: inline; }

.supplier-registration .small-disadvantaged-business .sfFieldWrp input, .supplier-registration .certified-eight-a .sfFieldWrp input, .supplier-registration .hub-zone .sfFieldWrp input {
  float: left;
  margin: 0; }

.supplier-registration .agencies {
  margin-bottom: 0.25em; }

.supplier-registration .agencies input[type="text"] {
  width: 705px; }

.sfError {
  margin: 0 0 2em;
  color: #c00; }

.sfSuccess {
  font: normal 2.083em/1.2em Arial, Helvetica, sans-serif;
  margin: 0 0 0.5em; }

figure.photo, figure.video {
  position: relative;
  margin: 0 0 1em; }

figure.photo a, figure.video a {
  display: block;
  background: #ddd;
  text-align: center; }

figure.video .play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 78px;
  height: 78px;
  margin: -39px 0 0 -39px;
  background: url(../../Images/sp_play.png) no-repeat 0 0;
  cursor: pointer; }

figure.video .play:hover {
  background-position: 0 -78px; }

@media screen and (max-width: 479px)  {
  img.adm_process {
    display: none; } }

.navigation {
  clear: both;
  float: left;
  width: 100%;
  background: #002C77;
  z-index: 1000; }
  .navigation .mainmenu-toggle {
    position: relative;
    width: 100%;
    display: block;
    background: #002C77;
    color: #fff;
    line-height: 40px;
    cursor: pointer; }
    .navigation .mainmenu-toggle .icon {
      position: relative;
      display: inline-block;
      vertical-align: middle;
      margin: 0 10px;
      background: #fff;
      height: 4px;
      width: 24px;
      -webkit-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s; }
      .navigation .mainmenu-toggle .icon:before, .navigation .mainmenu-toggle .icon:after {
        background: #fff;
        content: '';
        position: absolute;
        top: -8px;
        display: block;
        height: 4px;
        width: 24px;
        z-index: -1px;
        -webkit-transition: all 0.3s ease 0s;
        transition: all 0.3s ease 0s; }
      .navigation .mainmenu-toggle .icon:after {
        top: 8px; }
    .navigation .mainmenu-toggle:hover, .navigation .mainmenu-toggle:active {
      background: #0073CF; }
      .navigation .mainmenu-toggle:hover .icon:before, .navigation .mainmenu-toggle:active .icon:before {
        top: -9px; }
      .navigation .mainmenu-toggle:hover .icon:after, .navigation .mainmenu-toggle:active .icon:after {
        top: 9px; }
  .navigation.open .mainmenu-toggle:hover, .navigation.open .mainmenu-toggle:active {
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s; }
  .navigation.open .mainmenu-toggle .icon {
    position: relative;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg); }
    .navigation.open .mainmenu-toggle .icon:before, .navigation.open .mainmenu-toggle .icon:after {
      top: 0;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg); }
    .navigation.open .mainmenu-toggle .icon:before {
      display: none; }
  .navigation nav {
    display: none; }
    .navigation nav > ul {
      clear: both;
      display: block;
      margin-bottom: 0;
      background: #fff; }
      .navigation nav > ul li {
        position: relative;
        display: block;
        border-top: 1px solid #ddd; }
        .navigation nav > ul li a {
          display: block;
          padding: 10px;
          color: #333; }
          .navigation nav > ul li a:hover, .navigation nav > ul li a:active {
            background: #0073CF;
            color: #fff;
            text-decoration: none; }
            @media screen and (min-width: 1024px)  {
              .navigation nav > ul li a:hover, .navigation nav > ul li a:active {
                background: white;
                color: #002C77; } }
        .navigation nav > ul li.hasChildren a {
          position: relative;
          padding-right: 30px; }
          .navigation nav > ul li.hasChildren a span {
            position: absolute;
            display: inline-block;
            right: 10px;
            top: 50%;
            height: 20px;
            width: 20px;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            z-index: 100;
            cursor: pointer; }
            .navigation nav > ul li.hasChildren a span:after, .navigation nav > ul li.hasChildren a span:before {
              content: '';
              display: inline-block;
              position: absolute;
              top: 0;
              left: 50%;
              height: 20px;
              width: 4px;
              background: #002C77;
              -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
            .navigation nav > ul li.hasChildren a span:before {
              top: 50%;
              left: 0;
              height: 4px;
              width: 20px;
              -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
        .navigation nav > ul li.hasChildren.open span:after {
          display: none; }
        .navigation nav > ul li.hasChildren ul span {
          display: none; }
      .navigation nav > ul ul {
        display: none;
        border-bottom: 3px solid #333;
        background: #ddd; }
        .navigation nav > ul ul li {
          display: block;
          border-top: 1px solid #ccc; }
          .navigation nav > ul ul li a {
            padding-left: 25px; }
        .navigation nav > ul ul div {
          display: none; }
  @media screen and (min-width: 768px)  { }
  @media screen and (min-width: 1024px)  {
    .navigation .mainmenu-toggle {
      display: none; }
    .navigation nav {
      float: left;
      display: block !important;
      background: #002C77;
      color: #fff;
      line-height: 40px; }
      .navigation nav > ul > li {
        float: left;
        display: inline-block;
        margin: 0 5px 0 0;
        border: 0; }
        .navigation nav > ul > li > a {
          display: block;
          padding: 0 8px;
          color: #fff;
          font-size: 15px;
          font-size: 0.9375rem;
          font-weight: bold; }
          .navigation nav > ul > li > a span {
            display: none !important; }
      .navigation nav > ul > li > ul {
        position: absolute;
        top: 100%;
        left: -9999em; }
        .navigation nav > ul > li > ul span {
          display: none !important; }
      .navigation nav > ul > li:hover > ul {
        display: block;
        left: 0;
        width: 200px;
        padding: 0;
        margin: 0;
        background: #fff;
        border: 0;
        font-size: 14px;
        list-style: none;
        z-index: 10000; }
        .navigation nav > ul > li:hover > ul > li {
          position: static; }
          .navigation nav > ul > li:hover > ul > li > a {
            display: block;
            padding: 5px;
            line-height: 1.5em; }
      .navigation nav > ul > li li > div {
        display: block;
        position: absolute;
        top: 0;
        left: -9999em;
        min-height: 300px;
        width: 460px;
        float: left;
        background: #efefef;
        border-left: 1px solid #ccc; }
        .navigation nav > ul > li li > div ul {
          display: block;
          float: left;
          width: 100%;
          border: 0;
          background: none; }
          .navigation nav > ul > li li > div ul li {
            float: left;
            width: 50%;
            padding: 0 16px;
            margin: 0;
            border: 0; }
            .navigation nav > ul > li li > div ul li:nth-child(2n+1) {
              clear: both; }
            .navigation nav > ul > li li > div ul li a {
              padding: 10px;
              line-height: 1.2em; }
      .navigation nav > ul > li li:hover > div {
        left: 200px; } }

@media screen and (min-width: 1024px)  {
  .navigation li ul li:hover > div > ul > li > a:hover {
    background: #ccc; } }

.section-menu {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal; }
  @media screen and (max-width: 479px)  {
    .section-menu {
      margin-bottom: 10px;
      margin-bottom: 0.625rem; } }

.section-menu li {
  border-top: 1px solid #bebebe;
  position: relative;
  float: none; }

.section-menu li a {
  padding-left: 25px; }

.section-menu li li a {
  text-transform: none;
  padding-left: 42px;
  padding-right: 35px; }

.section-menu li li li a {
  text-transform: none;
  padding-left: 60px; }

.section-menu li li span {
  left: 18px; }

.section-menu a {
  display: block;
  padding: 12px 8px;
  color: #fff;
  text-decoration: none;
  background: #9e9e9e; }

.section-menu a:hover {
  background: #002C77 url(../../images/bg_nav-highlight.png) no-repeat right center; }

.section-menu .menu-toggle:hover + a {
  background: #002C77 url(../../images/bg_nav-highlight.png) no-repeat right center; }

.section-menu .current-page > a {
  background: #002C77 url(../../images/bg_nav-highlight.png) no-repeat right center; }

.section-menu ul ul {
  display: none; }

/* Menu Toggle Arrows
	------------------------------------------*/
.section-menu .menu-toggle {
  position: absolute;
  left: 5px;
  top: 14px;
  width: 15px;
  height: 15px;
  cursor: pointer;
  display: block; }

.section-menu li li .menu-toggle {
  left: 22px; }

.section-menu .menu-close {
  background: url(../../images/i_nav-plus-minus.png) no-repeat 0 0; }

.section-menu .menu-open {
  background: url(../../images/i_nav-plus-minus.png) no-repeat 0 -15px; }

.wrap .hide {
  display: none; }

.rdTable .rdContent .hide {
  display: inline-block; }

.sf_cols.gbu {
  margin-top: -1em; }

.gbu .feature-content {
  position: relative;
  width: 980px;
  height: 400px;
  background: url(../../images/bg_our-work-inner.jpg) repeat-x 0 0; }

.gbu .features {
  padding: 0px;
  margin: 0px; }

.gbu .features > li {
  position: absolute;
  top: 0px;
  left: 260px;
  width: 700px;
  list-style: none;
  background: #fff; }

.gbu .features > li .sfContentBlock {
  font: 300 0.875em/22px Arial, Helvetica, sans-serif; }

.gbu .features li.slide-cyber {
  display: none; }

.gbu .features li.slide-critical {
  display: none; }

.gbu .features li .slide-content {
  padding: 35px 45px; }

.gbu .features li .banner-image {
  width: 700px;
  overflow: hidden; }

.gbu .features li .sfContentBlock h1, .gbu .features li .sfContentBlock h2 {
  font: 700 2.25em/20px Arial, Helvetica, sans-serif;
  margin-bottom: 20px;
  color: #0073CF; }

.gbu .features li .sfContentBlock h2 {
  font-size: 2em; }

.gbu .features li .sfContentBlock h3 {
  font-size: 1.65em; }

.gbu .features li .sfContentBlock p {
  margin-bottom: 19px;
  font-size: 1.25em; }

.gbu .features li .sfContentBlock ul li {
  list-style: disc;
  margin-left: 50px;
  font-size: 1.25em; }

#read-more {
  display: block;
  width: 150px;
  height: 24px;
  margin: 15px 0;
  background: url(../../images/sp_read-more-less.jpg) no-repeat 0 0;
  text-indent: -9000em;
  cursor: pointer; }

#read-more.down {
  background-position: 0 -24px; }

.gbu .features-nav {
  float: left;
  display: block;
  width: 260px;
  padding: 0px;
  margin: 0px; }

.gbu .features-nav li {
  list-style: none;
  background: #9e9e9e;
  border-bottom: 1px solid #bebebe;
  margin: 0;
  padding: 0; }

.gbu .features-nav li a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  background: #9e9e9e;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none; }

.gbu .features-nav li:hover, .gbu .features-nav li a:hover {
  background: #002C77 url(../../images/bg_nav-highlight.png) no-repeat left center; }

.gbu .hover-navigation {
  position: relative;
  float: left; }

.sf_cols.breadcrumb-wrap {
  float: left;
  width: 100%; }

.breadcrumbs {
  display: none; }
  @media screen and (min-width: 768px)  {
    .breadcrumbs {
      display: block;
      padding: 0;
      margin: 0 0 10px;
      list-style: none; }
      .breadcrumbs li {
        display: inline-block;
        vertical-align: middle;
        margin: 0 0.5em 0 0;
        padding-right: 15px;
        background: url(../../images/i_breadcrumb-arrow.gif) no-repeat right center; }
        .breadcrumbs li.back, .breadcrumbs li.last {
          padding-right: 0;
          background: none; }
        .breadcrumbs li a {
          color: #002C77; }
        .breadcrumbs li.last a {
          color: #000;
          text-decoration: none;
          cursor: default; }
        .breadcrumbs li.back a {
          display: inline-block;
          padding: 10px 10px 10px 20px;
          color: #fff;
          background: #002C77 url(../../images/i_back-arrow.png) no-repeat 7px center;
          vertical-align: middle; } }

#cmdFirst, #cmdPrev, #cmdNext, #cmdLast {
  margin-top: 1em; }

/* Navigation Arrows */
#pager a[id*="cmdPrev"], #pager a[id*="cmdNext"] {
  float: left;
  text-indent: -9999em;
  width: 7px;
  margin: 1em 0.5em 2em 0;
  padding: 3px 5px;
  border: 1px solid #234c8a;
  line-height: 18px;
  text-decoration: none; }

#pager a[id*="cmdPrev"] {
  background: url('../../images/g_arrow-prev.png') no-repeat center; }

#pager a[id*="cmdNext"] {
  background: url('../../images/g_arrow-next.png') no-repeat center; }

#pager a[id*="cmdPrev"]:hover {
  background: url('../../images/g_arrow-prev.png') no-repeat center, #f0f0f0;
  background: url('../../images/g_arrow-prev.png') no-repeat center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #e2e2e2));
  background: url('../../images/g_arrow-prev.png') no-repeat center, -webkit-linear-gradient(top, #fefefe 0%, #e2e2e2 100%);
  background: url('../../images/g_arrow-prev.png') no-repeat center, linear, top, #fefefe 0%, #e2e2e2 100%; }

#pager a[id*="cmdNext"]:hover {
  background: url('../../images/g_arrow-next.png') no-repeat center, #f0f0f0;
  background: url('../../images/g_arrow-next.png') no-repeat center, -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #e2e2e2));
  background: url('../../images/g_arrow-next.png') no-repeat center, -webkit-linear-gradient(top, #fefefe 0%, #e2e2e2 100%);
  background: url('../../images/g_arrow-next.png') no-repeat center, linear, top, #fefefe 0%, #e2e2e2 100%; }

.sf_pagerNumeric {
  float: left;
  margin: 1em 0 2em; }

.sf_pagerNumeric ul {
  float: left;
  padding: 0;
  margin: 0;
  list-style: none; }

.sf_pagerNumeric li {
  float: left; }

.sf_pagerNumeric a, .sf_pagerNumeric span, #cmdFirst, #cmdLast {
  float: left;
  padding: 3px 5px;
  margin-right: 0.5em;
  border: 1px solid #234c8a;
  line-height: 18px;
  text-decoration: none; }

.sf_pagerNumeric .sf_PagerCurrent, .sf_pagerNumeric .sf_PagerCurrent:hover {
  background: #234c8a;
  color: #fff; }

.sf_pagerNumeric a:hover, #cmdFirst:hover, #cmdPrev:hover, #cmdNext:hover, #cmdLast:hover {
  background: #f0f0f0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fefefe), color-stop(100%, #e2e2e2));
  background: -webkit-linear-gradient(top, #fefefe 0%, #e2e2e2 100%);
  background: linear, top, #fefefe 0%, #e2e2e2 100%; }

.sfsearchResultTitle {
  padding-top: 2em;
  margin: 2em 0 0;
  border-top: 1px solid #f4f4f4; }

/* =Tables
==================================================================================================================*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  /* Prevent cramped-looking tables */ }

caption {
  padding: 0.75em 0; }

tbody {
  border-top: none; }

tr {
  border-bottom: 1px solid #ddd; }

th, td {
  padding: 1em;
  font-size: 100%;
  text-align: left;
  color: #000; }

/* Tablesorter
    ------------------------------------------*/
table .header {
  position: static;
  float: none;
  width: auto;
  height: auto;
  margin: 0;
  background: #fff;
  z-index: 1;
  cursor: pointer; }

table .header:hover {
  text-decoration: underline; }

.table-sort tr:hover {
  background: #f4f4f4; }

/* =Widgets
==================================================================================================================*/
.widget {
  position: relative;
  padding: 13px;
  margin: 0 0 2em;
  background: #efefef;
  clear: both; }

.widget figure.photo, .widget figure.video {
  margin: 0; }

@media screen and (max-width: 1023px)  {
  .aside.widget-area {
    text-align: center; } }
.aside.widget-area section.widget {
  display: inline-block;
  max-width: 236px;
  max-width: 14.75rem; }

section.widget {
  max-width: 236px;
  max-width: 14.75rem; }

/* Promo
------------------------------------------*/
.widget-full-promo {
  padding: 0; }

.widget-promo a, .widget-full-promo a {
  display: block;
  width: 100%;
  height: 100%; }

.widget-full-promo p.description {
  padding: 10px;
  margin: 1em 0 0; }

.widget-promo h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #c4c4c4;
  font: normal 1.166em/1.25em Arial, Helvetica, sans-serif;
  color: #234c8a; }

/* Bio
------------------------------------------*/
.widget-bio ul, .widget-bio li {
  width: 199px;
  min-height: 218px;
  padding: 0;
  margin: 0;
  list-style: none; }

.widget-bio h2 {
  padding-bottom: 10px;
  margin: 1em 0;
  border-bottom: 1px solid #c4c4c4;
  font: normal 1.333em/1em Arial, Helvetica, sans-serif;
  color: #234c8a; }

.widget-bio h3 {
  margin: 0;
  text-transform: uppercase;
  color: #373737;
  font-family: Arial, Helvetica, sans-serif; }

.widget-bio p {
  margin: 0; }

.widget-bio .more {
  position: relative;
  left: -10px;
  bottom: -10px;
  display: block;
  width: 173px;
  padding: 10px 10px 10px 35px;
  margin: -10px 0 0;
  background-color: #ececec;
  background-position: 10px 50%;
  line-height: 21px; }

.widget-bio .linkedin {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url(../../Images/sp_social-media.png) no-repeat -15px -70px;
  text-indent: -9000em; }

/* Feed Aggregator
------------------------------------------*/
ul.feed-aggregator, .feed-aggregator li {
  width: 199px;
  min-height: 218px;
  margin: 0;
  list-style: none; }

.feed-aggregator li {
  padding: 10px; }

.feed-aggregator h2 {
  padding-bottom: 10px;
  margin: 1em 0;
  border-bottom: 1px solid #c4c4c4;
  font: normal 1.333em/1em Arial, Helvetica, sans-serif;
  color: #234c8a; }

.feed-aggregator h3 {
  margin: 0;
  color: #373737;
  font-family: Arial, Helvetica, sans-serif; }

.feed-aggregator p {
  margin: 0; }

.feed-aggregator .more {
  position: relative;
  left: -10px;
  bottom: -10px;
  display: block;
  width: 173px;
  padding: 10px 10px 10px 35px;
  margin: -10px 0 0;
  background-color: #ececec;
  background-position: 10px 50%;
  line-height: 21px; }

/* Media
------------------------------------------*/
.widget-media h2 {
  margin: 0.5em 0 0.25em;
  font: normal 1.333em/1.25em Arial, Helvetica, sans-serif; }

.widget-media h2 a {
  text-decoration: underline; }

.widget-media .caption {
  margin: 0;
  line-height: 1.25em; }

/* Resource
------------------------------------------*/
.widget-resource span {
  float: left;
  display: block;
  width: 62px;
  height: 72px;
  margin: 0 12px 6px 0;
  background: #efefef url(../../Images/g_resource-pdf.png) no-repeat 0 0; }

.widget-resource > span {
  display: none; }

.widget-resource h2 {
  min-height: 58px;
  margin-top: 1em;
  font: normal 1.25em/1.25em Arial, Helvetica, sans-serif;
  color: #234c8a; }

.widget-resource p {
  padding-top: 10px;
  border-top: 1px solid #c4c4c4; }

.widget-resource .more {
  position: relative;
  left: -10px;
  display: block;
  width: 169px;
  padding: 10px 10px 10px 35px;
  margin: 0 0 -10px;
  background-color: #ececec;
  background-position: 10px 50%;
  line-height: 21px; }

/* Contacts
------------------------------------------*/
.widget-contacts {
  background: #fff;
  border: 10px solid #efefef; }

.widget-contacts h2 {
  padding-bottom: 10px;
  margin-top: 0;
  border-bottom: 1px solid #c4c4c4;
  font: normal 1.333em/1.25em Arial, Helvetica, sans-serif;
  color: #234c8a; }

.widget-contacts ul {
  padding: 0;
  margin: 0;
  list-style: none; }

.widget-contacts h3 {
  margin: 0;
  color: #373737;
  font-family: Arial, Helvetica, sans-serif; }

.widget-contacts p {
  margin: 0; }

.widget-contacts .more {
  display: block;
  width: 174px;
  padding: 10px 10px 10px 35px;
  margin: -10px -10px -10px;
  background-position: 10px 50%;
  line-height: 21px; }

.widget-contacts .linkedin {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url(../../Images/sp_social-media.png) no-repeat -15px -70px;
  text-indent: -9000em; }

/* Entry Posts
------------------------------------------*/
.widget-post h2 {
  padding-bottom: 10px;
  margin: 10px 0 8px;
  border-bottom: 1px solid #c4c4c4;
  font: normal 1.333em/1em Arial, Helvetica, sans-serif;
  color: #234c8a; }

.widget-post .caption {
  margin: 0 0 0.5em;
  line-height: 1.25em; }

.widget-post p {
  margin: 0; }

.widget-post .more {
  display: block;
  padding: 10px 10px 10px 35px;
  margin: 0 -10px -10px;
  background-color: #ececec;
  background-position: 10px 50%;
  line-height: 21px; }

/* Homepage Specific */
.index-widget-area .widget-post h2 {
  padding-bottom: 0;
  border: 0; }

.index-widget-area .widget-post .caption {
  padding-bottom: 10px;
  border-bottom: 1px solid #c4c4c4; }

/* Testimonial
------------------------------------------*/
.widget-testimonial {
  padding: 20px 15px;
  margin-top: 15px;
  background: #fff;
  border: 10px solid #efefef; }

.widget-testimonial blockquote:before, .widget-testimonial blockquote:after {
  position: absolute;
  left: 85px;
  height: 32px;
  padding: 5px;
  line-height: 70px;
  background: #fff;
  font-size: 6em;
  font-family: Arial, sans-serif;
  color: #005596; }

.widget-testimonial blockquote:before {
  top: -26px;
  content: "\201C"; }

.widget-testimonial blockquote:after {
  bottom: -26px;
  content: "\201D"; }

.widget-testimonial blockquote {
  margin: 0;
  font-size: 1.166em; }

.widget-testimonial p.cite {
  margin: 0;
  font-size: 0.857em;
  text-align: right; }

.widget-testimonial p.cite strong {
  display: block; }

/* Case Study
------------------------------------------*/
.widget-casestudy h2 {
  margin-top: 0.5em; }

.case-study-group-filter label {
  display: inline;
  margin-right: 0.5em; }

.case-study-group h2.case-study-group-title {
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5em; }

.print-button {
  float: right;
  width: 80px;
  height: 30px;
  background: url(../../Images/btn_print.gif) no-repeat 0 0;
  text-indent: -9000em;
  cursor: pointer; }

/* People
------------------------------------------*/
.people .entry-title {
  margin-bottom: 0px; }

/* News
------------------------------------------*/
.widget-news a {
  display: block;
  width: 200px;
  height: 230px; }

.widget-news h3 {
  position: relative;
  top: 75px;
  width: 160px;
  padding: 10px;
  margin: 0 0 0 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.7);
  color: #fff; }

.widget-news.globe a {
  background: url(../../Images/p_widget-news-globe.jpg) no-repeat 0 0; }

.widget-news.mobile a {
  background: url(../../Images/p_widget-news-mobile.jpg) no-repeat 0 0; }

.widget-news.paper a {
  background: url(../../Images/p_widget-news-paper.jpg) no-repeat 0 0; }

/* Gallery
------------------------------------------*/
.gallery {
  width: 670px;
  padding: 25px;
  border: 1px solid #d2d2d2; }

.inner.two-col.no-widget-area .content .gallery {
  width: 670px; }

.gallery ul {
  padding: 0;
  margin: 0;
  list-style: none; }

.gallery li {
  position: relative;
  float: left;
  width: 198px;
  margin: 0 30px 30px 0; }

.gallery li:nth-child(3n), .gallery li.last {
  margin-right: 0; }

.gallery li:nth-child(3n+1) {
  clear: left; }

.gallery li img {
  max-width: 100%; }

.gallery li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000;
  text-decoration: none; }

.gallery li .photo {
  height: 150px;
  margin: 0 0 0.5em;
  overflow: hidden; }

/* Album Icon */
.gallery li .icon {
  position: absolute;
  top: 112px;
  right: -12px;
  display: block;
  width: 71px;
  height: 51px;
  background: url(../../Images/i_gallery-project.png) no-repeat 0 0;
  z-index: 10; }

/* Gallery Meta */
.gallery .meta p {
  margin: 0; }

.gallery .entry-date {
  font-weight: bold;
  font-size: 1.166em; }

.gallery .entry-title {
  margin: 0;
  font-size: 1.166em; }

.gallery .download {
  float: right;
  width: auto; }

.download {
  padding-right: 15px;
  background: url(../../Images/i_media-download.gif) no-repeat 100% 50%;
  font-size: 0.916em;
  color: #00528e;
  text-decoration: underline; }

/* Photo Blocks
------------------------------------------*/
.photo-block-list {
  padding: 0;
  margin: 0;
  list-style: none; }

.photo-block-list > li {
  position: relative;
  padding: 0.833em 17px 0.833em 80px;
  margin: 0;
  border-top: 1px solid #e4e4e4; }

.photo-block-list .photo {
  position: absolute;
  top: 12px;
  left: 0;
  width: 84px;
  height: 98px; }

.photo-block-list .photo img {
  max-width: 100%; }

.photo-block-list h2 {
  margin-top: 0; }

.photo-block-list p {
  font-size: 14px; }

.photo-block-list li:first-child {
  border: 0; }

/* Inside Tabs */
.tabs .photo-block-list > li {
  padding-left: 120px;
  margin: 0 -17px; }

.tabs .photo-block-list .photo {
  left: 17px; }

.photo-block-list .photo {
  max-width: 84px;
  max-width: 5.25rem; }
  @media screen and (max-width: 767px)  {
    .photo-block-list .photo {
      width: 60px; } }
.photo-block-list > li {
  min-height: 120px;
  min-height: 7.5rem;
  padding-left: 80px; }
  @media screen and (min-width: 768px)  {
    .photo-block-list > li {
      padding-left: 100px; } }

/* Directory List
------------------------------------------*/
.directory {
  padding: 0;
  margin: 0;
  list-style: none; }

.directory li {
  padding: 1em 0;
  border-top: 1px solid #d2d2d2;
  overflow: hidden; }

.directory li:first-child {
  border: 0; }

.directory li span {
  float: left;
  display: block; }

.directory .listing-phone {
  float: right; }

.directory .listing-email {
  float: right;
  padding-left: 1em;
  margin-left: 1em;
  border-left: 1px solid #d2d2d2; }

/* =Feed Posts
==================================================================================================================*/
.sfitemRichText h2 {
  color: #002C77; }

/* News list */
.sfnewsList {
  padding: 0;
  margin: 0;
  border: 1px solid #d2d2d2;
  list-style: none; }

.sfnewsList .sfnewsListItem {
  position: relative;
  padding: 1em 1em 1em 8em;
  border-top: 1px solid #d2d2d2; }

.sfnewsList .sfnewsListItem:first-child {
  border-top: 0; }

.sfnewsList .sfnewsTitle {
  margin-top: 0; }

.sfnewsList .sfnewsMetaInfo {
  position: absolute;
  top: 1em;
  left: 1em;
  width: 50px;
  padding-right: 1em;
  margin: 0;
  border-right: 1px solid #d2d2d2;
  text-align: left; }

.sfnewsList .sfnewsCommentsCount {
  display: none; }

/* Events list */
.sfeventsList {
  padding: 0;
  margin: 0;
  border: 1px solid #d2d2d2;
  list-style: none; }

.sfeventsList .sfeventListItem {
  position: relative;
  padding: 1em;
  border-top: 1px solid #d2d2d2;
  overflow: hidden; }

.sfeventsList .sfeventListItem:first-child {
  border-top: 0; }

.sfeventsList .sfeventTitle {
  float: left;
  display: block;
  width: 310px;
  margin-top: 0;
  margin-left: 30px; }

.sfeventsList .sfeventMetaInfo strong {
  display: none; }

.sfeventsList .sfeventMetaInfo {
  float: left;
  display: block;
  width: 95px;
  padding-right: 1em;
  margin: 0;
  border-right: 1px solid #d2d2d2;
  text-align: left; }

.sfeventsList .sfeventCommentsCount {
  display: none; }

/* Press Release List */
.sfitemsList {
  padding: 0;
  margin: 0;
  border: 1px solid #d2d2d2;
  list-style: none; }

.sfitemsList .sfitem {
  position: relative;
  padding: 1em;
  border-top: 1px solid #d2d2d2;
  overflow: hidden; }

.sfitemsList .sfitem:first-child {
  border-top: 0; }

.sfitemsList .sfitemTitle {
  display: inline-block;
  width: 310px;
  margin-top: 0;
  margin-left: 30px; }
  @media screen and (max-width: 1023px)  {
    .sfitemsList .sfitemTitle {
      margin: 20px 0 0 0;
      float: none;
      width: 100%; } }

.sfitemsList .sfitemPublicationDate strong {
  display: none; }

.sfitemsList .sfitemPublicationDate {
  float: left;
  display: inline-block;
  width: 95px;
  padding-right: 1em;
  margin: 0;
  border-right: 1px solid #d2d2d2;
  text-align: left; }
  @media screen and (max-width: 1023px)  {
    .sfitemsList .sfitemPublicationDate {
      width: 100%;
      border: none;
      position: absolute;
      top: 10px;
      left: 10px; } }

/* Article Detail
------------------------------------------*/
.sfnewsContent td {
  padding: 0; }

/* removes table styling for non-table element */
.sfnewsContent {
  font-size: 14px; }

.sfeventDatesLocationContacts {
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px; }

.sfnewsTitle {
  color: #002C77; }

.sfTagsList {
  padding: 0;
  margin: 0.5em 0 0;
  list-style: none; }

.sfTagsList li {
  float: left;
  margin: 0 1em 0 0;
  color: #999; }

/* Blog Landing
------------------------------------------*/
.sfpostTitle a, a.sfpostFullStory, .sfpostContent a, .sfpostSummary a {
  font-weight: bold; }

.sfpostTitle {
  margin: 1.25em 0 0; }

h1.sfpostTitle {
  font-size: 1.5em; }

.sfpostAuthorAndDate {
  margin-bottom: 10px; }

.sfpostSummary {
  margin-bottom: 10px;
  font-size: 14px; }

.sfpostSummary *, .sfpostContent * {
  font-size: 14px; }

.sfpostContent {
  font-size: 14px; }

.sfpostsList {
  list-style: none;
  padding: 0; }

.sfpostFullStory:after {
  content: " »"; }

.sfcommentsList {
  list-style: none;
  padding: 0; }

.sfcommentsList li {
  margin-bottom: 10px;
  padding: 0 0 10px 5px;
  border-bottom: 1px solid #ccc; }

/* =Admin Pages
==================================================================================================================*/
.sfContentBlock {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 5px 0;
  padding: 0.3125rem 0; }
  @media screen and (min-width: 320px)  {
    .sfContentBlock {
      padding: 10px 0;
      padding: 0.625rem 0; } }
  @media screen and (min-width: 1024px)  {
    .sfContentBlock {
      padding: 20px 0;
      padding: 1.25rem 0; } }

.sfPageContainer .full-image-width-content {
  position: static !important;
  background: rgba(255, 255, 255, 0.5); }

/* =House Animation
==================================================================================================================*/
.house-animation .ui-dialog .ui-dialog-content {
  padding: 0px;
  background: #055898;
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: 400;
  font-size: 16px; }

.house-animation .ui-widget-content {
  background: #055898;
  border: 1px solid #055898; }

.house-animation #Div1 {
  -webkit-user-select: none;
  position: absolute;
  left: 20px;
  top: 380px;
  z-index: 3; }

/* =DESIGN MODE
==================================================================================================================*/
/*.sfPageEditor #ctl00_MainNav_RadDockZoneMainNav { margin-top: 0px; }
.sfPageEditor #ctl00_Search_RadDockZoneSearch { margin-top: -50px; }
.sfPageEditor #ctl00_MainNav_RadDockZoneMainNav { margin-top: -100px; }*/
#ctl00_Search_RadDockZoneSearch {
  width: 250px; }

#ctl00_HeroSlider_RadDockZoneHeroSlider {
  margin-top: 55px; }

/* Social
------------------------------------------*/
.social {
  clear: both;
  margin: 10px 0; }

.social > span {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  *display: inline;
  position: relative; }

.st_fblike_hcount {
  top: -2px; }

/* Twitter
------------------------------------------*/
.twtr-hd h3 {
  display: none; }

.stButton .stFb, .stButton .stTwbutton, .stButton .stMainServices {
  height: auto !important; }

/* Flags
------------------------------------------*/
.flag {
  position: absolute;
  top: -7px;
  left: -7px;
  width: 82px;
  height: 81px;
  text-indent: -9000em;
  z-index: 10; }

.flag.new {
  background: url(../../Images/bg_ribbon-new.png) no-repeat 0 0; }

.index .header {
  margin: 0; }

/* Featured Hero
------------------------------------------*/
.featured-hero {
  clear: both;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  margin-bottom: 20px;
  clear: both;
  top: -12px; }
  .featured-hero .hero-slider {
    max-height: 145px;
    overflow: hidden;
    clear: both; }
    @media screen and (min-width: 768px)  {
      .featured-hero .hero-slider {
        max-height: 350px; } }
    .featured-hero .hero-slider .hero-slide {
      max-height: 350px;
      overflow: hidden; }
    .featured-hero .hero-slider .entry-content {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 95%;
      padding: 10px 25px 10px 25px;
      background: rgba(0, 115, 207, 0.8);
      font-weight: normal;
      font-size: 0.9em;
      color: #fff; }
      @media screen and (min-width: 768px)  {
        .featured-hero .hero-slider .entry-content {
          padding: 10px 50px 10px 50px; } }
      .featured-hero .hero-slider .entry-content h1 {
        color: #fff;
        margin: 0;
        font-size: 1.2em; }
        @media screen and (min-width: 768px)  {
          .featured-hero .hero-slider .entry-content h1 {
            font-size: 2em; } }
        @media screen and (min-width: 1024px)  {
          .featured-hero .hero-slider .entry-content h1 {
            font-size: 2.4em; } }
      .featured-hero .hero-slider .entry-content .button {
        color: #fff;
        font-size: 16px;
        padding: 5px 25px;
        background: #757979;
        background: rgba(86, 90, 92, 0.8);
        text-decoration: none;
        position: absolute;
        left: 0;
        bottom: -54px;
        font-weight: bold; }
        @media screen and (min-width: 768px)  {
          .featured-hero .hero-slider .entry-content .button {
            font-size: 20px; } }
        @media screen and (min-width: 1024px)  {
          .featured-hero .hero-slider .entry-content .button {
            padding: 10px 50px 10px 50px; } }
        .featured-hero .hero-slider .entry-content .button:hover, .featured-hero .hero-slider .entry-content .button:active {
          background-color: #565A5C; }
  .featured-hero .owl-prev, .featured-hero .owl-next {
    display: none; }
  .featured-hero .owl-pagination {
    position: absolute;
    right: 15px;
    bottom: 10px;
    float: left;
    z-index: 100; }
    .featured-hero .owl-pagination .owl-page {
      float: left;
      display: block;
      width: 11px;
      height: 11px;
      margin-right: 2px;
      background: url(../../Images/sp_featured-hero-ctrl.png) no-repeat -19px -142px;
      text-indent: -9000em; }
      .featured-hero .owl-pagination .owl-page.active {
        background-position: -20px -189px; }
  @media screen and (min-width: 768px)  {
    .featured-hero .hero-slider .entry-content {
      top: auto;
      bottom: 70px;
      left: 0px;
      max-width: 55%;
      margin: 0; }
    .featured-hero .owl-prev, .featured-hero .owl-next {
      display: block;
      position: absolute;
      top: 40%;
      left: 0;
      width: 46px;
      height: 46px;
      margin-top: -23px;
      background: #000 url(../../Images/sp_featured-hero-ctrl.png) no-repeat 50% -8px;
      background: rgba(0, 0, 0, 0.48) url(../../Images/sp_featured-hero-ctrl.png) no-repeat 50% -8px;
      text-indent: -9000em;
      z-index: 10;
      cursor: pointer; }
    .featured-hero .owl-next {
      left: auto;
      right: 0;
      background-position: 0 -70px; } }
  @media screen and (min-width: 1024px)  {
    .featured-hero .hero-slider .entry-content {
      max-width: 65%; } }

/* Homepage Widgets
------------------------------------------*/
.main .sf_cols.index-widget-area {
  margin: 0 0 18px; }

.index-widget-area > div {
  width: auto !important; }

.index-widget-area .sf_3cols_2_34 {
  position: relative; }

.index-widget-area .widget {
  position: relative;
  width: 292px;
  margin: 0; }

/* Latest News
------------------------------------------*/
.latest-news {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 auto 20px; }
  .latest-news h2 {
    margin: 0 0 10px; }
    .latest-news h2 a {
      display: block;
      height: 100%;
      padding: 10px;
      text-align: center;
      background: #002C77;
      color: #fff; }
  .latest-news .news-slider {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
    list-style: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    overflow: hidden; }
    .latest-news .news-slider .news-slide {
      display: block;
      margin: 0;
      padding: 0;
      width: 100%;
      height: auto; }
      .latest-news .news-slider .news-slide a {
        display: block;
        width: 100%;
        padding: 10px; }
        .latest-news .news-slider .news-slide a div {
          display: none; }
  .latest-news #news-prev, .latest-news #news-next {
    float: left;
    width: 49%;
    height: 40px;
    background: #ccc;
    text-align: center;
    cursor: pointer; }
    .latest-news #news-prev span, .latest-news #news-next span {
      display: inline-block;
      width: 30px;
      height: 40px;
      background: transparent url(../../Images/sp_latest-news-ctrl.png) no-repeat 9px 12px;
      text-indent: -9999em; }
    .latest-news #news-prev:hover, .latest-news #news-prev:active, .latest-news #news-next:hover, .latest-news #news-next:active {
      background: #b3b3b3; }
  .latest-news #news-next {
    float: right; }
    .latest-news #news-next span {
      background-position: -21px 12px; }
  @media screen and (min-width: 1024px)  {
    .latest-news h2 {
      display: inline-block;
      width: 20%;
      margin: 0;
      vertical-align: top;
      line-height: 40px; }
      .latest-news h2 a {
        line-height: 40px;
        padding: 0 10px; }
    .latest-news .news-slider {
      width: -webkit-calc(80% - 78px);
      width: calc(80% - 78px);
      display: inline-block !important;
      vertical-align: top;
      margin: 0; }
    .latest-news #news-prev, .latest-news #news-next {
      float: none;
      display: inline-block;
      width: 33px;
      vertical-align: top; } }

/* Inside Battelle Blog
------------------------------------------*/
.block-title-blog, .block-title-products, .block-title-services {
  padding: 0; }
  .block-title-blog h2, .block-title-products h2, .block-title-services h2 {
    margin-bottom: 0; }

@media screen and (min-width: 1024px)  {
  .block-title-products h2 {
    margin-top: 0; } }

.blue-image-title {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  padding: 3px 12px;
  background: #0073cf;
  font-weight: normal;
  color: #fff;
  z-index: 10;
  font-size: 15px;
  font-size: 0.9375rem; }
  @media screen and (min-width: 768px)  {
    .blue-image-title {
      font-size: 13px;
      font-size: 0.8125rem; } }
  @media screen and (min-width: 1024px)  {
    .blue-image-title {
      top: 20px; } }

.feature-post, .feature-product, .feature-service {
  position: relative; }

@media screen and (min-width: 1024px)  {
  .feature-service .blue-image-title {
    font-size: 14px;
    font-size: 0.875rem; } }

.feature-product .blue-image-title {
  padding: 6px 20px;
  padding: 0.375rem 1.25rem; }
  @media screen and (min-width: 1024px)  {
    .feature-product .blue-image-title {
      font-size: 19px;
      font-size: 1.1875rem; } }

@media screen and (min-width: 1024px)  {
  .feature-post .blue-image-title {
    font-size: 14px;
    font-size: 0.875rem; } }
@media screen and (min-width: 1024px)  {
  .feature-post > img {
    height: 214px; } }

/* Social Media
------------------------------------------*/
.connect {
  float: right;
  width: 318px;
  padding: 6px 0 0; }

.connect h3 {
  float: left;
  width: 140px;
  padding-left: 25px;
  margin: 0;
  font-size: 1.25em;
  color: #005390;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  text-transform: uppercase; }

.connect .social-media {
  float: left;
  height: 28px;
  padding: 4px 0 6px 20px;
  border-left: 1px solid #c7d9e7; }

.connect .social-media li {
  width: 28px;
  height: 28px;
  margin-right: 7px; }

.connect .social-media .facebook {
  background-position: -11px -159px; }

.connect .social-media .twitter {
  background-position: -11px -197px; }

.connect .social-media .linkedin {
  background-position: -11px -235px; }

.connect .social-media .youtube {
  margin-right: 0;
  background-position: -11px -273px; }

/* =Our Work (Horizontal Menu)
==================================================================================================================*/
@media screen and (min-width: 1024px)  {
  .our-work.sf_cols {
    position: relative;
    top: -12px; } }
.our-work .features {
  margin: 0;
  padding: 0;
  position: relative; }
  .our-work .features li {
    display: block;
    width: 100%;
    list-style: none;
    font-size: 12px;
    font-size: 0.75rem; }
.our-work .features-nav {
  display: none; }
@media screen and (max-width: 1023px)  {
  .our-work .features li {
    display: block !important;
    background: none !important; } }
@media screen and (min-width: 1024px)  {
  .our-work .features {
    min-height: 868px; }
    .our-work .features li {
      position: absolute;
      top: 0;
      left: 0;
      min-height: 868px; }
      .our-work .features li .section-intro {
        position: absolute;
        bottom: 360px;
        left: 65px;
        width: 850px;
        padding: 30px 50px;
        text-align: center;
        background: rgba(255, 255, 255, 0.7); }
        .our-work .features li .section-intro h2 {
          color: #0073CF;
          font-size: 2.25em;
          margin-top: 0; }
        .our-work .features li .section-intro p {
          font-size: 12px;
          font-size: 0.75rem; }
  .our-work .features-nav {
    display: block;
    position: absolute;
    left: 38px;
    bottom: 165px;
    width: 896px;
    box-shadow: 0px 0px 10px 0px #8a8a8a; }
    .our-work .features-nav ul {
      float: left;
      width: 900px;
      margin: 0;
      padding: 0;
      list-style: none; }
    .our-work .features-nav li {
      float: left;
      width: 128px;
      margin: 0;
      padding: 0;
      position: relative;
      min-height: 200px; }
      .our-work .features-nav li a.icon {
        display: block;
        width: 100%;
        min-height: 200px;
        padding: 140px 4px 0;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        background: url('../../images/sp_our-work-nav.png') no-repeat 0 0; }
      .our-work .features-nav li a.button {
        display: none;
        position: absolute;
        left: 0px;
        bottom: -24px;
        width: 100%;
        color: #FFF;
        font-size: 1em;
        padding: 3px 20px 3px 45px;
        background: #005596 url('../../images/bg_hero-link.png') no-repeat 11px 50%;
        text-decoration: none; }
      .our-work .features-nav li:hover a.icon, .our-work .features-nav li:active a.icon {
        background-position: 0 -223px; }
      .our-work .features-nav li:hover a.button, .our-work .features-nav li:active a.button {
        display: block; }
      .our-work .features-nav li.energy-environment a.icon {
        background-position: -128px 0; }
      .our-work .features-nav li.energy-environment:hover a.icon {
        background-position: -128px -223px; }
      .our-work .features-nav li.health-analytics a.icon {
        background-position: -257px 0; }
      .our-work .features-nav li.health-analytics:hover a.icon {
        background-position: -257px -223px; }
      .our-work .features-nav li.laboratory-management a.icon {
        background-position: -385px 0; }
      .our-work .features-nav li.laboratory-management:hover a.icon {
        background-position: -385px -223px; }
      .our-work .features-nav li.national-security a.icon {
        background-position: -513px 0; }
      .our-work .features-nav li.national-security:hover a.icon {
        background-position: -514px -223px; }
      .our-work .features-nav li.pharmaceutical-medical-devices a.icon {
        background-position: -771px 0; }
      .our-work .features-nav li.pharmaceutical-medical-devices:hover a.icon {
        background-position: -771px -223px; }
      .our-work .features-nav li.stem-education a.icon {
        background-position: -642px 0; }
      .our-work .features-nav li.stem-education:hover a.icon {
        background-position: -642px -223px; } }

/* =Office Locations
==================================================================================================================*/
.office-locations {
  padding: 0;
  margin: 0;
  list-style: none; }

.office-locations li {
  float: left;
  width: 100%;
  padding: 0.5em 0;
  margin: 0;
  border-top: 1px solid #e7e7e7; }

.office-locations li div {
  float: left;
  display: inline-block; }

.office-locations .adr {
  width: 310px; }

.office-locations .country {
  width: 115px; }

.office-locations .phone {
  display: none; }

.office-locations .map {
  width: 50px; }

.filter-locations label {
  float: left;
  padding: 0;
  margin-right: 1em;
  line-height: 28px; }

.filter-locations + h3 {
  font-weight: bold;
  font-size: 15px; }

.filter-locations #ddlCity {
  width: 145px; }

.office-location-container {
  margin-bottom: 20px; }

.major-locations ul {
  padding: 0;
  margin: 0;
  list-style: none; }

.major-locations li {
  position: relative;
  float: left;
  width: 100%;
  padding: 0.5em 0;
  margin: 0;
  border-top: 1px solid #e7e7e7; }

.major-locations h4 {
  float: left;
  width: 100%;
  margin-top: 2em;
  clear: both; }

.major-locations .org, .major-locations .adr, .major-locations .tel {
  float: left;
  clear: left; }

.major-locations .more {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  float: left;
  display: inline-block;
  width: 50px; }

/* =Sitemap
==================================================================================================================*/
.sitemap, .sitemap ul {
  padding: 0;
  margin: 0;
  list-style: none; }

.sitemap h2 {
  margin: 0;
  border-top: 1px solid #d2d2d2;
  line-height: 3em;
  text-transform: uppercase; }

.sitemap a {
  display: block;
  font-weight: bold; }

.sitemap br {
  display: none; }

/* First level
	------------------------------------------*/
/* Second level
	------------------------------------------*/
.sitemap ul li ul {
  padding-left: 1em;
  margin: 1em 0; }

.sitemap ul li ul a {
  font-weight: normal; }

/* =Facebook Pages
==================================================================================================================*/
body#facebook #container {
  width: 810px;
  margin: 0 auto; }

body#facebook .wrap {
  width: 810px; }

body#facebook .header {
  height: 96px; }

body#facebook .site-logo {
  width: 320px;
  height: 96px;
  margin: 0 30px 0 0;
  background-color: #005596;
  background-position: 50% 50%; }

body#facebook .header h1 {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  line-height: 96px;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.23); }

body#facebook .social-media {
  position: absolute;
  top: 0;
  right: 10px;
  width: 81px;
  height: 27px;
  padding: 9px 0 0 9px;
  background: #00477d;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.5); }

body#facebook .social-media li {
  width: 20px;
  height: 20px;
  padding: 0;
  margin-right: 8px; }

body#facebook .social-media .twitter {
  background-position: -15px -40px; }

body#facebook .social-media .linkedin {
  background-position: -15px -70px; }

body#facebook .social-media .youtube {
  margin-right: 0;
  background-position: -15px -100px; }

body#facebook br {
  display: none; }

body#facebook .main h1 {
  font-family: Arial, Helvetica, sans-serif; }

body#facebook .featured {
  margin: 0 0 1em; }

body#facebook .featured iframe {
  max-width: 100%; }

body#facebook .career-highlights {
  background: #efefef; }

body#facebook .career-highlights .sf_cols {
  width: 95%;
  padding: 2.5% 0;
  margin: 0 2.5%;
  border-top: 1px solid #c4c4c4; }

body#facebook .career-highlights .sf_cols .sf_cols {
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0; }

body#facebook .career-highlights h2 {
  margin: 0 0 0 2.5%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #373737;
  line-height: 45px; }

body#facebook .career-highlights h3 {
  margin: 0 0 0.25em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  color: #234c8a; }

body#facebook .career-highlights img {
  max-width: 100%; }

body#facebook .lead-in p {
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase; }

body#facebook a.more {
  display: block;
  margin-top: 1em; }

body#facebook .linked-jobs {
  margin: 0 0 1em;
  height: 283px; }

body#facebook .community-highlights {
  width: 47.5%;
  padding: 1.25%;
  margin: 0 0 2em;
  background: #efefef; }

body#facebook .community-highlights img {
  max-width: 100%; }

body#facebook .community-highlights h3 {
  margin-top: 0.25em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.583em; }

body#facebook .community-highlights h3 + p {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #c4c4c4; }

body#facebook .photostream {
  position: relative;
  width: 48.5%;
  background: #efefef; }

body#facebook .photostream > div {
  padding: 9px;
  margin: 0; }

body#facebook .photostream h3 {
  padding-bottom: 0.833em;
  margin: 0.25em 0 0.833em;
  border-bottom: 1px solid #c4c4c4;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.25em; }

body#facebook .photostream h3 + a {
  position: absolute;
  top: 3px;
  right: 10px; }

body#facebook .photostream .fb-photo-list > div {
  float: left;
  width: 61px;
  padding: 5px;
  margin: 0; }

body#facebook .photostream .fb-photo-list div div {
  position: relative;
  float: left;
  width: 55px;
  height: 55px;
  margin: 10px 0 0;
  border: 3px solid #fff;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.22); }

body#facebook .photostream .fb-photo-list div div:first-child {
  margin-top: 0; }

body#facebook .photostream .fb-photo-list div div a {
  display: block;
  width: 100%;
  height: 100%; }

body#facebook .photostream .fb-photo-list div div img {
  height: 55px; }

body#facebook .photostream .fb-photo-list div div span {
  position: absolute;
  top: 0;
  left: -9000em;
  width: 37px;
  height: 37px;
  background: url(../../Images/i_fb-photostream-hover.png) no-repeat 0 0;
  text-indent: -9000em;
  z-index: 10000; }

body#facebook .photostream .fb-photo-list div div:hover {
  border-color: #0074cc; }

body#facebook .photostream .fb-photo-list div div:hover span {
  top: 9px;
  left: 9px; }

.photostream .bx-wrapper, .photostream .bx-window {
  width: 280px !important; }

.photostream .bx-wrapper {
  left: 50px; }

body#facebook .photostream .bx-prev {
  left: -59px; }

body#facebook .photostream .bx-next {
  right: -52px; }

/* Full list page */
body#facebook .wrap > .fb-photo-list div {
  position: relative;
  float: left;
  width: 189px;
  height: 125px;
  margin: 0 10px 10px 0;
  border: 3px solid #fff;
  overflow: hidden;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.22); }

body#facebook .wrap > .fb-photo-list div.last {
  margin-right: 0; }

body#facebook .wrap > .fb-photo-list a {
  display: block;
  width: 100%;
  height: 100%;
  background: #f4f4f4;
  text-align: center; }

body#facebook .wrap > .fb-photo-list img {
  height: 125px; }

body#facebook .wrap > .fb-photo-list span {
  position: absolute;
  top: 0;
  left: -9000em;
  width: 37px;
  height: 37px;
  background: url(../../Images/i_fb-photostream-hover.png) no-repeat 0 0;
  text-indent: -9000em;
  z-index: 10000; }

body#facebook .wrap > .fb-photo-list div:hover {
  border-color: #0074cc; }

body#facebook .wrap > .fb-photo-list div:hover span {
  top: 43px;
  left: 76px; }

body#facebook .section-title h2 {
  font-size: 20px;
  color: #3a3a3b;
  font-family: Arial, Helvetica, sans-serif; }

body#facebook .fan-pages {
  padding: 2em 3em 0;
  background: #002d4f;
  color: #fff; }

body#facebook .fan-pages ul {
  float: left;
  width: 708px;
  padding: 0;
  margin: 0;
  list-style: none; }

body#facebook .fan-pages li {
  float: left;
  width: 170px !important;
  max-width: 170px;
  padding: 0 7px;
  margin: 0; }

body#facebook .fan-pages .photo {
  height: 170px;
  background: #fff;
  overflow: hidden; }

body#facebook .fan-pages .photo {
  position: relative;
  margin: 0 0 1em;
  display: block; }

body#facebook .fan-pages .photo img {
  max-width: 170px; }

body#facebook .fan-pages li h3 {
  border-bottom: 1px solid #244b68;
  font-size: 14px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase; }

body#facebook .fan-pages li a {
  color: #fff; }

body#facebook .fan-pages a.more {
  background: url("../../Images/bg_footer-link.gif") no-repeat 0 2px; }

body#facebook .bx-prev, body#facebook .bx-next {
  position: absolute;
  top: 50%;
  display: block;
  width: 26px;
  height: 28px;
  margin-top: -14px;
  background: #4d6c84 url(../../Images/sp_fb-fanpages-ctrl.png) no-repeat;
  text-indent: -9000em; }

body#facebook .bx-prev {
  left: -3em;
  background-position: 7px 7px; }

body#facebook .bx-next {
  right: -38px;
  background-position: -42px 7px; }

body#facebook .bx-prev:hover, body#facebook .bx-next:hover {
  background-color: #71899b; }

/* =Full Width Image Template
==================================================================================================================*/
body.full-width-image {
  background-size: cover; }

body.full-width-image .social-media {
  display: none; }

body.full-width-image .main > div {
  width: 980px;
  margin: 0 auto;
  clear: both; }

body.full-width-image .full-image-width-content {
  position: absolute;
  bottom: 365px;
  left: 100px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5); }

body.full-width-image .full-image-width-content h1 {
  font-size: 3em; }

body.full-width-image .full-image-width-content a {
  font-size: 2em; }

body.full-width-image .full-image-width-content a:hover {
  text-decoration: none; }

body.full-width-image .footer {
  position: absolute;
  bottom: 0; }

/* =Encapsulation Page
==================================================================================================================*/
.fl-hidden {
  display: none; }

.featherlight-iframe .featherlight-content {
  text-align: center !important;
  padding: 20px 0 !important; }

/* =jQuery UI
==================================================================================================================*/
/*
 * jQuery UI Tabs 1.8.18
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs#theming
 */
.ui-tabs {
  position: relative;
  zoom: 1; }

/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav {
  float: left;
  margin: 0;
  padding: 0; }

.ui-tabs .ui-tabs-nav li {
  list-style: none;
  float: left;
  position: relative;
  top: 1px;
  background: #d2d2d2;
  margin: 0 0.3em 1px 0;
  border: 1px solid #d2d2d2;
  border-bottom: 0 !important;
  padding: 0;
  white-space: nowrap; }

.ui-tabs .ui-tabs-nav li a {
  float: left;
  padding: 0.5em 1em;
  font-size: 1.25em;
  font-weight: bold;
  text-decoration: none; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected {
  margin-bottom: 0;
  padding-bottom: 1px;
  background: #fff; }

.ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a {
  cursor: text; }

.ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a {
  color: #fff;
  cursor: pointer; }

/* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere… */
.ui-tabs-nav li.ui-tabs-selected a {
  color: #234c8a; }

.ui-tabs .ui-tabs-panel {
  float: left;
  display: block;
  padding: 2em 1.4em 1em;
  background: none;
  border: 1px solid #d2d2d2;
  clear: both; }

.ui-tabs .ui-tabs-hide {
  display: none !important; }

/* UI Tabs Override
------------------------------------------*/
.sf_2cols_1_50.ui-tabs-panel, .sf_2cols_2_50.ui-tabs-panel {
  width: 455px; }

/* =PrettyPhoto Styles
==================================================================================================================*/
div.pp_default .pp_top, div.pp_default .pp_top .pp_middle, div.pp_default .pp_top .pp_left, div.pp_default .pp_top .pp_right, div.pp_default .pp_bottom, div.pp_default .pp_bottom .pp_left, div.pp_default .pp_bottom .pp_middle, div.pp_default .pp_bottom .pp_right {
  height: 13px; }

div.pp_default .pp_top .pp_left {
  background: url(../../Images/prettyPhoto/default/sprite.png) -78px -93px no-repeat; }

div.pp_default .pp_top .pp_middle {
  background: url(../../Images/prettyPhoto/default/sprite_x.png) top left repeat-x; }

div.pp_default .pp_top .pp_right {
  background: url(../../Images/prettyPhoto/default/sprite.png) -112px -93px no-repeat; }

div.pp_default .pp_content .ppt {
  color: #f8f8f8; }

div.pp_default .pp_content_container .pp_left {
  background: url(../../Images/prettyPhoto/default/sprite_y.png) -7px 0 repeat-y;
  padding-left: 13px; }

div.pp_default .pp_content_container .pp_right {
  background: url(../../Images/prettyPhoto/default/sprite_y.png) top right repeat-y;
  padding-right: 13px; }

div.pp_default .pp_next:hover {
  background: url(../../Images/prettyPhoto/default/sprite_next.png) center right no-repeat;
  cursor: pointer; }

div.pp_default .pp_previous:hover {
  background: url(../../Images/prettyPhoto/default/sprite_prev.png) center left no-repeat;
  cursor: pointer; }

div.pp_default .pp_expand {
  background: url(../../Images/prettyPhoto/default/sprite.png) 0 -29px no-repeat;
  cursor: pointer;
  width: 28px;
  height: 28px; }

div.pp_default .pp_expand:hover {
  background: url(../../Images/prettyPhoto/default/sprite.png) 0 -56px no-repeat;
  cursor: pointer; }

div.pp_default .pp_contract {
  background: url(../../Images/prettyPhoto/default/sprite.png) 0 -84px no-repeat;
  cursor: pointer;
  width: 28px;
  height: 28px; }

div.pp_default .pp_contract:hover {
  background: url(../../Images/prettyPhoto/default/sprite.png) 0 -113px no-repeat;
  cursor: pointer; }

div.pp_default .pp_close {
  width: 30px;
  height: 30px;
  background: url(../../Images/prettyPhoto/default/sprite.png) 2px 1px no-repeat;
  cursor: pointer; }

div.pp_default .pp_gallery ul li a {
  background: url(../../Images/prettyPhoto/default/default_thumb.png) center center #f8f8f8;
  border: 1px solid #aaa; }

div.pp_default .pp_social {
  margin-top: 7px; }

div.pp_default .pp_gallery a.pp_arrow_previous, div.pp_default .pp_gallery a.pp_arrow_next {
  position: static;
  left: auto; }

div.pp_default .pp_nav .pp_play, div.pp_default .pp_nav .pp_pause {
  background: url(../../Images/prettyPhoto/default/sprite.png) -51px 1px no-repeat;
  height: 30px;
  width: 30px; }

div.pp_default .pp_nav .pp_pause {
  background-position: -51px -29px; }

div.pp_default a.pp_arrow_previous, div.pp_default a.pp_arrow_next {
  background: url(../../Images/prettyPhoto/default/sprite.png) -31px -3px no-repeat;
  height: 20px;
  width: 20px;
  margin: 4px 0 0; }

div.pp_default a.pp_arrow_next {
  left: 52px;
  background-position: -82px -3px; }

div.pp_default .pp_content_container .pp_details {
  margin-top: 5px; }

div.pp_default .pp_nav {
  clear: none;
  height: 30px;
  width: 110px;
  position: relative; }

div.pp_default .pp_nav .currentTextHolder {
  font-family: Arial, sans-serif;
  font-style: italic;
  color: #999;
  font-size: 11px;
  left: 75px;
  line-height: 25px;
  position: absolute;
  top: 2px;
  margin: 0;
  padding: 0 0 0 10px; }

div.pp_default .pp_close:hover, div.pp_default .pp_nav .pp_play:hover, div.pp_default .pp_nav .pp_pause:hover, div.pp_default .pp_arrow_next:hover, div.pp_default .pp_arrow_previous:hover {
  opacity: 0.7; }

div.pp_default .pp_description {
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
  margin: 5px 50px 5px 0; }

div.pp_default .pp_bottom .pp_left {
  background: url(../../Images/prettyPhoto/default/sprite.png) -78px -127px no-repeat; }

div.pp_default .pp_bottom .pp_middle {
  background: url(../../Images/prettyPhoto/default/sprite_x.png) bottom left repeat-x; }

div.pp_default .pp_bottom .pp_right {
  background: url(../../Images/prettyPhoto/default/sprite.png) -112px -127px no-repeat; }

div.pp_default .pp_loaderIcon {
  background: url(../../Images/prettyPhoto/default/loader.gif) center center no-repeat; }

div.light_rounded .pp_top .pp_left {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -88px -53px no-repeat; }

div.light_rounded .pp_top .pp_right {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -110px -53px no-repeat; }

div.light_rounded .pp_next:hover {
  background: url(../../Images/prettyPhoto/light_rounded/btnNext.png) center right no-repeat;
  cursor: pointer; }

div.light_rounded .pp_previous:hover {
  background: url(../../Images/prettyPhoto/light_rounded/btnPrevious.png) center left no-repeat;
  cursor: pointer; }

div.light_rounded .pp_expand {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -31px -26px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_expand:hover {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -31px -47px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_contract {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) 0 -26px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_contract:hover {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) 0 -47px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_close {
  width: 75px;
  height: 22px;
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -1px -1px no-repeat;
  cursor: pointer; }

div.light_rounded .pp_nav .pp_play {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_rounded .pp_nav .pp_pause {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_rounded .pp_arrow_previous {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) 0 -71px no-repeat; }

div.light_rounded .pp_arrow_next {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -22px -71px no-repeat; }

div.light_rounded .pp_bottom .pp_left {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -88px -80px no-repeat; }

div.light_rounded .pp_bottom .pp_right {
  background: url(../../Images/prettyPhoto/light_rounded/sprite.png) -110px -80px no-repeat; }

div.dark_rounded .pp_top .pp_left {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -88px -53px no-repeat; }

div.dark_rounded .pp_top .pp_right {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -110px -53px no-repeat; }

div.dark_rounded .pp_content_container .pp_left {
  background: url(../../Images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat-y; }

div.dark_rounded .pp_content_container .pp_right {
  background: url(../../Images/prettyPhoto/dark_rounded/contentPattern.png) top right repeat-y; }

div.dark_rounded .pp_next:hover {
  background: url(../../Images/prettyPhoto/dark_rounded/btnNext.png) center right no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_previous:hover {
  background: url(../../Images/prettyPhoto/dark_rounded/btnPrevious.png) center left no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_expand {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -31px -26px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_expand:hover {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -31px -47px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_contract {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) 0 -26px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_contract:hover {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) 0 -47px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_close {
  width: 75px;
  height: 22px;
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -1px -1px no-repeat;
  cursor: pointer; }

div.dark_rounded .pp_description {
  margin-right: 85px;
  color: #fff; }

div.dark_rounded .pp_nav .pp_play {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_rounded .pp_nav .pp_pause {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_rounded .pp_arrow_previous {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) 0 -71px no-repeat; }

div.dark_rounded .pp_arrow_next {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -22px -71px no-repeat; }

div.dark_rounded .pp_bottom .pp_left {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -88px -80px no-repeat; }

div.dark_rounded .pp_bottom .pp_right {
  background: url(../../Images/prettyPhoto/dark_rounded/sprite.png) -110px -80px no-repeat; }

div.dark_rounded .pp_loaderIcon {
  background: url(../../Images/prettyPhoto/dark_rounded/loader.gif) center center no-repeat; }

div.dark_square .pp_left, div.dark_square .pp_middle, div.dark_square .pp_right, div.dark_square .pp_content {
  background: #000; }

div.dark_square .pp_description {
  color: #fff;
  margin: 0 85px 0 0; }

div.dark_square .pp_loaderIcon {
  background: url(../../Images/prettyPhoto/dark_square/loader.gif) center center no-repeat; }

div.dark_square .pp_expand {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) -31px -26px no-repeat;
  cursor: pointer; }

div.dark_square .pp_expand:hover {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) -31px -47px no-repeat;
  cursor: pointer; }

div.dark_square .pp_contract {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) 0 -26px no-repeat;
  cursor: pointer; }

div.dark_square .pp_contract:hover {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) 0 -47px no-repeat;
  cursor: pointer; }

div.dark_square .pp_close {
  width: 75px;
  height: 22px;
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) -1px -1px no-repeat;
  cursor: pointer; }

div.dark_square .pp_nav {
  clear: none; }

div.dark_square .pp_nav .pp_play {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_square .pp_nav .pp_pause {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.dark_square .pp_arrow_previous {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) 0 -71px no-repeat; }

div.dark_square .pp_arrow_next {
  background: url(../../Images/prettyPhoto/dark_square/sprite.png) -22px -71px no-repeat; }

div.dark_square .pp_next:hover {
  background: url(../../Images/prettyPhoto/dark_square/btnNext.png) center right no-repeat;
  cursor: pointer; }

div.dark_square .pp_previous:hover {
  background: url(../../Images/prettyPhoto/dark_square/btnPrevious.png) center left no-repeat;
  cursor: pointer; }

div.light_square .pp_expand {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) -31px -26px no-repeat;
  cursor: pointer; }

div.light_square .pp_expand:hover {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) -31px -47px no-repeat;
  cursor: pointer; }

div.light_square .pp_contract {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) 0 -26px no-repeat;
  cursor: pointer; }

div.light_square .pp_contract:hover {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) 0 -47px no-repeat;
  cursor: pointer; }

div.light_square .pp_close {
  width: 75px;
  height: 22px;
  background: url(../../Images/prettyPhoto/light_square/sprite.png) -1px -1px no-repeat;
  cursor: pointer; }

div.light_square .pp_nav .pp_play {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) -1px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_square .pp_nav .pp_pause {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) -24px -100px no-repeat;
  height: 15px;
  width: 14px; }

div.light_square .pp_arrow_previous {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) 0 -71px no-repeat; }

div.light_square .pp_arrow_next {
  background: url(../../Images/prettyPhoto/light_square/sprite.png) -22px -71px no-repeat; }

div.light_square .pp_next:hover {
  background: url(../../Images/prettyPhoto/light_square/btnNext.png) center right no-repeat;
  cursor: pointer; }

div.light_square .pp_previous:hover {
  background: url(../../Images/prettyPhoto/light_square/btnPrevious.png) center left no-repeat;
  cursor: pointer; }

div.facebook .pp_top .pp_left {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -88px -53px no-repeat; }

div.facebook .pp_top .pp_middle {
  background: url(../../Images/prettyPhoto/facebook/contentPatternTop.png) top left repeat-x; }

div.facebook .pp_top .pp_right {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -110px -53px no-repeat; }

div.facebook .pp_content_container .pp_left {
  background: url(../../Images/prettyPhoto/facebook/contentPatternLeft.png) top left repeat-y; }

div.facebook .pp_content_container .pp_right {
  background: url(../../Images/prettyPhoto/facebook/contentPatternRight.png) top right repeat-y; }

div.facebook .pp_expand {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -31px -26px no-repeat;
  cursor: pointer; }

div.facebook .pp_expand:hover {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -31px -47px no-repeat;
  cursor: pointer; }

div.facebook .pp_contract {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) 0 -26px no-repeat;
  cursor: pointer; }

div.facebook .pp_contract:hover {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) 0 -47px no-repeat;
  cursor: pointer; }

div.facebook .pp_close {
  width: 22px;
  height: 22px;
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -1px -1px no-repeat;
  cursor: pointer; }

div.facebook .pp_description {
  margin: 0 37px 0 0; }

div.facebook .pp_loaderIcon {
  background: url(../../Images/prettyPhoto/facebook/loader.gif) center center no-repeat; }

div.facebook .pp_arrow_previous {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) 0 -71px no-repeat;
  height: 22px;
  margin-top: 0;
  width: 22px; }

div.facebook .pp_arrow_previous.disabled {
  background-position: 0 -96px;
  cursor: default; }

div.facebook .pp_arrow_next {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -32px -71px no-repeat;
  height: 22px;
  margin-top: 0;
  width: 22px; }

div.facebook .pp_arrow_next.disabled {
  background-position: -32px -96px;
  cursor: default; }

div.facebook .pp_nav {
  margin-top: 0; }

div.facebook .pp_nav p {
  font-size: 15px;
  padding: 0 3px 0 4px; }

div.facebook .pp_nav .pp_play {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -1px -123px no-repeat;
  height: 22px;
  width: 22px; }

div.facebook .pp_nav .pp_pause {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -32px -123px no-repeat;
  height: 22px;
  width: 22px; }

div.facebook .pp_next:hover {
  background: url(../../Images/prettyPhoto/facebook/btnNext.png) center right no-repeat;
  cursor: pointer; }

div.facebook .pp_previous:hover {
  background: url(../../Images/prettyPhoto/facebook/btnPrevious.png) center left no-repeat;
  cursor: pointer; }

div.facebook .pp_bottom .pp_left {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -88px -80px no-repeat; }

div.facebook .pp_bottom .pp_middle {
  background: url(../../Images/prettyPhoto/facebook/contentPatternBottom.png) top left repeat-x; }

div.facebook .pp_bottom .pp_right {
  background: url(../../Images/prettyPhoto/facebook/sprite.png) -110px -80px no-repeat; }

div.pp_pic_holder a:focus {
  outline: none; }

div.pp_overlay {
  background: #000;
  display: none;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10000; }

div.pp_pic_holder {
  display: none;
  position: absolute;
  width: 100px;
  z-index: 10001; }

.pp_content {
  height: 40px;
  min-width: 40px; }

* html .pp_content {
  width: 40px; }

.pp_content_container {
  position: relative;
  text-align: left;
  width: 100%; }

.pp_content_container .pp_left {
  padding-left: 20px; }

.pp_content_container .pp_right {
  padding-right: 20px; }

.pp_content_container .pp_details {
  float: left;
  margin: 10px 0 2px; }

.pp_description {
  display: none;
  margin: 0; }

.pp_social {
  float: left;
  margin: 0; }

.pp_social .facebook {
  float: left;
  margin-left: 5px;
  width: 55px;
  overflow: hidden; }

.pp_social .twitter {
  float: left; }

.pp_nav {
  clear: right;
  float: left;
  margin: 3px 10px 0 0; }

.pp_nav p {
  float: left;
  white-space: nowrap;
  margin: 2px 4px; }

.pp_nav .pp_play, .pp_nav .pp_pause {
  float: left;
  margin-right: 4px;
  text-indent: -10000px; }

a.pp_arrow_previous, a.pp_arrow_next {
  display: block;
  float: left;
  height: 15px;
  margin-top: 3px;
  overflow: hidden;
  text-indent: -10000px;
  width: 14px; }

.pp_hoverContainer {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2000; }

.pp_gallery {
  display: none;
  left: 50%;
  margin-top: -50px;
  position: absolute;
  z-index: 10000; }

.pp_gallery div {
  float: left;
  overflow: hidden;
  position: relative; }

.pp_gallery ul {
  float: left;
  height: 35px;
  position: relative;
  white-space: nowrap;
  margin: 0 0 0 5px;
  padding: 0; }

.pp_gallery ul a {
  border: 1px rgba(0, 0, 0, 0.5) solid;
  display: block;
  float: left;
  height: 33px;
  overflow: hidden; }

.pp_gallery li {
  display: block;
  float: left;
  margin: 0 5px 0 0;
  padding: 0; }

.pp_gallery li.default a {
  background: url(../../Images/prettyPhoto/facebook/default_thumbnail.gif) 0 0 no-repeat;
  display: block;
  height: 33px;
  width: 50px; }

.pp_gallery .pp_arrow_previous, .pp_gallery .pp_arrow_next {
  margin-top: 7px !important; }

a.pp_next {
  background: url(../../Images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
  display: block;
  float: right;
  height: 100%;
  text-indent: -10000px;
  width: 49%; }

a.pp_previous {
  background: url(../../Images/prettyPhoto/light_rounded/btnNext.png) 10000px 10000px no-repeat;
  display: block;
  float: left;
  height: 100%;
  text-indent: -10000px;
  width: 49%; }

a.pp_expand, a.pp_contract {
  cursor: pointer;
  display: none;
  height: 20px;
  position: absolute;
  right: 30px;
  text-indent: -10000px;
  top: 10px;
  width: 20px;
  z-index: 20000; }

a.pp_close {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  line-height: 22px;
  text-indent: -10000px; }

.pp_loaderIcon {
  display: block;
  height: 24px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 24px;
  margin: -12px 0 0 -12px; }

#pp_full_res {
  line-height: 1 !important; }

#pp_full_res .pp_inline {
  text-align: left; }

#pp_full_res .pp_inline p {
  margin: 0 0 15px; }

div.ppt {
  color: #fff;
  display: none;
  font-size: 17px;
  z-index: 9999;
  margin: 0 0 5px 15px; }

div.pp_default .pp_content, div.light_rounded .pp_content {
  background-color: #fff; }

div.pp_default #pp_full_res .pp_inline, div.light_rounded .pp_content .ppt, div.light_rounded #pp_full_res .pp_inline, div.light_square .pp_content .ppt, div.light_square #pp_full_res .pp_inline, div.facebook .pp_content .ppt, div.facebook #pp_full_res .pp_inline {
  color: #000; }

div.pp_default .pp_gallery ul li a:hover, div.pp_default .pp_gallery ul li.selected a, .pp_gallery ul a:hover, .pp_gallery li.selected a {
  border-color: #fff; }

div.pp_default .pp_details, div.light_rounded .pp_details, div.dark_rounded .pp_details, div.dark_square .pp_details, div.light_square .pp_details, div.facebook .pp_details {
  position: relative; }

div.light_rounded .pp_top .pp_middle, div.light_rounded .pp_content_container .pp_left, div.light_rounded .pp_content_container .pp_right, div.light_rounded .pp_bottom .pp_middle, div.light_square .pp_left, div.light_square .pp_middle, div.light_square .pp_right, div.light_square .pp_content, div.facebook .pp_content {
  background: #fff; }

div.light_rounded .pp_description, div.light_square .pp_description {
  margin-right: 85px; }

div.light_rounded .pp_gallery a.pp_arrow_previous, div.light_rounded .pp_gallery a.pp_arrow_next, div.dark_rounded .pp_gallery a.pp_arrow_previous, div.dark_rounded .pp_gallery a.pp_arrow_next, div.dark_square .pp_gallery a.pp_arrow_previous, div.dark_square .pp_gallery a.pp_arrow_next, div.light_square .pp_gallery a.pp_arrow_previous, div.light_square .pp_gallery a.pp_arrow_next {
  margin-top: 12px !important; }

div.light_rounded .pp_arrow_previous.disabled, div.dark_rounded .pp_arrow_previous.disabled, div.dark_square .pp_arrow_previous.disabled, div.light_square .pp_arrow_previous.disabled {
  background-position: 0 -87px;
  cursor: default; }

div.light_rounded .pp_arrow_next.disabled, div.dark_rounded .pp_arrow_next.disabled, div.dark_square .pp_arrow_next.disabled, div.light_square .pp_arrow_next.disabled {
  background-position: -22px -87px;
  cursor: default; }

div.light_rounded .pp_loaderIcon, div.light_square .pp_loaderIcon {
  background: url(../../Images/prettyPhoto/light_rounded/loader.gif) center center no-repeat; }

div.dark_rounded .pp_top .pp_middle, div.dark_rounded .pp_content, div.dark_rounded .pp_bottom .pp_middle {
  background: url(../../Images/prettyPhoto/dark_rounded/contentPattern.png) top left repeat; }

div.dark_rounded .currentTextHolder, div.dark_square .currentTextHolder {
  color: #c4c4c4; }

div.dark_rounded #pp_full_res .pp_inline, div.dark_square #pp_full_res .pp_inline {
  color: #fff; }

.pp_top, .pp_bottom {
  height: 20px;
  position: relative; }

* html .pp_top, * html .pp_bottom {
  padding: 0 20px; }

.pp_top .pp_left, .pp_bottom .pp_left {
  height: 20px;
  left: 0;
  position: absolute;
  width: 20px; }

.pp_top .pp_middle, .pp_bottom .pp_middle {
  height: 20px;
  left: 20px;
  position: absolute;
  right: 20px; }

* html .pp_top .pp_middle, * html .pp_bottom .pp_middle {
  left: 0;
  position: static; }

.pp_top .pp_right, .pp_bottom .pp_right {
  height: 20px;
  left: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px; }

.pp_fade, .pp_gallery li.default a img {
  display: none; }

/* PrettyPhoto Hacks */
div.pp_pic_holder {
  width: 433px; }

.pp_content {
  width: 400px;
  height: 440px; }

.pp_hoverContainer {
  width: 400px;
  height: 400px; }

div.pp_default .pp_details {
  width: 400px;
  position: absolute;
  bottom: 0px;
  left: 10px;
  height: 28px; }

#fullResImage {
  width: 0px;
  height: 0px; }

.pp_social .download {
  margin-left: 20px; }

.sfimagesTmbList {
  margin: 0;
  padding: 0;
  list-style: none; }

.sfimagesTmbList li {
  float: left;
  margin: 1em 0.5em 0 0; }

/*! Tablesaw - v1.0.4 - 2015-02-19
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2015 Filament Group; Licensed MIT */
table.tablesaw {
  empty-cells: show;
  max-width: 100%;
  width: 100%; }

.tablesaw {
  border-collapse: collapse;
  width: 100%; }

/* Structure */
.tablesaw {
  border: 0;
  padding: 0; }

.tablesaw th, .tablesaw td {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0.5em 0.7em; }

.tablesaw thead tr:first-child th {
  padding-top: 0.9em;
  padding-bottom: 0.7em; }

.tablesaw-enhanced .tablesaw-bar .btn {
  border: 1px solid #ccc;
  background: none;
  background-color: #fafafa;
  box-shadow: 0 1px 0 white;
  color: #4a4a4a;
  clear: both;
  cursor: pointer;
  display: block;
  font: bold 20px/1 sans-serif;
  margin: 0;
  padding: 0.5em 0.85em 0.4em 0.85em;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  text-shadow: 0 1px 0 #fff;
  width: 100%;
  /* Theming */
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), color-stop(50%, rgba(255, 255, 255, 0.1)), color-stop(55%, rgba(170, 170, 170, 0.1)), to(rgba(120, 120, 120, 0.15)));
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(170, 170, 170, 0.1) 55%, rgba(120, 120, 120, 0.15) 100%);
  background-image: linear, top, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(170, 170, 170, 0.1) 55%, rgba(120, 120, 120, 0.15) 100%;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  border-radius: 0.25em; }

.tablesaw-enhanced .tablesaw-bar a.btn {
  color: #1c95d4; }

.tablesaw-enhanced .tablesaw-bar .btn:hover {
  text-decoration: none; }

/* Default radio/checkbox styling horizonal controlgroups. */
.tablesaw-enhanced .tablesaw-bar .btn:active {
  background-color: #ddd;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(100, 100, 100, 0.35)), to(rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(top, rgba(100, 100, 100, 0.35) 0%, rgba(255, 255, 255, 0) 70%);
  background-image: linear, top, rgba(100, 100, 100, 0.35) 0%, rgba(255, 255, 255, 0) 70%; }

.tablesaw-enhanced .tablesaw-bar .btn:hover, .tablesaw-enhanced .tablesaw-bar .btn:focus {
  color: #208de3;
  background-color: #fff;
  outline: none; }

.tablesaw-bar .btn:focus {
  box-shadow: 0 0 0.35em #4faeef !important; }

.ie-lte8 .tablesaw-bar .btn:hover, .ie-lte8 .tablesaw-bar .btn:focus {
  color: #208de3;
  background-color: #fff;
  border-color: #aaa;
  outline: none; }

.tablesaw-bar .btn-select select {
  background: none;
  border: none;
  display: block;
  position: absolute;
  font-weight: inherit;
  left: 0;
  top: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  min-height: 1em; }

.tablesaw-bar .btn-select select {
  opacity: 0;
  filter: alpha(opacity=0);
  display: inline-block;
  color: transparent; }

.tablesaw-bar .btn select option {
  background: #fff;
  color: #000;
  font-family: sans-serif; }

.tablesaw-enhanced .tablesaw-bar .btn.btn-select {
  color: #4d4d4d;
  padding-right: 2.5em;
  min-width: 7.25em;
  text-align: left;
  text-indent: 0; }

.ie-lte8 .tablesaw-bar .btn-select {
  min-width: 6.1em; }

.tablesaw-bar .btn.btn-small, .tablesaw-bar .btn.btn-micro {
  display: inline-block;
  width: auto;
  height: auto;
  position: relative;
  top: 0; }

.tablesaw-bar .btn.btn-small {
  font-size: 1.0625em;
  line-height: 19px;
  padding: 0.3em 1em 0.3em 1em; }

.tablesaw-bar .btn.btn-micro {
  font-size: 0.8125em;
  padding: 0.4em 0.7em 0.25em 0.7em; }

.tablesaw-enhanced .tablesaw-bar .btn-select {
  text-align: left; }

.tablesaw-bar .btn-select:after {
  background: #e5e5e5;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 2px rgba(255, 255, 255, 0.25);
  content: " ";
  display: block;
  position: absolute; }

.tablesaw-bar .btn-select.btn-small, .tablesaw-bar .btn-select.btn-micro {
  padding-right: 1.5em; }

.tablesaw-bar .btn-select:after {
  background: none;
  background-repeat: no-repeat;
  background-position: 0.25em 0.45em;
  content: "\25bc";
  font-size: 0.55em;
  padding-top: 1.2em;
  padding-left: 1em;
  left: auto;
  right: 0;
  margin: 0;
  top: 0;
  bottom: 0;
  width: 1.8em; }

.tablesaw-bar .btn-select.btn-small:after, .tablesaw-bar .btn-select.btn-micro:after {
  width: 1.2em;
  font-size: 0.5em;
  padding-top: 1em;
  padding-right: 0.5em;
  line-height: 1.65;
  background: none;
  box-shadow: none;
  border-left-width: 0; }

/* Column navigation buttons for swipe and columntoggle tables */
.tablesaw-advance .btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-shadow: 0 1px 0 #fff;
  border-radius: 0.25em; }

.tablesaw-advance .btn.btn-micro {
  font-size: 0.8125em;
  padding: 0.3em 0.7em 0.25em 0.7em; }

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn {
  display: inline-block;
  overflow: hidden;
  width: 1.8em;
  height: 1.8em;
  background-position: 50% 50%;
  margin-left: 0.5em;
  position: relative; }

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before, .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before, .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.down:before, .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.up:before {
  content: "\0020";
  overflow: hidden;
  width: 0;
  height: 0;
  position: absolute; }

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.down:before {
  left: 0.5em;
  top: 0.65em;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #808080; }

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.up:before {
  left: 0.5em;
  top: 0.65em;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #808080; }

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before, .tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before {
  top: 0.45em;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent; }

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.left:before {
  left: 0.6em;
  border-right: 5px solid #808080; }

.tablesaw-bar .tablesaw-advance a.tablesaw-nav-btn.right:before {
  left: 0.7em;
  border-left: 5px solid #808080; }

.tablesaw-advance a.tablesaw-nav-btn.disabled {
  opacity: 0.25;
  filter: alpha(opacity=25);
  cursor: default;
  pointer-events: none; }

/* Table Toolbar */
.tablesaw-bar {
  clear: both;
  font-family: sans-serif; }

.tablesaw-toolbar {
  font-size: 0.875em;
  float: left; }

.tablesaw-toolbar label {
  padding: 0.5em 0;
  clear: both;
  display: block;
  color: #888;
  margin-right: 0.5em;
  text-transform: uppercase; }

.tablesaw-bar .btn, .tablesaw-enhanced .tablesaw-bar .btn {
  margin-top: 0.5em;
  margin-bottom: 0.5em; }

.tablesaw-bar .btn-select, .tablesaw-enhanced .tablesaw-bar .btn-select {
  margin-bottom: 0; }

.tablesaw-bar .tablesaw-toolbar .btn {
  margin-left: 0.4em;
  margin-top: 0;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
  background: transparent;
  font-family: sans-serif;
  font-size: 1em;
  padding-left: 0.3em; }

.tablesaw-bar .tablesaw-toolbar .btn-select {
  min-width: 0; }

.tablesaw-bar .tablesaw-toolbar .btn-select:after {
  padding-top: 0.9em; }

.tablesaw-bar .tablesaw-toolbar select {
  color: #888;
  text-transform: none;
  background: transparent; }

.tablesaw-toolbar ~ table {
  clear: both; }

.tablesaw-toolbar .a11y-sm {
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px; }

@media (min-width: 24em) {
  .tablesaw-toolbar .a11y-sm {
    clip: none;
    height: auto;
    width: auto;
    position: static;
    overflow: visible; } }

table.tablesaw tbody th {
  font-weight: bold; }

.tablesaw th, .tablesaw td {
  line-height: 1.4em;
  text-align: left;
  vertical-align: middle; }

.tablesaw td, .tablesaw tbody th {
  vertical-align: middle;
  font-size: 1.17em;
  /* 19px */ }

.tablesaw td .btn, .tablesaw tbody th .btn {
  margin: 0; }

.tablesaw thead th {
  white-space: nowrap;
  color: #0073CF;
  font-size: 18px;
  font-size: 1.125rem; }

.tablesaw thead tr:first-child th {
  font-weight: normal;
  font-family: sans-serif; }

/* Table rows have a gray bottom stroke by default */
.tablesaw tbody tr {
  border-bottom: 1px solid #dfdfdf; }

.tablesaw caption {
  text-align: left;
  margin-bottom: 0;
  opacity: 0.5;
  filter: alpha(opacity=50);
  line-height: 2.4; }

@media (min-width: 25em) {
  .tablesaw caption {
    margin-bottom: 0.6em;
    line-height: 1.2; } }

/* Stack */
.tablesaw-cell-label-top {
  text-transform: uppercase;
  font-size: 0.1em;
  font-weight: normal; }

.tablesaw-cell-label {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #0073CF;
  font-family: sans-serif; }
  @media screen and (max-width: 639px)  {
    .tablesaw-cell-label {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; } }

@media (min-width: 40em) {
  .tablesaw td {
    line-height: 2em; } }

@media only all {
  .tablesaw-swipe .tablesaw-cell-persist {
    border-right: 1px solid #e4e1de; }
  .tablesaw-swipe .tablesaw-cell-persist {
    box-shadow: 3px 0 4px -1px #e4e1de; } }

/* Table rows have a gray bottom stroke by default */
.tablesaw-stack tbody tr {
  border-bottom: 1px solid #dfdfdf; }

.tablesaw-stack td .tablesaw-cell-label, .tablesaw-stack th .tablesaw-cell-label {
  display: none; }

/* Mobile first styles: Begin with the stacked presentation at narrow widths */
@media only all {
  /* Show the table cells as a block level element */
  /* Make the label elements a percentage width */
  /* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */
  /* Avoid double strokes when stacked */
  /* Avoid double strokes when stacked */
  .tablesaw-stack td, .tablesaw-stack th {
    text-align: left;
    display: block; }
  .tablesaw-stack tr {
    clear: both;
    display: table-row; }
  .tablesaw-stack td .tablesaw-cell-label, .tablesaw-stack th .tablesaw-cell-label {
    display: block;
    padding: 0 0.6em 0 0;
    width: 30%;
    display: inline-block; }
  .tablesaw-stack th .tablesaw-cell-label-top, .tablesaw-stack td .tablesaw-cell-label-top {
    display: block;
    padding: 0.4em 0;
    margin: 0.4em 0; }
  .tablesaw-cell-label {
    display: block; }
  .tablesaw-stack tbody th.group, .tablesaw-stack tbody th.latest-news {
    margin-top: -1px; }
  .tablesaw-stack th.group b.tablesaw-cell-label, .tablesaw-stack th.group th.latest-news {
    display: none !important; } }

@media (max-width: 39.9375em) {
  .tablesaw-stack thead td, .tablesaw-stack thead th {
    display: none; }
  .tablesaw-stack tbody td, .tablesaw-stack tbody th {
    clear: left;
    float: left;
    width: 100%; }
  .tablesaw-cell-label {
    vertical-align: top; }
  .tablesaw-cell-content {
    max-width: 67%;
    display: inline-block; }
  .tablesaw-stack td:empty, .tablesaw-stack th:empty {
    display: none; } }

/* Media query to show as a standard table at 560px (35em x 16px) or wider */
@media (min-width: 40em) {
  /* Show the table header rows */
  /* Hide the labels in each cell */
  .tablesaw-stack tr {
    display: table-row; }
  .tablesaw-stack td, .tablesaw-stack th, .tablesaw-stack thead td, .tablesaw-stack thead th {
    display: table-cell;
    margin: 0; }
  .tablesaw-stack td .tablesaw-cell-label, .tablesaw-stack th .tablesaw-cell-label {
    display: none !important; } }

.tablesaw-fix-persist {
  table-layout: fixed; }

@media only all {
  /* Unchecked manually: Always hide */
  .tablesaw-swipe th.tablesaw-cell-hidden, .tablesaw-swipe td.tablesaw-cell-hidden {
    display: none; } }

.btn.tablesaw-columntoggle-btn span {
  text-indent: -9999px;
  display: inline-block; }

.tablesaw-columntoggle-btnwrap {
  position: relative;
  /* for dialog positioning */ }

.tablesaw-columntoggle-btnwrap .dialog-content {
  padding: 0.5em; }

.tablesaw-columntoggle tbody td {
  line-height: 1.5; }

/* Remove top/bottom margins around the fieldcontain on check list */
.tablesaw-columntoggle-popup {
  display: none; }

.tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup {
  display: block;
  position: absolute;
  top: 2em;
  right: 0;
  background-color: #fff;
  padding: 0.5em 0.8em;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px #ccc;
  border-radius: 0.2em;
  z-index: 1; }

.tablesaw-columntoggle-popup fieldset {
  margin: 0; }

/* Hide all prioritized columns by default */
@media only all {
  .tablesaw-columntoggle th.tablesaw-priority-6, .tablesaw-columntoggle td.tablesaw-priority-6, .tablesaw-columntoggle th.tablesaw-priority-5, .tablesaw-columntoggle td.tablesaw-priority-5, .tablesaw-columntoggle th.tablesaw-priority-4, .tablesaw-columntoggle td.tablesaw-priority-4, .tablesaw-columntoggle th.tablesaw-priority-3, .tablesaw-columntoggle td.tablesaw-priority-3, .tablesaw-columntoggle th.tablesaw-priority-2, .tablesaw-columntoggle td.tablesaw-priority-2, .tablesaw-columntoggle th.tablesaw-priority-1, .tablesaw-columntoggle td.tablesaw-priority-1 {
    display: none; } }

.tablesaw-columntoggle-btnwrap .dialog-content {
  top: 0 !important;
  right: 1em;
  left: auto !important;
  width: 12em;
  max-width: 18em;
  margin: -0.5em auto 0; }

.tablesaw-columntoggle-btnwrap .dialog-content:focus {
  outline-style: none; }

/* Preset breakpoints if "" class added to table */
/* Show priority 1 at 320px (20em x 16px) */
@media (min-width: 20em) {
  .tablesaw-columntoggle th.tablesaw-priority-1, .tablesaw-columntoggle td.tablesaw-priority-1 {
    display: table-cell; } }

/* Show priority 2 at 480px (30em x 16px) */
@media (min-width: 30em) {
  .tablesaw-columntoggle th.tablesaw-priority-2, .tablesaw-columntoggle td.tablesaw-priority-2 {
    display: table-cell; } }

/* Show priority 3 at 640px (40em x 16px) */
@media (min-width: 40em) {
  .tablesaw-columntoggle th.tablesaw-priority-3, .tablesaw-columntoggle td.tablesaw-priority-3 {
    display: table-cell; }
  .tablesaw-columntoggle tbody td {
    line-height: 2; } }

/* Show priority 4 at 800px (50em x 16px) */
@media (min-width: 50em) {
  .tablesaw-columntoggle th.tablesaw-priority-4, .tablesaw-columntoggle td.tablesaw-priority-4 {
    display: table-cell; } }

/* Show priority 5 at 960px (60em x 16px) */
@media (min-width: 60em) {
  .tablesaw-columntoggle th.tablesaw-priority-5, .tablesaw-columntoggle td.tablesaw-priority-5 {
    display: table-cell; } }

/* Show priority 6 at 1,120px (70em x 16px) */
@media (min-width: 70em) {
  .tablesaw-columntoggle th.tablesaw-priority-6, .tablesaw-columntoggle td.tablesaw-priority-6 {
    display: table-cell; } }

@media only all {
  /* Unchecked manually: Always hide */
  /* Checked manually: Always show */
  .tablesaw-columntoggle th.tablesaw-cell-hidden, .tablesaw-columntoggle td.tablesaw-cell-hidden {
    display: none; }
  .tablesaw-columntoggle th.tablesaw-cell-visible, .tablesaw-columntoggle td.tablesaw-cell-visible {
    display: table-cell; } }

.tablesaw-columntoggle-popup .btn-group > label {
  display: block;
  padding: 0.2em 0;
  white-space: nowrap; }

.tablesaw-columntoggle-popup .btn-group > label input {
  margin-right: 0.8em; }

.tablesaw-sortable, .tablesaw-sortable thead, .tablesaw-sortable thead tr, .tablesaw-sortable thead tr th {
  position: relative; }

.tablesaw-sortable thead tr th {
  padding-right: 1.6em;
  vertical-align: top; }

.tablesaw-sortable th.tablesaw-sortable-head, .tablesaw-sortable tr:first-child th.tablesaw-sortable-head {
  padding: 0; }

.tablesaw-sortable th.tablesaw-sortable-head button {
  padding-top: 0.9em;
  padding-bottom: 0.7em;
  padding-left: 0.6em;
  padding-right: 1.6em; }

.tablesaw-sortable .tablesaw-sortable-head button {
  min-width: 100%;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  text-align: left;
  font: inherit;
  text-transform: inherit;
  position: relative; }

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after, .tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
  width: 7px;
  height: 10px;
  content: "\0020";
  position: absolute;
  right: 0.5em; }

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-ascending button:after {
  content: "↑"; }

.tablesaw-sortable .tablesaw-sortable-head.tablesaw-sortable-descending button:after {
  content: "↓"; }

.tablesaw-sortable .not-applicable:after {
  content: "--";
  display: block; }

.tablesaw-sortable .not-applicable span {
  display: none; }

.tablesaw-advance {
  float: right; }

.tablesaw-advance.minimap {
  margin-right: 0.4em; }

.tablesaw-advance-dots {
  float: left;
  margin: 0;
  padding: 0;
  list-style: none; }

.tablesaw-advance-dots li {
  display: table-cell;
  margin: 0;
  padding: 0.4em 0.2em; }

.tablesaw-advance-dots li i {
  width: 0.25em;
  height: 0.25em;
  background: #555;
  border-radius: 100%;
  display: inline-block; }

.tablesaw-advance-dots-hide {
  opacity: 0.25;
  filter: alpha(opacity=25);
  cursor: default;
  pointer-events: none; }

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y; }

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 1798px;
  margin: 0 auto; }

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

.owl-carousel .owl-item {
  float: left; }

.owl-controls .owl-page, .owl-controls .owl-buttons div {
  cursor: pointer; }

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move; }

/* fix */
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.3.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
  /* support for nested featherlights. Does not work in IE8 (use JS to fix) */
  /* contains the content */
  .featherlight {
    display: none;
    /* dimensions: spanning the background from edge to edge */
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2147483647;
    /* z-index needs to be >= elements on the site. */
    /* position: centering content */
    text-align: center;
    /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
    white-space: nowrap;
    /* styling */
    cursor: pointer;
    background: #333;
    /* IE8 "hack" for nested featherlights */
    background: rgba(0, 0, 0, 0); }
  .featherlight:last-of-type {
    background: rgba(0, 0, 0, 0.8); }
  .featherlight:before {
    /* position: trick to center content vertically */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em; }
  .featherlight .featherlight-content {
    /* make content container for positioned elements (close button) */
    position: relative;
    /* position: centering vertical and horizontal */
    text-align: left;
    vertical-align: middle;
    display: inline-block;
    /* dimensions: cut off images */
    overflow: auto;
    padding: 25px 25px 0;
    border-bottom: 25px solid transparent;
    /* dimensions: handling small or empty content */
    min-width: 30%;
    /* dimensions: handling large content */
    margin-left: 5%;
    margin-right: 5%;
    max-height: 95%;
    /* styling */
    background: #fff;
    cursor: auto;
    /* reset white-space wrapping */
    white-space: normal; }
  .featherlight .featherlight-inner {
    /* make sure its visible */
    display: block; }
  .featherlight .featherlight-close-icon {
    /* position: centering vertical and horizontal */
    position: absolute;
    z-index: 9999;
    top: 0;
    right: 0;
    /* dimensions: 25px x 25px */
    line-height: 25px;
    width: 25px;
    /* styling */
    cursor: pointer;
    text-align: center;
    font: Arial, sans-serif;
    background: #fff;
    /* Set the background in case it overlaps the content */
    background: rgba(255, 255, 255, 0.3);
    color: #000; }
  .featherlight .featherlight-image {
    /* styling */
    width: 100%; }
  .featherlight-iframe .featherlight-content {
    /* removed the border for image croping since iframe is edge to edge */
    border-bottom: 0;
    padding: 0; }
  .featherlight iframe {
    /* styling */
    border: none; } }

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 10px;
    margin-right: 10px;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }

.ir {
  display: block;
  overflow: hidden;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  text-indent: -999em;
  direction: ltr;
  *line-height: 0; }
  .ir br {
    display: none; }

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

.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0; }
  .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    position: static;
    overflow: visible;
    clip: auto;
    margin: 0;
    width: auto;
    height: auto; }

.invisible {
  visibility: hidden; }

.group, .latest-news {
  *zoom: 1; }
  .group:before, .latest-news:before, .group:after, .latest-news:after {
    display: table;
    content: ""; }
  .group:after, .latest-news:after {
    clear: both; }

.clear {
  clear: both; }

img[src*="googleadservices.com"] {
  position: absolute;
  top: 0;
  left: -9000em; }

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

.cf:after {
  clear: both; }

  
  
/*Search Suggest  */
.k-list-container {
	-webkit-box-sizing:content-box;
	box-sizing:content-box;
    background:#fff;
    padding:10px 10px 5px;   
    width:300px;
	max-height:220px; 
	overflow: auto;
    -webkit-box-shadow: 0px 3px 4px 0px rgba(50, 50, 50, 0.48);
	-moz-box-shadow:    0px 3px 4px 0px rgba(50, 50, 50, 0.48);
	box-shadow:         0px 3px 4px 0px rgba(50, 50, 50, 0.48);
}
@media screen and (-webkit-min-device-pixel-ratio:0) { .k-list-container { top: 30px;}}
.k-list {
    list-style-type:none; padding-left:0;
    margin:0;
}
.k-item {
    border-bottom:1px solid #efefef;
    cursor:pointer;
    padding:4px;
}
.k-item:hover {
    background:#002C77;
    color:#fff;
}

/*Form Updates */


.sfFormsEditor { padding:5px;}

.sfFormBox {display:block; vertical-align:top;}
.sfFormBox div:first-child {width:30%; display:inline-block; vertical-align:top; padding-right:5px;}
.sfFormBox .sfTxtLbl {text-align:right;}
.sfFormBox .sfFieldWrp {width:50%; display:inline-block; position:relative;}
.sfFormBox .sfFieldWrp input {background:#efefef;}

.required .sfFieldWrp:after {display:block; content:"*"; color:#ff0000; width:20px; height:20px; position:absolute; top:1px; right:-25px;}

.sfFormDropdown .sfTxtLbl {width:30%; display:inline-block; vertical-align:top; text-align:right; padding-right:5px;}
.sfFormDropdown .sfFieldWrp {width:50%; display:inline-block;}
.sfFormDropdown .sfFieldWrp select {background:#efefef; width:100%;}


.sfFormBlock div:first-child {width:30%; display:inline-block; vertical-align:top;}
.sfFormBlock .sfTxtLbl {text-align:right; padding-right:5px;}
.sfFormBlock .sfFieldWrp {width:56%; display:inline-block;}

.required .sfFieldWrp:after {display:block; content:"*"; color:#ff0000; width:20px; height:20px; position:absolute; top:1px; right:-25px;}

.sfFormBlock .sfFieldWrp textarea {background:#efefef;}

.sfFormSubmit {height:30px; padding:20px 30px; margin-bottom:20px;}
.sfFormSubmit input {float:right; background:#0073cf; color:#fff; padding:15px 20px; font-weight:bold; font-size:1.25em;}
.sfFormSubmit input:hover {color:#000;}

.sfFormCaptcha {text-align:center;}
.sfFormCaptcha img {margin:0px auto;}
.sfFormCaptcha input {margin:10px auto; width:30%;}

.sf_colsOut {}


select.formSelect {/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d7d7d7+0,f0f0f0+3,f0f0f0+100 */
background: #d7d7d7; /* Old browsers */
background: -moz-linear-gradient(left,  #d7d7d7 0%, #f0f0f0 3%, #f0f0f0 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  #d7d7d7 0%,#f0f0f0 3%,#f0f0f0 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  #d7d7d7 0%,#f0f0f0 3%,#f0f0f0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#d7d7d7', endColorstr='#f0f0f0',GradientType=1 ); /* IE6-9 */

}

select.formSelect option {margin:0px; padding:10px; border-bottom:solid 1px #ccc; height:30px;}

select.formSelect option:hover {font-weight:bold; background:#ccc;}