/*! =======================================================
                      VERSION  9.10.0              
========================================================= */
/*! =========================================================
 * bootstrap-slider.js
 *
 * Maintainers:
 *		Kyle Kemp
 *			- Twitter: @seiyria
 *			- Github:  seiyria
 *		Rohit Kalkur
 *			- Twitter: @Rovolutionary
 *			- Github:  rovolution
 *
 * =========================================================
  *
 * bootstrap-slider is released under the MIT License
 * Copyright (c) 2017 Kyle Kemp, Rohit Kalkur, and contributors
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:
 * 
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * ========================================================= */
.slider {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    .slider.slider-horizontal {
        width: 210px;
        height: 20px;
    }

        .slider.slider-horizontal .slider-track {
            top: 50%;
            left: 0;
            width: 100%;
            height: 10px;
            margin-top: -5px;
        }

        .slider.slider-horizontal .slider-selection,
        .slider.slider-horizontal .slider-track-low,
        .slider.slider-horizontal .slider-track-high {
            top: 0;
            bottom: 0;
            height: 100%;
        }

        .slider.slider-horizontal .slider-tick,
        .slider.slider-horizontal .slider-handle {
            margin-left: -10px;
        }

            .slider.slider-horizontal .slider-tick.triangle,
            .slider.slider-horizontal .slider-handle.triangle {
                position: relative;
                top: 50%;
                width: 0;
                height: 0;
                margin-top: 0;
                border-width: 0 10px 10px 10px;
                border-bottom-color: #2e6da4;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        .slider.slider-horizontal .slider-tick-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            white-space: nowrap;
        }

        .slider.slider-horizontal .slider-tick-label-container {
            margin-top: 20px;
            white-space: nowrap;
        }

            .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
                display: inline-block;
                padding-top: 4px;
                text-align: center;
            }

        .slider.slider-horizontal.slider-rtl .slider-track {
            right: 0;
            left: initial;
        }

        .slider.slider-horizontal.slider-rtl .slider-tick,
        .slider.slider-horizontal.slider-rtl .slider-handle {
            margin-right: -10px;
            margin-left: initial;
        }

        .slider.slider-horizontal.slider-rtl .slider-tick-container {
            right: 0;
            left: initial;
        }

    .slider.slider-vertical {
        width: 20px;
        height: 210px;
    }

        .slider.slider-vertical .slider-track {
            top: 0;
            left: 25%;
            width: 10px;
            height: 100%;
        }

        .slider.slider-vertical .slider-selection {
            top: 0;
            bottom: 0;
            left: 0;
            width: 100%;
        }

        .slider.slider-vertical .slider-track-low,
        .slider.slider-vertical .slider-track-high {
            right: 0;
            left: 0;
            width: 100%;
        }

        .slider.slider-vertical .slider-tick,
        .slider.slider-vertical .slider-handle {
            margin-top: -10px;
        }

            .slider.slider-vertical .slider-tick.triangle,
            .slider.slider-vertical .slider-handle.triangle {
                width: 1px;
                height: 1px;
                margin-right: 0;
                margin-left: 0;
                border-width: 10px 0 10px 10px;
                border-right-color: #2e6da4;
                border-left-color: #2e6da4;
            }

        .slider.slider-vertical .slider-tick-label-container {
            white-space: nowrap;
        }

            .slider.slider-vertical .slider-tick-label-container .slider-tick-label {
                padding-left: 4px;
            }

        .slider.slider-vertical.slider-rtl .slider-track {
            right: 25%;
            left: initial;
        }

        .slider.slider-vertical.slider-rtl .slider-selection {
            right: 0;
            left: initial;
        }

        .slider.slider-vertical.slider-rtl .slider-tick.triangle,
        .slider.slider-vertical.slider-rtl .slider-handle.triangle {
            border-width: 10px 10px 10px 0;
        }

        .slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
            padding-right: 4px;
            padding-left: initial;
        }

    .slider.slider-disabled .slider-handle {
        background-image: -webkit-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
        background-image: -o-linear-gradient(top, #dfdfdf 0%, #bebebe 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#dfdfdf), to(#bebebe));
        background-image: linear-gradient(to bottom, #dfdfdf 0%, #bebebe 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdfdfdf', endColorstr='#ffbebebe', GradientType=0);
        background-repeat: repeat-x;
    }

    .slider.slider-disabled .slider-track {
        cursor: not-allowed;
        background-image: -webkit-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
        background-image: -o-linear-gradient(top, #e5e5e5 0%, #e9e9e9 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#e9e9e9));
        background-image: linear-gradient(to bottom, #e5e5e5 0%, #e9e9e9 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe5e5e5', endColorstr='#ffe9e9e9', GradientType=0);
        background-repeat: repeat-x;
    }

    .slider input {
        display: none;
    }

    .slider .tooltip.top {
        margin-top: -36px;
    }

    .slider .tooltip-inner {
        max-width: none;
        white-space: nowrap;
    }

    .slider .hide {
        display: none;
    }

.slider-track {
    position: absolute;
    cursor: pointer;
    background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
    background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#f9f9f9));
    background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#fff9f9f9', GradientType=0);
    background-repeat: repeat-x;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.slider-selection {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f5f5f5));
    background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
    background-repeat: repeat-x;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
}

    .slider-selection.tick-slider-selection {
        background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
        background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#8ac1ef), to(#82b3de));
        background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
        background-repeat: repeat-x;
    }

.slider-track-low,
.slider-track-high {
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background: transparent;
    border-radius: 4px;
}

.slider-handle {
    position: absolute;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #337ab7;
    background-image: -webkit-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image: -o-linear-gradient(top, #337ab7 0%, #2e6da4 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#337ab7), to(#2e6da4));
    background-image: linear-gradient(to bottom, #337ab7 0%, #2e6da4 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
    filter: none;
    background-repeat: repeat-x;
    border: 0 solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
    -webkit-filter: none;
}

    .slider-handle.round {
        border-radius: 50%;
    }

    .slider-handle.triangle {
        background: transparent none;
    }

    .slider-handle.custom {
        background: transparent none;
    }

        .slider-handle.custom::before {
            font-size: 20px;
            line-height: 20px;
            color: #726204;
            content: '\2605';
        }

.slider-tick {
    position: absolute;
    width: 20px;
    height: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: -o-linear-gradient(top, #f9f9f9 0%, #f5f5f5 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#f5f5f5));
    background-image: linear-gradient(to bottom, #f9f9f9 0%, #f5f5f5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff9f9f9', endColorstr='#fff5f5f5', GradientType=0);
    filter: none;
    background-repeat: repeat-x;
    border: 0 solid transparent;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    opacity: .8;
    -webkit-filter: none;
}

    .slider-tick.round {
        border-radius: 50%;
    }

    .slider-tick.triangle {
        background: transparent none;
    }

    .slider-tick.custom {
        background: transparent none;
    }

        .slider-tick.custom::before {
            font-size: 20px;
            line-height: 20px;
            color: #726204;
            content: '\2605';
        }

    .slider-tick.in-selection {
        background-image: -webkit-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
        background-image: -o-linear-gradient(top, #8ac1ef 0%, #82b3de 100%);
        background-image: -webkit-gradient(linear, left top, left bottom, from(#8ac1ef), to(#82b3de));
        background-image: linear-gradient(to bottom, #8ac1ef 0%, #82b3de 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff8ac1ef', endColorstr='#ff82b3de', GradientType=0);
        background-repeat: repeat-x;
        opacity: 1;
    }
/*
 * responsive-carousel
 * https://github.com/filamentgroup/responsive-carousel
 *
 * Copyright (c) 2012 Filament Group, Inc.
 * Licensed under the MIT, GPL licenses.
 */
.carousel {
    position: relative;
    width: 100%;
}

    .carousel .carousel-item {
        display: none;
    }

    .carousel .carousel-active {
        display: block;
    }

.carousel-fade .carousel-item:not(.carousel-active) {
    pointer-events: none;
}

.carousel .carousel-nav:nth-child(2) {
    display: none;
}
/*
 * responsive-carousel
 * https://github.com/filamentgroup/responsive-carousel
 *
 * Copyright (c) 2012 Filament Group, Inc.
 * Licensed under the MIT, GPL licenses.
*/
.carousel-fade {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

    .carousel-fade .carousel-item {
        position: absolute;
        top: 0;
        left: 0;
        /* necessary for non-active slides */
        display: block;
        width: 100%;
        /* overrides basic carousel styles */
        -webkit-transition: opacity .5s ease;
        -o-transition: opacity .5s ease;
        transition: opacity .5s ease;
    }

    .carousel-fade .carousel-active {
        position: relative;
    }

.carousel-item {
    opacity: 0;
}

.carousel-active {
    opacity: 1;
}

.carousel-fade .carousel-out {
    opacity: 0;
}

.carousel-fade .carousel-in {
    opacity: 1;
}
/*
 * responsive-carousel
 * https://github.com/filamentgroup/responsive-carousel
 *
 * Copyright (c) 2012 Filament Group, Inc.
 * Licensed under the MIT, GPL licenses.
*/
.carousel-slide {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

    .carousel-slide .carousel-item {
        position: absolute;
        top: 0;
        left: 100%;
        /* overrides basic carousel styles */
        z-index: 1;
        /* necessary for non-active slides */
        display: block;
        width: 100%;
        -webkit-transition: left .2s ease;
        -o-transition: left .2s ease;
        transition: left .2s ease;
    }

.carousel-no-transition .carousel-item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.carousel-slide .carousel-active {
    position: relative;
    left: 0;
    z-index: 3;
}

.carousel-slide .carousel-item-next {
    z-index: 2;
}

.carousel-slide .carousel-in {
    left: 0;
}

.carousel-slide-reverse .carousel-out {
    left: 100%;
}

.carousel-slide .carousel-out,
.carousel-slide-reverse .carousel-in {
    left: -100%;
}

.carousel-slide-reverse .carousel-item {
    -webkit-transition: left .1s ease;
    -o-transition: left .1s ease;
    transition: left .1s ease;
}

.carousel-slide-reverse .carousel-active {
    left: 0;
}
/*
 * responsive-carousel
 * https://github.com/filamentgroup/responsive-carousel
 *
 * Copyright (c) 2012 Filament Group, Inc.
 * Licensed under the MIT, GPL licenses.
 */
.carousel-nav-paginated ol {
    padding: 0;
    margin: 0 4em;
}

.carousel-nav-paginated li,
.carousel-nav-paginated li a {
    position: relative;
    display: inline-block;
}

.carousel-nav-paginated .carousel-active-page a {
    text-decoration: none;
}
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/* Color Palette */
/* Font sizes */
/* Web Fonts */
/* fluid text size */
/* border and shadow */
.sa-container-shadow {
    border-bottom: 1px solid #d0d2d3;
    -webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, .04);
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, .04);
}
/* Color Palette */
/* TO DO: update with customer palette */
/*@black: 				#212221;
@charcoal: 			#58595B;
@gray: 					#767676;
@graystroke: 		#E6E7E8;
@grayfill: 			#F8F8F9;

@bluedark: 			#075484;
@blue: 					#007DBC;
@bluebright: 		#29ABE2;
@bluelite: 			#77D5F3;
@bluefill: 			#CAEEFA;

@greendark: 		#118933;
@green: 				#16A44A;
@greenbright: 	#6FBE44;
@greenlite: 		#9CCB3E;

@red: 					#C32026;
@orange: 				#ED7A23;
@orangebright: 	#FBC62C;
@yellow: 				#FEDD0E;
@yellowlite: 		#F3EA27;

@purpledark: 		#935093;
@purple: 				#AF77AE;
@fuscia: 				#F05566;
@pink: 					#EB6F92;*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

    a:active,
    a:hover {
        outline: 0;
    }

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    margin: .67em 0;
    font-size: 2em;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub,
sup {
    position: relative;
    font-size: 75%;
    line-height: 0;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner,
    input::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

input {
    line-height: normal;
}

    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"] {
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        -webkit-appearance: textfield;
    }

        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid #c0c0c0;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    *,
    *:before,
    *:after {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td,
        .table th {
            background-color: #fff !important;
        }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: Source Sans Pro,sans-serif;
    font-size: 16px;
    line-height: 1.2;
    color: #212221;
    background-color: #fff;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #007dbc;
    text-decoration: none;
}

    a:hover,
    a:focus {
        color: #004a70;
        text-decoration: none;
    }

    a:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.2;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 19px;
    margin-bottom: 19px;
    border: 0;
    border-top: 1px solid #eee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

[role="button"] {
    cursor: pointer;
}

p {
    max-width: 48em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 300;
    line-height: 1.2;
    color: inherit;
}

    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small,
    .h1 small,
    .h2 small,
    .h3 small,
    .h4 small,
    .h5 small,
    .h6 small,
    h1 .small,
    h2 .small,
    h3 .small,
    h4 .small,
    h5 .small,
    h6 .small,
    .h1 .small,
    .h2 .small,
    .h3 .small,
    .h4 .small,
    .h5 .small,
    .h6 .small {
        font-weight: normal;
        line-height: 1;
        color: #777;
    }

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 19px;
    margin-bottom: 9.5px;
}

    h1 small,
    .h1 small,
    h2 small,
    .h2 small,
    h3 small,
    .h3 small,
    h1 .small,
    .h1 .small,
    h2 .small,
    .h2 .small,
    h3 .small,
    .h3 .small {
        font-size: 65%;
    }

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 9.5px;
    margin-bottom: 9.5px;
}

    h4 small,
    .h4 small,
    h5 small,
    .h5 small,
    h6 small,
    .h6 small,
    h4 .small,
    .h4 .small,
    h5 .small,
    .h5 .small,
    h6 .small,
    .h6 .small {
        font-size: 75%;
    }

h1,
.h1 {
    font-size: 1.75em;
}

h2,
.h2 {
    font-size: 1.375em;
}

h3,
.h3 {
    font-size: 1.125em;
}

h4,
.h4 {
    font-size: 1em;
}

h5,
.h5 {
    font-size: 1em;
}

h6,
.h6 {
    font-size: .75em;
}

p {
    margin: 0 0 9.5px;
}

.lead {
    margin-bottom: 19px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .lead {
        font-size: 24px;
    }
}

small,
.small {
    font-size: 75%;
}

mark,
.mark {
    padding: .2em;
    background-color: #fcf8e3;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #777;
}

.text-primary {
    color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #286090;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #66512c;
}

.text-danger {
    color: #c32026;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #97191d;
}

.bg-primary {
    color: #fff;
    background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #286090;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
    background-color: #e4b9b9;
}

.page-header {
    padding-bottom: 8.5px;
    margin: 38px 0 19px;
    border-bottom: 1px solid #eee;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 9.5px;
}

    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-bottom: 0;
    }

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}

    .list-inline > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px;
    }

dl {
    margin-top: 0;
    margin-bottom: 19px;
}

dt,
dd {
    line-height: 1.2;
}

dt {
    font-weight: bold;
}

dd {
    margin-left: 0;
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777;
}

.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

blockquote {
    padding: 9.5px 19px;
    margin: 0 0 19px;
    font-size: 20px;
    border-left: 5px solid #eee;
}

    blockquote p:last-child,
    blockquote ul:last-child,
    blockquote ol:last-child {
        margin-bottom: 0;
    }

    blockquote footer,
    blockquote small,
    blockquote .small {
        display: block;
        font-size: 80%;
        line-height: 1.2;
        color: #777;
    }

        blockquote footer:before,
        blockquote small:before,
        blockquote .small:before {
            content: '\2014 \00A0';
        }

    .blockquote-reverse,
    blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        text-align: right;
        border-right: 5px solid #eee;
        border-left: 0;
    }

        .blockquote-reverse footer:before,
        blockquote.pull-right footer:before,
        .blockquote-reverse small:before,
        blockquote.pull-right small:before,
        .blockquote-reverse .small:before,
        blockquote.pull-right .small:before {
            content: '';
        }

        .blockquote-reverse footer:after,
        blockquote.pull-right footer:after,
        .blockquote-reverse small:after,
        blockquote.pull-right small:after,
        .blockquote-reverse .small:after,
        blockquote.pull-right .small:after {
            content: '\00A0 \2014';
        }

address {
    margin-bottom: 19px;
    font-style: normal;
    line-height: 1.2;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: bold;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

pre {
    display: block;
    padding: 9px;
    margin: 0 0 9.5px;
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0;
    }

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-11 {
    width: 91.66666667%;
}

.col-xs-10 {
    width: 83.33333333%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-8 {
    width: 66.66666667%;
}

.col-xs-7 {
    width: 58.33333333%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-5 {
    width: 41.66666667%;
}

.col-xs-4 {
    width: 33.33333333%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-2 {
    width: 16.66666667%;
}

.col-xs-1 {
    width: 8.33333333%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

table {
    background-color: transparent;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 19px;
}

    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td,
    .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.2;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    .table > caption + thead > tr:first-child > th,
    .table > colgroup + thead > tr:first-child > th,
    .table > thead:first-child > tr:first-child > th,
    .table > caption + thead > tr:first-child > td,
    .table > colgroup + thead > tr:first-child > td,
    .table > thead:first-child > tr:first-child > td {
        border-top: 0;
    }

    .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    .table .table {
        background-color: #fff;
    }

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #ddd;
}

    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd;
    }

    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

.table-responsive {
    min-height: .01%;
    overflow-x: auto;
}

@media screen and (max-width: 599px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 14.25px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > thead > tr > th,
            .table-responsive > .table > tbody > tr > th,
            .table-responsive > .table > tfoot > tr > th,
            .table-responsive > .table > thead > tr > td,
            .table-responsive > .table > tbody > tr > td,
            .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > thead > tr > th:first-child,
            .table-responsive > .table-bordered > tbody > tr > th:first-child,
            .table-responsive > .table-bordered > tfoot > tr > th:first-child,
            .table-responsive > .table-bordered > thead > tr > td:first-child,
            .table-responsive > .table-bordered > tbody > tr > td:first-child,
            .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > thead > tr > th:last-child,
            .table-responsive > .table-bordered > tbody > tr > th:last-child,
            .table-responsive > .table-bordered > tfoot > tr > th:last-child,
            .table-responsive > .table-bordered > thead > tr > td:last-child,
            .table-responsive > .table-bordered > tbody > tr > td:last-child,
            .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > th,
            .table-responsive > .table-bordered > tfoot > tr:last-child > th,
            .table-responsive > .table-bordered > tbody > tr:last-child > td,
            .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 19px;
    font-size: 24px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 16px;
    line-height: 1.2;
    color: #212221;
}

.form-control {
    display: block;
    width: 100%;
    height: 33px;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.2;
    color: #212221;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
    }

    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    .form-control:-ms-input-placeholder {
        color: #999;
    }

    .form-control::-webkit-input-placeholder {
        color: #999;
    }

    .form-control::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        background-color: #eee;
        opacity: 1;
    }

    .form-control[disabled],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
    }

textarea.form-control {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 33px;
    }

    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px;
    }

    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: 46px;
    }
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .radio label,
    .checkbox label {
        min-height: 19px;
        padding-left: 20px;
        margin-bottom: 0;
        font-weight: normal;
        cursor: pointer;
    }

    .radio input[type="radio"],
    .radio-inline input[type="radio"],
    .checkbox input[type="checkbox"],
    .checkbox-inline input[type="checkbox"] {
        position: absolute;
        margin-top: 4px \9;
        margin-left: -20px;
    }

    .radio + .radio,
    .checkbox + .checkbox {
        margin-top: -5px;
    }

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: normal;
    vertical-align: middle;
    cursor: pointer;
}

    .radio-inline + .radio-inline,
    .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 10px;
    }

input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}

.form-control-static {
    min-height: 35px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
}

    .form-control-static.input-lg,
    .form-control-static.input-sm {
        padding-right: 0;
        padding-left: 0;
    }

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-sm {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 31px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

select.input-lg {
    height: 46px;
    line-height: 46px;
}

textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 37px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 41.25px;
    }

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 33px;
    height: 33px;
    line-height: 33px;
    text-align: center;
    pointer-events: none;
}

.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-success .form-control:focus {
        border-color: #2b542c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    }

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-warning .form-control:focus {
        border-color: #66512c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    }

.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
    color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #c32026;
}

.has-error .form-control {
    border-color: #c32026;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

    .has-error .form-control:focus {
        border-color: #97191d;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #e56468;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #e56468;
    }

.has-error .input-group-addon {
    color: #c32026;
    background-color: #f2dede;
    border-color: #c32026;
}

.has-error .form-control-feedback {
    color: #c32026;
}

.has-feedback label ~ .form-control-feedback {
    top: 24px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #606360;
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .form-inline .input-group .input-group-addon,
        .form-inline .input-group .input-group-btn,
        .form-inline .input-group .form-control {
            width: auto;
        }

        .form-inline .input-group > .form-control {
            width: 100%;
        }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .form-inline .radio label,
        .form-inline .checkbox label {
            padding-left: 0;
        }

        .form-inline .radio input[type="radio"],
        .form-inline .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0;
        }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 26px;
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}

.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 1.5em;
}

    .btn:focus,
    .btn:active:focus,
    .btn.active:focus,
    .btn.focus,
    .btn:active.focus,
    .btn.active.focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    .btn:hover,
    .btn:focus,
    .btn.focus {
        color: #212221;
        text-decoration: none;
    }

    .btn:active,
    .btn.active {
        background-image: none;
        outline: 0;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    }

    .btn.disabled,
    .btn[disabled],
    fieldset[disabled] .btn {
        cursor: not-allowed;
        filter: alpha(opacity=65);
        -webkit-box-shadow: none;
        box-shadow: none;
        opacity: .65;
    }

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-default {
    color: #212221;
    background-color: #fff;
    border-color: #e6e7e8;
}

    .btn-default:focus,
    .btn-default.focus {
        color: #212221;
        background-color: #e6e6e6;
        border-color: #a4a7ab;
    }

    .btn-default:hover {
        color: #212221;
        background-color: #e6e6e6;
        border-color: #c6c8cb;
    }

    .btn-default:active,
    .btn-default.active,
    .open > .dropdown-toggle.btn-default {
        color: #212221;
        background-color: #e6e6e6;
        border-color: #c6c8cb;
    }

        .btn-default:active:hover,
        .btn-default.active:hover,
        .open > .dropdown-toggle.btn-default:hover,
        .btn-default:active:focus,
        .btn-default.active:focus,
        .open > .dropdown-toggle.btn-default:focus,
        .btn-default:active.focus,
        .btn-default.active.focus,
        .open > .dropdown-toggle.btn-default.focus {
            color: #212221;
            background-color: #d4d4d4;
            border-color: #a4a7ab;
        }

    .btn-default:active,
    .btn-default.active,
    .open > .dropdown-toggle.btn-default {
        background-image: none;
    }

    .btn-default.disabled:hover,
    .btn-default[disabled]:hover,
    fieldset[disabled] .btn-default:hover,
    .btn-default.disabled:focus,
    .btn-default[disabled]:focus,
    fieldset[disabled] .btn-default:focus,
    .btn-default.disabled.focus,
    .btn-default[disabled].focus,
    fieldset[disabled] .btn-default.focus {
        background-color: #fff;
        border-color: #e6e7e8;
    }

    .btn-default .badge {
        color: #fff;
        background-color: #212221;
    }

.btn-primary {
    color: #fff;
    background-color: #007dbc;
    border-color: #007dbc;
}

    .btn-primary:focus,
    .btn-primary.focus {
        color: #fff;
        background-color: #005b89;
        border-color: #00283d;
    }

    .btn-primary:hover {
        color: #fff;
        background-color: #005b89;
        border-color: #00547f;
    }

    .btn-primary:active,
    .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #005b89;
        border-color: #00547f;
    }

        .btn-primary:active:hover,
        .btn-primary.active:hover,
        .open > .dropdown-toggle.btn-primary:hover,
        .btn-primary:active:focus,
        .btn-primary.active:focus,
        .open > .dropdown-toggle.btn-primary:focus,
        .btn-primary:active.focus,
        .btn-primary.active.focus,
        .open > .dropdown-toggle.btn-primary.focus {
            color: #fff;
            background-color: #004365;
            border-color: #00283d;
        }

    .btn-primary:active,
    .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        background-image: none;
    }

    .btn-primary.disabled:hover,
    .btn-primary[disabled]:hover,
    fieldset[disabled] .btn-primary:hover,
    .btn-primary.disabled:focus,
    .btn-primary[disabled]:focus,
    fieldset[disabled] .btn-primary:focus,
    .btn-primary.disabled.focus,
    .btn-primary[disabled].focus,
    fieldset[disabled] .btn-primary.focus {
        background-color: #007dbc;
        border-color: #007dbc;
    }

    .btn-primary .badge {
        color: #007dbc;
        background-color: #fff;
    }

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    .btn-success:focus,
    .btn-success.focus {
        color: #fff;
        background-color: #449d44;
        border-color: #255625;
    }

    .btn-success:hover {
        color: #fff;
        background-color: #449d44;
        border-color: #398439;
    }

    .btn-success:active,
    .btn-success.active,
    .open > .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #449d44;
        border-color: #398439;
    }

        .btn-success:active:hover,
        .btn-success.active:hover,
        .open > .dropdown-toggle.btn-success:hover,
        .btn-success:active:focus,
        .btn-success.active:focus,
        .open > .dropdown-toggle.btn-success:focus,
        .btn-success:active.focus,
        .btn-success.active.focus,
        .open > .dropdown-toggle.btn-success.focus {
            color: #fff;
            background-color: #398439;
            border-color: #255625;
        }

    .btn-success:active,
    .btn-success.active,
    .open > .dropdown-toggle.btn-success {
        background-image: none;
    }

    .btn-success.disabled:hover,
    .btn-success[disabled]:hover,
    fieldset[disabled] .btn-success:hover,
    .btn-success.disabled:focus,
    .btn-success[disabled]:focus,
    fieldset[disabled] .btn-success:focus,
    .btn-success.disabled.focus,
    .btn-success[disabled].focus,
    fieldset[disabled] .btn-success.focus {
        background-color: #5cb85c;
        border-color: #4cae4c;
    }

    .btn-success .badge {
        color: #5cb85c;
        background-color: #fff;
    }

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    .btn-info:focus,
    .btn-info.focus {
        color: #fff;
        background-color: #31b0d5;
        border-color: #1b6d85;
    }

    .btn-info:hover {
        color: #fff;
        background-color: #31b0d5;
        border-color: #269abc;
    }

    .btn-info:active,
    .btn-info.active,
    .open > .dropdown-toggle.btn-info {
        color: #fff;
        background-color: #31b0d5;
        border-color: #269abc;
    }

        .btn-info:active:hover,
        .btn-info.active:hover,
        .open > .dropdown-toggle.btn-info:hover,
        .btn-info:active:focus,
        .btn-info.active:focus,
        .open > .dropdown-toggle.btn-info:focus,
        .btn-info:active.focus,
        .btn-info.active.focus,
        .open > .dropdown-toggle.btn-info.focus {
            color: #fff;
            background-color: #269abc;
            border-color: #1b6d85;
        }

    .btn-info:active,
    .btn-info.active,
    .open > .dropdown-toggle.btn-info {
        background-image: none;
    }

    .btn-info.disabled:hover,
    .btn-info[disabled]:hover,
    fieldset[disabled] .btn-info:hover,
    .btn-info.disabled:focus,
    .btn-info[disabled]:focus,
    fieldset[disabled] .btn-info:focus,
    .btn-info.disabled.focus,
    .btn-info[disabled].focus,
    fieldset[disabled] .btn-info.focus {
        background-color: #5bc0de;
        border-color: #46b8da;
    }

    .btn-info .badge {
        color: #5bc0de;
        background-color: #fff;
    }

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    .btn-warning:focus,
    .btn-warning.focus {
        color: #fff;
        background-color: #ec971f;
        border-color: #985f0d;
    }

    .btn-warning:hover {
        color: #fff;
        background-color: #ec971f;
        border-color: #d58512;
    }

    .btn-warning:active,
    .btn-warning.active,
    .open > .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #ec971f;
        border-color: #d58512;
    }

        .btn-warning:active:hover,
        .btn-warning.active:hover,
        .open > .dropdown-toggle.btn-warning:hover,
        .btn-warning:active:focus,
        .btn-warning.active:focus,
        .open > .dropdown-toggle.btn-warning:focus,
        .btn-warning:active.focus,
        .btn-warning.active.focus,
        .open > .dropdown-toggle.btn-warning.focus {
            color: #fff;
            background-color: #d58512;
            border-color: #985f0d;
        }

    .btn-warning:active,
    .btn-warning.active,
    .open > .dropdown-toggle.btn-warning {
        background-image: none;
    }

    .btn-warning.disabled:hover,
    .btn-warning[disabled]:hover,
    fieldset[disabled] .btn-warning:hover,
    .btn-warning.disabled:focus,
    .btn-warning[disabled]:focus,
    fieldset[disabled] .btn-warning:focus,
    .btn-warning.disabled.focus,
    .btn-warning[disabled].focus,
    fieldset[disabled] .btn-warning.focus {
        background-color: #f0ad4e;
        border-color: #eea236;
    }

    .btn-warning .badge {
        color: #f0ad4e;
        background-color: #fff;
    }

.btn-danger {
    color: #fff;
    background-color: #c32026;
    border-color: #c32026;
}

    .btn-danger:focus,
    .btn-danger.focus {
        color: #fff;
        background-color: #97191d;
        border-color: #550e11;
    }

    .btn-danger:hover {
        color: #fff;
        background-color: #97191d;
        border-color: #8e171c;
    }

    .btn-danger:active,
    .btn-danger.active,
    .open > .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #97191d;
        border-color: #8e171c;
    }

        .btn-danger:active:hover,
        .btn-danger.active:hover,
        .open > .dropdown-toggle.btn-danger:hover,
        .btn-danger:active:focus,
        .btn-danger.active:focus,
        .open > .dropdown-toggle.btn-danger:focus,
        .btn-danger:active.focus,
        .btn-danger.active.focus,
        .open > .dropdown-toggle.btn-danger.focus {
            color: #fff;
            background-color: #791417;
            border-color: #550e11;
        }

    .btn-danger:active,
    .btn-danger.active,
    .open > .dropdown-toggle.btn-danger {
        background-image: none;
    }

    .btn-danger.disabled:hover,
    .btn-danger[disabled]:hover,
    fieldset[disabled] .btn-danger:hover,
    .btn-danger.disabled:focus,
    .btn-danger[disabled]:focus,
    fieldset[disabled] .btn-danger:focus,
    .btn-danger.disabled.focus,
    .btn-danger[disabled].focus,
    fieldset[disabled] .btn-danger.focus {
        background-color: #c32026;
        border-color: #c32026;
    }

    .btn-danger .badge {
        color: #c32026;
        background-color: #fff;
    }

.btn-link {
    font-weight: normal;
    color: #007dbc;
    border-radius: 0;
}

    .btn-link,
    .btn-link:active,
    .btn-link.active,
    .btn-link[disabled],
    fieldset[disabled] .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn-link,
        .btn-link:hover,
        .btn-link:focus,
        .btn-link:active {
            border-color: transparent;
        }

            .btn-link:hover,
            .btn-link:focus {
                color: #004a70;
                text-decoration: none;
                background-color: transparent;
            }

            .btn-link[disabled]:hover,
            fieldset[disabled] .btn-link:hover,
            .btn-link[disabled]:focus,
            fieldset[disabled] .btn-link:focus {
                color: #767676;
                text-decoration: none;
            }

.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 1.5em;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 1.5em;
}

.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 1.5em;
}

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: 5px;
    }

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

b,
strong {
    font-weight: 600;
}

optgroup {
    font-weight: 600;
}

html {
    font-size: 1em;
}

a {
    color: #047dbb;
}

.sr-only {
    left: -9999px;
    white-space: nowrap;
}

.un-sr-only {
    position: static !important;
    left: auto;
    width: auto;
    height: auto;
    padding: auto;
    margin: auto;
    overflow: visible;
    clip: none;
    white-space: normal;
}

abbr[title] {
    text-decoration: none;
    border-bottom: none;
}
/*@import "sa-grid.less";*/
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    src: url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Light-subset.woff2') format('woff2'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Light-subset.zopfli.woff') format('woff'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Light-subset.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: normal;
    src: url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Regular-subset.woff2') format('woff2'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Regular-subset.zopfli.woff') format('woff'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Regular-subset.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Semibold-subset.woff2') format('woff2'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Semibold-subset.zopfli.woff') format('woff'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Semibold-subset.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 700;
    src: url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Bold-subset.woff2') format('woff2'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Bold-subset.zopfli.woff') format('woff'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/SourceSansPro-Bold-subset.ttf') format('truetype');
    font-display: swap;
}

.font-light {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 300;
}

.font-regular {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.font-semibold {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.font-bold {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 700;
}

label,
.form-label {
    font-size: .75em;
    font-weight: 400;
    color: #58595b;
    text-transform: uppercase;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #007dbc;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 125, 188, .6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(0, 125, 188, .6);
}

.radio,
.checkbox {
    margin: 0 0 15px;
}

    .radio:last-child,
    .checkbox:last-child {
        margin-bottom: 0;
    }

    .radio label,
    .checkbox label {
        top: 1px;
        font-size: .9375em;
        text-transform: none;
    }

    .radio input:checked + span,
    .checkbox input:checked + span,
    .radio-inline input:checked + span,
    .checkbox-inline input:checked + span {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
    }

.radio-inline input[type="radio"] {
    margin-top: 1px;
}

.checkbox-inline input[type="checkbox"] {
    margin-top: 2px;
}

@media (min-width: 768px) {
    .form-horizontal label + .radio,
    .form-horizontal label + .checkbox {
        padding-top: 0;
    }

    .form-horizontal .control-label {
        text-align: left;
    }
}

.check-toggle-set,
.radio-toggle-set {
    overflow: hidden;
}

.checkradio-toggle {
    float: left;
    min-width: 55px;
    overflow: hidden;
    font-size: .9375em;
    text-align: center;
    text-transform: none;
}

    .checkradio-toggle input {
        position: absolute;
        opacity: 0;
    }

.checkradio-toggle-btn {
    display: inline-block;
    width: 100%;
    height: 34px;
    padding-right: 12px;
    padding-left: 12px;
    line-height: 34px;
    color: #212221;
    color: #58595b;
    background-color: #fff;
    border: 1px solid #e6e7e8;
    border-color: #e6e7e8;
    border-radius: 4px;
}

    .checkradio-toggle-btn:focus,
    .checkradio-toggle-btn.focus {
        color: #212221;
        background-color: #e6e6e6;
        border-color: #a4a7ab;
    }

    .checkradio-toggle-btn:hover {
        color: #212221;
        background-color: #e6e6e6;
        border-color: #c6c8cb;
    }

    .checkradio-toggle-btn:active,
    .checkradio-toggle-btn.active,
    .open > .dropdown-toggle.checkradio-toggle-btn {
        color: #212221;
        background-color: #e6e6e6;
        border-color: #c6c8cb;
    }

        .checkradio-toggle-btn:active:hover,
        .checkradio-toggle-btn.active:hover,
        .open > .dropdown-toggle.checkradio-toggle-btn:hover,
        .checkradio-toggle-btn:active:focus,
        .checkradio-toggle-btn.active:focus,
        .open > .dropdown-toggle.checkradio-toggle-btn:focus,
        .checkradio-toggle-btn:active.focus,
        .checkradio-toggle-btn.active.focus,
        .open > .dropdown-toggle.checkradio-toggle-btn.focus {
            color: #212221;
            background-color: #d4d4d4;
            border-color: #a4a7ab;
        }

    .checkradio-toggle-btn:active,
    .checkradio-toggle-btn.active,
    .open > .dropdown-toggle.checkradio-toggle-btn {
        background-image: none;
    }

    .checkradio-toggle-btn.disabled:hover,
    .checkradio-toggle-btn[disabled]:hover,
    fieldset[disabled] .checkradio-toggle-btn:hover,
    .checkradio-toggle-btn.disabled:focus,
    .checkradio-toggle-btn[disabled]:focus,
    fieldset[disabled] .checkradio-toggle-btn:focus,
    .checkradio-toggle-btn.disabled.focus,
    .checkradio-toggle-btn[disabled].focus,
    fieldset[disabled] .checkradio-toggle-btn.focus {
        background-color: #fff;
        border-color: #e6e7e8;
    }

    .checkradio-toggle-btn .badge {
        color: #fff;
        background-color: #212221;
    }

    .checkradio-toggle-btn:focus,
    .checkradio-toggle-btn.focus {
        color: #212221;
        background-color: #caeefa;
        border-color: #caeefa;
    }

    .checkradio-toggle-btn:hover {
        color: #212221;
        background-color: #caeefa;
        border-color: #caeefa;
    }

    .checkradio-toggle-btn:active,
    .checkradio-toggle-btn.active,
    .open > .dropdown-toggle.checkradio-toggle-btn {
        color: #212221;
        background-color: #caeefa;
        border-color: #caeefa;
    }

        .checkradio-toggle-btn:active:hover,
        .checkradio-toggle-btn.active:hover,
        .open > .dropdown-toggle.checkradio-toggle-btn:hover,
        .checkradio-toggle-btn:active:focus,
        .checkradio-toggle-btn.active:focus,
        .open > .dropdown-toggle.checkradio-toggle-btn:focus,
        .checkradio-toggle-btn:active.focus,
        .checkradio-toggle-btn.active.focus,
        .open > .dropdown-toggle.checkradio-toggle-btn.focus {
            color: #212221;
            background-color: #caeefa;
            border-color: #caeefa;
        }

    .checkradio-toggle-btn:active,
    .checkradio-toggle-btn.active,
    .open > .dropdown-toggle.checkradio-toggle-btn {
        background-image: none;
    }

    .checkradio-toggle-btn.disabled:hover,
    .checkradio-toggle-btn[disabled]:hover,
    fieldset[disabled] .checkradio-toggle-btn:hover,
    .checkradio-toggle-btn.disabled:focus,
    .checkradio-toggle-btn[disabled]:focus,
    fieldset[disabled] .checkradio-toggle-btn:focus,
    .checkradio-toggle-btn.disabled.focus,
    .checkradio-toggle-btn[disabled].focus,
    fieldset[disabled] .checkradio-toggle-btn.focus {
        background-color: #fff;
        border-color: #e6e7e8;
    }

    .checkradio-toggle-btn .badge {
        color: #fff;
        background-color: #212221;
    }

input:checked + .checkradio-toggle-btn {
    color: #fff;
    background-color: #007dbc;
    border-color: #007dbc;
}

.sa-check-toggle-set:before,
.sa-check-toggle-set:after {
    display: table;
    content: " ";
}

.sa-check-toggle-set:after {
    clear: both;
}

.sa-check-toggle-set:before,
.sa-check-toggle-set:after {
    display: table;
    content: " ";
}

.sa-check-toggle-set:after {
    clear: both;
}

.sa-check-toggle-set .checkradio-toggle {
    margin: 0 4px 2px 0;
}

.sa-radio-toggle-set:before,
.sa-radio-toggle-set:after {
    display: table;
    content: " ";
}

.sa-radio-toggle-set:after {
    clear: both;
}

.sa-radio-toggle-set:before,
.sa-radio-toggle-set:after {
    display: table;
    content: " ";
}

.sa-radio-toggle-set:after {
    clear: both;
}

.sa-radio-toggle-set .checkradio-toggle-btn {
    border-radius: 0;
}

.sa-radio-toggle-set .checkradio-toggle:first-child .checkradio-toggle-btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.sa-radio-toggle-set .checkradio-toggle:last-child .checkradio-toggle-btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.sa-help-block-inline:before,
.sa-help-block-inline:after {
    display: table;
    content: " ";
}

.sa-help-block-inline:after {
    clear: both;
}

.sa-help-block-inline:before,
.sa-help-block-inline:after {
    display: table;
    content: " ";
}

.sa-help-block-inline:after {
    clear: both;
}

.sa-help-block-inline .help-block {
    font-size: .9375em;
}

.sa-chatinput {
    position: relative;
}

    .sa-chatinput,
    .sa-chatinput .btn,
    .sa-chatinput input {
        border-radius: 1.5em;
    }

        .sa-chatinput,
        .sa-chatinput input {
            height: 32px;
            line-height: 32px;
            background-color: transparent;
            border: 0;
        }

            .sa-chatinput input {
                width: 100%;
                padding-right: 50px;
                padding-left: 15px;
                font-size: .9375em;
            }

            .sa-chatinput .btn {
                position: absolute;
                top: 0;
                right: 0;
                padding: 0 .8em;
                margin: 0;
                overflow: hidden;
            }

                .sa-chatinput .btn [class^="icon-"] {
                    margin: 0;
                    font-size: 1.4em;
                    vertical-align: middle;
                }

[class*="sa-form-group-"] .input-group {
    width: 100%;
}

.sa-form-group-30 {
    width: 29%;
}

.sa-form-group-40 {
    width: 39%;
}

.sa-form-group-50 {
    width: 49%;
}

.sa-form-group-60 {
    width: 59%;
}

.sa-form-group-70 {
    width: 69%;
}

.form-group-icon {
    position: relative;
    margin: 0 3px;
}

    .form-group-icon .form-control {
        width: 100%;
        padding-left: 36px;
    }

    .form-group-icon [class^="icon-"] {
        position: absolute;
        top: 50%;
        left: 10px;
        margin-top: -8px;
        font-size: 16px;
        color: #9c9c9c;
    }

.control-label.required:after {
    color: #c32026;
    content: " *";
}

.required-info {
    font-size: .75em;
    color: #58595b;
    text-align: right;
}

    .required-info:before {
        color: #c32026;
        content: "* ";
    }

.sa-help-block-error {
    font-family: "Source Sans Pro", sans-serif;
    font-size: .875em;
    font-style: normal;
    font-weight: 600;
    color: #c32026;
}

    .sa-help-block-error + input,
    .sa-help-block-error + select .sa-help-block-error + textarea {
        margin-top: -5px;
    }

.control-label + .sa-help-block-error {
    margin-top: 0;
}

.has-success > .form-control,
.has-warning > .form-control,
.has-error > .form-control {
    position: relative;
    border-color: #ccc;
    border-left-width: 4px;
}

.has-success > .form-control {
    border-left-color: #3c763d;
}

.has-warning > .form-control {
    border-left-color: #8a6d3b;
}

.has-error > .form-control {
    border-left-color: #c32026;
}

.has-success.radio,
.has-success.checkbox,
.has-warning.radio,
.has-warning.checkbox,
.has-error.radio,
.has-error.checkbox {
    padding-left: 12px;
    margin-bottom: 0;
}

    .has-success.radio label,
    .has-success.checkbox label,
    .has-warning.radio label,
    .has-warning.checkbox label,
    .has-error.radio label,
    .has-error.checkbox label {
        color: #212221;
    }

    .has-success.radio + .radio,
    .has-success.checkbox + .checkbox,
    .has-warning.radio + .radio,
    .has-warning.checkbox + .checkbox,
    .has-error.radio + .radio,
    .has-error.checkbox + .checkbox {
        padding-top: 15px;
        /* additive with -5px margin-top */
    }

    .has-success.radio + :not(.radio),
    .has-success.checkbox + :not(.checkbox),
    .has-warning.radio + :not(.radio),
    .has-warning.checkbox + :not(.checkbox),
    .has-error.radio + :not(.radio),
    .has-error.checkbox + :not(.checkbox) {
        margin-top: 15px;
        /* overrides -5px margin-top */
    }

.has-success.radio,
.has-success.checkbox {
    border-left: 4px solid #3c763d;
}

.has-warning.radio,
.has-warning.checkbox {
    border-left: 4px solid #8a6d3b;
}

.has-error.radio,
.has-error.checkbox {
    border-left: 4px solid #c32026;
}

.form-control[disabled],
fieldset[disabled] .form-control {
    color: #b3b4b4;
    background-color: white;
    border-color: #f1f2f3;
}

.checkbox.disabled label > span,
.radio.disabled label > span,
fieldset[disabled] .checkbox label > span,
fieldset[disabled] .radio label > span {
    opacity: .4;
}

.widow {
    display: inline-block;
    white-space: nowrap;
}

p {
    font-size: .9375em;
    line-height: 1.2;
}
/* Definition Lists */
dt {
    margin-top: .2em;
    font-size: .625em;
    font-weight: 400;
    text-transform: uppercase;
    /* 2px /10 */
}

dd {
    margin-bottom: 1.14286em;
    font-size: .875em;
    font-weight: 600;
    /* 16px /14 */
}

    dd + dd {
        margin-top: -1em;
        /* 14px */
    }

.dl-horizontal dt {
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75em;
    font-style: normal;
    font-weight: 700;
    text-align: left;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        width: 25%;
    }

    .dl-horizontal dd {
        width: 70%;
        margin-left: 30%;
    }
}

.sa-list-label {
    color: #767676;
}
/* Standard List variation */
.sa-list > li {
    margin: 0 0 .6em;
    font-size: .9375em;
    line-height: 1.2;
}

    .sa-list > li > ul {
        margin-top: .6em;
    }

        .sa-list > li > ul li {
            font-size: 1em;
        }
/* Inline list with border separators */
.sa-list-inline {
    margin-bottom: 0;
}

    .sa-list-inline li {
        padding-right: 0;
        margin-bottom: .2em;
    }

        .sa-list-inline li:after {
            display: inline-block;
            height: 1em;
            padding-left: 8px;
            margin-bottom: -2px;
            content: "";
            border-right: 1px solid #e6e7e8;
        }

        .sa-list-inline li:last-child:after {
            padding-right: 4px;
            border-right-width: 0;
        }

.sa-list-inline-dark li:after {
    border-right-color: #29abe2;
}
/* Metadata Inline list */
.sa-list-metadata {
    margin-bottom: 9.5px;
}

h1 + .sa-list-metadata,
h2 + .sa-list-metadata,
h3 + .sa-list-metadata,
h4 + .sa-list-metadata,
h5 + .sa-list-metadata,
h6 + .sa-list-metadata {
    margin-top: -.5em;
}

.sa-list-metadata li {
    font-size: .6875em;
}
/* list with icons for bullets */
.sa-list-icons > li {
    position: relative;
    padding-left: 28px;
    margin: 0 0 1em;
}

    .sa-list-icons > li > [class^="icon-"]:not( .icon-remove ) {
        position: absolute;
        top: 1px;
        left: 0;
        font-size: 16px;
    }
/* List of Links */
.sa-list-links > li {
    padding: 0;
    margin: 0 0 1.153846153846em;
    font-size: .8125em;
    /* 15px /13 */
}
/* Looks like a form label, not a form label */
.sa-label {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 11px;
    font-size: .6875rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.272727272727;
    color: #767676;
    text-transform: uppercase;
}

.sa-highlight {
    border-bottom: 2px solid #fbc62c;
}
/*@import "sa-code.less";*/
/* Non icon font icons */
.sa-geolocation {
    width: auto;
    height: 1.375em;
    /* 22px /16 */
}
/* Icomoon icons */
@font-face {
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    src: url('https://www.salary.com/expertsource/Styles/Salary/fonts/icomoon.woff2') format('woff2'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/icomoon.woff') format('woff'), url('https://www.salary.com/expertsource/Styles/Salary/fonts/icomoon.ttf') format('truetype');
}

[class^="icon-"],
[class*=" icon-"],
.font-icons {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    text-transform: none;
    speak: none;
}

.icon-disabled {
    opacity: .3;
}
/* Size overrides */
.icon-size-lg:before {
    font-size: 1.125rem;
    font-size: 18px;
}
/* For use on darker backgrounds */
.icon-bolder:before {
    /* faux bolding! */
    font-weight: 700;
}

.icon-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 .4em;
    border-radius: 10px;
}

    .icon-dot.icon-dot-alert {
        background-color: #fbc62c;
    }

.sa-round-icon {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-right: .5em;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    vertical-align: middle;
    border-radius: 34px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

    .sa-round-icon:before {
        display: inline-block;
    }
    /* Override any text colors set in bg- classes */
    /* Round icons have their own icon color assignments */
    .sa-round-icon:not(.bg-yellow):not(.bg-yellowlite):not(.bg-graystroke):not(.bg-grayfill):not(.bg-bluefill):not(.bg-bluenavbar) {
        color: #fff;
    }

    .sa-round-icon.bg-yellow {
        color: #767676;
    }
/* Adjust vertical position of remove icon in buttons */
.icon-remove-clearall {
    position: relative;
    bottom: -1px;
}
/* Antialiased company size icons */
[class*="icon-company-size"] {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-articles:before {
    content: "\e96f";
}

.icon-factory:before {
    content: "\e96b";
}

.icon-medical:before {
    content: "\e96c";
}

.icon-monitor:before {
    content: "\e96d";
}

.icon-pharma:before {
    content: "\e96e";
}

.icon-add:before {
    content: "\e900";
}

.icon-adjust:before {
    content: "\e901";
}

.icon-alert:before {
    content: "\e902";
}

.icon-announcement:before {
    content: "\e903";
}

.icon-arrow-circle-down:before {
    content: "\e904";
}

.icon-arrow-circle-left:before {
    content: "\e905";
}

.icon-arrow-circle-right:before {
    content: "\e906";
}

.icon-arrow-circle-up:before {
    content: "\e907";
}

.icon-arrow-down:before {
    content: "\e908";
}

.icon-arrow-fill-down:before {
    content: "\e909";
}

.icon-arrow-fill-up:before {
    content: "\e90a";
}

.icon-arrow-left:before {
    content: "\e90b";
}

.icon-arrow-right:before {
    content: "\e90c";
}

.icon-arrow-up:before {
    content: "\e90d";
}

.icon-bars:before {
    content: "\e90e";
}

.icon-block:before {
    content: "\e90f";
}

.icon-blocks:before {
    content: "\e910";
}

.icon-books:before {
    content: "\e911";
}

.icon-calendar:before {
    content: "\e912";
}

.icon-career-path:before {
    content: "\e913";
}

.icon-charts:before {
    content: "\e914";
}

.icon-chat:before {
    content: "\e915";
}

.icon-check-toggle:before {
    content: "\e916";
}

.icon-check:before {
    content: "\e917";
}

.icon-chevron-right:before {
    content: "\e918";
}

.icon-circle:before {
    content: "\e919";
}

.icon-cloud-data:before {
    content: "\e91a";
}

.icon-columns:before {
    content: "\e91b";
}

.icon-comment-filled:before {
    content: "\e91c";
}

.icon-comment:before {
    content: "\e91d";
}

.icon-company-size-1:before {
    content: "\e91e";
}

.icon-company-size-2:before {
    content: "\e91f";
}

.icon-company-size-3:before {
    content: "\e920";
}

.icon-company-size-4:before {
    content: "\e921";
}

.icon-company-size-5:before {
    content: "\e922";
}

.icon-company-size-6:before {
    content: "\e923";
}

.icon-company:before {
    content: "\e924";
}

.icon-compare:before {
    content: "\e925";
}

.icon-copy:before {
    content: "\e926";
}

.icon-csv:before {
    content: "\e927";
}

.icon-cursor:before {
    content: "\e928";
}

.icon-customize:before {
    content: "\e929";
}

.icon-dashboard:before {
    content: "\e92a";
}

.icon-dollar:before {
    content: "\e92b";
}

.icon-dots:before {
    content: "\e92c";
}

.icon-drag-handle:before {
    content: "\e92d";
}

.icon-edit:before {
    content: "\e92e";
}

.icon-education:before {
    content: "\e92f";
}

.icon-email:before {
    content: "\e930";
}

.icon-employees:before {
    content: "\e931";
}

.icon-event:before {
    content: "\e932";
}

.icon-excel:before {
    content: "\e933";
}

.icon-export:before {
    content: "\e934";
}

.icon-family:before {
    content: "\e935";
}

.icon-filter:before {
    content: "\e936";
}

.icon-flight-risk:before {
    content: "\e937";
}

.icon-gauge:before {
    content: "\e938";
}

.icon-gear:before {
    content: "\e939";
}

.icon-guage:before {
    content: "\e93a";
}

.icon-heart:before {
    content: "\e93b";
}

.icon-hybrid:before {
    content: "\e93c";
}

.icon-job-check:before {
    content: "\e93d";
}

.icon-job-matched:before {
    content: "\e93e";
}

.icon-job-new:before {
    content: "\e93f";
}

.icon-job:before {
    content: "\e940";
}

.icon-lightning:before {
    content: "\e941";
}

.icon-list:before {
    content: "\e942";
}

.icon-magnet:before {
    content: "\e943";
}

.icon-market-data:before {
    content: "\e944";
}

.icon-match-jobs:before {
    content: "\e945";
}

.icon-megamenu:before {
    content: "\e946";
}

.icon-message:before {
    content: "\e947";
}

.icon-paymarket:before {
    content: "\e948";
}

.icon-pdf:before {
    content: "\e949";
}

.icon-people-send:before {
    content: "\e94a";
}

.icon-play:before {
    content: "\e94b";
}

.icon-powerpoint:before {
    content: "\e94c";
}

.icon-price:before {
    content: "\e94d";
}

.icon-print:before {
    content: "\e94e";
}

.icon-range:before {
    content: "\e94f";
}

.icon-recent:before {
    content: "\e950";
}

.icon-refresh:before {
    content: "\e951";
}

.icon-remove:before {
    content: "\e952";
}

.icon-report-arrow:before {
    content: "\e953";
}

.icon-report-bolt:before {
    content: "\e954";
}

.icon-report-check:before {
    content: "\e955";
}

.icon-report-view:before {
    content: "\e956";
}

.icon-rock:before {
    content: "\e957";
}

.icon-satellite:before {
    content: "\e958";
}

.icon-search:before {
    content: "\e959";
}

.icon-security:before {
    content: "\e95a";
}

.icon-slot:before {
    content: "\e95b";
}

.icon-social-facebook:before {
    content: "\e95c";
}

.icon-social-linkedin:before {
    content: "\e95d";
}

.icon-social-twitter:before {
    content: "\e95e";
}

.icon-star:before {
    content: "\e95f";
}

.icon-structures:before {
    content: "\e960";
}

.icon-surveys:before {
    content: "\e961";
}

.icon-sync:before {
    content: "\e962";
}

.icon-target:before {
    content: "\e963";
}

.icon-trash:before {
    content: "\e964";
}

.icon-trending:before {
    content: "\e965";
}

.icon-triangle-down:before {
    content: "\e966";
}

.icon-triangle-left:before {
    content: "\e967";
}

.icon-triangle-right:before {
    content: "\e968";
}

.icon-triangle-up:before {
    content: "\e969";
}

.icon-zip:before {
    content: "\e96a";
}
/* Default colors */
.icon-csv {
    color: #33ace0;
}

.icon-excel {
    color: #1ba229;
}

.icon-pdf {
    color: #c21713;
}

.icon-powerpoint {
    color: #db571b;
}

.icon-zip {
    color: #fab53f;
}
/* Color overrides */
.icon-color-blue:before {
    color: #007dbc;
}
/* Salary.com button styles */
.btn {
    height: 32px;
    font-size: .875em;
    line-height: 30px;
}

    .btn:active,
    .btn.active {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .btn:focus,
        .btn:active:focus,
        .btn.active:focus,
        .btn.focus,
        .btn:active.focus,
        .btn.active.focus {
            border-color: #007dbc;
            outline: 1px auto -webkit-focus-ring-color;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

    .btn [class^="icon-"] {
        margin: 0 .6em 0 -.4em;
        font-size: 1.2em;
    }

        .btn [class^="icon-"]:before {
            display: inline-block;
            vertical-align: middle;
        }

    .btn.btn-sm [class^="icon-"].icon-check {
        margin-right: .4em;
        font-size: 1em;
    }

    .icon-right,
    .btn [class^="icon-"].icon-right {
        margin: 0 -.4em 0 .6em;
    }
/* Variations */
.btn-default {
    color: #212221;
    background-color: #fff;
    border-color: #e6e7e8;
}

    .btn-default:focus,
    .btn-default.focus {
        color: #212221;
        background-color: #caeefa;
        border-color: #caeefa;
    }

    .btn-default:hover {
        color: #212221;
        background-color: #caeefa;
        border-color: #caeefa;
    }

    .btn-default:active,
    .btn-default.active,
    .open > .dropdown-toggle.btn-default {
        color: #212221;
        background-color: #caeefa;
        border-color: #caeefa;
    }

        .btn-default:active:hover,
        .btn-default.active:hover,
        .open > .dropdown-toggle.btn-default:hover,
        .btn-default:active:focus,
        .btn-default.active:focus,
        .open > .dropdown-toggle.btn-default:focus,
        .btn-default:active.focus,
        .btn-default.active.focus,
        .open > .dropdown-toggle.btn-default.focus {
            color: #212221;
            background-color: #caeefa;
            border-color: #caeefa;
        }

    .btn-default:active,
    .btn-default.active,
    .open > .dropdown-toggle.btn-default {
        background-image: none;
    }

    .btn-default.disabled:hover,
    .btn-default[disabled]:hover,
    fieldset[disabled] .btn-default:hover,
    .btn-default.disabled:focus,
    .btn-default[disabled]:focus,
    fieldset[disabled] .btn-default:focus,
    .btn-default.disabled.focus,
    .btn-default[disabled].focus,
    fieldset[disabled] .btn-default.focus {
        background-color: #fff;
        border-color: #e6e7e8;
    }

    .btn-default .badge {
        color: #fff;
        background-color: #212221;
    }

.btn-primary:not(.dropdown-toggle) {
    background-color: #047dbb;
    background-image: -webkit-linear-gradient(left, #047dbb, #047dbb 50%, #1f9fd8);
    background-image: -o-linear-gradient(left, #047dbb, #047dbb 50%, #1f9fd8);
    background-image: -webkit-gradient(linear, left top, right top, from(#047dbb), color-stop(50%, #047dbb), to(#1f9fd8));
    background-image: linear-gradient(to right, #047dbb, #047dbb 50%, #1f9fd8);
    background-repeat: no-repeat;
}

    .btn-primary:not(.dropdown-toggle):focus,
    .btn-primary:not(.dropdown-toggle).focus {
        background-color: #0088ce;
        background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
        background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
        background-repeat: no-repeat;
    }

    .btn-primary:not(.dropdown-toggle):hover {
        background-color: #0088ce;
        background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
        background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
        background-repeat: no-repeat;
    }

    .btn-primary:not(.dropdown-toggle):active,
    .btn-primary:not(.dropdown-toggle).active,
    .open > .dropdown-toggle.btn-primary:not(.dropdown-toggle) {
        background-color: #0088ce;
        background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
        background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
        background-repeat: no-repeat;
    }

        .btn-primary:not(.dropdown-toggle):active:hover,
        .btn-primary:not(.dropdown-toggle).active:hover,
        .open > .dropdown-toggle.btn-primary:not(.dropdown-toggle):hover,
        .btn-primary:not(.dropdown-toggle):active:focus,
        .btn-primary:not(.dropdown-toggle).active:focus,
        .open > .dropdown-toggle.btn-primary:not(.dropdown-toggle):focus,
        .btn-primary:not(.dropdown-toggle):active.focus,
        .btn-primary:not(.dropdown-toggle).active.focus,
        .open > .dropdown-toggle.btn-primary:not(.dropdown-toggle).focus {
            background-color: #0088ce;
            background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
            background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
            background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
            background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
            background-repeat: no-repeat;
        }

.btn-secondary {
    color: #007dbc;
    background-color: #fff;
    border-color: #e6e7e8;
}

    .btn-secondary:focus,
    .btn-secondary.focus {
        color: #007dbc;
        background-color: #caeefa;
        border-color: #caeefa;
    }

    .btn-secondary:hover {
        color: #007dbc;
        background-color: #caeefa;
        border-color: #caeefa;
    }

    .btn-secondary:active,
    .btn-secondary.active,
    .open > .dropdown-toggle.btn-secondary {
        color: #007dbc;
        background-color: #caeefa;
        border-color: #caeefa;
    }

        .btn-secondary:active:hover,
        .btn-secondary.active:hover,
        .open > .dropdown-toggle.btn-secondary:hover,
        .btn-secondary:active:focus,
        .btn-secondary.active:focus,
        .open > .dropdown-toggle.btn-secondary:focus,
        .btn-secondary:active.focus,
        .btn-secondary.active.focus,
        .open > .dropdown-toggle.btn-secondary.focus {
            color: #007dbc;
            background-color: #caeefa;
            border-color: #caeefa;
        }

    .btn-secondary:active,
    .btn-secondary.active,
    .open > .dropdown-toggle.btn-secondary {
        background-image: none;
    }

    .btn-secondary.disabled:hover,
    .btn-secondary[disabled]:hover,
    fieldset[disabled] .btn-secondary:hover,
    .btn-secondary.disabled:focus,
    .btn-secondary[disabled]:focus,
    fieldset[disabled] .btn-secondary:focus,
    .btn-secondary.disabled.focus,
    .btn-secondary[disabled].focus,
    fieldset[disabled] .btn-secondary.focus {
        background-color: #fff;
        border-color: #e6e7e8;
    }

    .btn-secondary .badge {
        color: #fff;
        background-color: #007dbc;
    }

.btn-cta {
    color: #fff;
    background-color: #16a44a;
    background-color: #118933;
    background-image: -webkit-linear-gradient(left, #118933, #118933 50%, #58b040);
    background-image: -o-linear-gradient(left, #118933, #118933 50%, #58b040);
    background-image: -webkit-gradient(linear, left top, right top, from(#118933), color-stop(50%, #118933), to(#58b040));
    background-image: linear-gradient(to right, #118933, #118933 50%, #58b040);
    background-repeat: no-repeat;
    border-color: #16a44a;
}

    .btn-cta:focus,
    .btn-cta.focus {
        color: #fff;
        background-color: #107736;
        border-color: #073417;
    }

    .btn-cta:hover {
        color: #fff;
        background-color: #107736;
        border-color: #0f6e32;
    }

    .btn-cta:active,
    .btn-cta.active,
    .open > .dropdown-toggle.btn-cta {
        color: #fff;
        background-color: #107736;
        border-color: #0f6e32;
    }

        .btn-cta:active:hover,
        .btn-cta.active:hover,
        .open > .dropdown-toggle.btn-cta:hover,
        .btn-cta:active:focus,
        .btn-cta.active:focus,
        .open > .dropdown-toggle.btn-cta:focus,
        .btn-cta:active.focus,
        .btn-cta.active.focus,
        .open > .dropdown-toggle.btn-cta.focus {
            color: #fff;
            background-color: #0c5828;
            border-color: #073417;
        }

    .btn-cta:active,
    .btn-cta.active,
    .open > .dropdown-toggle.btn-cta {
        background-image: none;
    }

    .btn-cta.disabled:hover,
    .btn-cta[disabled]:hover,
    fieldset[disabled] .btn-cta:hover,
    .btn-cta.disabled:focus,
    .btn-cta[disabled]:focus,
    fieldset[disabled] .btn-cta:focus,
    .btn-cta.disabled.focus,
    .btn-cta[disabled].focus,
    fieldset[disabled] .btn-cta.focus {
        background-color: #16a44a;
        border-color: #16a44a;
    }

    .btn-cta .badge {
        color: #16a44a;
        background-color: #fff;
    }

    .btn-cta:focus,
    .btn-cta.focus {
        background-color: #09a134;
        background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
        background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
        background-repeat: no-repeat;
    }

    .btn-cta:hover {
        background-color: #09a134;
        background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
        background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
        background-repeat: no-repeat;
    }

    .btn-cta:active,
    .btn-cta.active,
    .open > .dropdown-toggle.btn-cta {
        background-color: #09a134;
        background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
        background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
        background-repeat: no-repeat;
    }

        .btn-cta:active:hover,
        .btn-cta.active:hover,
        .open > .dropdown-toggle.btn-cta:hover,
        .btn-cta:active:focus,
        .btn-cta.active:focus,
        .open > .dropdown-toggle.btn-cta:focus,
        .btn-cta:active.focus,
        .btn-cta.active.focus,
        .open > .dropdown-toggle.btn-cta.focus {
            background-color: #09a134;
            background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
            background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
            background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
            background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
            background-repeat: no-repeat;
        }

.btn-login {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
    color: #212221;
    background-color: #fedd0e;
    border-color: #fedd0e;
}

    .btn-login:focus,
    .btn-login.focus {
        color: #212221;
        background-color: #d8bb01;
        border-color: #8c7901;
    }

    .btn-login:hover {
        color: #212221;
        background-color: #d8bb01;
        border-color: #ceb201;
    }

    .btn-login:active,
    .btn-login.active,
    .open > .dropdown-toggle.btn-login {
        color: #212221;
        background-color: #d8bb01;
        border-color: #ceb201;
    }

        .btn-login:active:hover,
        .btn-login.active:hover,
        .open > .dropdown-toggle.btn-login:hover,
        .btn-login:active:focus,
        .btn-login.active:focus,
        .open > .dropdown-toggle.btn-login:focus,
        .btn-login:active.focus,
        .btn-login.active.focus,
        .open > .dropdown-toggle.btn-login.focus {
            color: #212221;
            background-color: #b59c01;
            border-color: #8c7901;
        }

    .btn-login:active,
    .btn-login.active,
    .open > .dropdown-toggle.btn-login {
        background-image: none;
    }

    .btn-login.disabled:hover,
    .btn-login[disabled]:hover,
    fieldset[disabled] .btn-login:hover,
    .btn-login.disabled:focus,
    .btn-login[disabled]:focus,
    fieldset[disabled] .btn-login:focus,
    .btn-login.disabled.focus,
    .btn-login[disabled].focus,
    fieldset[disabled] .btn-login.focus {
        background-color: #fedd0e;
        border-color: #fedd0e;
    }

    .btn-login .badge {
        color: #fedd0e;
        background-color: #212221;
    }
/* Transparent buttons */
.btn-login-secondary {
    color: #fff;
    background-color: transparent;
    border-color: #77d5f3;
}

    .btn-login-secondary:focus,
    .btn-login-secondary.focus {
        color: #fff;
        background-color: rgba(0, 0, 0, 0);
        border-color: #13a8d7;
    }

    .btn-login-secondary:hover {
        color: #fff;
        background-color: rgba(0, 0, 0, 0);
        border-color: #3fc4ee;
    }

    .btn-login-secondary:active,
    .btn-login-secondary.active,
    .open > .dropdown-toggle.btn-login-secondary {
        color: #fff;
        background-color: rgba(0, 0, 0, 0);
        border-color: #3fc4ee;
    }

        .btn-login-secondary:active:hover,
        .btn-login-secondary.active:hover,
        .open > .dropdown-toggle.btn-login-secondary:hover,
        .btn-login-secondary:active:focus,
        .btn-login-secondary.active:focus,
        .open > .dropdown-toggle.btn-login-secondary:focus,
        .btn-login-secondary:active.focus,
        .btn-login-secondary.active.focus,
        .open > .dropdown-toggle.btn-login-secondary.focus {
            color: #fff;
            background-color: rgba(0, 0, 0, 0);
            border-color: #13a8d7;
        }

    .btn-login-secondary:active,
    .btn-login-secondary.active,
    .open > .dropdown-toggle.btn-login-secondary {
        background-image: none;
    }

    .btn-login-secondary.disabled:hover,
    .btn-login-secondary[disabled]:hover,
    fieldset[disabled] .btn-login-secondary:hover,
    .btn-login-secondary.disabled:focus,
    .btn-login-secondary[disabled]:focus,
    fieldset[disabled] .btn-login-secondary:focus,
    .btn-login-secondary.disabled.focus,
    .btn-login-secondary[disabled].focus,
    fieldset[disabled] .btn-login-secondary.focus {
        background-color: transparent;
        border-color: #77d5f3;
    }

    .btn-login-secondary .badge {
        color: transparent;
        background-color: #fff;
    }

.btn-primary-dark {
    color: #fff;
    background-color: #075484;
    border-color: #075484;
}

    .btn-primary-dark:focus,
    .btn-primary-dark.focus {
        color: #fff;
        background-color: #043554;
        border-color: #01070b;
    }

    .btn-primary-dark:hover {
        color: #fff;
        background-color: #043554;
        border-color: #042f4a;
    }

    .btn-primary-dark:active,
    .btn-primary-dark.active,
    .open > .dropdown-toggle.btn-primary-dark {
        color: #fff;
        background-color: #043554;
        border-color: #042f4a;
    }

        .btn-primary-dark:active:hover,
        .btn-primary-dark.active:hover,
        .open > .dropdown-toggle.btn-primary-dark:hover,
        .btn-primary-dark:active:focus,
        .btn-primary-dark.active:focus,
        .open > .dropdown-toggle.btn-primary-dark:focus,
        .btn-primary-dark:active.focus,
        .btn-primary-dark.active.focus,
        .open > .dropdown-toggle.btn-primary-dark.focus {
            color: #fff;
            background-color: #032032;
            border-color: #01070b;
        }

    .btn-primary-dark:active,
    .btn-primary-dark.active,
    .open > .dropdown-toggle.btn-primary-dark {
        background-image: none;
    }

    .btn-primary-dark.disabled:hover,
    .btn-primary-dark[disabled]:hover,
    fieldset[disabled] .btn-primary-dark:hover,
    .btn-primary-dark.disabled:focus,
    .btn-primary-dark[disabled]:focus,
    fieldset[disabled] .btn-primary-dark:focus,
    .btn-primary-dark.disabled.focus,
    .btn-primary-dark[disabled].focus,
    fieldset[disabled] .btn-primary-dark.focus {
        background-color: #075484;
        border-color: #075484;
    }

    .btn-primary-dark .badge {
        color: #075484;
        background-color: #fff;
    }

.sa-btn-outline {
    line-height: 28px;
    background: transparent;
    border: 1px solid #78d1ee;
}

    .sa-btn-outline:hover {
        background: transparent;
        border-color: #fff;
    }

.btn:not(.btn-default) {
    border-width: 0;
}

    .btn:not(.btn-default):focus,
    .btn:not(.btn-default).focus {
        border-width: 0;
    }

    .btn:not(.btn-default):hover {
        border-width: 0;
    }

    .btn:not(.btn-default):active,
    .btn:not(.btn-default).active,
    .open > .dropdown-toggle.btn:not(.btn-default) {
        border-width: 0;
    }

        .btn:not(.btn-default):active:hover,
        .btn:not(.btn-default).active:hover,
        .open > .dropdown-toggle.btn:not(.btn-default):hover,
        .btn:not(.btn-default):active:focus,
        .btn:not(.btn-default).active:focus,
        .open > .dropdown-toggle.btn:not(.btn-default):focus,
        .btn:not(.btn-default):active.focus,
        .btn:not(.btn-default).active.focus,
        .open > .dropdown-toggle.btn:not(.btn-default).focus {
            border-width: 0;
        }

.btn,
.btn-sm,
.btn-lg,
.btn-group-sm > .btn,
.btn-group-lg > .btn {
    padding: 0 1.4em;
}

.btn-sm,
.btn-group-sm > .btn {
    height: 24px;
    font-size: .6875em;
    line-height: 24px;
}

.btn-lg,
.btn-group-lg > .btn {
    height: 40px;
    font-size: 1.0625em;
    line-height: 40px;
}

.icon-remove-clearall {
    position: relative;
    bottom: -1px;
}
/* Learn more button */
.sa-learnmorebtn {
    display: inline-block;
    font-size: .875rem;
    /* 14px /16 */
}

    .sa-learnmorebtn b {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

@media (min-width: 25em) {
    /* 400px /16 */
    .sa-learnmorebtn b {
        position: static !important;
        left: auto;
        width: auto;
        height: auto;
        padding: auto;
        margin: auto;
        overflow: visible;
        clip: none;
        white-space: normal;
    }
}
/* Personalize my Salary CTA */
.sa-btn-personalize {
    font-size: 1rem;
    /* 16px /16 */
}

.btn .sa-btn-arrow-circle-icon {
    display: inline-block;
    margin: 0 -5px 0 8px;
    vertical-align: middle;
}

.btn-lg .sa-btn-arrow-circle-icon {
    margin: -1px 0 0 10px;
}
/* Social media buttons */
.sa-btn-social {
    margin-right: .3em;
}

    .sa-btn-social:before {
        display: inline-block;
        font-size: 30px;
        vertical-align: middle;
    }

.icon-social-facebook {
    color: #486696;
}

.icon-social-twitter {
    color: #61abe9;
}

.icon-social-linkedin {
    color: #4476b2;
}
/* CTA button with gradient border */
.sa-btn-cta {
    display: inline-block;
    padding: 2px;
    margin-top: .3em;
    background-color: #9ccb3e;
    background-image: -webkit-linear-gradient(left, #9ccb3e 0%, #6fbe44 25%, #29abe2 50%, #77d5f3 100%);
    background-image: -o-linear-gradient(left, #9ccb3e 0%, #6fbe44 25%, #29abe2 50%, #77d5f3 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#9ccb3e), color-stop(25%, #6fbe44), color-stop(50%, #29abe2), to(#77d5f3));
    background-image: linear-gradient(to right, #9ccb3e 0%, #6fbe44 25%, #29abe2 50%, #77d5f3 100%);
    background-repeat: no-repeat;
    border-radius: 1.5em;
}

    .sa-btn-cta .btn {
        height: 30px;
        margin: 0;
        font-family: "Source Sans Pro", sans-serif;
        font-size: .9375em;
        font-style: normal;
        font-weight: 600;
        line-height: 30px;
        background-color: #fff;
    }

.sa-btn-cta-regular .btn {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.sa-btn-cta .btn.btn {
    color: #212221;
}

.sa-btn-cta .btn [class^="icon-"] {
    color: #29abe2;
}
/* Icon positioning in buttons */
/* Learn more btn */
.btn.sa-learnmorebtn {
    position: relative;
    /* 14px /16 */
    padding-right: 3.142857142857em;
    font-size: .875rem;
    /* 44px /14 */
}

    .btn.sa-learnmorebtn [class^="icon-"] {
        font-size: 1.214285714286em;
        /* 17px /14 */
    }

        .btn.sa-learnmorebtn [class^="icon-"],
        .btn.sa-learnmorebtn [class^="icon-"]:before {
            display: inline;
            margin: 0;
            vertical-align: baseline;
        }
/* Extra specificity to override .sa-infoblock-sect .btn-lg */
.btn-lg.btn-lg.sa-learnmorebtn {
    position: relative;
    padding-right: 3.428571428571em;
    /* 48px /14 */
}
/* Personalize btn */
.btn.sa-btn-hasicon,
.btn.sa-btn-personalize {
    position: relative;
    /* 16px /16 */
    padding-right: 2.5625em;
    font-size: 1rem;
    /* 41px /16 */
}

    .btn.sa-btn-hasicon [class^="icon-"],
    .btn.sa-btn-personalize [class^="icon-"] {
        font-size: 1.0625em;
        /* 17px /16 */
    }

        .btn.sa-btn-hasicon [class^="icon-"],
        .btn.sa-btn-personalize [class^="icon-"],
        .btn.sa-btn-hasicon [class^="icon-"]:before,
        .btn.sa-btn-personalize [class^="icon-"]:before {
            display: inline;
            margin: 0;
            vertical-align: baseline;
        }
/* Extra specificity to override .sa-infoblock-sect .btn-lg */
.btn-lg.btn-lg.sa-btn-hasicon,
.btn-lg.btn-lg.sa-btn-personalize {
    position: relative;
    padding-right: 2.75em;
    /* 44px /16 */
}
/* CTA Button */
.sa-btn-cta .btn {
    position: relative;
    /* 15px /16 */
    padding-right: 2.733333333333em;
    font-size: .9375rem;
    /* 41px /15 */
}

    .sa-btn-cta .btn [class^="icon-"] {
        font-size: 1.133333333333em;
        /* 17px /15 */
    }

        .sa-btn-cta .btn [class^="icon-"],
        .sa-btn-cta .btn [class^="icon-"]:before {
            display: inline;
            margin: 0;
            vertical-align: baseline;
        }
/* Extra specificity to override .sa-infoblock-sect .btn-lg */
.sa-btn-cta .btn-lg.btn-lg {
    position: relative;
    padding-right: 3.2em;
    /* 48px /15 */
}

@media (min-width: 48em) {
    /* 768px */
    .sa-infoblock-sect .sa-btn-hasicon.btn-lg,
    .sa-infoblock-sect .sa-btn-personalize.btn-lg,
    .sa-infoblock-sect .sa-learnmorebtn.btn-lg {
        padding-right: 3.055555555556em;
        /* 55px /18 */
    }

        .sa-infoblock-sect .sa-btn-hasicon.btn-lg [class^="icon-"],
        .sa-infoblock-sect .sa-btn-personalize.btn-lg [class^="icon-"],
        .sa-infoblock-sect .sa-learnmorebtn.btn-lg [class^="icon-"] {
            font-size: 1.1875rem;
            /* 19px /16 */
        }
}

.btn.sa-btn-hasicon [class^="icon-"],
.btn.sa-learnmorebtn [class^="icon-"],
.btn.sa-btn-personalize [class^="icon-"],
.sa-btn-cta .btn [class^="icon-"],
.sa-hero-text-cta .btn [class^="icon-"] {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn.sa-btn-hasicon [class^="icon-"],
.btn.sa-learnmorebtn [class^="icon-"],
.btn.sa-btn-personalize [class^="icon-"] {
    right: .8823529411765em;
    /* 15px /17 */
}

.sa-btn-cta .btn [class^="icon-"] {
    right: .8823529411765em;
    /* 15px /17 */
}

.btn-lg.sa-btn-hasicon [class^="icon-"],
.btn-lg.sa-learnmorebtn [class^="icon-"],
.btn-lg.sa-btn-personalize [class^="icon-"],
.sa-btn-cta .btn-lg [class^="icon-"] {
    position: absolute;
    right: 1.058823529412em;
    /* 18px /17 */
}
/* End Icon positioning in buttons */
/*Sa-modals start*/

.modal-open {
    overflow: hidden;
}

.modal-content {
    position: relative;
    background-color: white;
    border: 1px solid #e6e7e8;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
}

.btn-modal-close,
.modal-header .close {
    display: inline-block;
    font-family: Source Sans Pro, sans-serif;
    font-style: normal;
    font-weight: 300;
    border: 1px solid darkgray;
    color: darkgray;
    font-size: 28px;
    width: 28px;
    height: 28px;
    line-height: 26px;
    text-align: center;
    border-radius: 28px;
    text-shadow: none;
    opacity: 1;
}

    .btn-modal-close:hover,
    .modal-header .close:hover {
        border: 1px solid #767676;
        color: #767676;
    }

.modal-title {
    font-size: 1.25em;
    color: #212221;
    font-family: Source Sans Pro, sans-serif;
    font-style: normal;
    font-weight: 300;
}

.modal-body,
.sa-modal-footer {
    position: relative;
    padding: 20px 30px;
    padding-top: 0;
}

.sa-modal-footer {
    text-align: right;
}

    .sa-modal-footer .btn {
        margin: 5px 0 0;
    }

.sa-modal-edit .modal-header {
    padding-top: 20px;
    padding-bottom: 18px;
    background-color: #f8f8f9;
    border-color: #e6e7e8;
}

.sa-modal-edit .modal-body {
    padding-top: 25px;
}

.sa-modal-edit-actions {
    padding-top: 16px;
    margin-left: -1px;
}

.sa-modal-subtitle {
    font-size: 1em;
    font-family: Source Sans Pro, sans-serif;
    font-style: normal;
    font-weight: 300;
    margin: 0 0 0.6em;
}

.sa-modal-block-heading p {
    font-size: 75%;
    color: #767676;
    line-height: 1.4;
    margin: 0 0 1.5em;
}

.sa-modal-block {
    padding: 20px 0;
    border-top: 1px solid #e6e7e8;
}

    .sa-modal-block:first-child,
    .sa-modal-block.sa-modal-block-secondary {
        padding-top: 0;
        border-top: 0;
    }

    .sa-modal-block:last-child {
        padding-bottom: 0;
    }

.sa-modal-block-body [class^="col-"] {
    padding: 0;
}

.sa-modal-block-body .sa-help-block-inline [class^="col-"] {
    min-width: 75px;
    padding-right: 15px;
}

.sa-modal-block-body .sa-check-toggle-set {
    max-width: 300px;
}

.sa-modal-block-body .form-group:last-child {
    margin-bottom: 0;
}

.sa-modal-block-body .sa-builder-list li {
    border-top: 1px solid #e6e7e8;
}

.sa-modal-block-footer {
    text-align: right;
}

    .sa-modal-block-footer .dropdown {
        display: inline-block;
    }

.sa-modal-confirm .modal-header {
    padding-top: 25px;
    padding-bottom: 18px;
}

.sa-modal-confirm .modal-title [class^="icon-"] {
    float: left;
    margin-right: 5px;
}

    .sa-modal-confirm .modal-title [class^="icon-"]:before {
        width: 28px;
        height: 28px;
        border-radius: 28px;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px;
        font-size: 18px;
        line-height: 27px;
        text-align: center;
    }

.sa-modal-confirm .modal-content {
    border-top: 5px solid transparent;
}

.sa-modal-confirm-default .modal-content {
    border-top-color: #007dbc;
}

.sa-modal-confirm-warning .modal-title [class^="icon-"]:before {
    color: #212221;
    background-color: #fedd0e;
}

.sa-modal-confirm-warning .modal-content {
    border-top-color: #fedd0e;
}

.sa-modal-confirm-success .modal-title [class^="icon-"]:before {
    color: white;
    background-color: #16a44a;
}

.sa-modal-confirm-success .modal-content {
    border-top-color: #16a44a;
}

.sa-modal-confirm-danger .modal-title [class^="icon-"]:before {
    color: white;
    background-color: #c32026;
}

.sa-modal-confirm-danger .modal-content {
    border-top-color: #c32026;
}

@media (min-width: 480px) {
    .modal-title {
        font-size: 1.5em;
    }

    .sa-modal-edit.modal {
        overflow: visible;
    }

    .sa-modal-edit .modal-header {
        display: table;
        width: 100%;
    }

    .sa-modal-edit .modal-title,
    .sa-modal-edit .sa-modal-edit-actions {
        display: table-cell;
    }

    .sa-modal-edit .sa-modal-edit-actions {
        text-align: right;
        padding-top: 0;
        margin: 0;
    }

    .sa-modal-footer .btn,
    .sa-modal-edit-actions .btn {
        margin-left: 0.3em;
    }

        .sa-modal-footer .btn:first-child,
        .sa-modal-edit-actions .btn:first-child {
            margin-left: 0;
        }
}

@media (max-width: 479px) {
    .modal-dialog {
        margin: 0;
    }
}

@media (max-width: 599px) {
    .modal-header,
    .modal-body,
    .sa-modal-footer {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (min-width: 600px) {
    .sa-modal-block {
        display: table;
        width: 100%;
    }

        .sa-modal-block .sa-modal-block-heading,
        .sa-modal-block .sa-modal-block-body {
            display: table-cell;
            vertical-align: top;
        }

        .sa-modal-block .sa-modal-block-heading {
            width: 25%;
        }

        .sa-modal-block .sa-modal-block-body {
            padding-left: 30px;
        }

    .sa-modal-block-heading p {
        margin-bottom: 0;
    }

        .sa-modal-block-heading p + p {
            margin-top: 0.6em;
        }

    .sa-modal-body {
        padding: 20px 30px;
    }
}

@media (min-width: 768px) {
    .modal-content {
        -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    }
}
/* Flush body */

.sa-modal-body-flush {
    padding-left: 0;
    padding-right: 0;
}

    .sa-modal-body-flush > .sa-modal-block {
        padding-left: 30px;
        padding-right: 30px;
    }

.sa-modal-confirm-modal .modal-header {
    padding: 24px 20px;
    background-color: #f6f7f8;
}

.sa-modal-confirm-modal .modal-body {
    padding-left: 20px;
    padding-right: 20px;
}

.sa-modal-confirm-modal .modal-title {
    color: black;
    font-size: 22px;
    font-weight: lighter;
}
/*Sa-modals end*/
.sa-table > thead > tr > th {
    vertical-align: middle;
}

.sa-table tbody td,
.sa-table tbody th {
    font-size: .9375em;
    color: #212221;
}

@media (min-width: 40em) {
    /* 640px */
    .sa-table td:first-child,
    .sa-table th:first-child {
        padding-left: 15px;
    }

    .sa-table td:last-child,
    .sa-table th:last-child {
        padding-right: 15px;
    }
}
/* Bootstrap override */
.sa-table.sa-table tbody td {
    vertical-align: top;
}

.sa-table.sa-table tbody th {
    vertical-align: middle;
}
/* Bootstrap override */
.sa-table > thead > tr > th {
    border-bottom-width: 1px;
}
/* Bootstrap override */
.sa-table > tbody + tbody {
    border-top-width: 1px;
}

.sa-table thead th {
    font-family: "Source Sans Pro", sans-serif;
    font-size: .6875em;
    font-style: normal;
    font-weight: 300;
    color: #58595b;
    text-transform: uppercase;
}

.sa-table-primarycol {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.sa-table-checkbox {
    padding-right: 0;
    padding-left: 5px;
    margin-bottom: 2px;
    font-size: .875rem;
}

.sa-table .btn {
    padding-right: 1em;
    padding-left: 1em;
    font-weight: 600;
    color: #007dbc;
}

    .sa-table .btn[aria-expanded="true"] {
        color: #fff;
        background-color: #29abe2;
        border-color: #29abe2;
    }

    .sa-table .btn:focus,
    .sa-table .btn.focus {
        border-style: dotted;
    }

    .sa-table .btn [class^="icon-"] {
        margin-left: 0;
    }

    .sa-table .btn .sr-only + [class^="icon-"]:last-child {
        margin-right: 0;
    }

    .sa-table .btn,
    .sa-table .btn.btn-link.dropdown-toggle {
        height: 28px;
        margin-top: -5px;
        margin-bottom: -5px;
        line-height: 26px;
    }

.sa-table .sa-list li {
    font-size: 1em;
}

@media (max-width: 479px) {
    .sa-table .sa-list-inline li {
        display: block;
        padding: 0 0 5px;
        border: 0;
    }
}

@media (max-width: 599px) {
    .sa-table tbody td,
    .sa-table tbody th {
        font-size: .875em;
    }
}
/* Subrows */
.sa-table tbody .sa-table-subrow > td,
.sa-table tbody .sa-table-subrow > th {
    font-size: .75rem;
    border-top: none;
    /* 12px /16 */
}

.tablesaw-stack tbody .sa-table-subrow {
    border-bottom: none;
}

.sa-table.tablesaw-stack .sa-table-subrow .tablesaw-cell-label {
    display: none;
}

.sa-table.tablesaw-stack .sa-table-subrow .tablesaw-cell-content {
    display: block;
    max-width: 100%;
}

.sa-table-subrow dt {
    font-size: .625rem;
    /* 10px /16 */
}

.sa-table-subrow dd {
    /* 12px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75rem;
    font-style: normal;
    font-weight: 400;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 16px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #e6e7e8;
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

    .dropdown-menu.pull-right {
        right: 0;
        left: auto;
    }

    .dropdown-menu .divider {
        height: 1px;
        margin: 8.5px 0;
        overflow: hidden;
        background-color: #e6e7e8;
    }

    .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.2;
        color: #58595b;
        white-space: nowrap;
    }

        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > a:focus {
            color: #212221;
            text-decoration: none;
            background-color: #caeefa;
        }

    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
        color: #212221;
        text-decoration: none;
        background-color: #caeefa;
        outline: 0;
    }

    .dropdown-menu > .disabled > a,
    .dropdown-menu > .disabled > a:hover,
    .dropdown-menu > .disabled > a:focus {
        color: #a9a9a9;
    }

        .dropdown-menu > .disabled > a:hover,
        .dropdown-menu > .disabled > a:focus {
            text-decoration: none;
            cursor: not-allowed;
            background-color: transparent;
            background-image: none;
            filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
        }

.open > .dropdown-menu {
    display: block;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    right: 0;
    left: auto;
}

.dropdown-menu-left {
    right: auto;
    left: 0;
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.2;
    color: #58595b;
    white-space: nowrap;
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0;
    }
}

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    .btn-group > .btn,
    .btn-group-vertical > .btn {
        position: relative;
        float: left;
    }

        .btn-group > .btn:hover,
        .btn-group-vertical > .btn:hover,
        .btn-group > .btn:focus,
        .btn-group-vertical > .btn:focus,
        .btn-group > .btn:active,
        .btn-group-vertical > .btn:active,
        .btn-group > .btn.active,
        .btn-group-vertical > .btn.active {
            z-index: 2;
        }

    .btn-group .btn + .btn,
    .btn-group .btn + .btn-group,
    .btn-group .btn-group + .btn,
    .btn-group .btn-group + .btn-group {
        margin-left: -1px;
    }

.btn-toolbar {
    margin-left: -5px;
}

    .btn-toolbar .btn,
    .btn-toolbar .btn-group,
    .btn-toolbar .input-group {
        float: left;
    }

    .btn-toolbar > .btn,
    .btn-toolbar > .btn-group,
    .btn-toolbar > .input-group {
        margin-left: 5px;
    }

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-group > .btn-group {
    float: left;
}

    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
    .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

.btn-group > .btn + .dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px;
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px;
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

    .btn-group.open .dropdown-toggle.btn-link {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.btn .caret {
    margin-left: 0;
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

    .btn-group-vertical > .btn-group > .btn {
        float: none;
    }

    .btn-group-vertical > .btn + .btn,
    .btn-group-vertical > .btn + .btn-group,
    .btn-group-vertical > .btn-group + .btn,
    .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0;
    }

    .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-top-left-radius: 1.5em;
        border-top-right-radius: 1.5em;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 1.5em;
        border-bottom-left-radius: 1.5em;
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

    .btn-group-justified > .btn,
    .btn-group-justified > .btn-group {
        display: table-cell;
        float: none;
        width: 1%;
    }

        .btn-group-justified > .btn-group .btn {
            width: 100%;
        }

        .btn-group-justified > .btn-group .dropdown-menu {
            left: auto;
        }

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

    .input-group[class*="col-"] {
        float: none;
        padding-right: 0;
        padding-left: 0;
    }

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

        .input-group .form-control:focus {
            z-index: 3;
        }

.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px;
}

textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto;
}

.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}

textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

    .input-group-addon:not(:first-child):not(:last-child),
    .input-group-btn:not(:first-child):not(:last-child),
    .input-group .form-control:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 16px;
    font-weight: normal;
    line-height: 1;
    color: #212221;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    .input-group-addon.input-sm {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 3px;
    }

    .input-group-addon.input-lg {
        padding: 10px 16px;
        font-size: 18px;
        border-radius: 6px;
    }

    .input-group-addon input[type="radio"],
    .input-group-addon input[type="checkbox"] {
        margin-top: 0;
    }

    .input-group .form-control:first-child,
    .input-group-addon:first-child,
    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group > .btn,
    .input-group-btn:first-child > .dropdown-toggle,
    .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
    .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .input-group-addon:first-child {
        border-right: 0;
    }

    .input-group .form-control:last-child,
    .input-group-addon:last-child,
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group > .btn,
    .input-group-btn:last-child > .dropdown-toggle,
    .input-group-btn:first-child > .btn:not(:first-child),
    .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    .input-group-addon:last-child {
        border-left: 0;
    }

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

    .input-group-btn > .btn {
        position: relative;
    }

        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }

        .input-group-btn > .btn:hover,
        .input-group-btn > .btn:focus,
        .input-group-btn > .btn:active {
            z-index: 2;
        }

    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }

    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group {
        z-index: 2;
        margin-left: -1px;
    }

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .nav > li {
        position: relative;
        display: block;
    }

        .nav > li > a {
            position: relative;
            display: block;
            padding: 10px 15px;
        }

            .nav > li > a:hover,
            .nav > li > a:focus {
                text-decoration: none;
                background-color: #eee;
            }

        .nav > li.disabled > a {
            color: #777;
        }

            .nav > li.disabled > a:hover,
            .nav > li.disabled > a:focus {
                color: #777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent;
            }

    .nav .open > a,
    .nav .open > a:hover,
    .nav .open > a:focus {
        background-color: #eee;
        border-color: #007dbc;
    }

    .nav .nav-divider {
        height: 1px;
        margin: 8.5px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    .nav > li > a > img {
        max-width: none;
    }

.nav-tabs {
    border-bottom: 1px solid #e6e7e8;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.2;
            border: 1px solid transparent;
            border-radius: 4px 4px 0 0;
        }

            .nav-tabs > li > a:hover {
                border-color: #f8f8f9 #f8f8f9 #e6e7e8;
            }

        .nav-tabs > li.active > a,
        .nav-tabs > li.active > a:hover,
        .nav-tabs > li.active > a:focus {
            color: #767676;
            cursor: default;
            background-color: #fff;
            border: 1px solid #e6e7e8;
            border-bottom-color: transparent;
        }

    .nav-tabs.nav-justified {
        width: 100%;
        border-bottom: 0;
    }

        .nav-tabs.nav-justified > li {
            float: none;
        }

            .nav-tabs.nav-justified > li > a {
                margin-bottom: 5px;
                text-align: center;
            }

        .nav-tabs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto;
        }

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.nav-pills > li {
    float: left;
}

    .nav-pills > li > a {
        border-radius: 4px;
    }

    .nav-pills > li + li {
        margin-left: 2px;
    }

    .nav-pills > li.active > a,
    .nav-pills > li.active > a:hover,
    .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #337ab7;
    }

.nav-stacked > li {
    float: none;
}

    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

.nav-justified {
    width: 100%;
}

    .nav-justified > li {
        float: none;
    }

        .nav-justified > li > a {
            margin-bottom: 5px;
            text-align: center;
        }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-justified > li > a {
            margin-bottom: 0;
        }
}

.nav-tabs-justified {
    border-bottom: 0;
}

    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 4px;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border: 1px solid #ddd;
    }

@media (min-width: 768px) {
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 19px;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 0;
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left;
    }
}

.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

    .navbar-collapse.in {
        overflow-y: auto;
    }

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important;
        }

        .navbar-collapse.in {
            overflow-y: visible;
        }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
}

@media (max-device-width: 600px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px;
    }
}

.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

@media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15.5px 15px;
    font-size: 18px;
    line-height: 19px;
}

    .navbar-brand:hover,
    .navbar-brand:focus {
        text-decoration: none;
    }

    .navbar-brand > img {
        display: block;
    }

@media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .navbar-toggle:focus {
        outline: 0;
    }

    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }

        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 4px;
        }

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 7.75px -15px;
}

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 19px;
    }

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .navbar-nav .open .dropdown-menu > li > a,
        .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }

        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 19px;
        }

            .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

@media (min-width: 768px) {
    .navbar-nav {
        float: left;
        margin: 0;
    }

        .navbar-nav > li {
            float: left;
        }

            .navbar-nav > li > a {
                padding-top: 15.5px;
                padding-bottom: 15.5px;
            }
}

.navbar-form {
    padding: 10px 15px;
    margin-top: 8.5px;
    margin-right: -15px;
    margin-bottom: 8.5px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .form-control-static {
        display: inline-block;
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .navbar-form .input-group .input-group-addon,
        .navbar-form .input-group .input-group-btn,
        .navbar-form .input-group .form-control {
            width: auto;
        }

        .navbar-form .input-group > .form-control {
            width: 100%;
        }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .navbar-form .radio label,
        .navbar-form .checkbox label {
            padding-left: 0;
        }

        .navbar-form .radio input[type="radio"],
        .navbar-form .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0;
        }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }

        .navbar-form .form-group:last-child {
            margin-bottom: 0;
        }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

.navbar-btn {
    margin-top: 8.5px;
    margin-bottom: 8.5px;
}

    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px;
    }

.navbar-text {
    margin-top: 15.5px;
    margin-bottom: 15.5px;
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important;
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }

        .navbar-right ~ .navbar-right {
            margin-right: 0;
        }
}

.navbar-default {
    background-color: #fff;
    border-color: #e6e7e8;
}

    .navbar-default .navbar-brand {
        color: #58595b;
    }

        .navbar-default .navbar-brand:hover,
        .navbar-default .navbar-brand:focus {
            color: #3f4041;
            background-color: transparent;
        }

    .navbar-default .navbar-text {
        color: #58595b;
    }

    .navbar-default .navbar-nav > li > a {
        color: #58595b;
    }

        .navbar-default .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > li > a:focus {
            color: #212221;
            background-color: transparent;
        }

    .navbar-default .navbar-nav > .active > a,
    .navbar-default .navbar-nav > .active > a:hover,
    .navbar-default .navbar-nav > .active > a:focus {
        color: #555;
        background-color: #eee;
    }

    .navbar-default .navbar-nav > .disabled > a,
    .navbar-default .navbar-nav > .disabled > a:hover,
    .navbar-default .navbar-nav > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }

    .navbar-default .navbar-toggle {
        border-color: #ddd;
    }

        .navbar-default .navbar-toggle:hover,
        .navbar-default .navbar-toggle:focus {
            background-color: #ddd;
        }

        .navbar-default .navbar-toggle .icon-bar {
            background-color: #888;
        }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        border-color: #e6e7e8;
    }

    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus {
        color: #555;
        background-color: #eee;
    }

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #58595b;
    }

        .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #212221;
            background-color: transparent;
        }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #eee;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-link {
    color: #58595b;
}

    .navbar-default .navbar-link:hover {
        color: #212221;
    }

.navbar-default .btn-link {
    color: #58595b;
}

    .navbar-default .btn-link:hover,
    .navbar-default .btn-link:focus {
        color: #212221;
    }

    .navbar-default .btn-link[disabled]:hover,
    fieldset[disabled] .navbar-default .btn-link:hover,
    .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:focus {
        color: #ccc;
    }

.navbar-inverse {
    background-color: #222;
    border-color: #080808;
}

    .navbar-inverse .navbar-brand {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-brand:hover,
        .navbar-inverse .navbar-brand:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-text {
        color: #9d9d9d;
    }

    .navbar-inverse .navbar-nav > li > a {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-nav > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav > .disabled > a,
    .navbar-inverse .navbar-nav > .disabled > a:hover,
    .navbar-inverse .navbar-nav > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }

    .navbar-inverse .navbar-toggle {
        border-color: #333;
    }

        .navbar-inverse .navbar-toggle:hover,
        .navbar-inverse .navbar-toggle:focus {
            background-color: #333;
        }

        .navbar-inverse .navbar-toggle .icon-bar {
            background-color: #fff;
        }

    .navbar-inverse .navbar-collapse,
    .navbar-inverse .navbar-form {
        border-color: #101010;
    }

    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .open > a:hover,
    .navbar-inverse .navbar-nav > .open > a:focus {
        color: #fff;
        background-color: #080808;
    }

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d;
    }

        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
        .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d;
}

    .navbar-inverse .navbar-link:hover {
        color: #fff;
    }

.navbar-inverse .btn-link {
    color: #9d9d9d;
}

    .navbar-inverse .btn-link:hover,
    .navbar-inverse .btn-link:focus {
        color: #fff;
    }

    .navbar-inverse .btn-link[disabled]:hover,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
        color: #444;
    }

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 19px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

    .breadcrumb > li {
        display: inline-block;
    }

        .breadcrumb > li + li:before {
            padding: 0 5px;
            color: #ccc;
            content: "/\00a0";
        }

    .breadcrumb > .active {
        color: #777;
    }

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 19px 0;
    border-radius: 4px;
}

    .pagination > li {
        display: inline;
    }

        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.2;
            color: #007dbc;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            z-index: 2;
            color: #004a70;
            background-color: #eee;
            border-color: #ddd;
        }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 3;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 19px 0;
    text-align: center;
    list-style: none;
}

    .pager li {
        display: inline;
    }

        .pager li > a,
        .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
        }

            .pager li > a:hover,
            .pager li > a:focus {
                text-decoration: none;
                background-color: #eee;
            }

    .pager .next > a,
    .pager .next > span {
        float: right;
    }

    .pager .previous > a,
    .pager .previous > span {
        float: left;
    }

    .pager .disabled > a,
    .pager .disabled > a:hover,
    .pager .disabled > a:focus,
    .pager .disabled > span {
        color: #777;
        cursor: not-allowed;
        background-color: #fff;
    }

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #58595b;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

a.label:hover,
a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

.label-default {
    background-color: #777;
}

    .label-default[href]:hover,
    .label-default[href]:focus {
        background-color: #5e5e5e;
    }

.label-primary {
    background-color: #337ab7;
}

    .label-primary[href]:hover,
    .label-primary[href]:focus {
        background-color: #286090;
    }

.label-success {
    background-color: #5cb85c;
}

    .label-success[href]:hover,
    .label-success[href]:focus {
        background-color: #449d44;
    }

.label-info {
    background-color: #5bc0de;
}

    .label-info[href]:hover,
    .label-info[href]:focus {
        background-color: #31b0d5;
    }

.label-warning {
    background-color: #f0ad4e;
}

    .label-warning[href]:hover,
    .label-warning[href]:focus {
        background-color: #ec971f;
    }

.label-danger {
    background-color: #d9534f;
}

    .label-danger[href]:hover,
    .label-danger[href]:focus {
        background-color: #c9302c;
    }

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777;
    border-radius: 10px;
}

    .badge:empty {
        display: none;
    }

.btn .badge {
    position: relative;
    top: -1px;
}

.btn-xs .badge,
.btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px;
}

a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #007dbc;
    background-color: #fff;
}

.list-group-item > .badge {
    float: right;
}

    .list-group-item > .badge + .badge {
        margin-right: 5px;
    }

.nav-pills > li > a > .badge {
    margin-left: 3px;
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee;
}

    .jumbotron h1,
    .jumbotron .h1 {
        color: inherit;
    }

    .jumbotron p {
        margin-bottom: 15px;
        font-size: 24px;
        font-weight: 200;
    }

    .jumbotron > hr {
        border-top-color: #d5d5d5;
    }

.container .jumbotron,
.container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px;
}

.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px;
    }

    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 72px;
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 19px;
    line-height: 1.2;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

    .thumbnail > img,
    .thumbnail a > img {
        margin-right: auto;
        margin-left: auto;
    }

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #007dbc;
}

.thumbnail .caption {
    padding: 9px;
    color: #212221;
}

.alert {
    padding: 13px;
    margin-bottom: 19px;
    border: 1px solid transparent;
    border-radius: 4px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert .alert-link {
        font-weight: 600;
    }

    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable,
.alert-dismissible {
    padding-right: 33px;
}

    .alert-dismissable .close,
    .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    color: #fff;
    background-color: #c32026;
    border-color: #c32026;
}

    .alert-danger hr {
        border-top-color: #ad1c22;
    }

    .alert-danger .alert-link {
        color: #e6e6e6;
    }

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@-o-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0;
    }

    to {
        background-position: 0 0;
    }
}

.progress {
    height: 19px;
    margin-bottom: 19px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 19px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease;
}

.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
    background-color: #5cb85c;
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-info {
    background-color: #5bc0de;
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-warning {
    background-color: #f0ad4e;
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.progress-bar-danger {
    background-color: #d9534f;
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
}

.media {
    margin-top: 15px;
}

    .media:first-child {
        margin-top: 0;
    }

.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}

.media-body {
    width: 10000px;
}

.media-object {
    display: block;
}

    .media-object.img-thumbnail {
        max-width: none;
    }

.media-right,
.media > .pull-right {
    padding-left: 10px;
}

.media-left,
.media > .pull-left {
    padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

    .list-group-item:first-child {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }

a.list-group-item,
button.list-group-item {
    color: #555;
}

    a.list-group-item .list-group-item-heading,
    button.list-group-item .list-group-item-heading {
        color: #333;
    }

    a.list-group-item:hover,
    button.list-group-item:hover,
    a.list-group-item:focus,
    button.list-group-item:focus {
        color: #555;
        text-decoration: none;
        background-color: #f5f5f5;
    }

button.list-group-item {
    width: 100%;
    text-align: left;
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    color: #777;
    cursor: not-allowed;
    background-color: #eee;
}

    .list-group-item.disabled .list-group-item-heading,
    .list-group-item.disabled:hover .list-group-item-heading,
    .list-group-item.disabled:focus .list-group-item-heading {
        color: inherit;
    }

    .list-group-item.disabled .list-group-item-text,
    .list-group-item.disabled:hover .list-group-item-text,
    .list-group-item.disabled:focus .list-group-item-text {
        color: #777;
    }

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

    .list-group-item.active .list-group-item-heading,
    .list-group-item.active:hover .list-group-item-heading,
    .list-group-item.active:focus .list-group-item-heading,
    .list-group-item.active .list-group-item-heading > small,
    .list-group-item.active:hover .list-group-item-heading > small,
    .list-group-item.active:focus .list-group-item-heading > small,
    .list-group-item.active .list-group-item-heading > .small,
    .list-group-item.active:hover .list-group-item-heading > .small,
    .list-group-item.active:focus .list-group-item-heading > .small {
        color: inherit;
    }

    .list-group-item.active .list-group-item-text,
    .list-group-item.active:hover .list-group-item-text,
    .list-group-item.active:focus .list-group-item-text {
        color: #c7ddef;
    }

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d;
}

    a.list-group-item-success .list-group-item-heading,
    button.list-group-item-success .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-success:hover,
    button.list-group-item-success:hover,
    a.list-group-item-success:focus,
    button.list-group-item-success:focus {
        color: #3c763d;
        background-color: #d0e9c6;
    }

    a.list-group-item-success.active,
    button.list-group-item-success.active,
    a.list-group-item-success.active:hover,
    button.list-group-item-success.active:hover,
    a.list-group-item-success.active:focus,
    button.list-group-item-success.active:focus {
        color: #fff;
        background-color: #3c763d;
        border-color: #3c763d;
    }

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f;
}

    a.list-group-item-info .list-group-item-heading,
    button.list-group-item-info .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-info:hover,
    button.list-group-item-info:hover,
    a.list-group-item-info:focus,
    button.list-group-item-info:focus {
        color: #31708f;
        background-color: #c4e3f3;
    }

    a.list-group-item-info.active,
    button.list-group-item-info.active,
    a.list-group-item-info.active:hover,
    button.list-group-item-info.active:hover,
    a.list-group-item-info.active:focus,
    button.list-group-item-info.active:focus {
        color: #fff;
        background-color: #31708f;
        border-color: #31708f;
    }

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b;
}

    a.list-group-item-warning .list-group-item-heading,
    button.list-group-item-warning .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-warning:hover,
    button.list-group-item-warning:hover,
    a.list-group-item-warning:focus,
    button.list-group-item-warning:focus {
        color: #8a6d3b;
        background-color: #faf2cc;
    }

    a.list-group-item-warning.active,
    button.list-group-item-warning.active,
    a.list-group-item-warning.active:hover,
    button.list-group-item-warning.active:hover,
    a.list-group-item-warning.active:focus,
    button.list-group-item-warning.active:focus {
        color: #fff;
        background-color: #8a6d3b;
        border-color: #8a6d3b;
    }

.list-group-item-danger {
    color: #c32026;
    background-color: #f2dede;
}

a.list-group-item-danger,
button.list-group-item-danger {
    color: #c32026;
}

    a.list-group-item-danger .list-group-item-heading,
    button.list-group-item-danger .list-group-item-heading {
        color: inherit;
    }

    a.list-group-item-danger:hover,
    button.list-group-item-danger:hover,
    a.list-group-item-danger:focus,
    button.list-group-item-danger:focus {
        color: #c32026;
        background-color: #ebcccc;
    }

    a.list-group-item-danger.active,
    button.list-group-item-danger.active,
    a.list-group-item-danger.active:hover,
    button.list-group-item-danger.active:hover,
    a.list-group-item-danger.active:focus,
    button.list-group-item-danger.active:focus {
        color: #fff;
        background-color: #c32026;
        border-color: #c32026;
    }

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

.panel {
    margin-bottom: 19px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.panel-body {
    padding: 15px;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit;
    }

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 18px;
    color: inherit;
}

    .panel-title > a,
    .panel-title > small,
    .panel-title > .small,
    .panel-title > small > a,
    .panel-title > .small > a {
        color: inherit;
    }

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
    margin-bottom: 0;
}

    .panel > .list-group .list-group-item,
    .panel > .panel-collapse > .list-group .list-group-item {
        border-width: 1px 0;
        border-radius: 0;
    }

    .panel > .list-group:first-child .list-group-item:first-child,
    .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
        border-top: 0;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    .panel > .list-group:last-child .list-group-item:last-child,
    .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
        border-bottom: 0;
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.list-group + .panel-footer {
    border-top-width: 0;
}

.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
    margin-bottom: 0;
}

    .panel > .table caption,
    .panel > .table-responsive > .table caption,
    .panel > .panel-collapse > .table caption {
        padding-right: 15px;
        padding-left: 15px;
    }

    .panel > .table:first-child,
    .panel > .table-responsive:first-child > .table:first-child {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

        .panel > .table:first-child > thead:first-child > tr:first-child,
        .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
        .panel > .table:first-child > tbody:first-child > tr:first-child,
        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

            .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
            .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
                border-top-left-radius: 3px;
            }

            .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
            .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
                border-top-right-radius: 3px;
            }

    .panel > .table:last-child,
    .panel > .table-responsive:last-child > .table:last-child {
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

        .panel > .table:last-child > tbody:last-child > tr:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
        .panel > .table:last-child > tfoot:last-child > tr:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
            border-bottom-right-radius: 3px;
            border-bottom-left-radius: 3px;
        }

            .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
            .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
                border-bottom-left-radius: 3px;
            }

            .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
            .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
                border-bottom-right-radius: 3px;
            }

    .panel > .panel-body + .table,
    .panel > .panel-body + .table-responsive,
    .panel > .table + .panel-body,
    .panel > .table-responsive + .panel-body {
        border-top: 1px solid #ddd;
    }

    .panel > .table > tbody:first-child > tr:first-child th,
    .panel > .table > tbody:first-child > tr:first-child td {
        border-top: 0;
    }

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}

    .panel > .table-bordered > thead > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
    .panel > .table-bordered > tbody > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .panel > .table-bordered > tfoot > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .panel > .table-bordered > thead > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
    .panel > .table-bordered > tbody > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .panel > .table-bordered > tfoot > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .panel > .table-bordered > thead > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
    .panel > .table-bordered > tbody > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .panel > .table-bordered > tfoot > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .panel > .table-bordered > thead > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
    .panel > .table-bordered > tbody > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .panel > .table-bordered > tfoot > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .panel > .table-bordered > thead > tr:first-child > td,
    .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
    .panel > .table-bordered > tbody > tr:first-child > td,
    .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
    .panel > .table-bordered > thead > tr:first-child > th,
    .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
    .panel > .table-bordered > tbody > tr:first-child > th,
    .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
        border-bottom: 0;
    }

    .panel > .table-bordered > tbody > tr:last-child > td,
    .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .panel > .table-bordered > tfoot > tr:last-child > td,
    .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .panel > .table-bordered > tbody > tr:last-child > th,
    .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .panel > .table-bordered > tfoot > tr:last-child > th,
    .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0;
    }

.panel > .table-responsive {
    margin-bottom: 0;
    border: 0;
}

.panel-group {
    margin-bottom: 19px;
}

    .panel-group .panel {
        margin-bottom: 0;
        border-radius: 4px;
    }

        .panel-group .panel + .panel {
            margin-top: 5px;
        }

    .panel-group .panel-heading {
        border-bottom: 0;
    }

        .panel-group .panel-heading + .panel-collapse > .panel-body,
        .panel-group .panel-heading + .panel-collapse > .list-group {
            border-top: 1px solid #ddd;
        }

    .panel-group .panel-footer {
        border-top: 0;
    }

        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #ddd;
        }

.panel-default {
    border-color: #ddd;
}

    .panel-default > .panel-heading {
        color: #333;
        background-color: #f5f5f5;
        border-color: #ddd;
    }

        .panel-default > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ddd;
        }

        .panel-default > .panel-heading .badge {
            color: #f5f5f5;
            background-color: #333;
        }

    .panel-default > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ddd;
    }

.panel-primary {
    border-color: #337ab7;
}

    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #337ab7;
        border-color: #337ab7;
    }

        .panel-primary > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #337ab7;
        }

        .panel-primary > .panel-heading .badge {
            color: #337ab7;
            background-color: #fff;
        }

    .panel-primary > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #337ab7;
    }

.panel-success {
    border-color: #d6e9c6;
}

    .panel-success > .panel-heading {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

        .panel-success > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #d6e9c6;
        }

        .panel-success > .panel-heading .badge {
            color: #dff0d8;
            background-color: #3c763d;
        }

    .panel-success > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #d6e9c6;
    }

.panel-info {
    border-color: #bce8f1;
}

    .panel-info > .panel-heading {
        color: #31708f;
        background-color: #d9edf7;
        border-color: #bce8f1;
    }

        .panel-info > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #bce8f1;
        }

        .panel-info > .panel-heading .badge {
            color: #d9edf7;
            background-color: #31708f;
        }

    .panel-info > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #bce8f1;
    }

.panel-warning {
    border-color: #faebcc;
}

    .panel-warning > .panel-heading {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc;
    }

        .panel-warning > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #faebcc;
        }

        .panel-warning > .panel-heading .badge {
            color: #fcf8e3;
            background-color: #8a6d3b;
        }

    .panel-warning > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #faebcc;
    }

.panel-danger {
    border-color: #ebccd1;
}

    .panel-danger > .panel-heading {
        color: #c32026;
        background-color: #f2dede;
        border-color: #ebccd1;
    }

        .panel-danger > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ebccd1;
        }

        .panel-danger > .panel-heading .badge {
            color: #f2dede;
            background-color: #c32026;
        }

    .panel-danger > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ebccd1;
    }

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    .embed-responsive .embed-responsive-item,
    .embed-responsive iframe,
    .embed-responsive embed,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

    .well blockquote {
        border-color: #ddd;
        border-color: rgba(0, 0, 0, .15);
    }

.well-lg {
    padding: 24px;
    border-radius: 6px;
}

.well-sm {
    padding: 9px;
    border-radius: 3px;
}

.close {
    float: right;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
}

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    .modal.fade .modal-dialog {
        -webkit-transition: -webkit-transform .3s ease-out;
        -o-transition: -o-transform .3s ease-out;
        transition: -webkit-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out, -webkit-transform .3s ease-out, -o-transform .3s ease-out;
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid #e6e7e8;
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    .modal-backdrop.in {
        filter: alpha(opacity=15);
        opacity: .15;
    }

.modal-header {
    padding: 30px;
    border-bottom: 1px solid transparent;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.2;
}

.modal-body {
    position: relative;
    padding: 20px 30px;
}

.modal-footer {
    padding: 20px 30px;
    text-align: right;
    border-top: 1px solid transparent;
}

    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    }

    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: Source Sans Pro,sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    filter: alpha(opacity=0);
    opacity: 0;
    line-break: auto;
}

    .tooltip.in {
        filter: alpha(opacity=90);
        opacity: .9;
    }

    .tooltip.top {
        padding: 5px 0;
        margin-top: -3px;
    }

    .tooltip.right {
        padding: 0 5px;
        margin-left: 3px;
    }

    .tooltip.bottom {
        padding: 5px 0;
        margin-top: 3px;
    }

    .tooltip.left {
        padding: 0 5px;
        margin-left: -3px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: Source Sans Pro,sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.2;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    line-break: auto;
}

    .popover.top {
        margin-top: -10px;
    }

    .popover.right {
        margin-left: 10px;
    }

    .popover.bottom {
        margin-top: 10px;
    }

    .popover.left {
        margin-left: -10px;
    }

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 16px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

    .popover > .arrow:after {
        content: "";
        border-width: 10px;
    }

.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0;
}

    .popover.top > .arrow:after {
        bottom: 1px;
        margin-left: -10px;
        content: " ";
        border-top-color: #fff;
        border-bottom-width: 0;
    }

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0;
}

    .popover.right > .arrow:after {
        bottom: -10px;
        left: 1px;
        content: " ";
        border-right-color: #fff;
        border-left-width: 0;
    }

.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
}

    .popover.bottom > .arrow:after {
        top: 1px;
        margin-left: -10px;
        content: " ";
        border-top-width: 0;
        border-bottom-color: #fff;
    }

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25);
}

    .popover.left > .arrow:after {
        right: 1px;
        bottom: -10px;
        content: " ";
        border-right-width: 0;
        border-left-color: #fff;
    }

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .carousel-inner > .item {
        position: relative;
        display: none;
        -webkit-transition: .6s ease-in-out left;
        -o-transition: .6s ease-in-out left;
        transition: .6s ease-in-out left;
    }

        .carousel-inner > .item > img,
        .carousel-inner > .item > a > img {
            line-height: 1;
        }

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: -webkit-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out, -o-transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }

        .carousel-inner > .item.next,
        .carousel-inner > .item.active.right {
            left: 0;
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
        }

        .carousel-inner > .item.prev,
        .carousel-inner > .item.active.left {
            left: 0;
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
        }

            .carousel-inner > .item.next.left,
            .carousel-inner > .item.prev.right,
            .carousel-inner > .item.active {
                left: 0;
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
            }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

    .carousel-inner > .next.left,
    .carousel-inner > .prev.right {
        left: 0;
    }

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: .5;
}

    .carousel-control.left {
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
        background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }

    .carousel-control:hover,
    .carousel-control:focus {
        color: #fff;
        text-decoration: none;
        filter: alpha(opacity=90);
        outline: 0;
        opacity: .9;
    }

    .carousel-control .icon-prev,
    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
        margin-top: -10px;
    }

    .carousel-control .icon-prev,
    .carousel-control .glyphicon-chevron-left {
        left: 50%;
        margin-left: -10px;
    }

    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-right {
        right: 50%;
        margin-right: -10px;
    }

    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 20px;
        height: 20px;
        font-family: serif;
        line-height: 1;
    }

        .carousel-control .icon-prev:before {
            content: '\2039';
        }

        .carousel-control .icon-next:before {
            content: '\203a';
        }

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid #fff;
        border-radius: 10px;
    }

    .carousel-indicators .active {
        width: 12px;
        height: 12px;
        margin: 0;
        background-color: #fff;
    }

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
}

    .carousel-caption .btn {
        text-shadow: none;
    }

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px;
    }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px;
    }

    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

#sa-gradient .btn-green {
    background-color: #118933;
    background-image: -webkit-linear-gradient(left, #118933, #118933 50%, #58b040);
    background-image: -o-linear-gradient(left, #118933, #118933 50%, #58b040);
    background-image: -webkit-gradient(linear, left top, right top, from(#118933), color-stop(50%, #118933), to(#58b040));
    background-image: linear-gradient(to right, #118933, #118933 50%, #58b040);
    background-repeat: no-repeat;
}

    #sa-gradient .btn-green:focus,
    #sa-gradient .btn-green.focus {
        background-color: #09a134;
        background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
        background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
        background-repeat: no-repeat;
    }

    #sa-gradient .btn-green:hover {
        background-color: #09a134;
        background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
        background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
        background-repeat: no-repeat;
    }

    #sa-gradient .btn-green:active,
    #sa-gradient .btn-green.active,
    .open > .dropdown-toggle#sa-gradient .btn-green {
        background-color: #09a134;
        background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
        background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
        background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
        background-repeat: no-repeat;
    }

        #sa-gradient .btn-green:active:hover,
        #sa-gradient .btn-green.active:hover,
        .open > .dropdown-toggle#sa-gradient .btn-green:hover,
        #sa-gradient .btn-green:active:focus,
        #sa-gradient .btn-green.active:focus,
        .open > .dropdown-toggle#sa-gradient .btn-green:focus,
        #sa-gradient .btn-green:active.focus,
        #sa-gradient .btn-green.active.focus,
        .open > .dropdown-toggle#sa-gradient .btn-green.focus {
            background-color: #09a134;
            background-image: -webkit-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
            background-image: -o-linear-gradient(left, #09a134, #09a134 50%, #55ca35);
            background-image: -webkit-gradient(linear, left top, right top, from(#09a134), color-stop(50%, #09a134), to(#55ca35));
            background-image: linear-gradient(to right, #09a134, #09a134 50%, #55ca35);
            background-repeat: no-repeat;
        }

#sa-gradient .btn-blue {
    background-color: #047dbb;
    background-image: -webkit-linear-gradient(left, #047dbb, #047dbb 50%, #1f9fd8);
    background-image: -o-linear-gradient(left, #047dbb, #047dbb 50%, #1f9fd8);
    background-image: -webkit-gradient(linear, left top, right top, from(#047dbb), color-stop(50%, #047dbb), to(#1f9fd8));
    background-image: linear-gradient(to right, #047dbb, #047dbb 50%, #1f9fd8);
    background-repeat: no-repeat;
}

    #sa-gradient .btn-blue:focus,
    #sa-gradient .btn-blue.focus {
        background-color: #0088ce;
        background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
        background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
        background-repeat: no-repeat;
    }

    #sa-gradient .btn-blue:hover {
        background-color: #0088ce;
        background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
        background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
        background-repeat: no-repeat;
    }

    #sa-gradient .btn-blue:active,
    #sa-gradient .btn-blue.active,
    .open > .dropdown-toggle#sa-gradient .btn-blue {
        background-color: #0088ce;
        background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
        background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
        background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
        background-repeat: no-repeat;
    }

        #sa-gradient .btn-blue:active:hover,
        #sa-gradient .btn-blue.active:hover,
        .open > .dropdown-toggle#sa-gradient .btn-blue:hover,
        #sa-gradient .btn-blue:active:focus,
        #sa-gradient .btn-blue.active:focus,
        .open > .dropdown-toggle#sa-gradient .btn-blue:focus,
        #sa-gradient .btn-blue:active.focus,
        #sa-gradient .btn-blue.active.focus,
        .open > .dropdown-toggle#sa-gradient .btn-blue.focus {
            background-color: #0088ce;
            background-image: -webkit-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
            background-image: -o-linear-gradient(left, #0088ce, #0088ce 50%, #18acef);
            background-image: -webkit-gradient(linear, left top, right top, from(#0088ce), color-stop(50%, #0088ce), to(#18acef));
            background-image: linear-gradient(to right, #0088ce, #0088ce 50%, #18acef);
            background-repeat: no-repeat;
        }

#sa-gradient .horizontal-yellow {
    background-color: #fcb52b;
    background-image: -webkit-linear-gradient(left, #fcb52b, #ffdc0c 50%, #f3ea25);
    background-image: -o-linear-gradient(left, #fcb52b, #ffdc0c 50%, #f3ea25);
    background-image: -webkit-gradient(linear, left top, right top, from(#fcb52b), color-stop(50%, #ffdc0c), to(#f3ea25));
    background-image: linear-gradient(to right, #fcb52b, #ffdc0c 50%, #f3ea25);
    background-repeat: no-repeat;
}
/* Container used for styling the custom select, the buttom class below adds the
 * bg gradient, corners, etc. */
.custom-select {
    position: relative;
    display: block;
}

    /* This is the native select, we're making everything but the text invisible so
 * we can see the button styles in the wrapper */
    .custom-select select {
        width: 100%;
        /* Prefixed box-sizing rules necessary for older browsers */
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: .6em .8em .5em .8em;
        margin: 0;
        /* Font size must be 16px to prevent iOS page zoom on focus */
        font-size: 16px;
        outline: none;
    }


    /* Custom arrow sits on top of the select - could be an image, SVG, icon font,
 * etc. or the arrow could just baked into the bg image on the select. */
    .custom-select::after {
        position: absolute;
        top: 50%;
        right: 1em;
        z-index: 2;
        display: none;
        /* These hacks make the select behind the arrow clickable in some browsers */
        pointer-events: none;
        content: " ";
    }

/* Firefox <= 34 has a false positive on @supports( -moz-appearance: none )
 * @supports ( mask-type: alpha ) is Firefox 35+
 */
@supports (-webkit-appearance: none) or (appearance: none) or ((-moz-appearance: none) and (mask-type: alpha)) {
    /* Show custom arrow */
    .custom-select::after {
        display: block;
    }
    /* Remove select styling */
    .custom-select select {
        -webkit-appearance: none;
        padding-right: 2em; /* Match-01 */
        /* inside @supports so that iOS <= 8 display the native arrow */
        background: none; /* Match-04 */
        /* inside @supports so that Android <= 4.3 display the native arrow */
        border: 1px solid transparent; /* Match-05 */
        -moz-appearance: none;
        appearance: none;
    }

        .custom-select select:focus {
            border-color: #aaa; /* Match-03 */
        }
}

.custom-select::after {
    width: 0;
    height: 0;
    margin-top: -3px;
    border-top: 7px solid #666;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
/*
 * select plugin
 *
 * Copyright (c) 2013 Filament Group, Inc.
 * Licensed under MIT
 */

/* --- Custom select --- */

.custom-select-js {
    position: relative;
    display: inline-block;
}

    .custom-select-js select {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
        filter: alpha(opacity=.1);
        opacity: .001;
    }

    .custom-select-js select,
    .custom-select-js .btn-select {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        /* the hidden select and the button should line up */
        padding: .2em .5em;
        font-weight: bold;
    }

    .custom-select-js .btn-select {
        position: relative;
        display: inline-block;
        padding: 0 1em 0 4px;
        font-family: "Source Sans Pro", sans-serif;
        font-size: inherit;
        font-style: normal;
        font-weight: 400;
        font-weight: inherit;
        color: #007dbc;
        border: 1px solid #ccc;
        border: 0;
        border-radius: .2em;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .custom-select-js .btn-select .triangle {
            position: absolute;
            top: .1em;
            right: 0;
        }

    .custom-select-js .label-text {
        display: inline-block;
        padding: 0 1em .3em 0;
    }


/*!
 *  Focal Point: Background image zooming and cropping
*/

.focal-point {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

    .focal-point div {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-repeat: no-repeat;
        background-position: 50% 50%; /* default focal point is center */
        -webkit-background-size: cover;
        background-size: cover; /* default - fill the space */
    }

.focal-point-left-top div {
    background-position: 20% 20%;
}

.focal-point-center-top div {
    background-position: 50% 20%;
}

.focal-point-right-top div {
    background-position: 80% 20%;
}

.focal-point-left-center div {
    background-position: 20% 50%;
}

.focal-point-center-center div {
    background-position: 50% 50%;
}

.focal-point-right-center div {
    background-position: 80% 50%;
}

.focal-point-center_right-center div {
    /* additional mid point */
    background-position: 80% 50%;
}

.focal-point-left-bottom div {
    background-position: 20% 80%;
}

.focal-point-center-bottom div {
    background-position: 50% 80%;
}

.focal-point-right-bottom div {
    background-position: 80% 80%;
}

.sa-logo {
    width: 100%;
    height: auto;
}

.sa-logo-footer {
    max-width: 173px;
}

@media (min-width: 768px) {
    .sa-logo {
        width: 173px;
        height: 36px;
    }
}

.sa-logo-banner {
    display: inline-block;
    padding-left: 0;
    margin: 0;
    margin-left: -5px;
    list-style: none;
}

    .sa-logo-banner > li {
        margin: 0 0 .6em;
        font-size: .9375em;
        line-height: 1.2;
    }

        .sa-logo-banner > li > ul {
            margin-top: .6em;
        }

            .sa-logo-banner > li > ul li {
                font-size: 1em;
            }

    .sa-logo-banner > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px;
    }

        .sa-logo-banner > li:not( :last-child ) {
            padding: 0 40px 0 0;
        }

    .sa-logo-banner img {
        width: auto;
        height: 50px;
        opacity: .7;
    }
/* Home page variation */
.sa-logo-banner-home > li {
    float: left;
    width: 50%;
    text-align: center;
}

.sa-logo-banner-home.sa-logo-banner-home > li {
    padding: 0 20px;
}

    .sa-logo-banner-home.sa-logo-banner-home > li:first-child {
        padding-left: 0;
    }

    .sa-logo-banner-home.sa-logo-banner-home > li:last-child {
        padding-right: 0;
    }

.sa-logo-banner-home img {
    height: 36px;
}

@media (min-width: 25em) and (max-width: 767px) {
    .sa-logo-banner-home img {
        height: 45px;
    }
}

@media (min-width: 768px) {
    .sa-logo-banner-home > li {
        float: none;
        width: auto;
    }
}

@media (min-width: 54.6875em) {
    /* 875px */
    .sa-logo-banner-home img {
        height: 43px;
    }
}

@media (min-width: 59.375em) {
    /* 950px */
    .sa-logo-banner-home img {
        height: 50px;
    }
}
/* Layout classes - for report pages */
.sa-layout-container {
    padding: 30px 15px;
}

.sa-layout-container-flush {
    margin-right: -15px;
    margin-left: -15px;
}

.sa-layout {
    max-width: 1800px;
    margin: 0 auto;
}

    .sa-layout:before,
    .sa-layout:after {
        display: table;
        content: " ";
    }

    .sa-layout:after {
        clear: both;
    }

    .sa-layout:before,
    .sa-layout:after {
        display: table;
        content: " ";
    }

    .sa-layout:after {
        clear: both;
    }

.sa-layoutpad {
    max-width: 1800px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 64em) {
    .sa-layoutpad {
        padding-left: 26px;
    }
}

@media (min-width: 64em) {
    .sa-layoutpad {
        padding-right: 26px;
    }
}

.sa-layout .row {
    margin-right: 0;
    margin-left: 0;
}

    .sa-layout .row [class^="col-"]:first-child {
        padding-left: 0;
    }

    .sa-layout .row [class^="col-"]:last-child {
        padding-right: 0;
    }
/* mixins */
/* end mixins */
/* Gradients */
.sa-container-bluegradient,
.sa-container-bluegreengradient,
.sa-container-greengradient {
    position: relative;
    padding-top: 4px;
}

    .sa-container-bluegradient:before,
    .sa-container-bluegreengradient:before,
    .sa-container-greengradient:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        content: "";
    }

    .sa-container-bluegradient:before {
        background-color: #77d5f3;
        background-image: -webkit-linear-gradient(left, #77d5f3 0%, #29abe2 100%);
        background-image: -o-linear-gradient(left, #77d5f3 0%, #29abe2 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(#77d5f3), to(#29abe2));
        background-image: linear-gradient(to right, #77d5f3 0%, #29abe2 100%);
        background-repeat: repeat-x;
    }

    .sa-container-bluegreengradient:before {
        background-color: #63ce1d;
        background-image: -webkit-linear-gradient(left, #63ce1d, #93eb3e 50%, #77d5f3);
        background-image: -o-linear-gradient(left, #63ce1d, #93eb3e 50%, #77d5f3);
        background-image: -webkit-gradient(linear, left top, right top, from(#63ce1d), color-stop(50%, #93eb3e), to(#77d5f3));
        background-image: linear-gradient(to right, #63ce1d, #93eb3e 50%, #77d5f3);
        background-repeat: no-repeat;
    }

    .sa-container-greengradient:before {
        background-color: #0aa41d;
        background-image: -webkit-linear-gradient(left, #0aa41d, #63ce1d 35%, #93eb3e);
        background-image: -o-linear-gradient(left, #0aa41d, #63ce1d 35%, #93eb3e);
        background-image: -webkit-gradient(linear, left top, right top, from(#0aa41d), color-stop(35%, #63ce1d), to(#93eb3e));
        background-image: linear-gradient(to right, #0aa41d, #63ce1d 35%, #93eb3e);
        background-repeat: no-repeat;
    }
/* Layout 2A: 2 column with a 300px fixed rail at @screen-md-min+ */
.sa-layout-2a-a {
    margin-bottom: 1em;
}
/* Page sections */
.sa-layout-section {
    padding: 24px 12px;
    clear: both;
    border-top: 1px solid #e6e7e8;
}

    .sa-layout-section:before,
    .sa-layout-section:after {
        display: table;
        content: " ";
    }

    .sa-layout-section:after {
        clear: both;
    }

    .sa-layout-section:before,
    .sa-layout-section:after {
        display: table;
        content: " ";
    }

    .sa-layout-section:after {
        clear: both;
    }

    .sa-layout-section:first-child:last-child {
        padding-top: 0;
        border-top: none;
    }

.sa-layout-section-hed {
    padding: 0 0 18px;
}

.sa-layout-section-title {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 600;
}

@media (min-width: 600px) {
    .sa-layout-container {
        padding: 40px 15px;
    }
}

@media (min-width: 992px) {
    .sa-layout-2a-a {
        float: left;
        /* 340px /16 */
        width: 100%;
        padding-right: 30px;
        /* 340px /16 */
        padding-left: 21.25em;
        margin-bottom: 0;
        margin-left: -21.25em;
    }

    .sa-layout-2a-b {
        float: right;
        width: 21.25em;
        padding: 1.25em;
        /* 340px /16 */
        background-color: #f6f6f6;
        /* 20px /16 */
    }
    /* Equalize height of columns */
    @supports (display: flex) {
        .sa-layout {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            width: 100%;
        }

        .sa-layout-2a-a,
        .sa-layout-2a-b {
            -webkit-box-align: stretch;
            -webkit-align-items: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
        }
    }
}

@media (min-width: 64em) {
    .sa-layout-container {
        padding-right: 26px;
        padding-left: 26px;
    }
}
/* Marketing page layout padding - for public facing pages (home, solutions, business, etc) */
.sa-mktglayout-padding-sm {
    padding: 2rem 1.625rem;
}

.sa-mktglayout-padding-md {
    padding: 2rem 2rem;
}

.sa-mktglayout-padding-lg {
    padding: 2.5rem 3.5rem;
}
/* Column additions */
.sa-col,
.sa-col-3,
.sa-col-4,
.sa-col-6 {
    position: relative;
    float: left;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.sa-col-3 {
    width: 25%;
}

.sa-col-4 {
    width: 33%;
}

.sa-col-6 {
    width: 50%;
}
/* Extra styles for docs, fixes broken layout in IE9 */
.bs-docs-footer,
.bs-docs-footer {
    clear: both;
}
/* Ad units */
.sa-adunit {
    /* 16px /16 */
    margin: 0 -15px 1em -15px;
    font-size: 1rem;
    background-color: #f6f6f7;
    /* left/right container padding */
}

@media (max-width: 992px) { /*add for remove grey background on mobile*/
    .sa-adunit {
        background: none;
    }
}

.sa-adunit:before,
.sa-adunit:after {
    display: table;
    content: " ";
}

.sa-adunit:after {
    clear: both;
}

.sa-adunit:before,
.sa-adunit:after {
    display: table;
    content: " ";
}

.sa-adunit:after {
    clear: both;
}

.sa-adunit-title {
    display: block;
    width: 25em;
    padding: 0 .5em;
    /* 300px /12 */
    margin: 0 auto;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75em;
    font-style: normal;
    font-weight: 300;
    /* 12px /16 */
    line-height: 3;
    color: #58595b;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Sample ad content: remove this class when adding real ad content */
.sa-adunit-sample {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    height: 250px;
    margin: 0 auto;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 2em;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    background-color: #e6e7e8;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/* End sample ad content */
.sa-adunit-content {
    margin-bottom: .5em;
}
/* Tied to layouts */
.sa-layout-2a-a .sa-adunit,
.sa-layout-2a-a .sa-layout-adunit {
    display: block;
}

.sa-layout-2a-b .sa-adunit,
.sa-layout-2a-b .sa-layout-adunit {
    display: none;
}

.sa-adunit-2col .sa-adunit-2col-b {
    display: none;
}

@media (min-width: 41.25em) and (max-width: 991px) {
    /* 660px /16 */
    .sa-adunit-2col {
        text-align: center;
    }

        .sa-adunit-2col .sa-adunit-title {
            width: 51.33333333333em;
            /* 616px /12 */
        }

        .sa-adunit-2col .sa-adunit-2col-a,
        .sa-adunit-2col .sa-adunit-2col-b {
            display: inline-block;
            width: 50%;
            max-width: 18.75em;
            /* 300px /16 */
        }

        .sa-adunit-2col .sa-adunit-2col-a {
            margin-right: .75em;
            /* 12px /16 */
        }

    .sa-adunit-2col-hide.sa-adunit-2col-hide,
    .sa-adunit-2col-hide.sa-adunit-2col-hide .sa-layout-adunit {
        display: none;
    }
}

@media (min-width: 992px) {
    /* Ad units */
    .sa-layout-2a-a .sa-adunit,
    .sa-layout-2a-a .sa-layout-adunit {
        display: none;
    }

    .sa-layout-2a-b .sa-adunit,
    .sa-layout-2a-b .sa-layout-adunit {
        display: block;
    }
}
/*@import "sa-breadcrumbs.less";*/
/*@import "sa-button-groups.less";*/
/* Collapse icons */
.icon-collapse-toggle {
    width: 8px;
    padding-left: 0;
    vertical-align: middle;
}

    .icon-collapse-toggle:before {
        font-family: icomoon;
        font-size: 1.2em;
        color: #bbbdbf;
        content: "\e966";
    }

.collapsed .icon-collapse-toggle:before {
    content: "\e968";
}

[data-toggle="collapse"]:hover .icon-collapse-toggle:before,
[data-toggle="collapse"]:focus .icon-collapse-toggle:before {
    color: #909090;
}
/* for animations that stand alone - some max width and centering */
.layersnap.sa-layout-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}
/* general layersnap integration style - mostly used in mkting mods. Set starting opacity on data-name g's */
.svg-supported .layersnap svg > g[data-name] {
    opacity: 0;
}

.layersnap {
    -webkit-background-size: 100% 100%;
    -webkit-background-size: contain;
    background-size: 100% 100%;
    background-size: contain;
}

.svg-supported .layersnap {
    background-image: none !important;
    /* be sure to cover inline bgs */
}
/* Note that animations are disabled globally in Gruntfile.js by commenting out `transition.js` */
.sa-comparison {
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.sa-comparison-pair {
    position: relative;
    clear: both;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

    .sa-comparison-pair:before,
    .sa-comparison-pair:after {
        display: table;
        content: " ";
    }

    .sa-comparison-pair:after {
        clear: both;
    }

    .sa-comparison-pair:before,
    .sa-comparison-pair:after {
        display: table;
        content: " ";
    }

    .sa-comparison-pair:after {
        clear: both;
    }

    .sa-comparison-pair:first-child {
        overflow: visible;
        border: 0;
    }

        .sa-comparison-pair:first-child .sa-comparison-old:after,
        .sa-comparison-pair:first-child .sa-comparison-new:after {
            position: absolute;
            right: 0;
            bottom: -2px;
            left: 0;
            display: block;
            width: 100%;
            height: 4px;
            pointer-events: none;
            content: "";
            background-color: #a6a7aa;
            background-image: -webkit-linear-gradient(left, #a6a7aa 0%, #777677 100%);
            background-image: -o-linear-gradient(left, #a6a7aa 0%, #777677 100%);
            background-image: -webkit-gradient(linear, left top, right top, from(#a6a7aa), to(#777677));
            background-image: linear-gradient(to right, #a6a7aa 0%, #777677 100%);
            background-repeat: repeat-x;
        }

@media (min-width: 600px) {
    .sa-comparison-pair:first-child .sa-comparison-old:after,
    .sa-comparison-pair:first-child .sa-comparison-new:after {
        bottom: -4px;
        height: 8px;
    }
}

.sa-comparison-pair:first-child .sa-comparison-old,
.sa-comparison-pair:first-child .sa-comparison-new {
    position: relative;
}

@media (min-width: 26.875em) {
    .sa-comparison-pair:first-child .sa-comparison-new {
        display: block;
        float: none;
        width: auto;
        margin-left: 215px;
        clear: none;
    }
}

.sa-comparison-pair:first-child .sa-comparison-old {
    z-index: 10;
}

.sa-comparison-pair:first-child .sa-comparison-new:after {
    background-color: #9bca3e;
    background-image: -webkit-linear-gradient(left, #9bca3e 0%, #5eba54 25%, #28aae1 50%, #7bd1ee 100%);
    background-image: -o-linear-gradient(left, #9bca3e 0%, #5eba54 25%, #28aae1 50%, #7bd1ee 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#9bca3e), color-stop(25%, #5eba54), color-stop(50%, #28aae1), to(#7bd1ee));
    background-image: linear-gradient(to right, #9bca3e 0%, #5eba54 25%, #28aae1 50%, #7bd1ee 100%);
    background-repeat: no-repeat;
    border-radius: 2px;
}

@media (min-width: 600px) {
    .sa-comparison-pair:first-child .sa-comparison-new:after {
        border-radius: 4px;
    }
}

.sa-comparison-pair:first-child .sa-comparison-new:before {
    position: absolute;
    right: 0;
    bottom: -13px;
    z-index: 10;
    width: 26px;
    width: 100%;
    height: 26px;
    margin-right: -5px;
    pointer-events: none;
    content: "";
    background: url(https://www.salary.com/expertsource/Styles/Salary/img/bg-comparison-arrow.svg) right center no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
}

@media (min-width: 600px) {
    .sa-comparison-pair:first-child .sa-comparison-new:before {
        bottom: -22px;
        width: 44px;
        height: 44px;
        margin-right: -9px;
    }
}

.sa-comparison button:before {
    position: absolute;
    top: 1.5rem;
    right: 0;
    width: 18px;
    margin-top: -9px;
    font-family: icomoon;
    font-size: 1.142857143em;
    color: #767676;
    /* 16px */
    content: "\e966";
}

@media (min-width: 600px) {
    .sa-comparison button:before {
        display: none;
    }
}

.sa-comparison button[aria-expanded="true"]:before {
    content: "\e969";
}

.sa-comparison .collapse {
    padding: .8rem 1rem;
    clear: both;
}

@media (min-width: 600px) {
    .sa-comparison .collapse {
        display: block;
        float: left;
        padding-top: 0;
        padding-right: 1.5rem;
        padding-left: 1.5rem;
        margin-left: 215px;
        clear: none;
    }
}

.sa-comparison-new {
    float: left;
    width: 60%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    vertical-align: top;
}

@media (min-width: 600px) {
    .sa-comparison-new {
        display: block;
        float: none;
        width: auto;
        margin-left: 215px;
        clear: none;
    }
}

@media (min-width: 600px) {
    .sa-comparison-new,
    .sa-comparison .collapse {
        padding-right: 130px;
    }
}

.sa-comparison-old {
    position: relative;
    float: left;
    width: 40%;
    max-width: 200px;
    vertical-align: top;
}

@media (min-width: 600px) {
    .sa-comparison-old {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}

.sa-comparison-hed {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 300;
    text-transform: uppercase;
}

.sa-comparison .sa-infoblock-text-hed button {
    -webkit-appearance: none;
    padding: 0;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    background: transparent;
    border: none;
    border: 0;
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -moz-appearance: none;
    appearance: none;
}

.sa-comparison-icon {
    display: none;
    color: #919396;
}

@media (min-width: 600px) {
    .sa-comparison-icon {
        position: absolute;
        top: 50%;
        right: 3rem;
        display: block;
        margin-top: -22px;
        font-size: 45px;
    }

        .sa-comparison-icon.icon-structures {
            margin-top: -25px;
            font-size: 50px;
        }
}

.sa-comparison-hed strong {
    display: block;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

@media (min-width: 600px) {
    .sa-comparison-hed strong {
        display: inline-block;
    }
}

.sa-comparison-old-text,
.sa-comparison-new,
.sa-comparison-old .sa-comparison-hed {
    padding: 1rem;
}

@media (min-width: 600px) {
    .sa-comparison-old-text,
    .sa-comparison-new,
    .sa-comparison-old .sa-comparison-hed {
        padding: 1.5rem 1.5rem;
    }
}

.sa-comparison-old-text {
    min-height: 5.6em;
}

.sa-comparison .sa-infoblock-text-hed,
.sa-comparison .sa-infoblock-text,
.sa-comparison .sa-comparison-hed {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1em;
}

@media (min-width: 480px) {
    .sa-comparison .sa-infoblock-text-hed,
    .sa-comparison .sa-infoblock-text {
        font-size: 1.125em;
    }
}

@media (min-width: 600px) {
    .sa-comparison-new.sa-infoblock-text-hed {
        padding-bottom: .2em;
    }
}

@media (min-width: 992px) {
    .sa-comparison .sa-infoblock-text-hed {
        font-size: 1.5625em;
    }
}

.sa-comparison .sa-infoblock-text {
    clear: left;
}

@media (min-width: 600px) {
    .sa-comparison .sa-infoblock-text {
        padding-bottom: 1rem;
    }
}

@media (min-width: 992px) {
    .sa-comparison .sa-infoblock-text {
        font-size: 1.25em;
    }
}

.sa-comparison-old-text {
    margin: 0;
    color: #767676;
    background: #f8f8f9;
}
/*@import "sa-contentheader.less";*/
.caret {
    width: 10px;
    height: 95%;
    border: 0;
}

.caret-color {
    color: #bbbdbf;
}

.caret-hover {
    color: #909090;
}

.caret:before {
    font-family: icomoon;
    font-size: 1.153846154em;
    /* 15px /13 */
    color: #bbbdbf;
    content: "\e966";
}

.dropdown:hover .caret:before,
.dropdown:focus .caret:before {
    color: #909090;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border: 0;
}

    .dropup .caret:before,
    .navbar-fixed-bottom .dropdown .caret:before {
        content: "\e969";
    }

.dropdown-menu {
    padding: 8px;
    font-size: .9375em;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

    .dropdown-menu > li > a {
        padding: 7px 10px;
    }

        .dropdown-menu > li > a > [class^="icon-"]:first-child {
            margin-right: 5px;
        }

.dropdown-header {
    padding: 7px 10px;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #58595b;
    text-transform: uppercase;
}

li + .dropdown-header {
    padding-top: 12px;
}

.sa-dropdown-subheader,
.sa-dropdown-desc {
    display: block;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.sa-dropdown-desc {
    text-transform: none;
    white-space: normal;
}

.sa-dropdown-grouped > li > a {
    white-space: normal;
}

@media (min-width: 768px) {
    .sa-dropdown-grouped {
        width: 120%;
        max-width: 500px;
        padding: 10px 12px 15px;
    }

        .sa-dropdown-grouped > li > a {
            white-space: normal;
        }

        .sa-dropdown-grouped > li:not( .dropdown-header ) {
            float: right;
            width: 100%;
            padding-left: 110px;
            clear: right;
        }

        .sa-dropdown-grouped .dropdown-header {
            float: left;
            width: 100px;
            margin-right: -100px;
            white-space: normal;
        }

        .sa-dropdown-grouped li + .dropdown-header {
            padding: 7px 10px;
            clear: right;
        }
}
/*@import "sa-input-groups.less";*/
/*@import "sa-labels.less";*/
/* simple search input with icon */
.sa-searchinput {
    position: relative;
}

    .sa-searchinput [type=search] {
        width: 100%;
        height: 36px;
        padding: 0 0 0 30px;
        font-weight: 600;
        line-height: 34px;
        color: #212221;
        border: 1px solid #e6e7e8;
        border-radius: 1.5em;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .sa-searchinput [type=search]::-moz-placeholder {
            color: #737582;
            opacity: 1;
        }

        .sa-searchinput [type=search]:-ms-input-placeholder {
            color: #737582;
        }

        .sa-searchinput [type=search]::-webkit-input-placeholder {
            color: #737582;
        }

@supports ( box-shadow: none ) {
    .sa-searchinput [type=search]:focus {
        border-color: #77d5f3;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 4px rgba(119, 213, 243, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 4px rgba(119, 213, 243, .6);
    }
}

.sa-searchinput [type=search]::-moz-placeholder {
    font-weight: 400;
}

.sa-searchinput [type=search]:-ms-input-placeholder {
    font-weight: 400;
}

.sa-searchinput [type=search]::-webkit-input-placeholder {
    font-weight: 400;
}

.sa-searchinput .icon-search {
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 9;
    margin-top: -.5em;
    color: #767676;
}

.sa-searchinput-select {
    min-width: 18.125em;
    /* 290px /16 */
    /* Override */
}

    .sa-searchinput-select.sa-searchinput-select {
        display: block;
    }

    .sa-searchinput-select [type=search] {
        padding-right: 40%;
    }

    .sa-searchinput-select .custom-select {
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        /* arrow color */
    }

        .sa-searchinput-select .custom-select:before {
            position: absolute;
            top: 50%;
            left: 1px;
            height: 1em;
            margin-top: -.5em;
            content: "";
            border-left: 1px solid #ddd;
        }

        .sa-searchinput-select .custom-select:after {
            border-top-color: #767676;
        }

        .sa-searchinput-select .custom-select select {
            height: 36px;
            padding-top: 0;
            padding-bottom: 0;
            overflow: hidden;
            color: #767676;
            text-overflow: ellipsis;
            white-space: nowrap;
            border-radius: 0 1.5em 1.5em 0;
        }

@supports ( box-shadow: none ) {
    .sa-searchinput-select .custom-select select:focus {
        border-color: #77d5f3;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 4px rgba(119, 213, 243, .6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 0 4px rgba(119, 213, 243, .6);
    }
}

.sa-searchinput-gray [type=search] {
    background-color: #eee;
    border-color: #eee;
}
/* New global header variant */
.sa-searchinput-collapse {
    position: relative;
    min-height: 2.25rem;
    padding-right: 0;
    /* 36px /16 */
    padding-left: 0;
    margin: 0;
}

.sa-searchinput-collapse-toggle {
    display: none;
}

.sa-searchinput-collapse .sa-searchinput-select {
    min-width: auto;
}

    .sa-searchinput-collapse .sa-searchinput-select .custom-select select {
        font-size: .75rem;
        /* 12px /16 */
        font-weight: 600;
        color: #212221;
    }

    .sa-searchinput-collapse .sa-searchinput-select .custom-select:before {
        display: none;
    }

    .sa-searchinput-collapse .sa-searchinput-select .custom-select:after {
        border-top-color: #babcbe;
    }

@media (max-width: 767px) {
    .sa-searchinput-collapse .sa-searchinput-select [type=search] {
        background-color: #eee;
        border-color: #eee;
    }
}

@media (min-width: 768px) {
    .sa-searchinput-collapse {
        padding-right: 30px;
    }

    .sa-searchinput-collapse-toggle {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
    }

        .sa-searchinput-collapse-toggle .icon-search,
        .sa-searchinput-collapse-toggle .icon-remove {
            /* 36px /20 */
            font-size: 1.25rem;
            line-height: 1.8;
            /* 20px /16 */
        }

        .sa-searchinput-collapse-toggle .icon-search {
            display: block;
        }

        .sa-searchinput-collapse-toggle .icon-remove {
            display: none;
        }

        .sa-searchinput-collapse-toggle[aria-expanded="true"] .icon-search {
            display: none;
        }

        .sa-searchinput-collapse-toggle[aria-expanded="true"] .icon-remove {
            display: block;
        }

    .sa-searchinput-collapse .sa-searchinput-select [type=search] {
        padding-right: 23%;
    }

    .sa-searchinput-collapse .sa-searchinput-select .custom-select {
        width: 23%;
    }
}
/*@import "sa-navbar.less";*/
.sa-navbar-global {
    max-width: 1800px;
    margin: 0 auto;
}

    .sa-navbar-global:before,
    .sa-navbar-global:after {
        display: table;
        content: " ";
    }

    .sa-navbar-global:after {
        clear: both;
    }

    .sa-navbar-global:before,
    .sa-navbar-global:after {
        display: table;
        content: " ";
    }

    .sa-navbar-global:after {
        clear: both;
    }

    .sa-navbar-global > .navbar-header {
        padding: 15px 15px 10px;
    }

    .sa-navbar-global .navbar-toggle,
    .sa-navbar-global .navbar-brand {
        display: inline-block;
        float: none;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .sa-navbar-global .navbar-toggle {
        padding-right: 15px;
        vertical-align: middle;
    }

        .sa-navbar-global .navbar-toggle [class^="icon-"] {
            font-size: 30px;
            color: #caeefa;
        }

    .sa-navbar-global .navbar-brand {
        position: absolute;
        top: 18px;
        left: 50%;
        width: 130px;
        margin-left: -65px;
    }

.sa-navbar-more {
    margin-top: 2em;
}

    .sa-navbar-more p {
        margin-bottom: 4px;
    }

    .sa-navbar-more .sa-learnmorebtn {
        display: block;
        margin-top: 1em;
    }

.sa-navbar-more-ca {
    height: 18px;
    margin-top: -2px;
    margin-left: .5em;
}

.sa-navbar-prod {
    display: none;
}

.sa-navbar-subheader {
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.0625em;
    font-style: normal;
    font-weight: 300;
}

    .sa-navbar-subheader img {
        display: block;
        width: 130px;
        margin: 0 0 6px;
    }

.sa-navbar-global-menu {
    background-color: #fff;
}

    .sa-navbar-global-menu .navbar-collapse {
        position: absolute;
        top: 5px;
        z-index: 99999;
        width: 100%;
        max-width: 320px;
        min-height: 500px;
        padding: 15px;
        overflow: visible;
        background-color: #fff;
        -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .3);
        box-shadow: 0 1px 6px rgba(0, 0, 0, .3);
    }

        .sa-navbar-global-menu .navbar-collapse .btn-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5em;
            color: #a1a1a1;
        }

    .sa-navbar-global-menu .navbar-form {
        padding: 15px 0;
        margin: 0;
    }

    .sa-navbar-global-menu .navbar-nav {
        padding: 0;
        margin: 0;
        border-top: 1px solid #e6e7e8;
    }

        .sa-navbar-global-menu .navbar-nav > li {
            border-bottom: 1px solid #e6e7e8;
        }

            .sa-navbar-global-menu .navbar-nav > li > a {
                display: block;
                padding: 10px 5px;
                white-space: nowrap;
            }

                .sa-navbar-global-menu .navbar-nav > li > a .caret {
                    margin-right: 5px;
                }

                    .sa-navbar-global-menu .navbar-nav > li > a .caret:before {
                        color: #007dbc;
                    }

                .sa-navbar-global-menu .navbar-nav > li > a [class^="icon-"] {
                    margin: 0 6px 0 0;
                }

                    .sa-navbar-global-menu .navbar-nav > li > a [class^="icon-"]:before {
                        color: #58595b;
                    }
/* .sa-navbar-global-menu */
.sa-navbar-global-client {
    padding-left: 10px;
    margin-left: 8px;
    font-size: .875em;
    color: #77d5f3;
    border-left: 1px solid currentColor;
}

@media (max-width: 479px) {
    .sa-navbar-global .navbar-brand img {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .sa-navbar-global-client {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .sa-navbar-global .navbar-nav > li > .dropdown-menu {
        position: static;
        float: none;
        padding: 5px 20px;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

@media (min-width: 768px) {
    .sa-navbar-global > .navbar-header {
        display: block;
        float: left;
        padding: 15px;
        background-image: none;
    }

    .sa-navbar-global .navbar-toggle {
        display: none;
    }

    .sa-navbar-global .navbar-brand {
        position: static;
        width: auto;
        margin: 0;
        vertical-align: middle;
    }

    .sa-navbar-more {
        display: none;
    }

    .sa-navbar-prod {
        position: relative;
        display: block;
        float: right;
        height: 50px;
        padding: 15.5px 15px;
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
        color: #000;
    }

        .sa-navbar-prod .icon-triangle-right {
            color: #fff;
        }

        .sa-navbar-prod:before {
            position: absolute;
            top: 50%;
            left: 1px;
            height: 1em;
            margin-top: -.5em;
            content: "";
            border-left: 1px solid #007fbd;
        }

    .sa-navbar-global-hover {
        background-color: #29abe2;
        opacity: 1;
    }

        .sa-navbar-global-hover .caret:before {
            color: #075484;
        }

    .sa-navbar-global-menu {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .sa-navbar-global-menu .navbar-form {
            float: right;
            padding: 0;
            margin: 15px;
        }

        .sa-navbar-global-menu .sa-searchinput [type=search] {
            background-color: #fff;
            border-color: #fff;
        }

        .sa-navbar-global-menu > .navbar-collapse {
            position: static;
            max-width: none;
            min-height: 0;
            padding: 0;
            overflow: visible;
            background-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .sa-navbar-global-menu > .navbar-collapse .sa-navbar-subheader,
            .sa-navbar-global-menu > .navbar-collapse .btn-modal-close {
                display: none;
            }

        .sa-navbar-global-menu .navbar-nav {
            clear: both;
            border: 0;
        }

            .sa-navbar-global-menu .navbar-nav > li {
                border: 0;
            }

                .sa-navbar-global-menu .navbar-nav > li > a {
                    height: 50px;
                    padding: 15.5px 15px;
                    font-family: "Source Sans Pro", sans-serif;
                    font-style: normal;
                    font-weight: 600;
                    color: #fff;
                    opacity: .6;
                }

                    .sa-navbar-global-menu .navbar-nav > li > a .caret:before {
                        color: #77d5f3;
                    }

                    .sa-navbar-global-menu .navbar-nav > li > a:hover {
                        background-color: #29abe2;
                        opacity: 1;
                    }

                        .sa-navbar-global-menu .navbar-nav > li > a:hover .caret:before {
                            color: #075484;
                        }

                    .sa-navbar-global-menu .navbar-nav > li > a:focus {
                        background-color: transparent;
                    }

                    .sa-navbar-global-menu .navbar-nav > li > a [class^="icon-"] {
                        display: none;
                    }

                .sa-navbar-global-menu .navbar-nav > li:hover > .dropdown-menu {
                    display: block;
                }

                .sa-navbar-global-menu .navbar-nav > li.active {
                    position: static;
                }

                    .sa-navbar-global-menu .navbar-nav > li.active > a:hover {
                        background-color: transparent;
                    }

                        .sa-navbar-global-menu .navbar-nav > li.active > a:hover .caret:before {
                            color: #77d5f3;
                        }

                    .sa-navbar-global-menu .navbar-nav > li.active > a {
                        position: relative;
                        opacity: 1;
                    }

                        .sa-navbar-global-menu .navbar-nav > li.active > a:after {
                            position: absolute;
                            bottom: -9px;
                            left: 50%;
                            display: block;
                            width: 16px;
                            height: 16px;
                            margin-left: -8px;
                            content: " ";
                            background-color: #fff;
                            -webkit-transform: rotate(45deg);
                            -ms-transform: rotate(45deg);
                            -o-transform: rotate(45deg);
                            transform: rotate(45deg);
                        }
    /* end menu */
}
/* end @screen-sm-min */
@media (min-width: 992px) {
    .sa-navbar-global > .navbar-header {
        float: left;
        padding: 20px 0 10px 26px;
    }

    .sa-navbar-global .sa-navbar-global-menu {
        float: none;
        padding-top: 5px;
    }

        .sa-navbar-global .sa-navbar-global-menu > .collapse {
            float: none;
        }

        .sa-navbar-global .sa-navbar-global-menu .navbar-nav {
            float: left;
            clear: none;
        }

            .sa-navbar-global .sa-navbar-global-menu .navbar-nav > li > a {
                height: 62px;
                padding: 21.5px 15px;
            }

        .sa-navbar-global .sa-navbar-global-menu .navbar-form {
            float: left;
            width: 29%;
            margin-top: 13px;
            margin-bottom: 13px;
        }

    .sa-navbar-global .sa-navbar-prod {
        height: 62px;
        padding: 21.5px 26px 21.5px 15px;
    }
}

@media (min-width: 1200px) {
    .sa-navbar-global > .navbar-header {
        margin-right: 2em;
    }

    .sa-navbar-global .sa-navbar-global-menu .navbar-nav {
        margin-left: 1em;
    }
}

@media (min-width: 112.5em) {
    /* 1800px /16 */
    .sa-navbar-global {
        max-width: 1852px;
    }
}
/* Code shared between the global navbar and the global header components */
.sa-navbar-global-bg {
    background-color: #075484;
    background-image: -webkit-linear-gradient(left, #075484, #007dbc 72%, #60cef1);
    background-image: -o-linear-gradient(left, #075484, #007dbc 72%, #60cef1);
    background-image: -webkit-gradient(linear, left top, right top, from(#075484), color-stop(72%, #007dbc), to(#60cef1));
    background-image: linear-gradient(to right, #075484, #007dbc 72%, #60cef1);
    background-repeat: no-repeat;
}

.sa-global-gradient-bar {
    position: relative;
}

    .sa-global-gradient-bar:before {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 5px;
        content: " ";
        background-color: #6fbe44;
        background-image: -webkit-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -o-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -webkit-gradient(linear, left top, right top, from(#6fbe44), color-stop(40%, #29abe2), to(#caeefa));
        background-image: linear-gradient(to right, #6fbe44, #29abe2 40%, #caeefa);
        background-repeat: no-repeat;
    }

.sa-global-gradient {
    position: relative;
    background-color: #075484;
    background-image: -webkit-linear-gradient(left, #075484, #007dbc 72%, #60cef1);
    background-image: -o-linear-gradient(left, #075484, #007dbc 72%, #60cef1);
    background-image: -webkit-gradient(linear, left top, right top, from(#075484), color-stop(72%, #007dbc), to(#60cef1));
    background-image: linear-gradient(to right, #075484, #007dbc 72%, #60cef1);
    background-repeat: no-repeat;
}

    .sa-global-gradient:before {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 5px;
        content: " ";
        background-color: #6fbe44;
        background-image: -webkit-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -o-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -webkit-gradient(linear, left top, right top, from(#6fbe44), color-stop(40%, #29abe2), to(#caeefa));
        background-image: linear-gradient(to right, #6fbe44, #29abe2 40%, #caeefa);
        background-repeat: no-repeat;
    }

.sa-header-global {
    max-width: 1800px;
    margin: 0 auto;
}

    .sa-header-global:before,
    .sa-header-global:after {
        display: table;
        content: " ";
    }

    .sa-header-global:after {
        clear: both;
    }

    .sa-header-global:before,
    .sa-header-global:after {
        display: table;
        content: " ";
    }

    .sa-header-global:after {
        clear: both;
    }

    .sa-header-global > .navbar-header {
        padding: 15px 15px 10px;
    }

    .sa-header-global .navbar-toggle,
    .sa-header-global .navbar-brand {
        display: inline-block;
        float: none;
        height: auto;
        padding: 0;
        margin: 0;
    }

    .sa-header-global .navbar-toggle {
        padding-right: 15px;
        vertical-align: middle;
    }

        .sa-header-global .navbar-toggle [class^="icon-"] {
            font-size: 30px;
            color: #caeefa;
        }

    .sa-header-global .navbar-brand {
        position: absolute;
        top: 18px;
        left: 50%;
        width: 130px;
        margin-left: -65px;
    }

@media (max-width: 767px) {
    .sa-header-global .sa-navbar-subheader {
        margin-bottom: 1.5em;
    }
}

.sa-header-global-menu {
    background-color: #fff;
}

    .sa-header-global-menu .navbar-collapse {
        position: absolute;
        top: 5px;
        z-index: 99999;
        width: 100%;
        max-width: 320px;
        min-height: 100vh;
        padding: 0;
        overflow: hidden;
        background-color: #fff;
        -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, .3);
        box-shadow: 0 1px 6px rgba(0, 0, 0, .3);
    }

        .sa-header-global-menu .navbar-collapse .btn-modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5em;
            color: #a1a1a1;
            border: 0; /*add for fixing bug 19832 [Mobile only] header drop down has a double close button*/
        }
/* .sa-header-global-menu */
.sa-header-global-nav {
    padding: 0;
    margin: 1em 0 0 0;
}

    .sa-header-global-nav > li:before,
    .sa-header-global-nav > li:after {
        display: table;
        content: " ";
    }

    .sa-header-global-nav > li:after {
        clear: both;
    }

    .sa-header-global-nav > li:before,
    .sa-header-global-nav > li:after {
        display: table;
        content: " ";
    }

    .sa-header-global-nav > li:after {
        clear: both;
    }

    .sa-header-global-nav > li {
        border-bottom: 1px solid #e6e7e8;
    }

        .sa-header-global-nav > li > a {
            display: block;
            padding: 11px 5px;
            font-family: "Source Sans Pro", sans-serif;
            font-size: 1.125rem;
            font-style: normal;
            font-weight: 600;
            color: #212221;
            white-space: nowrap;
            /* 18px /16 */
        }

            .sa-header-global-nav > li > a:first-child:nth-last-child(2) {
                float: left;
                width: 83%;
            }

                .sa-header-global-nav > li > a:first-child:nth-last-child(2) + a {
                    float: left;
                    width: 17%;
                    padding-top: 10px;
                    padding-bottom: 10px;
                    text-align: center;
                    border-left: 1px dashed #e6e7e8;
                }

            .sa-header-global-nav > li > a [class^="icon-"] {
                margin: 0;
                font-size: 1.125rem;
                color: #29abe2;
                /* 18px /16 */
            }
/* .sa-header-global-nav */
.sa-header-global-nav-btns .dropdown-menu {
    margin-top: .25rem;
    /* 4px /16 */
}

.sa-header-global-subnav {
    padding: .9375rem 0 0;
    margin-left: 100%;
    background-color: #fff;
    border-top: 1px solid #e6e7e8;
    -webkit-transition: margin-left .2s;
    -o-transition: margin-left .2s;
    transition: margin-left .2s;
    /* 15px /16 */
}

    .sa-header-global-subnav.in {
        margin-left: 0;
    }

.sa-header-global-subnav-backlink {
    display: inline-block;
}

.sa-header-global-subnav-backlink-arrow {
    position: relative;
    bottom: -1px;
    margin-right: 3px;
    color: #29abe2;
    vertical-align: top;
}

.sa-header-global-subnav-backlink strong {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.sa-header-global-subnav-backlink:first-child {
    font-size: .875rem;
    /* 14px /16 */
}

    .sa-header-global-subnav-backlink:first-child ~ .sa-header-global-subnav-backlink {
        display: block;
        padding: 15px;
        margin-top: 1.5em;
        margin-right: -15px;
        margin-left: -15px;
        background-color: #f8f8f9;
    }

.sa-header-global-search {
    padding: 0;
    margin: 0;
}

    .sa-header-global-search .sa-searchinput-collapse-toggle .icon-search,
    .sa-header-global-search .sa-searchinput-collapse-toggle .icon-remove {
        color: #fff;
    }

.sa-header-global-login {
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375rem;
    font-style: normal;
    font-weight: 600;
    /* 15px /16 */
}

@media (max-width: 479px) {
    .sa-header-global .navbar-brand img {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .sa-header-global .navbar-collapse {
        background-color: #f8f8f9;
    }

    .sa-header-global-menu-content {
        padding: 15px 15px 0 15px;
        background-color: #fff;
    }

    .sa-header-global-navcontainer {
        overflow: hidden;
    }
        /* make room for focus style */
        .sa-header-global-navcontainer > .sa-header-global-search {
            padding-right: 4px;
            padding-left: 4px;
        }

    .sa-header-global-subnavshown .sa-header-global-search,
    .sa-header-global-subnavshown .sa-header-global-nav,
    .sa-header-global-subnavshown .sa-header-global-nav-btns {
        display: none;
    }

    .sa-header-global-nav-btns {
        padding: 0;
        min-height: 400px;
    }

    .sa-header-global-login {
        float: left;
        border-color: #d0d2d3;
    }

        .sa-header-global-login:hover {
            border-color: #212221;
        }

        .sa-header-global-login.sa-header-global-login {
            margin: 0;
        }

    .sa-header-global-login-dropdown {
        margin: 2em 0;
    }

        .sa-header-global-login-dropdown:before,
        .sa-header-global-login-dropdown:after {
            display: table;
            content: " ";
        }

        .sa-header-global-login-dropdown:after {
            clear: both;
        }

        .sa-header-global-login-dropdown:before,
        .sa-header-global-login-dropdown:after {
            display: table;
            content: " ";
        }

        .sa-header-global-login-dropdown:after {
            clear: both;
        }

    .sa-header-global-nav-btns-desc {
        padding: .9375rem;
        margin-right: -15px;
        margin-left: -15px;
        margin-bottom: 20px;
        clear: left;
        /* 15px /16 */
        background-color: #f8f8f9;
    }

    .sa-header-global-nav-btns-desc-hed {
        display: block;
        margin: .9375rem 0;
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 300;
        /* 15px /16 */
    }

    .sa-header-global .sa-searchinput-collapse .collapse {
        display: block;
    }

    .sa-header-global-nav .caret {
        display: none;
    }

    .sa-header-global-nav > li:last-child {
        border-bottom: none;
    }

    .sa-header-global-nav > li > .dropdown-menu {
        position: static;
        float: none;
        padding: 5px 20px;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    .sa-header-global-subnav-title {
        /* 4px /29 */
        padding-bottom: .6896551724138em;
        /* 29px /16 */
        margin-top: .1379310344828em;
        font-size: 1.8125rem;
        /* 20px /29 */
        border-bottom: 1px solid #e6e7e8;
    }
}

@media (min-width: 768px) {
    .sa-header-global .sa-logo {
        width: 130px;
        height: 27px;
    }

    .sa-header-global > .navbar-header {
        display: block;
        float: left;
        padding: 18px 15px 15px;
        background-image: none;
    }

    .sa-header-global .navbar-toggle {
        display: none;
    }

    .sa-header-global .navbar-brand {
        position: static;
        width: auto;
        margin: 0;
        vertical-align: middle;
    }

    .sa-header-global .sa-searchinput-collapse {
        z-index: 3;
    }

    .sa-navbar-more {
        display: none;
    }

    .sa-header-global-search {
        position: absolute;
        top: 0;
        right: 0;
        padding: 0;
        margin: 15px;
    }

    .sa-searchinput-collapse .sa-searchinput-select {
        width: 72vw;
        min-width: 34.5625rem;
        /* 553px /16 */
    }

    .sa-header-global-menu {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .sa-header-global-menu .sa-searchinput [type=search] {
            background-color: #fff;
            border-color: #fff;
        }

        .sa-header-global-menu > .navbar-collapse {
            position: static;
            max-width: none;
            min-height: 0;
            padding: 0;
            overflow: visible;
            background-color: transparent;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

            .sa-header-global-menu > .navbar-collapse .sa-navbar-subheader,
            .sa-header-global-menu > .navbar-collapse .btn-modal-close {
                display: none;
            }

    .sa-header-global-nav .caret {
        display: inline-block;
        width: 14px;
        height: auto;
    }

        .sa-header-global-nav .caret:before {
            color: #29abe2;
            opacity: .7;
        }

    .sa-header-global-nav-btns .dropdown-menu {
        right: 0;
        left: auto;
    }

    .sa-header-global-login-dropdown {
        display: inline-block;
    }

    .sa-header-global-nav-btns .sa-btn-cta {
        margin-top: 0;
    }

        .sa-header-global-nav-btns .sa-btn-cta > a > span {
            display: none;
        }

    .sa-header-global-nav-btns .sa-header-global-login {
        margin-left: 1em;
    }

    .sa-header-global-nav-btns .btn {
        padding-right: 1em;
        padding-left: 1em;
        font-size: .875rem;
        /* 14px /16 */
    }

    .sa-header-global-nav-btns .btn,
    .sa-header-global-nav-btns .sa-btn-cta {
        margin-left: .5em;
    }

        .sa-header-global-nav-btns .sa-btn-cta .btn {
            margin-left: 0;
        }

    .sa-header-global-nav-btns-desc {
        display: inline-block;
    }

    .sa-header-global-nav-btns-desc-hed {
        display: none;
    }

    .sa-header-global-login {
        color: #fff;
        border-color: rgba(255, 255, 255, .6);
    }

        .sa-header-global-login:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, .85);
        }

    .sa-header-global-nav > li {
        position: relative;
        border: 0;
    }

        .sa-header-global-nav > li > a {
            height: 50px;
            padding: 15.5px 6px 15.5px 0;
            font-family: "Source Sans Pro", sans-serif;
            font-size: .875em;
            font-style: normal;
            font-weight: 600;
            color: #fff;
            color: rgba(255, 255, 255, .7);
            /* 14px /16 */
        }

            .sa-header-global-nav > li > a:first-child:nth-last-child(2) {
                width: auto;
            }

                .sa-header-global-nav > li > a:first-child:nth-last-child(2) + a {
                    display: none;
                }

            .sa-header-global-nav > li > a [class^="icon-"] {
                display: none;
            }

        .sa-header-global-nav > li:hover > .dropdown-menu {
            display: block;
        }

        .sa-header-global-nav > li > a:hover,
        .sa-header-global-nav > li > a:focus {
            background-color: transparent;
        }

        .sa-header-global-nav > li.active > a {
            position: relative;
            color: rgba(255, 255, 255, .9);
            opacity: 1;
        }

            .sa-header-global-nav > li.active > a:after {
                position: absolute;
                bottom: -14px;
                left: 50%;
                z-index: 11;
                display: block;
                width: 16px;
                height: 16px;
                margin-left: -16px;
                content: " ";
                background-color: #fff;
                -webkit-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }

    .sa-header-global-nav-current {
        color: #fff;
        border-bottom: 2px solid #ffdc0c;
    }

    .sa-header-global-home .sa-header-global-nav > li > a {
        color: #fff;
    }

    .sa-header-global-subnav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: .9375rem;
        margin-top: 1px;
        border-right: 1px solid #d0d2d3;
        border-bottom: 1px solid #d0d2d3;
        border-left: 1px solid #d0d2d3;
        -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, .03);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, .03);
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
        /* 15px /16 */
    }
    /* sa-header-global-subnav */
    .sa-header-global-nav-home.sa-header-global-nav-home,
    .sa-header-global-subnav-backlink.sa-header-global-subnav-backlink.sa-header-global-subnav-backlink,
    .sa-header-global-subnav-title {
        display: none;
    }
}
/* end @screen-sm-min */
/* Center nav menu */
@media (min-width: 768px) {
    .sa-header-global-menu-content {
        text-align: center;
    }

    .sa-header-global-nav {
        display: inline-block;
        float: none;
        margin-top: .4375rem;
        /* 7px /16 */
    }

    .sa-header-global-nav-btns {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        display: -ms-flexbox;
        float: right;
        /* 7px /16 */
        height: 50px;
        /* 55px /16 */
        margin-top: .4375rem;
        margin-right: 3.4375rem;
        flex-direction: row-reverse;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-align: center;
        -ms-flex-pack: center;
        -ms-flex-direction: row-reverse;
    }

    .sa-header-global-search,
    .sa-header-global-subnav {
        text-align: left;
    }
}

@media (min-width: 50em) {
    /* 800px */
    .sa-header-global-nav > li > a {
        padding: 15.5px 5px 15.5px 7px;
    }

    .sa-header-global-nav-btns .btn,
    .sa-header-global-nav-btns .sa-btn-cta {
        margin-left: .8em;
    }

        .sa-header-global-nav-btns .sa-btn-cta .btn {
            margin-left: 0;
        }
}

@media (min-width: 64em) {
    .sa-header-global .sa-logo {
        width: 173px;
        height: 36px;
    }

    .sa-header-global > .navbar-header {
        float: left;
        padding: 20px 0 10px 26px;
    }

    .sa-header-global .sa-header-global-menu {
        float: none;
        padding-top: 5px;
    }

        .sa-header-global .sa-header-global-menu > .collapse {
            float: none;
        }

    .sa-header-global-nav-btns {
        height: 62px;
        margin-top: 0;
        margin-right: 3.6em;
    }

        .sa-header-global-nav-btns .btn {
            font-size: .9375rem;
            /* 15px /16 */
        }

    .sa-header-global-search {
        margin-top: 1.125rem;
        /* 18px /16 */
        margin-right: 26px;
        margin-left: 0;
    }

    .sa-header-global-nav {
        margin-top: 0;
    }

        .sa-header-global-nav > li > a {
            height: 62px;
            /* 16px /16 */
            padding: 21.5px 15px;
            font-size: 1em;
        }

    .sa-header-global-subnav {
        padding: 2.8125rem 1.625rem;
        /* 45px 26px /16 */
    }
}

@media (min-width: 1200px) {
    .sa-header-global > .navbar-header {
        margin-right: 2em;
    }
}

@media (min-width: 112.5em) {
    /* 1800px /16 */
    .sa-header-global {
        max-width: 1852px;
    }

    .tmpl-sa-marketing .sa-header-global {
        max-width: 1252px;
    }
}
/* Right aligned Demo button on small viewport */
.sa-header-global-demo.sa-btn-cta {
    display: none;
}

@media (max-width: 767px) {
    .sa-header-global-demo.sa-btn-cta {
        display: block;
        float: right;
        margin-top: 0;
    }

    .sa-header-global-demo .btn {
        /* 11px /16 */
        padding-right: .6875rem;
        padding-left: .6875rem;
        /* 11px /16 */
    }
}
/* Marketing templates are narrower */
.tmpl-sa-marketing .sa-header-global {
    max-width: 1312px;
    /* logo */
    /* btns & search icon */
}

    .tmpl-sa-marketing .sa-header-global > .navbar-header {
        padding: 15px 24px 10px;
        /* side padding = px value of @sa-mktglayout-padding-hz-sm - 2px */
    }

@media (min-width: 768px) {
    .tmpl-sa-marketing .sa-header-global {
        padding-right: 2rem;
        padding-left: 2rem;
    }

        .tmpl-sa-marketing .sa-header-global > .navbar-header {
            padding-right: 0;
            padding-left: 0;
        }
}

@media (min-width: 64em) {
    .tmpl-sa-marketing .sa-header-global {
        padding-right: 2rem;
        padding-left: 3.5rem;
    }
}

@media (max-width: 767px) {
    .tmpl-sa-marketing .sa-header-global .navbar-brand {
        margin-left: -75px;
    }
}

@media (min-width: 768px) {
    .tmpl-sa-marketing .sa-header-global .navbar-brand {
        margin: 4px 0 0;
    }
}

@media (min-width: 768px) {
    .tmpl-sa-marketing .sa-header-global .sa-header-global-search {
        margin-right: 2rem;
        margin-left: 0;
    }

    .tmpl-sa-marketing .sa-header-global .sa-header-global-nav-btns {
        margin-right: 2em;
    }
}

@media (min-width: 64em) {
    .tmpl-sa-marketing .sa-header-global .sa-header-global-search {
        margin-right: 3.5rem;
    }

    .tmpl-sa-marketing .sa-header-global .sa-header-global-nav-btns {
        margin-right: 3.5em;
    }
}

.sa-footer-copy {
    margin-top: 1em;
    /* 12px /12 */
}

.sa-footer-links {
    margin-top: .75em;
    /* 12px /16 */
    line-height: 1.7;
}

    .sa-footer-copy,
    .sa-footer-links li {
        font-size: .75em;
        /* 12px /16 */
    }

    .sa-footer-links a[href] {
        text-transform: lowercase;
    }

    .sa-footer-links a[href],
    .sa-footer-links a:visited {
        color: #fff;
    }

        .sa-footer-links a[href]:hover {
            text-decoration: underline;
        }

@media (min-width: 992px) {
    .sa-footer-copy {
        margin-top: 1em;
        /* 13px /13 */
    }

    .sa-footer-links {
        margin-top: .8125em;
        /* 13px /16 */
    }

        .sa-footer-copy,
        .sa-footer-links li {
            font-size: .8125em;
            /* 13px /16 */
        }
}

.sa-footer-desc {
    padding-bottom: 1.5em;
    margin-bottom: 2.5em;
    /* 40px /16 */
    border-bottom: 1px solid #007dbc;
    /* 24px /16 */
}

    .sa-footer-desc p {
        display: block;
        margin-bottom: .2222222222222em;
        /* 18px /16 */
        font-family: "Source Sans Pro", sans-serif;
        font-size: 1.125em;
        font-style: normal;
        font-weight: 300;
        letter-spacing: .5px;
        /* 4px /18 */
    }

    .sa-footer-desc strong {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
    }

    .sa-footer-desc .sa-learnmorebtn {
        margin-top: 1em;
        letter-spacing: 0;
    }

@media (min-width: 37.5em) {
    /* 600px /16 */
    .sa-footer-desc {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
        border-left: 1px solid #007dbc;
    }

        .sa-footer-desc p {
            font-size: 1.3125em;
            /* 21px /16 */
        }
}

@media (min-width: 992px) {
    .sa-footer-desc p {
        font-size: 1.4375em;
        /* 23px /16 */
    }
}

.sa-footer-popular {
    background-color: #00395a;
}

.sa-footer-popular-hed {
    margin-top: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 300;
    /* 16px /16 */
    color: #77d5f3;
}
/* Variant of sa-footer-links */
.sa-footer-popular a[href] {
    text-transform: none;
}

@media (min-width: 37.5em) {
    /* 600px /16 */
    .sa-footer-popular-hed {
        font-size: 1.25em;
        /* 20px /16 */
    }
}

@media (min-width: 37.5em) {
    /* 600px /16 */
    .sa-footer-col-a {
        float: right;
        width: 60%;
        padding-left: 4%;
    }

    .sa-footer-col-b {
        float: left;
        width: 40%;
        padding-right: 4%;
    }
}

.sa-footer-container {
    padding: 40px 26px;
    background-color: #003957;
}

.sa-global-gradient-footer {
    background-color: #075484;
    background-image: -webkit-linear-gradient(left, #075484, #04476d 50%, #003957);
    background-image: -o-linear-gradient(left, #075484, #04476d 50%, #003957);
    background-image: -webkit-gradient(linear, left top, right top, from(#075484), color-stop(50%, #04476d), to(#003957));
    background-image: linear-gradient(to right, #075484, #04476d 50%, #003957);
    background-repeat: no-repeat;
}

.sa-footer {
    max-width: 1800px;
    margin: 0 auto;
    color: #fff;
}

    .sa-footer:before,
    .sa-footer:after {
        display: table;
        content: " ";
    }

    .sa-footer:after {
        clear: both;
    }

    .sa-footer:before,
    .sa-footer:after {
        display: table;
        content: " ";
    }

    .sa-footer:after {
        clear: both;
    }

.tmpl-sa-marketing .sa-footer {
    max-width: 1200px;
}

.sa-footer-b-secondary {
    background-color: #00395a;
}
/* Logo */
@media (min-width: 768px) {
    .sa-logo-footer.sa-logo-footer {
        max-width: 100%;
    }
}
/* Navigation Links */
.sa-footer-navlinks {
    max-width: 20rem;
    /* 320px /16 */
}

    .sa-footer-navlinks a[href] {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 400;
    }

    .sa-footer-navlinks li {
        margin-bottom: 1em;
    }
/* Links */
.sa-footer-b-copy {
    /* 15px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375rem;
    font-style: normal;
    font-weight: 600;
}

.sa-footer a[href],
.sa-footer a:visited {
    color: #fff;
}

.sa-footer .dropdown-menu a[href],
.sa-footer .dropdown-menu a:visited {
    color: #212221;
}

.sa-footer-b-links {
    font-size: .9375rem;
    /* 15px /16 */
}

    .sa-footer-b-links a[href]:hover {
        text-decoration: underline;
    }

@media (min-width: 768px) {
    .sa-footer-b-copy {
        float: left;
    }

    .sa-footer-b-links {
        float: right;
    }
}
/* Border on columns */
@media (max-width: 767px) {
    .sa-footer-col {
        padding-top: 1.5rem;
        /* 24px /16 */
        padding-bottom: 1.5rem;
        /* 24px /16 */
    }

    .sa-footer-col-business,
    .sa-footer-col-personal {
        border-bottom: 1px solid #047dbb;
        border-bottom: 1px solid rgba(4, 125, 187, .5);
    }

    .sa-footer-col-logo {
        padding-bottom: 0;
    }
}

@media (min-width: 768px) {
    .sa-footer-col-business {
        border-left: 1px solid #047dbb;
        border-left: 1px solid rgba(4, 125, 187, .5);
    }

    .sa-footer-col-logo {
        clear: left;
    }

    .sa-footer-col-logo,
    .sa-footer-col-nav {
        border-left: none;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sa-footer-col-personal {
        padding-right: 2.5%;
    }

    .sa-footer-col-business {
        padding-left: 2.5%;
    }

    .sa-footer-col-logo,
    .sa-footer-col-nav {
        margin-top: 5em;
    }
}

@media (min-width: 992px) {
    .sa-footer > .row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }

    .sa-footer-col-personal {
        border-left: 1px solid #047dbb;
        border-left: 1px solid rgba(4, 125, 187, .5);
    }

    .sa-footer-col-nav,
    .sa-footer-col-personal,
    .sa-footer-col-business {
        padding-left: 2.5%;
    }

    .sa-footer-col-logo,
    .sa-footer-col-nav,
    .sa-footer-col-personal {
        padding-right: 2.5%;
    }

    .sa-footer-col-logo,
    .sa-footer-col-nav {
        -webkit-box-ordinal-group: 0;
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }
}
/* Social links */
@media (max-width: 767px) {
    .sa-footer-social {
        padding: 1em 15px;
        margin-top: 2em;
        margin-right: -15px;
        margin-left: -15px;
    }

        .sa-footer-social .sa-footer-subhed {
            float: left;
            max-width: 5em;
            margin-right: 1em;
        }
}

@media (min-width: 768px) {
    .sa-footer-social {
        margin-top: 2.5em;
    }
}
/* Headers, Paragraphs */
.sa-footer-hed {
    /* 23px /16 */
    margin-top: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.4375rem;
    font-style: normal;
    font-weight: 600;
}

.sa-footer-subhed {
    margin: 0 0 .5em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .6875rem;
    font-style: normal;
    font-weight: 400;
    color: #7bd1ee;
    /* 11px /16 */
    text-transform: uppercase;
}

.sa-footer-p {
    /* 14px /16 */
    margin: 1em 0 2em;
    font-size: .875rem;
}

.sa-footer .btn {
    font-size: .9375rem;
    /* 15px /16 */
}

.sa-footer .btn,
.sa-footer .sa-btn-cta {
    margin-right: .5rem;
    /* 8px /16 */
    margin-bottom: .5rem;
    vertical-align: top;
    /* 8px /16 */
}

.sa-footer .sa-btn-cta {
    margin-top: 0;
}

    .sa-footer .sa-btn-cta .btn {
        margin-right: 0;
        margin-bottom: 0;
    }
/* Companalyst Logo */
.sa-footer-ca {
    max-width: 8.875rem;
    /* 142px /16 */
}

.sa-global-footer-login-dropdown {
    display: inline-block;
}

.sa-navbar-primary {
    min-height: 0;
    margin: 0;
    background-color: #ddf4fc;
    border: none;
}

    .sa-navbar-primary:before {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        content: " ";
        background-color: #29abe2;
        background-image: -webkit-linear-gradient(left, #29abe2 0%, #77d5f3 100%);
        background-image: -o-linear-gradient(left, #29abe2 0%, #77d5f3 100%);
        background-image: -webkit-gradient(linear, left top, right top, from(#29abe2), to(#77d5f3));
        background-image: linear-gradient(to right, #29abe2 0%, #77d5f3 100%);
        background-repeat: repeat-x;
    }

    .sa-navbar-primary .form-group {
        margin-bottom: 0;
    }

    .sa-navbar-primary > p {
        padding-right: 1em;
        padding-left: 1em;
        margin: 0;
        font-size: 1.25em;
        /* 20px /16 */
    }

    .sa-navbar-primary > .navbar-form {
        width: 100%;
    }

@media (max-width: 767px) {
    .sa-navbar-primary > .navbar-form {
        margin: 0;
    }
}

.sa-navbar-primary > .navbar-form .sa-searchinput {
    display: block;
}

.sa-navbar-primary > .sa-navbar-primary-desc {
    /* 16px /16 */
    position: relative;
    width: 100%;
    padding-left: 2.8125em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 300;
    /* 45px /16 */
}

    .sa-navbar-primary > .sa-navbar-primary-desc [class^="icon-"],
    .sa-navbar-primary > .sa-navbar-primary-desc [class*=" icon-"] {
        position: absolute;
        left: 1em;
        margin-top: 1px;
    }

    .sa-navbar-primary > .sa-navbar-primary-desc strong {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
    }

.sa-navbar-primary > .sa-navbar-primary-subsearch {
    width: auto;
    min-width: 14em;
}

.sa-navbar-primary > a {
    display: block;
    padding: 0 15px 10px;
    white-space: nowrap;
}

@media (min-width: 37.5em) {
    .sa-navbar-primary > a {
        /* 600px */
        padding-top: 10px;
        padding-left: 0;
    }
}

.sa-navbar-primary > a .sa-geolocation {
    margin-right: .25em;
    /* 4px /16 */
}
/* end .sa-navbar-primary */
.sa-navbar-primary-blue {
    padding-top: 5px;
    color: #fff;
    background-color: #007cba;
}

    .sa-navbar-primary-blue [class^="icon-"],
    .sa-navbar-primary-blue [class*=" icon-"] {
        color: #29abe2;
    }

    .sa-navbar-primary-blue:before {
        height: 5px;
    }
/* Vertical stack, single column */
@media (max-width: 37.4375em) {
    /* 599px */
    .sa-navbar-primary .sa-navbar-primary-desc {
        padding-top: .8em;
    }

    .sa-navbar-primary .sa-navbar-primary-subsearch {
        border-top: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
/* Horizontal */
@media (min-width: 37.5em) {
    /* 600px */
    .sa-navbar-primary {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width: 39.375em) {
    /* 630px */
    .sa-navbar-primary .sa-navbar-primary-desc {
        font-size: 1.125em;
        /* 18px /16 */
    }
}

.sa-navbar-secondary {
    padding: 1rem 0 .6rem;
    padding-right: 15px;
    padding-left: 15px;
    margin-bottom: 0;
    border-bottom: 1px solid #e6e7e8;
}

@media (min-width: 64em) {
    .sa-navbar-secondary {
        padding-left: 26px;
    }
}

@media (min-width: 64em) {
    .sa-navbar-secondary {
        padding-right: 26px;
    }
}

.sa-navbar-secondary .sa-list {
    position: relative;
    left: -10px;
    display: block;
    max-width: 1800px;
    margin: 0 auto;
}

.tmpl-sa-marketing .sa-navbar-secondary {
    padding: 1.4rem 1.625rem;
}

    .tmpl-sa-marketing .sa-navbar-secondary .sa-list {
        max-width: 1200px;
    }

.sa-navbar-secondary .sa-list > li {
    padding-right: 10px;
    padding-left: 10px;
}

.sa-navbar-secondary-link {
    color: #767676;
    border-bottom: 2px solid #fff;
}

    .sa-navbar-secondary-link.active {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
        color: #212221;
        border-color: #6fbe44;
    }
/* CTA button */
.sa-list > li.sa-navbar-secondary-cta {
    display: block;
    padding-right: 0;
    margin: 0;
}

.sa-navbar-secondary .sa-btn-cta {
    margin: 10px 0 0;
}

@media (max-width: 599px) {
    .tmpl-sa-marketing .sa-navbar-secondary .sa-list > li {
        display: block;
    }
}

@media (min-width: 21.25em) and (max-width: 599px) {
    /* 340px - 600px */
    .tmpl-sa-marketing .sa-navbar-secondary .sa-list > li {
        padding-right: 140px;
    }

    .tmpl-sa-marketing .sa-navbar-secondary .sa-btn-cta {
        position: absolute;
        top: 0;
        right: -10px;
        margin-top: 0;
    }
}

@media (min-width: 53em) {
    /* 848 */
    .tmpl-sa-marketing .sa-navbar-secondary {
        padding-bottom: 1rem;
    }

    .sa-navbar-secondary .sa-list {
        left: 0;
    }

        .sa-navbar-secondary .sa-list > li:first-child {
            padding-left: 0;
        }

    .tmpl-sa-marketing .sa-navbar-secondary-cta {
        float: right;
    }

    .sa-list > li.sa-navbar-secondary-cta {
        margin-right: -10px;
    }

    .sa-navbar-secondary .sa-btn-cta {
        margin-top: -.375rem;
        /* -6px /16 */
    }
}
/*
*** MERGE WITH UNIFIED NAV CSS
*/
.sa-nav-subhed {
    margin: 0 0 1.2em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .8125em;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

    .sa-nav-subhed span {
        display: inline-block;
        padding: .6em 0 0;
        border-top: 1px solid #6fbe44;
    }

.sa-nav-block {
    list-style-type: none;
}
    /* See https://bugs.jqueryui.com/ticket/8844 */
    .sa-nav-block li {
        list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
    }

.sa-nav-block-right {
    text-align: right;
}

.sa-nav-block .sa-logo-ca {
    width: 90%;
    max-width: 10.5rem;
    margin: 0 0 .4em;
}

.sa-nav-block p {
    margin: 0 0 1em;
    font-size: .9375em;
}

    .sa-nav-block p small {
        font-size: .8em;
        /* 12/15 */
    }

.sa-nav-info.sa-nav-info {
    width: 90%;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375rem;
    font-style: normal;
    font-weight: 400;
    /* 15px /16 */
    color: #767676;
}

.sa-nav-links {
    padding-left: 0;
    margin: 0;
    list-style-type: none;
}
    /* See https://bugs.jqueryui.com/ticket/8844 */
    .sa-nav-links li {
        list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
    }

.sa-nav-link-primary {
    display: inline-block;
    margin: 0 0 1em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 600;
    color: #212221;
}

    .sa-nav-link-primary a {
        color: inherit;
    }

h2 .sa-nav-link-primary,
h3 .sa-nav-link-primary,
h4 .sa-nav-link-primary {
    margin-bottom: .3em;
}

.sa-nav-link-secondary,
.sa-nav-more {
    display: inline-block;
    margin: 0 0 .8em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.0625em;
    font-style: normal;
    font-weight: 300;
    color: #212221;
}

.sa-nav-links > :last-child .sa-nav-link-primary,
.sa-nav-links > :last-child .sa-nav-link-secondary {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .sa-nav-link-primary {
        font-size: 1em;
    }

    .sa-nav-link-secondary {
        font-size: .9375em;
    }
}

@media (min-width: 992px) {
    .sa-nav-link-primary {
        font-size: 1.0625em;
    }

    .sa-nav-link-secondary {
        font-size: 1em;
    }
}

@media (min-width: 1200px) {
    .sa-nav-link-primary {
        font-size: 1.125em;
    }

    .sa-nav-link-secondary {
        font-size: 1.0625em;
    }
}

.sa-nav-more {
    padding: 0;
    margin: .8em 0 0;
    font-size: .8125em;
    background: none;
    border: 0;
}

    .sa-nav-more + .collapse {
        padding-top: .8em;
    }

.sa-nav-link-desc {
    display: block;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375rem;
    font-style: normal;
    font-weight: 400;
    /* 15px /16 */
    color: #767676;
}

.sa-nav-iconlinks .sa-nav-link-desc {
    margin-top: .2em;
}

.sa-nav-promo {
    display: inline-block;
    max-width: 13.5rem;
    text-align: center;
    /* 216px /16 */
}

    .sa-nav-promo img {
        display: block;
        max-width: 100%;
        margin: 0 0 .7em;
    }

.sa-nav-social {
    margin-top: 1.2em;
}

.sa-nav-iconlinks .sa-nav-link-primary {
    position: relative;
    padding-left: 50px;
    margin-bottom: 0;
}

.sa-nav-iconlinks .sa-round-icon {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 40px;
    border-radius: 40px;
}

    .sa-nav-iconlinks .sa-round-icon.icon-company-size-2 {
        font-size: 38px;
        line-height: 25px;
    }

.sa-nav-banner {
    display: table;
    width: 100%;
    padding: 1.2em 2.5em;
    margin: 2em 0 0;
    background-color: #f8f8f9;
}

    .sa-nav-banner p {
        display: inline-block;
        margin: 0;
        font-family: "Source Sans Pro", sans-serif;
        font-size: 1.25em;
        font-style: normal;
        font-weight: 300;
    }

    .sa-nav-banner .sa-logo-banner img {
        height: 38px;
    }

.sa-nav-banner-logo {
    max-height: 2.5em;
    opacity: .7;
}

.sa-nav-banner-logo-primary {
    opacity: .85;
}

.sa-nav-banner-col {
    display: table-cell;
    vertical-align: middle;
}

.sa-nav-banner-col-right {
    text-align: right;
}

@media (max-width: 767px) {
    .sa-nav-block {
        margin: 1.8em 0;
    }

    .sa-nav-banner,
    .sa-nav-promo {
        display: none;
    }
}

@media (min-width: 768px) {
    [class*="sa-nav-col-"] {
        display: table;
        width: 100%;
    }

        [class*="sa-nav-col-"] .sa-nav-block {
            display: table-cell;
            vertical-align: top;
        }
    /* number of cols */
    .sa-nav-col-4 .sa-nav-block { /*added for personal nav*/
        width: 20%;
        padding-right: .5em;
        padding-left: .5em;
    }

    .sa-nav-col-4.sa-nav-iconlinks .sa-nav-block { /*added for personal nav*/
        text-align: center;
    }

    .sa-nav-col-5 .sa-nav-block {
        width: 20%;
        padding-right: .5em;
        padding-left: .5em;
    }

    .sa-nav-col-5.sa-nav-iconlinks .sa-nav-block {
        text-align: center;
    }

    .sa-nav-col-5 .sa-nav-block.sa-nav-col-double {
        width: 40%;
    }

    .sa-nav-col-6 .sa-nav-block {
        width: 16.666%;
        padding-right: .5em;
        padding-left: .5em;
    }

    .sa-nav-col-6.sa-nav-iconlinks .sa-nav-block {
        text-align: center;
    }

    .sa-nav-col-6 .sa-nav-block.sa-nav-col-double {
        width: 33.333%;
    }

    .sa-nav-iconlinks .sa-nav-link-primary {
        padding-left: 0;
        margin: .5em 0;
        text-align: center;
    }

    .sa-nav-iconlinks .sa-round-icon {
        position: static;
        display: block;
        margin: 0 auto 10px;
    }

    .sa-nav-iconlinks .sa-nav-link-desc {
        margin-top: .4em;
    }

    .sa-header-global-subnav .sa-nav-banner {
        width: -webkit-calc(100% + 3.25rem);
        width: calc(100% + 3.25rem);
        /* -26px /16 */
        margin-right: -webkit-calc(-1.625rem);
        margin-right: calc(-1.625rem);
        /* -26px /16 */
        margin-bottom: -webkit-calc(-.9375rem);
        margin-bottom: calc(-.9375rem);
        /* 52px /16 */
        margin-left: -webkit-calc(-1.625rem);
        margin-left: calc(-1.625rem);
        /* 15px /16 */
    }
}
/* 6 column nav needs small font size adjustments to fit everything */
@media (min-width: 768px) and (max-width: 51.5em) {
    /* 824px */
    .sa-nav-col-6 .sa-nav-block .sa-btn-cta .btn {
        /* 15px /15 */
        padding-right: 1em;
        padding-left: 1em;
        /* 15px /15 */
    }

    .sa-nav-col-6 .sa-nav-block .sa-btn-cta b {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .sa-nav-col-6 .sa-nav-block .sa-nav-info,
    .sa-nav-col-6 .sa-nav-block .sa-nav-link-primary,
    .sa-nav-col-6 .sa-nav-block .sa-nav-link-desc,
    .sa-nav-col-6 .sa-nav-block .sa-nav-link-secondary {
        font-size: .875em;
        /* 14px /16 */
    }
}

@media (min-width: 51.5625em) and (max-width: 64.375em) {
    /* 825px 1030px */
    .sa-nav-col-6 .sa-nav-block .sa-nav-info {
        font-size: .9375em;
        /* 15px /16 */
    }

    .sa-nav-col-6 .sa-nav-block .sa-nav-info,
    .sa-nav-col-6 .sa-nav-block .sa-nav-link-primary,
    .sa-nav-col-6 .sa-nav-block .sa-nav-link-desc,
    .sa-nav-col-6 .sa-nav-block .sa-nav-link-secondary {
        font-size: .9375em;
        /* 15px /16 */
    }
}

@media (min-width: 992px) {
    .sa-header-global-subnav .sa-nav-banner {
        margin-bottom: -webkit-calc(-2.8125rem);
        margin-bottom: calc(-2.8125rem);
        /* -45px /16 */
    }
}
/*@import "sa-stepnav.less";*/
/*! Tablesaw - v3.0.3 - 2017-07-13
* https://github.com/filamentgroup/tablesaw
* Copyright (c) 2017 Filament Group; Licensed MIT */

.tablesaw {
    width: 100%;
    max-width: 100%;
    padding: 0;
    empty-cells: show;
    border-collapse: collapse;
    border: 0;
}

    .tablesaw * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.tablesaw-btn {
    position: relative;
    display: inline-block;
    -webkit-appearance: none;
    padding: .5em .85em .4em .85em;
    margin: 0;
    color: #4a4a4a;
    text-align: center;
    text-decoration: none;
    text-transform: capitalize;
    cursor: pointer;
    background: none;
    border: 1px solid #ccc;
    border-radius: .25em;
    -webkit-box-shadow: 0 1px 0 rgba(255,255,255,1);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
    -moz-appearance: none;
    appearance: none;
}

a.tablesaw-btn {
    color: #1c95d4;
}

.tablesaw-btn:hover {
    text-decoration: none;
}

/* Default radio/checkbox styling horizonal controlgroups. */

.tablesaw-btn:active {
    background-color: #ddd;
}

@supports (box-shadow: none ) {
    .tablesaw-btn:focus {
        background-color: #fff;
        outline: none;
    }

    .tablesaw-btn:focus {
        -webkit-box-shadow: 0 0 .35em #4faeef !important;
        box-shadow: 0 0 .35em #4faeef !important;
    }
}

.tablesaw-btn-select select {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-block;
    width: 100%;
    height: 100%;
    min-height: 1em;
    margin: 0;
    color: transparent;
    background: none;
    border: none;
    opacity: 0;
}

.tablesaw-btn select option {
    color: #000;
    background: #fff;
}

.tablesaw-btn {
    position: relative;
    top: 0;
    display: inline-block;
    width: auto;
    height: auto;
}

    .tablesaw-btn.btn-small {
        padding: .3em 1em .3em 1em;
        font-size: 1.0625em;
        line-height: 19px;
    }

    .tablesaw-btn.btn-micro {
        padding: .4em .7em .25em .7em;
        font-size: .8125em;
    }

.tablesaw-btn-select {
    display: inline-block;
    min-width: 7.25em;
    padding-right: 1.5em;
    padding-right: 2.5em;
    color: #4d4d4d;
    text-align: left;
    text-align: left;
}

    .tablesaw-btn-select:after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 1.8em;
        padding-top: 1.2em;
        padding-left: 1em;
        margin: 0;
        font-size: .55em;
        content: " ";
        content: "\25bc";
        background: none;
        background-repeat: no-repeat;
        background-position: .25em .45em;
    }

    .tablesaw-btn-select.btn-small:after,
    .tablesaw-btn-select.btn-micro:after {
        width: 1.2em;
        padding-top: 1em;
        padding-right: .5em;
        font-size: .5em;
        line-height: 1.65;
        background: none;
        border-left-width: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

/* Column navigation buttons for swipe and columntoggle tables */

.tablesaw-advance .tablesaw-btn {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    text-shadow: 0 1px 0 #fff;
    border-radius: .25em;
    -moz-appearance: none;
}

    .tablesaw-advance .tablesaw-btn.btn-micro {
        padding: .3em .7em .25em .7em;
        font-size: .8125em;
    }

.tablesaw-advance a.tablesaw-nav-btn:first-child {
    margin-left: 0;
}

.tablesaw-advance a.tablesaw-nav-btn:last-child {
    margin-right: 0;
}

.tablesaw-advance a.tablesaw-nav-btn {
    position: relative;
    display: inline-block;
    width: 1.8em;
    height: 1.8em;
    margin-right: .25em;
    margin-left: .25em;
    overflow: hidden;
    background-position: 50% 50%;
}

    .tablesaw-advance a.tablesaw-nav-btn.left:before,
    .tablesaw-advance a.tablesaw-nav-btn.right:before,
    .tablesaw-advance a.tablesaw-nav-btn.down:before,
    .tablesaw-advance a.tablesaw-nav-btn.up:before {
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        content: "\0020";
    }

    .tablesaw-advance a.tablesaw-nav-btn.down:before {
        top: .65em;
        left: .5em;
        border-top: 5px solid #808080;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
    }

    .tablesaw-advance a.tablesaw-nav-btn.up:before {
        top: .65em;
        left: .5em;
        border-right: 5px solid transparent;
        border-bottom: 5px solid #808080;
        border-left: 5px solid transparent;
    }

    .tablesaw-advance a.tablesaw-nav-btn.left:before,
    .tablesaw-advance a.tablesaw-nav-btn.right:before {
        top: .45em;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    .tablesaw-advance a.tablesaw-nav-btn.left:before {
        left: .6em;
        border-right: 5px solid #808080;
    }

    .tablesaw-advance a.tablesaw-nav-btn.right:before {
        left: .7em;
        border-left: 5px solid #808080;
    }

    .tablesaw-advance a.tablesaw-nav-btn.disabled {
        pointer-events: none;
        cursor: default;
        opacity: .25;
    }

/* Table Toolbar */

.tablesaw-bar {
    clear: both;
}

    .tablesaw-bar * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

.tablesaw-bar-section {
    float: left;
}

    .tablesaw-bar-section label {
        display: block;
        padding: .5em 0;
        margin-right: .5em;
        clear: both;
        font-size: .875em;
        color: #888;
        text-transform: uppercase;
    }

.tablesaw-btn,
.tablesaw-enhanced .tablesaw-btn {
    margin-top: .5em;
    margin-bottom: .5em;
}

.tablesaw-btn-select,
.tablesaw-enhanced .tablesaw-btn-select {
    margin-bottom: 0;
}

/* TODO */

.tablesaw-bar .tablesaw-bar-section .tablesaw-btn {
    padding-left: .3em;
    margin-top: 0;
    margin-left: .4em;
    font-size: 1em;
    text-transform: uppercase;
    background: transparent;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.tablesaw-bar .tablesaw-bar-section .btn-select {
    min-width: 0;
}

    .tablesaw-bar .tablesaw-bar-section .btn-select:after {
        padding-top: .9em;
    }

.tablesaw-bar .tablesaw-bar-section select {
    color: #888;
    text-transform: none;
    background: transparent;
}

.tablesaw-bar-section ~ table {
    clear: both;
}

.tablesaw-bar-section .abbreviated {
    display: inline;
}

.tablesaw-bar-section .longform {
    display: none;
}

@media (min-width: 24em) {
    .tablesaw-bar-section .abbreviated {
        display: none;
    }

    .tablesaw-bar-section .longform {
        display: inline;
    }
}

.tablesaw th,
.tablesaw td {
    padding: .5em .7em;
    text-align: left;
    vertical-align: middle;
}

.tablesaw-sortable-btn {
    /* same as cell padding above */
    padding: .5em .7em;
}

.tablesaw thead th {
    text-align: left;
}

/* Table rows have a gray bottom stroke by default */

.tablesaw-row-border tr {
    border-bottom: 1px solid #dfdfdf;
}

/* Zebra striping */

.tablesaw-row-zebra tr:nth-child(2n) {
    background-color: #f8f8f8;
}

.tablesaw caption {
    margin: .59375em 0;
    text-align: left;
}

.tablesaw-swipe .tablesaw-swipe-cellpersist {
    border-right: 2px solid #e4e1de;
}

.tablesaw-swipe-shadow .tablesaw-swipe-cellpersist {
    border-right-width: 1px;
}

.tablesaw-swipe-shadow .tablesaw-swipe-cellpersist {
    -webkit-box-shadow: 3px 0 4px -1px #e4e1de;
    box-shadow: 3px 0 4px -1px #e4e1de;
}

.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 */

/* Support note IE9+: @media only all */

@media only all {
    /* Show the table cells as a block level element */

    .tablesaw-stack {
        clear: both;
    }

        .tablesaw-stack td,
        .tablesaw-stack th {
            display: block;
            text-align: left;
        }

        .tablesaw-stack tr {
            display: table-row;
            clear: both;
        }

        /* Make the label elements a percentage width */

        .tablesaw-stack td .tablesaw-cell-label,
        .tablesaw-stack th .tablesaw-cell-label {
            display: inline-block;
            width: 30%;
            padding: 0 .6em 0 0;
        }

        /* For grouped headers, have a different style to visually separate the levels by classing the first label in each col group */

        .tablesaw-stack th .tablesaw-cell-label-top,
        .tablesaw-stack td .tablesaw-cell-label-top {
            display: block;
            padding: .4em 0;
            margin: .4em 0;
        }

    .tablesaw-cell-label {
        display: block;
    }

    /* Avoid double strokes when stacked */

    .tablesaw-stack tbody th.group {
        margin-top: -1px;
    }

    /* Avoid double strokes when stacked */

    .tablesaw-stack th.group b.tablesaw-cell-label {
        display: none !important;
    }
}

@media (max-width: 39.9375em) {
    /* Table rows have a gray bottom stroke by default */

    .tablesaw-stack tbody tr {
        display: block;
        width: 100%;
        border-bottom: 1px solid #dfdfdf;
    }

    .tablesaw-stack thead td,
    .tablesaw-stack thead th {
        display: none;
    }

    .tablesaw-stack tbody td,
    .tablesaw-stack tbody th {
        display: block;
        float: left;
        width: 100%;
        clear: left;
    }

    .tablesaw-cell-label {
        vertical-align: top;
    }

    .tablesaw-cell-content {
        display: inline-block;
        max-width: 67%;
    }

    .tablesaw-stack .tablesaw-stack-block .tablesaw-cell-label,
    .tablesaw-stack .tablesaw-stack-block .tablesaw-cell-content {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .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) {
    .tablesaw-stack tr {
        display: table-row;
    }

    /* Show the table header rows */

    .tablesaw-stack td,
    .tablesaw-stack th,
    .tablesaw-stack thead td,
    .tablesaw-stack thead th {
        display: table-cell;
        margin: 0;
    }

        /* Hide the labels in each cell */

        .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-swipe-cellhidden,
    .tablesaw-swipe td.tablesaw-swipe-cellhidden {
        display: none;
    }
}

.tablesaw-overflow {
    position: relative;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    /* More in skin.css */
}

    .tablesaw-overflow > .tablesaw {
        margin-top: 2px;
        /* sortable focus rings are clipped */
    }

/* Used for a11y text on button: "Columns" */

.tablesaw-columntoggle-btn span {
    display: inline-block;
    text-indent: -9999px;
}

.tablesaw-columntoggle-btnwrap {
    position: relative;
    /* for dialog positioning */
}

    .tablesaw-columntoggle-btnwrap .dialog-content {
        padding: .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 {
    position: absolute;
    top: 2em;
    right: 0;
    z-index: 1;
    display: block;
    padding: .5em .8em;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: .2em;
    -webkit-box-shadow: 0 1px 2px #ccc;
    box-shadow: 0 1px 2px #ccc;
}

.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,
    .tablesaw-columntoggle th.tablesaw-priority-0,
    .tablesaw-columntoggle td.tablesaw-priority-0 {
        display: none;
    }
}

.tablesaw-columntoggle-btnwrap .dialog-content {
    top: 0 !important;
    right: 1em;
    left: auto !important;
    width: 12em;
    max-width: 18em;
    margin: -.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 */

    .tablesaw-columntoggle th.tablesaw-toggle-cellhidden,
    .tablesaw-columntoggle td.tablesaw-toggle-cellhidden {
        display: none;
    }

    /* Checked manually: Always show */

    .tablesaw-columntoggle th.tablesaw-toggle-cellvisible,
    .tablesaw-columntoggle td.tablesaw-toggle-cellvisible {
        display: table-cell;
    }
}

.tablesaw-columntoggle-popup .btn-group > label {
    display: block;
    padding: .2em 0;
    white-space: nowrap;
    cursor: default;
}

    .tablesaw-columntoggle-popup .btn-group > label input {
        margin-right: .8em;
    }

.tablesaw-sortable-head {
    position: relative;
    vertical-align: top;
}

/* Override */

.tablesaw .tablesaw-sortable-head {
    padding: 0;
}

.tablesaw-sortable-btn {
    min-width: 100%;
    font: inherit;
    color: inherit;
    text-align: inherit;
    text-transform: inherit;
    background: transparent;
    border: 0;
}

.tablesaw-sortable-arrow:after {
    display: inline-block;
    width: 10px;
    height: 14px;
    margin-left: .3125em;
    content: " ";
}

.tablesaw-sortable-ascending .tablesaw-sortable-arrow:after,
.tablesaw-sortable-descending .tablesaw-sortable-arrow:after {
    content: "\0020";
}

.tablesaw-sortable-ascending .tablesaw-sortable-arrow:after {
    content: "\2191";
}

.tablesaw-sortable-descending .tablesaw-sortable-arrow:after {
    content: "\2193";
}

.tablesaw-advance {
    float: right;
}

    .tablesaw-advance.minimap {
        margin-right: .4em;
    }

.tablesaw-advance-dots {
    float: left;
    padding: 0;
    margin: 0;
    list-style: none;
}

    .tablesaw-advance-dots li {
        display: table-cell;
        padding: .4em .2em;
        margin: 0;
    }

        .tablesaw-advance-dots li i {
            display: inline-block;
            width: .25em;
            height: .25em;
            background: #555;
            border-radius: 100%;
        }

.tablesaw-advance-dots-hide {
    pointer-events: none;
    cursor: default;
    opacity: .25;
}
/* Column Toggle Button */
.tablesaw th.text-right,
.tablesaw td.text-right {
    text-align: right;
}

.tablesaw th.text-center,
.tablesaw td.text-center {
    text-align: center;
}

.tablesaw th.text-nowrap,
.tablesaw td.text-nowrap {
    white-space: nowrap;
}
/* TODO override madness here, switch to use a customizable template in Tablesaw */
.btn.btn.btn.tablesaw-columntoggle-btn {
    width: 3.6em;
    height: 3em;
    vertical-align: middle;
    border-radius: 0;
}

.btn.btn.btn.btn.tablesaw-columntoggle-btn:before {
    top: .25em;
    right: 1.25em;
    left: auto;
    /* 15px /13 */
    overflow: visible;
    font-family: icomoon;
    font-size: 1.153846154em;
    color: #bbbdbf;
    content: "\e966";
    border: none;
}

.tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup {
    position: absolute;
    top: 100%;
    top: 2.9em;
    right: -10px;
    left: 0;
    left: auto;
    z-index: 1000;
    z-index: 99;
    display: none;
    display: block;
    float: left;
    float: none;
    min-width: 160px;
    padding: 5px 0;
    padding: 8px;
    margin: 2px 0 0;
    margin: 0;
    font-size: 16px;
    font-size: .9375em;
    font-size: 1em;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #e6e7e8;
    border-radius: 4px;
    border-radius: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

    .tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup.pull-right {
        right: 0;
        left: auto;
    }

    .tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup .divider {
        height: 1px;
        margin: 8.5px 0;
        overflow: hidden;
        background-color: #e6e7e8;
    }

    .tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: normal;
        line-height: 1.2;
        color: #58595b;
        white-space: nowrap;
    }

    .tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup > li > a {
        padding: 7px 10px;
    }

        .tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup > li > a > [class^="icon-"]:first-child {
            margin-right: 5px;
        }

@media (min-width: 1200px) {
    .tablesaw-columntoggle-btnwrap.visible .tablesaw-columntoggle-popup {
        right: -20px;
    }
}

.tablesaw-columntoggle-popup input:checked + span {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.tablesaw-columntoggle-popup .checkbox {
    padding: 3px 15px;
}

.btn.btn.btn.tablesaw-columntoggle-btn span:before {
    position: absolute;
    /* 7px /15 */
    top: .733333333em;
    left: .466666667em;
    width: auto;
    height: auto;
    font-family: icomoon;
    font-size: 1.153846154em;
    /* 15px /13 */
    line-height: 1;
    color: #666;
    text-indent: 0;
    content: "\e91b";
    /* 11px /15 */
    border: none;
}

.tablesaw-sortable-btn {
    padding-right: 8px;
    padding-left: 8px;
}

.sa-table th .tablesaw-sortable-btn {
    padding: 0;
}

.tablesaw-sortable-ascending .tablesaw-sortable-btn,
.tablesaw-sortable-descending .tablesaw-sortable-btn {
    font-weight: 600;
    color: #212221;
}

.tablesaw-sortable-arrow:after {
    width: auto;
    height: auto;
    font-family: icomoon;
    color: #29abe2;
    vertical-align: bottom;
}

.tablesaw-sortable-ascending .tablesaw-sortable-arrow:after {
    content: "\e90a";
}

.tablesaw-sortable-descending .tablesaw-sortable-arrow:after {
    content: "\e909";
}

.tablesaw-overflow {
    min-height: 13em;
}

@media (max-width: 1199px) {
    .sa-table th.tablesaw-sortable-head:first-child {
        padding-left: 0;
    }

    .sa-table th.tablesaw-sortable-head:last-child {
        padding-right: 0;
    }

    .sa-table th:first-child .tablesaw-sortable-btn {
        padding-left: 15px;
    }
}
/* Tablesaw stack table */
.tablesaw-cell-label,
.tablesaw-cell-content {
    display: block;
    float: left;
}

.tablesaw-cell-content {
    width: 100%;
}

@media (max-width: 39.9375em) {
    /* 639px */
    .tablesaw-stack tbody tr > td,
    .tablesaw-stack tbody tr > th {
        border-top: none;
    }
}

.navbar-autocollapse {
    position: relative;
    white-space: nowrap;
}

.navbar-autocollapse-menu {
    clear: both;
}

    .navbar-autocollapse-menu.open,
    .navbar-autocollapse .open .dropdown-menu {
        position: absolute;
        display: block;
        width: 100%;
        min-width: 280px;
        margin-top: 9px;
    }

@media (min-width: 480px) {
    .navbar-autocollapse-menu.open,
    .navbar-autocollapse .open .dropdown-menu {
        right: -10px;
        left: auto;
        max-width: 100%;
    }
}

@media (min-width: 1200px) {
    .navbar-autocollapse-menu.open,
    .navbar-autocollapse .open .dropdown-menu {
        right: -20px;
    }
}

@media (min-width: 480px) {
    /* make sure left-most menus open to the right */
    .navbar-autocollapse-nav > li:first-child .navbar-autocollapse-menu.open,
    .navbar-autocollapse-nav > li:nth-child( 2 ) .navbar-autocollapse-menu.open,
    .navbar-autocollapse-nav > li:first-child .navbar-autocollapse .open .dropdown-menu,
    .navbar-autocollapse-nav > li:nth-child( 2 ) .navbar-autocollapse .open .dropdown-menu {
        right: auto;
        left: 0;
    }
}

.filterbar-filterheading-icononly .dropdown-toggle + .navbar-autocollapse-menu.open,
.filterbar-filterheading-icononly .dropdown-toggle + .dropdown-menu {
    right: 0;
    margin-top: 0;
}

.navbar-autocollapse-nav {
    display: table;
    width: 100%;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
}

.navbar-autocollapse-nav-calculating {
    display: block;
}

.navbar-autocollapse-nav > li {
    display: table-cell;
    padding: 8px 10px;
    vertical-align: middle;
    list-style: none;
    border-top: 1px solid #e6e7e8;
    border-right: 1px solid #e6e7e8;
    border-bottom: 1px solid #e6e7e8;
}

@media (min-width: 480px) {
    .navbar-autocollapse-nav > li {
        position: relative;
    }
}

.navbar-autocollapse-nav > li.form-inline,
.navbar-autocollapse-nav > li.filterbar-actionbtn {
    width: 10%;
}

.navbar-autocollapse-nav > li:first-child {
    padding-left: 15px;
}

.navbar-autocollapse-nav-calculating > li {
    display: block;
    float: left;
    width: auto;
}

    .navbar-autocollapse-nav-calculating > li.form-inline,
    .navbar-autocollapse-nav-calculating > li.filterbar-actionbtn {
        width: auto;
    }

.navbar-autocollapse-nav > li.navbar-autocollapse-hide,
.navbar-autocollapse-menu > li.navbar-autocollapse-hide,
.navbar-autocollapse-nav > li.navbar-autocollapse-persist.navbar-autocollapse-button-hide {
    display: none;
}

.navbar-autocollapse-nav-calculating > li.navbar-autocollapse-persist {
    display: block;
}

@media (max-width: 599px) {
    .navbar-autocollapse-nav > .navbar-autocollapse-row-xs {
        display: table-caption;
        border-bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 767px) {
    .navbar-autocollapse-nav > .navbar-autocollapse-row-sm {
        display: table-caption;
        border-bottom: 0;
    }
}

@media (min-width: 992px) and (max-width: 991px) {
    .navbar-autocollapse-nav > .navbar-autocollapse-row-md {
        display: table-caption;
        border-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-autocollapse-nav > .navbar-autocollapse-row-lg {
        display: table-caption;
        border-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .navbar-autocollapse-nav > li {
        padding: 8px 20px;
    }

        .navbar-autocollapse-nav > li:first-child {
            padding-left: 30px;
        }

        .navbar-autocollapse-nav > li:last-child {
            padding-right: 30px;
        }
}
/* filterbar-specific styles */
.filters-single,
.filters-single li,
.filters-multi,
.filters-multi li {
    margin: .4em 0;
    white-space: normal;
    list-style: none;
}

    .filters-single.filters-footer,
    .filters-single li.filters-footer,
    .filters-multi.filters-footer,
    .filters-multi li.filters-footer {
        margin-top: 15px;
        margin-bottom: 0;
    }

    .filters-single.filters-header,
    .filters-single li.filters-header,
    .filters-multi.filters-header,
    .filters-multi li.filters-header {
        margin-top: 0;
    }

    .filters-single.filters-single-option,
    .filters-single li.filters-single-option,
    .filters-multi.filters-single-option,
    .filters-multi li.filters-single-option {
        margin: 0;
    }

    li.filters-single-option a,
    .filters-multi label {
        position: relative;
        display: block;
        padding: 5px 10px 5px 15px;
        font-size: 15px;
        line-height: 1.6;
        color: #58595b;
        text-transform: none;
    }

    .filters-multi label {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 400;
        color: #58595b;
    }

    .filters-single .filters-search,
    .filters-multi .filters-search,
    .filters-multi .filters-btn-group {
        padding: 0;
        margin: 10px 5px;
    }

    .filters-multi label {
        padding-left: 30px;
        line-height: 1.3;
    }

    .filters-single > li.filters-selected {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
        color: #58595b;
    }

        .filters-single > li.filters-selected a:before {
            position: absolute;
            top: 50%;
            left: 0;
            width: 4px;
            height: 4px;
            margin-top: -2px;
            content: "\20";
            background: #16a44a;
            border-radius: 100%;
        }

.filters-header,
.filters-footer {
    margin: 0;
}

    .filters-header .col-xs-4,
    .filters-footer .col-xs-4,
    .filters-header .col-xs-6,
    .filters-footer .col-xs-6,
    .filters-header .col-xs-8,
    .filters-footer .col-xs-8 {
        padding: 0;
    }

.filters-header {
    padding: 5px 5px 10px;
    border-bottom: 1px solid #e6e7e8;
}

.filters-footer {
    padding: 15px 5px 5px;
    border-top: 1px solid #e6e7e8;
}

    .filters-header a,
    .filters-footer a {
        line-height: 1.846153846154;
        color: #58595b;
        /* 24px /13 */
    }

    .filters-header a,
    .filters-footer a,
    .filters-header .btn-sm,
    .filters-footer .btn-sm {
        font-size: .8666666666667em;
        /* 13px /15 */
    }

    .filters-header .btn-sm,
    .filters-footer .btn-sm {
        padding: 0 1em;
        /* 13px */
    }

    .filters-header .col-xs-4:last-child,
    .filters-header .col-xs-6:last-child,
    .filters-header .col-xs-8:last-child,
    .filters-footer .col-xs-4:last-child,
    .filters-footer .col-xs-6:last-child,
    .filters-footer .col-xs-8:last-child {
        padding: 0;
        text-align: right;
    }

    .filters-header .icon-remove:before,
    .filters-footer .icon-remove:before {
        margin-right: 6px;
    }

.filterbar-filterheading {
    margin: 0;
    font-size: 62.5%;
    font-weight: normal;
    color: #58595b;
}

.filterbar-text {
    font-size: 1em;
    font-weight: 300;
    line-height: 2em;
}

.filterbar .filterbar-filterheading-icononly {
    width: 3.8em;
    padding-left: 15px;
}

    .filterbar .filterbar-filterheading-icononly > a {
        position: relative;
        padding-left: 1em;
        color: #767676;
    }

        .filterbar .filterbar-filterheading-icononly > a:before {
            position: absolute;
            top: 0;
            left: 0;
            float: left;
            width: auto;
            height: auto;
            font-weight: 600;
            line-height: 1;
        }

    .filterbar .filterbar-filterheading-icononly > a,
    .navbar-autocollapse .tablesaw-advance a.tablesaw-columntoggle-btn {
        height: 2.8em;
        margin: 0;
        font-weight: 600;
        color: #767676;
        border: 0;
    }

.navbar-autocollapse .tablesaw-advance {
    float: none;
}

.filterbar-filtergroup .btn,
.filterbar .dropdown-toggle {
    font-size: 1em;
    font-weight: 600;
    color: #000;
}

    .filterbar-filtergroup .btn:not(.active) {
        font-weight: normal;
        color: #767676;
    }

.filterbar-filtergroup {
    min-width: 8.5em;
    white-space: nowrap;
}

    .filterbar-filtergroup .sa-text {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .filterbar-filtergroup.btn-group > .btn {
        display: inline-block;
        float: none;
    }

@media (min-width: 992px) {
    .filterbar-filtergroup .sa-text {
        position: static !important;
        left: auto;
        width: auto;
        height: auto;
        padding: auto;
        margin: auto;
        overflow: visible;
        clip: none;
        white-space: normal;
    }
}

.filterbar-filtergroup .btn {
    padding: 0 0 .2em;
    margin-right: 12px;
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
}

    .filterbar-filtergroup .btn:last-child {
        margin-right: 0;
    }

    .filterbar-filtergroup .btn:active,
    .filterbar-filtergroup .btn:hover,
    .filterbar-filtergroup .btn:focus {
        border-color: #e6e7e8;
    }

    .filterbar-filtergroup .btn.active {
        background: none;
        border-color: #6fbe44;
    }

.filterbar-menu {
    padding: 0;
    overflow: hidden;
}

    .filterbar-menu li {
        position: relative;
        overflow: hidden;
    }

    .filterbar-menu > li {
        padding: 10px 15px 0;
        margin: 0;
        clear: both;
        border-bottom: 1px solid #e6e7e8;
    }

        .filterbar-menu > li:before,
        .filterbar-menu > li:after {
            display: table;
            content: " ";
        }

        .filterbar-menu > li:after {
            clear: both;
        }

        .filterbar-menu > li:before,
        .filterbar-menu > li:after {
            display: table;
            content: " ";
        }

        .filterbar-menu > li:after {
            clear: both;
        }

    .filterbar-menu .filterbar-filterheading {
        padding: 4px 0 10px;
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 700;
        color: #58595b;
        text-transform: uppercase;
        white-space: normal;
    }

    .filterbar-menu .sa-camd-adjust {
        margin-bottom: 10px;
    }

    .filterbar-menu .filterbar-filtergroup {
        margin-top: -2px;
    }

        .filterbar-menu .filterbar-filtergroup.btn-group > .btn {
            /* display 3-7 options in a list so they fit in the menu */
        }

            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3),
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) ~ .btn,
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4),
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) ~ .btn,
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5),
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) ~ .btn,
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6),
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) ~ .btn,
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7),
            .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) ~ .btn {
                display: block;
                width: 100%;
                padding: 0 10px;
                margin: 2px 0;
                text-align: left;
                border: 0;
                border-left: 2px solid transparent;
            }

                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) ~ .btn .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) ~ .btn .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) ~ .btn .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) ~ .btn .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) .sa-text,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) ~ .btn .sa-text {
                    position: static !important;
                    left: auto;
                    width: auto;
                    height: auto;
                    padding: auto;
                    margin: auto;
                    overflow: visible;
                    clip: none;
                    white-space: normal;
                }

                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3):last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) ~ .btn:last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4):last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) ~ .btn:last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5):last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) ~ .btn:last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6):last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) ~ .btn:last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7):last-child,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) ~ .btn:last-child {
                    margin-bottom: 10px;
                }

                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3):active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) ~ .btn:active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4):active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) ~ .btn:active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5):active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) ~ .btn:active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6):active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) ~ .btn:active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7):active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) ~ .btn:active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3):hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) ~ .btn:hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4):hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) ~ .btn:hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5):hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) ~ .btn:hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6):hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) ~ .btn:hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7):hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) ~ .btn:hover,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3):focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) ~ .btn:focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4):focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) ~ .btn:focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5):focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) ~ .btn:focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6):focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) ~ .btn:focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7):focus,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) ~ .btn:focus {
                    border-color: #e6e7e8;
                }

                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3).active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(3) ~ .btn.active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4).active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(4) ~ .btn.active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5).active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(5) ~ .btn.active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6).active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(6) ~ .btn.active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7).active,
                .filterbar-menu .filterbar-filtergroup.btn-group > .btn:first-child:nth-last-child(7) ~ .btn.active {
                    border-color: #6fbe44;
                }

    .filterbar-menu [data-toggle='collapse'] {
        display: block;
        font-size: 1em;
        font-weight: 600;
        line-height: 18px;
        color: #000;
        text-decoration: none;
    }

        .filterbar-menu [data-toggle='collapse'] .caret {
            float: right;
            height: 15px;
            margin-top: 2px;
        }

    .filterbar-menu .filters-single > li.filters-selected a,
    .filterbar-menu .filters-multi li.filters-selected label {
        color: #58595b;
    }

    .filterbar-menu .dropdown {
        position: static;
        display: inline;
    }

    .filterbar-menu .collapse {
        position: relative;
        padding: 0 10px;
        overflow: hidden;
        clear: both;
        background: #f8f8f9;
    }

        .filterbar-menu .collapse.filters-single {
            padding-top: 5px;
            padding-bottom: 5px;
        }

    .filterbar-menu > .collapse,
    .filterbar-menu .dropdown > .collapse {
        margin: 0 -15px;
        border-top: 1px solid #e6e7e8;
    }

    .filterbar-menu .filters-header,
    .filterbar-menu .filters-footer {
        padding: 15px 5px 10px;
    }

.filterbar-search,
.navbar-autocollapse-nav > li.filterbar-search {
    width: 230px;
    padding-right: 5px;
    padding-left: 10px;
}

    .filterbar-search .navbar-form,
    .navbar-autocollapse-nav > li.filterbar-search .navbar-form {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .filterbar-search .sa-navbar-search .input-group-btn,
    .navbar-autocollapse-nav > li.filterbar-search .sa-navbar-search .input-group-btn {
        min-width: 90px;
    }

        .filterbar-search .sa-navbar-search .input-group-btn .btn .caret,
        .navbar-autocollapse-nav > li.filterbar-search .sa-navbar-search .input-group-btn .btn .caret {
            right: 12px;
        }

        .filterbar-search .sa-navbar-search .input-group-btn .btn,
        .navbar-autocollapse-nav > li.filterbar-search .sa-navbar-search .input-group-btn .btn,
        .filterbar-search .sa-navbar-search .form-control,
        .navbar-autocollapse-nav > li.filterbar-search .sa-navbar-search .form-control {
            border: 0;
            border-radius: 0;
        }

            .filterbar-search .sa-navbar-search .form-control input,
            .navbar-autocollapse-nav > li.filterbar-search .sa-navbar-search .form-control input {
                min-width: 110px;
            }

    .filterbar-search .sa-navbar-search .icon-search,
    .navbar-autocollapse-nav > li.filterbar-search .sa-navbar-search .icon-search {
        margin-left: -5px;
        font-size: 1.5em;
        color: #767676;
    }

@media (max-width: 599px) {
    .filterbar-search .sa-navbar-search .input-group-btn,
    .navbar-autocollapse-nav > li.filterbar-search .sa-navbar-search .input-group-btn {
        display: none;
    }
}

.filterbar-actionbtn,
.navbar-autocollapse-nav > li.filterbar-actionbtn {
    text-align: right;
}

@media (max-width: 479px) {
    .filterbar-actionbtn,
    .navbar-autocollapse-nav > li.filterbar-actionbtn {
        padding: 0;
        text-align: center;
    }

        .filterbar-actionbtn .btn,
        .navbar-autocollapse-nav > li.filterbar-actionbtn .btn {
            height: auto;
            height: 55px;
            line-height: 55px;
            border-radius: 0;
        }

            .filterbar-actionbtn .btn [class^="icon-"],
            .navbar-autocollapse-nav > li.filterbar-actionbtn .btn [class^="icon-"] {
                margin: 0;
                font-size: 1.6em;
            }

            .filterbar-actionbtn .btn .icon-triangle-down.icon-right,
            .navbar-autocollapse-nav > li.filterbar-actionbtn .btn .icon-triangle-down.icon-right {
                margin: 0 -.6em 0 0;
            }

        .filterbar-actionbtn .sa-btn-text,
        .navbar-autocollapse-nav > li.filterbar-actionbtn .sa-btn-text {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
}

.carousel-fade {
    overflow: visible;
}

.carousel img {
    display: block;
    width: 100%;
}
/* hide nextprev */
.carousel-nav .prev,
.carousel-nav .next {
    display: none;
}
/* dot nav */
.carousel-dots .carousel-pagination {
    display: block;
    margin: 2em 0 0;
    text-align: center;
}

.carousel-dots .carousel-pagination {
    display: none;
}

.carousel-dots[data-pagination] .carousel-pagination {
    display: block;
}

.carousel-dots .carousel-pagination a {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    overflow: hidden;
    text-indent: -9999px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 100%;
}

.carousel-dots .carousel-pagination a {
    float: none;
}

    .carousel-dots .carousel-pagination a:hover,
    .carousel-dots .carousel-pagination a:focus {
        background-color: #ccc;
    }

.carousel-dots .carousel-pagination .carousel-active-page a {
    background: #aaa;
    -webkit-box-shadow: none;
    box-shadow: none;
}
/* photo feature image / text formatting */
.sa-photofeature-imgsect-contain:not(.focal-point) {
    position: relative;
    min-height: 300px;
}

.sa-photofeature-imgsect:not(.focal-point) div {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-background-size: contain;
    background-size: contain;
    border-width: 0;
}

[class*="sa-infoblock-multicol"] .sa-photofeature-imgsect.sa-photofeature-imgonly {
    padding: 0;
}

    [class*="sa-infoblock-multicol"] .sa-photofeature-imgsect.sa-photofeature-imgonly img {
        max-width: 100%;
    }

.sa-photofeature-imgsect-origincenter div {
    background-position: 50% 50%;
}

.sa-photofeature .sa-infoblock-quote blockquote {
    padding: 0 .6em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.1875em;
    font-style: normal;
    font-weight: 400;
    line-height: 1.3;
}

    .sa-photofeature .sa-infoblock-quote blockquote:first-child {
        margin-top: 0;
    }

@media (min-width: 768px) {
    .sa-photofeature .sa-infoblock-quote blockquote {
        font-size: 1.25em;
    }
}

@media (min-width: 768px) {
    .sa-photofeature .sa-infoblock-quote blockquote {
        font-size: 1.5625em;
    }

    .sa-photofeature.sa-infoblock .sa-photofeature-captionsect {
        min-height: 450px;
        padding-top: 5em;
    }
}

.sa-photofeature .sa-infoblock-quote-source {
    margin: .5em 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.0625em;
    font-style: normal;
    font-weight: 300;
    font-weight: 400;
    line-height: 1.3;
}

.sa-photofeature .sa-infoblock-quote-meta {
    margin-top: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .7em;
    font-style: normal;
    font-weight: 300;
}
/* tabbed pagination */
/*override bs default*/
.sa-photofeature-set .panel,
.sa-photofeature-set .panel + .panel,
.sa-photofeature-set .panel-default > .panel-heading + .panel-collapse > .panel-body {
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

@media (max-width: 767px) {
    .sa-photofeature-set .panel.collapse-expand {
        border: 1px solid #e6e7e8;
        -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
        box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
    }

        .sa-photofeature-set .panel.collapse-expand > .sa-infoblock-sect {
            background-color: #fff;
        }

            .sa-photofeature-set .panel.collapse-expand > .sa-infoblock-sect:not( :last-child ) {
                border-color: #b1b3b6;
                border-style: solid;
                border-width: 0 0 1px;
            }

    .sa-photofeature-set .panel,
    .sa-photofeature-set .panel + .panel {
        margin-bottom: .4em;
    }
}

.sa-photofeature-set .panel-heading {
    padding: 0;
    background: none;
}

.sa-photofeature-set .panel-title {
    font-size: 1em;
}

    .sa-photofeature-set .panel-title a {
        position: relative;
        display: block;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        min-height: 5.25em;
        padding: 1em 5.5em 1em 1.6em;
        color: #767676;
        background: #f8f8f9;
    }

.bg-grayfill .sa-photofeature-set .panel-body {
    background-color: #f8f8f9;
}

@media (max-width: 767px) {
    .bg-grayfill .sa-photofeature-set .panel-title a {
        background-color: #fff;
    }
}

.sa-photofeature-set .panel-body {
    background: #fff;
}

.collapse-headertext {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 600;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.collapse-headericon {
    position: absolute;
    top: 50%;
    right: 1.5em;
    width: 30px;
    height: 30px;
    margin-top: -12px;
    font-size: 30px;
    color: #767676;
    vertical-align: middle;
}

.sa-photofeature-set .panel-title .caret {
    position: absolute;
    top: 50%;
    right: 1.3em;
    height: 10px;
    margin-top: -10px;
}

.sa-photofeature-set .panel-title a[aria-expanded=true] .caret {
    margin-top: -5px;
    opacity: .5;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: bottom right;
    -ms-transform-origin: bottom right;
    -o-transform-origin: bottom right;
    transform-origin: bottom right;
}

    .sa-photofeature-set .panel-title a[aria-expanded=true] .caret:before {
        color: #fff;
    }

.sa-photofeature-set .panel-title a[aria-expanded=true] {
    position: relative;
    padding: 1.45em 5.5em 1.3em 1.6em;
    color: #fff;
    background-color: #075484;
    background-image: -webkit-linear-gradient(left, #075484, #007dbc 72%, #60cef1);
    background-image: -o-linear-gradient(left, #075484, #007dbc 72%, #60cef1);
    background-image: -webkit-gradient(linear, left top, right top, from(#075484), color-stop(72%, #007dbc), to(#60cef1));
    background-image: linear-gradient(to right, #075484, #007dbc 72%, #60cef1);
    background-repeat: no-repeat;
}

    .sa-photofeature-set .panel-title a[aria-expanded=true]:before {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 5px;
        content: " ";
        background-color: #6fbe44;
        background-image: -webkit-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -o-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -webkit-gradient(linear, left top, right top, from(#6fbe44), color-stop(40%, #29abe2), to(#caeefa));
        background-image: linear-gradient(to right, #6fbe44, #29abe2 40%, #caeefa);
        background-repeat: no-repeat;
    }

    .sa-photofeature-set .panel-title a[aria-expanded=true] .collapse-headericon {
        color: #fff;
    }

.sa-photofeature-set-tabstop {
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sa-photofeature-set {
        position: relative;
    }

    .sa-photofeature-set-tabstop {
        padding-top: 6.5em;
    }

    .sa-photofeature-set-tabsleft {
        position: relative;
        padding-top: 0;
        padding-left: 15em;
        margin-left: 5%;
        /* match sa-infoblock-sect padding */
    }

        .sa-photofeature-set-tabsleft .sa-infoblock {
            margin-left: 1em;
        }

        .sa-photofeature-set-tabsleft .panel-title {
            position: absolute;
            top: 0;
            left: 0;
            width: 15em;
            height: 5.25em;
        }

            .sa-photofeature-set-tabsleft .panel-title a {
                height: 84px;
                margin-bottom: 0;
                overflow: hidden;
                border: 1px solid #f8f8f9;
            }

    .bg-grayfill .sa-photofeature-set-tabsleft .panel-title a {
        background-color: #e6e7e8;
    }

    .sa-photofeature-set-tabstop .panel-title {
        position: absolute;
        top: 0;
        text-align: center;
    }

        .sa-photofeature-set-tabstop .panel-title a,
        .sa-photofeature-set-tabstop .panel-title a[aria-expanded=true] {
            padding: 0;
            background: none;
        }

    .sa-photofeature-set-tabsleft .panel-title a[aria-expanded="true"] {
        color: #212221;
        background: #fff;
        border: 1px solid #dfdfdf;
        -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
        box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
    }

    .sa-photofeature-set-tabstop .panel-title a[aria-expanded="true"]:before {
        display: none;
    }

    .sa-photofeature-set-tabstop .collapse-headertext {
        font-size: .9375em;
        color: #767676;
    }

    .sa-photofeature-set-tabstop .collapse-headericon {
        position: relative;
        right: auto;
        display: block;
        width: 48px;
        height: 48px;
        margin: 0 auto .2em;
        font-size: 1.0625em;
        line-height: 48px;
        color: #767676;
        text-align: center;
        border: 1px solid #767676;
        border-radius: 100%;
    }

    .sa-photofeature-set-tabsleft .collapse-headertext {
        font-family: "Source Sans Pro", sans-serif;
        font-size: 1.125em;
        font-style: normal;
        font-weight: 600;
    }

    .sa-photofeature-set-tabsleft .collapse-headericon {
        right: 18px;
    }

    .sa-photofeature-set .panel-title a .caret {
        display: none;
    }

    .sa-photofeature-set-tabsleft .panel:nth-child(2) .panel-title {
        top: 90px;
    }

    .sa-photofeature-set-tabsleft .panel:nth-child(3) .panel-title {
        top: 180px;
    }

    .sa-photofeature-set-tabsleft .panel:nth-child(4) .panel-title {
        top: 270px;
    }

    .sa-photofeature-set-tabsleft .panel:nth-child(5) .panel-title {
        top: 360px;
    }
    /* 2 accordion tabs */
    .sa-photofeature-set-tabstop.sa-photofeature-set-2 .panel-title {
        width: 50%;
    }

    .sa-photofeature-set-tabstop.sa-photofeature-set-2 .panel:nth-child(2) .panel-title {
        left: 50%;
    }
    /* 3 accordion tabs */
    .sa-photofeature-set-tabstop.sa-photofeature-set-3 .panel-title {
        width: 33.333%;
    }

    .sa-photofeature-set-tabstop.sa-photofeature-set-3 .panel:nth-child(2) .panel-title {
        left: 33.333%;
    }

    .sa-photofeature-set-tabstop.sa-photofeature-set-3 .panel:nth-child(3) .panel-title {
        left: 66.666%;
    }
    /* 4 accordion tabs */
    .sa-photofeature-set-tabstop.sa-photofeature-set-4 .panel-title {
        width: 25%;
    }

    .sa-photofeature-set-tabstop.sa-photofeature-set-4 .panel:nth-child(2) .panel-title {
        left: 25%;
    }

    .sa-photofeature-set-tabstop.sa-photofeature-set-4 .panel:nth-child(3) .panel-title {
        left: 50%;
    }

    .sa-photofeature-set-tabstop.sa-photofeature-set-4 .panel:nth-child(4) .panel-title {
        left: 75%;
    }

    .sa-photofeature-set-tabstop .collapse-headertext {
        display: inline-block;
        padding-bottom: .2em;
        margin-top: .5em;
        white-space: nowrap;
        border-bottom: 1px solid transparent;
    }

    .sa-photofeature-set-tabstop .panel-title a {
        display: block;
        background: none;
    }

    .sa-photofeature-set-tabstop a[aria-expanded=true] .collapse-headertext {
        display: inline-block;
        color: #212221;
        background: none;
        border-bottom-color: #29abe2;
        -webkit-align-self: baseline;
        -ms-flex-item-align: baseline;
        align-self: baseline;
    }

    .sa-photofeature-set-tabstop .panel-title a[aria-expanded=true] .collapse-headericon {
        color: #fff;
        background: #29abe2;
        border-color: #29abe2;
    }

    .sa-photofeature-set-tabsleft .panel-title a[aria-expanded=true] .collapse-headericon {
        color: #29abe2;
    }

    .sa-photofeature-set .panel-collapse .panel-body {
        border: 0;
    }
}
/* Multicol photos */
.sa-infoblock-photo-img {
    width: 100%;
}
/* override */
.sa-infoblock.sa-photofeature .sa-infoblock-sect.sa-photofeature-imgsect.sa-photofeature-imgsect {
    border-width: 0;
}

@media (max-width: 767px) {
    .sa-photofeature-imgsect.minheight-xs-0 {
        min-height: 40vw;
    }

    .sa-photofeature-imgsect.minheight-xs-1 {
        min-height: 45vw;
    }

    .sa-photofeature-imgsect.minheight-xs-2 {
        min-height: 50vw;
    }

    .sa-photofeature-imgsect.minheight-xs-3 {
        min-height: 55vw;
    }

    .sa-photofeature-imgsect.minheight-xs-4 {
        min-height: 60vw;
    }

    .sa-photofeature-imgsect.minheight-xs-5 {
        min-height: 65vw;
    }

    .sa-photofeature-imgsect.minheight-xs-6 {
        min-height: 70vw;
    }
}
/* Min-heights for single col, default is 300px */
@media (min-width: 768px) {
    .sa-photofeature-imgsect.minheight-sm-0 {
        min-height: 350px;
    }

    .sa-photofeature-imgsect.minheight-sm-1 {
        min-height: 450px;
    }

    .sa-photofeature-imgsect.minheight-sm-2 {
        min-height: 550px;
    }

    .sa-photofeature-imgsect.minheight-sm-3 {
        min-height: 650px;
    }

    .sa-photofeature-imgsect.minheight-sm-4 {
        min-height: 750px;
    }

    .sa-photofeature-imgsect.minheight-sm-5 {
        min-height: 850px;
    }

    .sa-photofeature-imgsect.minheight-sm-6 {
        min-height: 950px;
    }

    .sa-photofeature-imgsect.offset-up-1 {
        margin-top: -25px;
    }

    .sa-photofeature-imgsect.offset-up-2 {
        margin-top: -50px;
    }
}
/* Gradient overlays */
.sa-gradient {
    position: relative;
}

    .sa-gradient:before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        width: 75%;
        content: "";
        opacity: .5;
    }

.sa-gradient-green:before {
    background-image: -webkit-linear-gradient(left, #6ebd44, rgba(110, 189, 68, .5) 50%, rgba(110, 189, 68, 0));
    background-image: -o-linear-gradient(left, #6ebd44, rgba(110, 189, 68, .5) 50%, rgba(110, 189, 68, 0));
    background-image: -webkit-gradient(linear, left top, right top, from(#6ebd44), color-stop(50%, rgba(110, 189, 68, .5)), to(rgba(110, 189, 68, 0)));
    background-image: linear-gradient(to right, #6ebd44, rgba(110, 189, 68, .5) 50%, rgba(110, 189, 68, 0));
    background-repeat: no-repeat;
}

.sa-gradient-blue:before {
    background-image: -webkit-linear-gradient(left, #7bd1ee, rgba(40, 170, 225, .5) 50%, rgba(40, 170, 225, 0));
    background-image: -o-linear-gradient(left, #7bd1ee, rgba(40, 170, 225, .5) 50%, rgba(40, 170, 225, 0));
    background-image: -webkit-gradient(linear, left top, right top, from(#7bd1ee), color-stop(50%, rgba(40, 170, 225, .5)), to(rgba(40, 170, 225, 0)));
    background-image: linear-gradient(to right, #7bd1ee, rgba(40, 170, 225, .5) 50%, rgba(40, 170, 225, 0));
    background-repeat: no-repeat;
}

.sa-gradient-yellow:before {
    background-image: -webkit-linear-gradient(left, rgba(252, 181, 43, .9), rgba(252, 181, 43, .5) 50%, rgba(252, 181, 43, 0));
    background-image: -o-linear-gradient(left, rgba(252, 181, 43, .9), rgba(252, 181, 43, .5) 50%, rgba(252, 181, 43, 0));
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(252, 181, 43, .9)), color-stop(50%, rgba(252, 181, 43, .5)), to(rgba(252, 181, 43, 0)));
    background-image: linear-gradient(to right, rgba(252, 181, 43, .9), rgba(252, 181, 43, .5) 50%, rgba(252, 181, 43, 0));
    background-repeat: no-repeat;
}

.sa-gradient-greenblue:before {
    background-image: -webkit-linear-gradient(left, #8bca3e 0%, rgba(94, 186, 84, .8) 20%, rgba(40, 170, 225, .5) 50%, rgba(123, 209, 238, 0) 100%);
    background-image: -o-linear-gradient(left, #8bca3e 0%, rgba(94, 186, 84, .8) 20%, rgba(40, 170, 225, .5) 50%, rgba(123, 209, 238, 0) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#8bca3e), color-stop(20%, rgba(94, 186, 84, .8)), color-stop(50%, rgba(40, 170, 225, .5)), to(rgba(123, 209, 238, 0)));
    background-image: linear-gradient(to right, #8bca3e 0%, rgba(94, 186, 84, .8) 20%, rgba(40, 170, 225, .5) 50%, rgba(123, 209, 238, 0) 100%);
    background-repeat: no-repeat;
}
/* Gradient Sizes */
.sa-gradient-width-100:before {
    width: 100%;
}

.sa-gradient-width-50:before {
    width: 50%;
}
/* Gradient Opacities */
.sa-gradient-opacity-30 :before {
    opacity: .3;
}

.sa-gradient-opacity-40 :before {
    opacity: .4;
}

.sa-gradient-opacity-60 :before {
    opacity: .6;
}

.sa-gradient-opacity-70 :before {
    opacity: .7;
}

.sa-gradient-opacity-80 :before {
    opacity: .8;
}

.sa-gradient-opacity-90 :before {
    opacity: .9;
}

.sa-gradient-opacity-100 :before {
    opacity: 1;
}
/* Icons */
.sa-photofeature-icon {
    position: absolute;
    bottom: .4545454545455em;
    /* 10px /22 */
    z-index: 1;
    font-size: 1.375em;
    color: #fff;
    /* 22px /16 */
}

.sa-photofeature-icon-lg {
    font-size: 2.5em;
    /* 40px /16 */
}

.sa-photofeature-icon-right {
    right: .4545454545455em;
    left: auto;
    /* 10px /22 */
}

.sa-photofeature-icon-left {
    right: auto;
    left: .4545454545455em;
    /* 10px /22 */
}

.laptop {
    position: relative;
    display: block;
    width: 80%;
    padding: 4% 3.3% 3.3%;
    margin: 0 auto;
    overflow: visible;
    background: -webkit-radial-gradient(center 3.5%, circle, #bbb 0, #bbb .8%, #888 .85%, #ccc .9%, #ddd .95%, rgba(255, 255, 255, 0) .1%);
    background: -o-radial-gradient(center 3.5%, circle, #bbb 0, #bbb .8%, #888 .85%, #ccc .9%, #ddd .95%, rgba(255, 255, 255, 0) .1%);
    background: radial-gradient(circle at center 3.5%, #bbb 0, #bbb .8%, #888 .85%, #ccc .9%, #ddd .95%, rgba(255, 255, 255, 0) .1%);
    border: 1px solid #bbb;
    border-top-left-radius: .7em;
    border-top-right-radius: .7em;
}

@media (min-width: 768px) {
    .laptop {
        width: 84%;
    }

    .sa-photofeature-set-tabsleft .sa-infoblock-sect .laptop {
        margin-top: -2.2rem;
    }
}

@media (min-width: 70em) {
    .laptop {
        /* 1120 */
        padding: 2rem 1.625rem 1.625rem;
        background: -webkit-radial-gradient(center 1em, circle, #bbb 0, #bbb .8%, #888 .85%, #ccc .9%, #ddd .95%, rgba(255, 255, 255, 0) .1%);
        background: -o-radial-gradient(center 1em, circle, #bbb 0, #bbb .8%, #888 .85%, #ccc .9%, #ddd .95%, rgba(255, 255, 255, 0) .1%);
        background: radial-gradient(circle at center 1em, #bbb 0, #bbb .8%, #888 .85%, #ccc .9%, #ddd .95%, rgba(255, 255, 255, 0) .1%);
    }
}

.laptop:after {
    position: absolute;
    bottom: -5%;
    left: 50%;
    width: 118%;
    height: 5%;
    margin-left: -59%;
    content: "";
    border: 1px solid #bbb;
    border-radius: .1em;
}

.laptop img {
    width: 100%;
}

@media (min-width: 37.5em) {
    /* 600px */
    .sa-photofeature-multicol.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
        border-width: 0 1px 0 0;
    }

    .sa-photofeature-multicol.sa-infoblock {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .sa-photofeature-multicol.sa-infoblock-reversed {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
    }

    .sa-photofeature-multicol .sa-infoblock-sect {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .sa-photofeature-multicol .sa-infoblock-sect.sa-col-20 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 20%;
            -ms-flex: 0 1 20%;
            flex: 0 1 20%;
        }

        .sa-photofeature-multicol .sa-infoblock-sect.sa-col-25 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 25%;
            -ms-flex: 0 1 25%;
            flex: 0 1 25%;
        }

        .sa-photofeature-multicol .sa-infoblock-sect.sa-col-30 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
        }

        .sa-photofeature-multicol .sa-infoblock-sect.sa-col-40 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 40%;
            -ms-flex: 0 1 40%;
            flex: 0 1 40%;
        }

        .sa-photofeature-multicol .sa-infoblock-sect.sa-col-50 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
            flex: 0 1 50%;
        }

    .sa-photofeature-multicol .sa-infoblock-sect {
        padding-top: 3%;
        padding-right: 3%;
        padding-left: 3%;
    }
}

@media (min-width: 48em) and (max-width: 61.8125em) {
    /* 768px 989px */
    /* Overrides: .sa-photofeature.sa-infoblock .sa-infoblock-sect:not(.sa-infoblock-sect-callout):not(.sa-photofeature-imgonly) */
    .sa-photofeature.sa-photofeature-multicol .sa-infoblock-sect:not(.sa-infoblock-sect-callout):not(.sa-photofeature-imgonly) {
        padding-top: 3%;
    }
}
/* Button */
.sa-btn-collapse {
    height: auto;
    padding: 2px 10px 0;
    padding-left: 0;
    margin-bottom: 2px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .875em;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
    color: #212221;
}

    .sa-btn-collapse:focus,
    .sa-btn-collapse:active,
    .sa-btn-collapse:focus:active {
        border-color: #caeefa;
    }

.sa-btn-collapse-b {
    font-size: .6875em;
    color: #767676;
    text-transform: uppercase;
}

.sa-btn-collapse:before {
    float: left;
    width: 18px;
    margin-right: 3px;
    font-family: icomoon;
    font-size: 1.142857143em;
    color: #767676;
    /* 16px */
    content: "\e968";
}

.sa-btn-collapse-b:before {
    font-size: 1.6em;
    /* 16px /10 */
    line-height: .75em;
    color: #29abe2;
    /* 12px /16 */
}

.sa-btn-collapse[aria-expanded="true"]:before {
    content: "\e966";
}
/* Content */
.sa-collapse {
    padding-left: 22px;
    margin-bottom: 12.66666667px;
    font-size: .875em;
}
/* family-chooser */
.family-chooser li.checkbox {
    position: relative;
    margin: 0;
}

    .family-chooser li.checkbox > label {
        padding-left: 40px;
    }

        .family-chooser li.checkbox > label > strong {
            font-weight: 600;
        }

.family-chooser .checkbox > button {
    position: absolute;
    top: 7px;
    left: 0;
    width: 16px;
    height: 16px;
    font-size: 1.1em;
    background: none;
    border: 0;
}

    .family-chooser .checkbox > button:before {
        position: absolute;
        top: 0;
        left: 0;
        color: #007dbc;
    }

    .family-chooser .checkbox > button[aria-expanded=false]:before {
        content: "\e968";
    }

.family-chooser ul {
    padding-left: 20px;
}
/*@import "sa-exportmenu.less";*/
/*@import "sa-wizard.less";*/
/*@import "sa-pagination.less";*/
/*@import "sa-modals.less";*/
/*@import "sa-panels.less";*/
/*@import "sa-flag.less";*/
/*@import "sa-alerts.less";*/
/* Employee List */
.sa-employee {
    /* 10px /16 */
    padding-top: .625em;
    margin-top: .625em;
    /* 10px /16 */
    margin-bottom: .625em;
    overflow: hidden;
    /* clearfix */
    border-top: 1px solid #e6e7e8;
    /* 10px /16 */
}

    .sa-employee:first-child {
        padding-top: 0;
        margin-top: 0;
        border-top: none;
    }

    .sa-employee:last-child {
        margin-bottom: 1.625em;
        /* 26px /16 */
    }

.sa-employee-img {
    position: relative;
    float: left;
    width: 30%;
    max-width: 70px;
    padding: 2px;
    margin: 0 1em 0 0;
}

    .sa-employee-img:before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: " ";
        /* 
	Not using the mixin here, the mixin has a maximum of 2 color stops.
	Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffdd15+0,ebdb16+6,8ad21b+38,63ce1d+53,29abe2+100
	*/
        background: #ffdd15;
        background: -webkit-linear-gradient(left, #ffdd15 0%, #ebdb16 6%, #8ad21b 38%, #63ce1d 53%, #29abe2 100%);
        background: -webkit-gradient(linear, left top, right top, from(#ffdd15), color-stop(6%, #ebdb16), color-stop(38%, #8ad21b), color-stop(53%, #63ce1d), to(#29abe2));
        background: -o-linear-gradient(left, #ffdd15 0%, #ebdb16 6%, #8ad21b 38%, #63ce1d 53%, #29abe2 100%);
        background: linear-gradient(to right, #ffdd15 0%, #ebdb16 6%, #8ad21b 38%, #63ce1d 53%, #29abe2 100%);
        border-radius: 50%;
    }

    .sa-employee-img img {
        position: relative;
        z-index: 1;
        max-width: 100%;
        border-radius: 50%;
    }

.sa-employee-title {
    margin: 0 0 .3333333333333em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75em;
    font-style: normal;
    font-weight: 600;
    color: #58595b;
    text-transform: uppercase;
    /* 4px /12 */
}

.sa-employee-name {
    margin: 0 0 .125em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 600;
    /* 2px /16 */
}

a[href].sa-employee-email {
    color: inherit;
}

.sa-employee-email,
.sa-employee-phone {
    margin: 0 0 .2307692307692em;
    font-size: .8125em;
    /* 3px /13 */
}

.sa-employee-phone {
    margin-bottom: 0;
}

.sa-employee-welcome {
    /* 22px /16 */
    margin-top: 0;
    margin-bottom: .2272727272727em;
    font-size: 1.375em;
    /* 5px /22 */
}

    .sa-employee-welcome ~ .sa-employee-name {
        /* 15px /16 */
        font-family: "Source Sans Pro", sans-serif;
        font-size: .9375em;
        font-style: normal;
        font-weight: 400;
    }

    .sa-employee-welcome ~ .sa-employee-email {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 300;
    }
/*@import "sa-addscope.less";*/
.sa-careerpathhed {
    margin-bottom: 1em;
}

.sa-careerpath {
    margin: 0;
    font-size: 1em;
    /* 16px /16 */
    list-style: none;
}

    .sa-careerpath:before,
    .sa-careerpath:after {
        display: table;
        content: " ";
    }

    .sa-careerpath:after {
        clear: both;
    }

    .sa-careerpath:before,
    .sa-careerpath:after {
        display: table;
        content: " ";
    }

    .sa-careerpath:after {
        clear: both;
    }

.sa-careerpath-level {
    /* 13px /16 */
    margin: 0 0 4px;
    font-size: 1em;
    color: #212221;
}

.sa-careerpath-btn .sa-careerpath-level {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.sa-careerpath-title {
    margin-top: 0;
    /* 16px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 600;
}

.sa-careerpath-reqs {
    font-size: 1em;
    /* 14px /16 */
    color: #8b8b8d;
}

.sa-careerpath-link,
.sa-careerpath-btn {
    position: relative;
    display: block;
    height: 100%;
    /* 26px /16 */
    min-height: 4.5em;
    padding: 1.625em;
    border: 1px solid #e6e7e8;
    /* 72px /16 */
}

.sa-careerpath-link {
    background-color: #f6f6f7;
}

.sa-careerpath-btn {
    background-color: #fff;
}

    .sa-careerpath-btn :last-child,
    .sa-careerpath-link :last-child {
        margin-bottom: 0;
    }

.sa-careerpath-action-c {
    background-color: #fff;
}

    .sa-careerpath-action-c .sa-careerpath-title {
        color: #212221;
    }

.sa-careerpath-btn.sa-careerpath-action-c {
    z-index: 2;
    border: 1px solid #c6c7c8;
    -webkit-box-shadow: 0 0 0 4px rgba(0, 0, 0, .08);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .08);
}

.sa-careerpath-action-c:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    background-color: #39afe1;
}

.sa-careerpath-action-l:before,
.sa-careerpath-action-l:after,
.sa-careerpath-action-r:before,
.sa-careerpath-action-r:after {
    position: absolute;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    content: "";
    background-color: #f6f6f7;
    border: 1px solid #e6e7e8;
}

.sa-careerpath-btn.sa-careerpath-action-l,
.sa-careerpath-btn.sa-careerpath-action-r,
.sa-careerpath-btn.sa-careerpath-action-l:before,
.sa-careerpath-btn.sa-careerpath-action-l:after,
.sa-careerpath-btn.sa-careerpath-action-r:before,
.sa-careerpath-btn.sa-careerpath-action-r:after {
    background-color: #fff;
    border-color: #c6c7c8;
}
/* Stacked */
@media (max-width: 29.9375em) {
    /* 479px /16 */
    .sa-careerpath {
        padding: 10px 0;
    }

    .sa-careerpath-level {
        float: left;
        width: 18%;
    }

    .sa-careerpath-title,
    .sa-careerpath-reqs {
        margin-left: 26%;
    }

    .sa-careerpath-action-c {
        left: -4px;
        width: -webkit-calc(100% + 8px);
        width: calc(100% + 8px);
        padding-top: 1.375em;
        /* 22px /16 */
        padding-bottom: 1.375em;
        background-color: #fff;
        /* 22px /16 */
    }

        .sa-careerpath-action-c:before {
            width: 4px;
            height: 100%;
            background-color: #39afe1;
            background-image: -webkit-linear-gradient(#39afe1, #50bfea 50%, #78d4f3);
            background-image: -o-linear-gradient(#39afe1, #50bfea 50%, #78d4f3);
            background-image: -webkit-gradient(linear, left top, left bottom, from(#39afe1), color-stop(50%, #50bfea), to(#78d4f3));
            background-image: linear-gradient(#39afe1, #50bfea 50%, #78d4f3);
            background-repeat: no-repeat;
        }

    .sa-careerpath-action-l {
        padding-top: 1.0625em;
        border-bottom: 0;
        /* 17px /16 */
    }

    .sa-careerpath-action-r {
        padding-bottom: 1.0625em;
        border-top: 0;
        /* 17px /16 */
    }

        .sa-careerpath-action-l:before,
        .sa-careerpath-action-l:after,
        .sa-careerpath-action-r:before,
        .sa-careerpath-action-r:after {
            width: 50%;
            height: 20px;
        }

    .sa-careerpath-action-l:before,
    .sa-careerpath-action-l:after {
        top: -8px;
        border-bottom: 0;
    }

    .sa-careerpath-action-l:before {
        left: 50%;
        border-left: 0;
        -webkit-transform: skew(0, 4deg);
        -ms-transform: skew(0, 4deg);
        -o-transform: skew(0, 4deg);
        transform: skew(0, 4deg);
    }

    .sa-careerpath-action-l:after {
        left: -1px;
        border-right: 0;
        -webkit-transform: skew(0, -4deg);
        -ms-transform: skew(0, -4deg);
        -o-transform: skew(0, -4deg);
        transform: skew(0, -4deg);
    }

    .sa-careerpath-action-r:before,
    .sa-careerpath-action-r:after {
        bottom: -8px;
        border-top: 0;
    }

    .sa-careerpath-action-r:before {
        left: -1px;
        border-right: 0;
        -webkit-transform: skew(0, 4deg);
        -ms-transform: skew(0, 4deg);
        -o-transform: skew(0, 4deg);
        transform: skew(0, 4deg);
    }

    .sa-careerpath-action-r:after {
        left: 50%;
        border-left: 0;
        -webkit-transform: skew(0, -4deg);
        -ms-transform: skew(0, -4deg);
        -o-transform: skew(0, -4deg);
        transform: skew(0, -4deg);
    }
}
/* Horizontal */
@media (min-width: 30em) {
    /* 480px /16 */
    .sa-careerpath {
        padding: 0 10px;
    }

    .sa-careerpath-item {
        float: left;
        width: 33.333333%;
    }

    @supports (display: flex) {
        .sa-careerpath {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: stretch;
            -webkit-align-items: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
        }
    }

    .sa-careerpath-action-c {
        height: -webkit-calc(100% + 8px);
        height: calc(100% + 8px);
        margin-top: -4px;
        border: 0;
    }

        .sa-careerpath-action-c:before {
            width: 100%;
            height: 4px;
            background-color: #39afe1;
            background-image: -webkit-linear-gradient(left, #39afe1, #50bfea 50%, #78d4f3);
            background-image: -o-linear-gradient(left, #39afe1, #50bfea 50%, #78d4f3);
            background-image: -webkit-gradient(linear, left top, right top, from(#39afe1), color-stop(50%, #50bfea), to(#78d4f3));
            background-image: linear-gradient(to right, #39afe1, #50bfea 50%, #78d4f3);
            background-repeat: no-repeat;
        }

    .sa-careerpath-action-l {
        padding-left: 1.0625em;
        /* 17px /16 */
    }

    .sa-careerpath-action-r {
        padding-right: 1.0625em;
        /* 17px /16 */
    }

    .sa-careerpath-btn.sa-careerpath-action-l {
        border-right: 0;
    }

    .sa-careerpath-btn.sa-careerpath-action-r {
        border-left: 0;
    }

    .sa-careerpath-action-l:before,
    .sa-careerpath-action-l:after,
    .sa-careerpath-action-r:before,
    .sa-careerpath-action-r:after {
        width: 20px;
        height: 50%;
    }

    .sa-careerpath-action-l:before,
    .sa-careerpath-action-l:after {
        left: -8px;
        border-right: 0;
    }

    .sa-careerpath-action-l:before {
        top: 50%;
        border-top: 0;
        -webkit-transform: skew(4deg, 0);
        -ms-transform: skew(4deg, 0);
        -o-transform: skew(4deg, 0);
        transform: skew(4deg, 0);
    }

    .sa-careerpath-action-l:after {
        top: -1px;
        border-bottom: 0;
        -webkit-transform: skew(-4deg, 0);
        -ms-transform: skew(-4deg, 0);
        -o-transform: skew(-4deg, 0);
        transform: skew(-4deg, 0);
    }

    .sa-careerpath-action-r:before,
    .sa-careerpath-action-r:after {
        right: -8px;
        border-left: 0;
    }

    .sa-careerpath-action-r:before {
        top: -1px;
        border-bottom: 0;
        -webkit-transform: skew(4deg, 0);
        -ms-transform: skew(4deg, 0);
        -o-transform: skew(4deg, 0);
        transform: skew(4deg, 0);
    }

    .sa-careerpath-action-r:after {
        top: 50%;
        border-top: 0;
        -webkit-transform: skew(-4deg, 0);
        -ms-transform: skew(-4deg, 0);
        -o-transform: skew(-4deg, 0);
        transform: skew(-4deg, 0);
    }
}

@media (min-width: 37.5em) {
    /* 600px /16 */
    .sa-careerpath-title {
        font-size: 1.125em;
        /* 18px /16 */
    }
}

.sa-seomenu {
    position: relative;
    display: inline-block;
}

.sa-seomenu-btn {
    padding-left: .125em;
    /* 2px /16 */
    margin-left: -.125em;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
    /* -2px /16 */
}

.sa-seomenu-btn-text {
    display: inline-block;
    border-bottom: 1px solid #6ec5eb;
}

.sa-seomenu-btn,
.sa-seomenu-btn:visited {
    color: #212221;
}

    .sa-seomenu-btn[aria-expanded=true] {
        color: #fff;
        background-color: #28abe3;
    }

        .sa-seomenu-btn[aria-expanded=true] .sa-seomenu-btn-text {
            border-color: transparent;
        }

        .sa-seomenu-btn[aria-expanded=true]:before {
            position: absolute;
            bottom: -.25em;
            left: 2em;
            /* -4px /16 */
            width: 0;
            height: 0;
            content: "";
            /* 5px /16 */
            border-top: .3125em solid #28abe3;
            /* 5px /16 */
            border-right: .3125em solid transparent;
            border-left: .3125em solid transparent;
            /* 5px /16 */
        }

.sa-seomenu-arrow {
    position: relative;
    bottom: -.1em;
    margin-left: -4px;
    color: #6ec5eb;
}

.sa-seomenu-btn[aria-expanded=true] .sa-seomenu-arrow {
    color: #fff;
}

.sa-seomenu-collapse {
    /* 16px /16 */
    position: absolute;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
    z-index: 10;
    width: 100%;
    min-width: 15em;
    max-width: 100vw;
    margin-top: 7px;
    font-size: 1rem;
    background-color: #fff;
    border: 1px solid #e6e7e8;
    -webkit-box-shadow: 3px 3px 8px 1px rgba(0, 0, 0, .1);
    box-shadow: 3px 3px 8px 1px rgba(0, 0, 0, .1);
}

@media (min-width: 768px) {
    .sa-seomenu-collapse {
        min-width: 24em;
    }
}

h1 .sa-seomenu-collapse {
    margin-top: 12px;
}

h2 .sa-seomenu-collapse {
    margin-top: 9px;
}

.sa-seomenu-content {
    padding: 10px 15px;
}

.sa-seomenu-list {
    margin: 0;
}

    .sa-seomenu-list dt {
        margin-top: 0;
        margin-bottom: 1em;
        white-space: normal;
    }

    .sa-seomenu-list dd {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 400;
    }

        .sa-seomenu-list dd:last-child,
        .sa-seomenu-list dd:last-child .sa-list,
        .sa-seomenu-list dd:last-child .sa-list li:last-child {
            margin-bottom: 0;
        }

        .sa-seomenu-list dd:not(:last-child) {
            border-bottom: 1px solid #e6e7e8;
        }

    .sa-seomenu-list .sa-in {
        color: #767676;
    }

    .sa-seomenu-list .sa-list {
        margin-top: -.3em;
        margin-bottom: 1em;
        /* vertical alignment with top link padding below */
    }

        .sa-seomenu-list .sa-list li {
            margin-bottom: .5em;
        }

        .sa-seomenu-list .sa-list a[href],
        .sa-seomenu-list .sa-list a:visited {
            display: block;
            padding: .3em .5em;
            color: #212221;
        }

        .sa-seomenu-list .sa-list a:hover {
            color: #212221;
            background-color: #caeefa;
        }

@media (min-width: 768px) {
    /* 768px /16 */
    .sa-seomenu-list dd {
        width: 100%;
        padding-left: 30%;
        margin-left: 0;
    }
}

.sa-seohed {
    /* 16px /16 */
    margin-bottom: 1.5em;
    /* normalize */
    font-size: 1rem;
    /* 24px /16 */
}

    .sa-seohed.sa-layout-section {
        padding-top: 0;
        padding-bottom: 0;
        border-top: 0;
    }

    .sa-seohed h1 {
        margin-top: 0;
    }

.sa-seohed-sub {
    display: block;
    /* 15px /16 */
    margin-bottom: .2666666666667em;
    font-size: .9375rem;
    /* 4px /15 */
}

.sa-seohed-hed {
    /* 20px /16 */
    margin-bottom: .6em;
    font-size: 1.25rem;
    /* 12px /20 */
    line-height: 1.3;
}

.sa-seohed-desc {
    /* 19px /14 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 300;
    /* 14px /16 */
    line-height: 1.4;
}

.sa-seohed-desc-led {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.sa-seohed-desc a[href] {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.sa-seohed-listhed {
    margin: 0 0 .2em;
    /* 15px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375em;
    font-style: normal;
    font-weight: 600;
}

.sa-seohed-list {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

@media (min-width: 27.5em) {
    /* 440px */
    .sa-seohed-listhed {
        float: left;
    }
}

@media (min-width: 34em) {
    /* 544px /16 */
    .sa-seohed-sub {
        font-size: 1.25rem;
        /* 20px /16 */
    }

    .sa-seohed-hed {
        font-size: 1.75rem;
        /* 28px /16 */
    }

    .sa-seohed-desc {
        font-size: 1em;
        /* 15px /16 */
        line-height: 1.4;
        /* 21px /15 */
    }
}

@media (min-width: 768px) {
    /* 768px /16 */
    .sa-seohed:not(:first-child) {
        margin-top: 1.8em;
    }

    .sa-seohed-sub {
        font-size: 1.625rem;
        /* 26px /16 */
    }

    .sa-seohed-hed {
        font-size: 2.25rem;
        /* 36px /16 */
    }

    .sa-seohed-desc {
        font-size: 1em;
        /* 16px /16 */
        line-height: 1.4;
        /* 22px /16 */
    }
}
/* Slider */
.sa-sliders {
    padding: 24px 0 0;
    margin-top: 1.5em;
}

    .sa-sliders > .sa-layout-section:first-child {
        padding-top: 0;
        border-top: 0;
    }

    .sa-sliders h1:first-child,
    .sa-sliders h2:first-child,
    .sa-sliders h3:first-child,
    .sa-sliders h4:first-child,
    .sa-sliders h5:first-child,
    .sa-sliders h6:first-child {
        margin-top: 0;
    }
/* component styles */
[data-slider] .custom-select {
    display: inline-block;
}

    [data-slider] .custom-select select,
    [data-slider] .custom-select .fontsizetest {
        padding: 0 1em 0 4px;
        font-family: "Source Sans Pro", sans-serif;
        font-size: inherit;
        font-style: normal;
        font-weight: 400;
        font-weight: inherit;
        color: #007dbc;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    [data-slider] .custom-select .fontsizetest {
        position: absolute;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        opacity: 0;
    }

    [data-slider] .custom-select:after {
        right: .1em;
        border-top-color: #007dbc;
    }

[data-slider] label,
.sa-slider-title {
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 600;
    text-transform: none;
}

.sa-slider {
    padding: .5em 0 1.5em;
    margin: 0 0 1.5em;
}

    .sa-slider.sa-slider-icons {
        padding-top: 50px;
    }

    .sa-slider .slider {
        width: 100%;
    }

        .sa-slider .slider.slider-horizontal {
            height: 12px;
        }

            .sa-slider .slider.slider-horizontal .slider-tick-label-container {
                position: relative;
                width: 100%;
                margin-top: 0;
            }

                .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
                    position: absolute;
                    width: 1px;
                    min-height: 45px;
                    padding-top: 25px;
                    font-size: .625em;
                    color: #767676;
                    visibility: visible;
                }

                    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label.sa-slider-tick-active {
                        font-family: "Source Sans Pro", sans-serif;
                        font-style: normal;
                        font-weight: 600;
                        color: #000;
                    }

                    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label.sa-slider-tick-default:after {
                        position: absolute;
                        top: 1px;
                        left: 50%;
                        z-index: 2;
                        display: block;
                        width: 10px;
                        height: 10px;
                        margin-left: -7px;
                        content: " ";
                        background-color: #000;
                        border-radius: 10px;
                    }

                    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label.sa-slider-tick-default:first-child:after {
                        margin-left: 3px;
                    }

                    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label.sa-slider-tick-default:last-child:after {
                        margin-left: -16px;
                    }

                    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label:before {
                        position: absolute;
                        top: 0;
                        left: 50%;
                        z-index: 1;
                        display: block;
                        width: 2px;
                        height: 100%;
                        margin-left: -3px;
                        content: " ";
                        background-color: #fff;
                    }

                    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label:first-child:before,
                    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label:last-child:before {
                        display: none;
                    }

            .sa-slider .slider.slider-horizontal .slider-track,
            .sa-slider .slider-selection,
            .sa-slider .slider-track-low,
            .sa-slider .slider-track-high {
                border-radius: 5px;
                -webkit-box-shadow: none;
                box-shadow: none;
            }

            .sa-slider .slider.slider-horizontal .slider-track {
                height: 12px;
                margin-top: -6px;
                background-color: #fbc62c;
                background-color: #f3ea27;
                background-image: -webkit-linear-gradient(left, #f3ea27, #fbc62c 55%, #ed7a23);
                background-image: -o-linear-gradient(left, #f3ea27, #fbc62c 55%, #ed7a23);
                background-image: -webkit-gradient(linear, left top, right top, from(#f3ea27), color-stop(55%, #fbc62c), to(#ed7a23));
                background-image: linear-gradient(to right, #f3ea27, #fbc62c 55%, #ed7a23);
                background-repeat: no-repeat;
            }

    .sa-slider .slider-selection {
        background: transparent;
    }

    .sa-slider .slider-track-high {
        background: #e6e7e8;
    }

    .sa-slider .slider-handle {
        top: -4px;
        z-index: 3;
        cursor: ew-resize;
        background: #fff;
        border: 6px solid #fff;
        -webkit-box-shadow: 0 0 0 5px #000;
        box-shadow: 0 0 0 5px #000;
    }

    .sa-slider.sa-slider-handle-default .slider-handle {
        background: #000;
    }

.slider.slider-horizontal .slider-handle {
    margin-left: -9px;
}

    .slider.slider-horizontal .slider-handle[style="left: 0%;"] {
        margin-left: 0;
    }

    .slider.slider-horizontal .slider-handle[style="left: 100%;"] {
        margin-left: -16px;
    }

.sa-slider-label,
.sa-slider-label-abbr {
    position: relative;
    z-index: 2;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}
/* Icons in labels */
.sa-slider-label-icon {
    position: absolute;
    top: -50px;
    left: -50%;
    font-size: 38px;
    color: #b6b6b6;
}
/* Selectively show labels */
.sa-slider-labels-even .slider-tick-label:nth-child( odd ) span,
.sa-slider-labels-odd .slider-tick-label:nth-child( even ) span {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Show abbreviated labels on small screens, full labels on larger screens */
.sa-slider-label-abbr {
    display: none;
}

@media (max-width: 599px) {
    .sa-slider-label-abbr {
        display: inline-block;
    }

        .sa-slider-label-abbr ~ .sa-slider-label {
            display: none;
        }
}

@media (min-width: 31.25em) {
    /* 500px /16 */
    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
        font-size: .75em;
    }
}

@media (min-width: 768px) {
    [data-slider] label {
        font-size: 1em;
    }

    .sa-slider .slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
        font-size: .8125em;
    }
}
/* Message block */
.sa-slider-mssg,
.sa-opt-mssg {
    position: relative;
    max-width: 460px;
    max-height: 0;
    font-size: .875em;
    color: #fff;
    background-color: #212221;
    border-radius: 3px;
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

    .sa-slider-mssg.in,
    .sa-opt-mssg.in {
        opacity: 1;
    }

    .sa-slider-mssg:before,
    .sa-opt-mssg:before {
        position: absolute;
        top: -5px;
        left: 50%;
        display: block;
        width: 10px;
        height: 10px;
        margin-left: -5px;
        content: " ";
        background-color: #212221;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .sa-slider-mssg.opt-mssg-active,
    .sa-opt-mssg.opt-mssg-active {
        max-height: 100%;
        padding: 15px 20px;
        margin: 0 auto -20px;
        opacity: 1;
    }

    .sa-opt-mssg.opt-mssg-active {
        margin: 1em auto 0;
    }
/* Preview image and Submit */
.sa-slider-buttons {
    padding: 1em 0 0;
    margin-bottom: 2em;
    clear: both;
}

    .sa-slider-buttons:before,
    .sa-slider-buttons:after {
        display: table;
        content: " ";
    }

    .sa-slider-buttons:after {
        clear: both;
    }

    .sa-slider-buttons:before,
    .sa-slider-buttons:after {
        display: table;
        content: " ";
    }

    .sa-slider-buttons:after {
        clear: both;
    }

.sa-slider-preview {
    width: 19em;
}

.sa-slider-buttons-q {
    font-size: 1.125em;
    /* 18px /16 */
}

@media (max-width: 767px) {
    .sa-slider-buttons-q {
        margin-top: 1em;
    }
}

@media (min-width: 768px) {
    .sa-slider-preview {
        float: left;
    }

    .sa-slider-buttons-submit {
        float: right;
    }
}
/* Layout */
.sa-slider-block {
    padding: 24px 0 20px;
    border-top: 1px solid #e6e7e8;
}

.sa-slider-feedback dt,
.sa-slider-feedback dd {
    color: #767676;
}

.sa-slider-feedback dt {
    float: left;
    font-size: .625em;
}

    .sa-slider-feedback dt:after {
        margin-right: 4px;
        content: ": ";
    }

.sa-slider-feedback dd {
    font-size: .75em;
}

@media (min-width: 768px) {
    .sa-slider-feedback dt {
        float: none;
        font-size: .6875em;
    }

        .sa-slider-feedback dt:after {
            content: "";
        }

    .sa-slider-feedback dd {
        font-size: 1em;
    }
}

.sa-map {
    /*
  //To Fix Bug 19818
  margin-bottom: 1.5em;
  */
    position: relative;
}

.sa-map-img {
    max-width: 100%;
}

.sa-map-img-lrg {
    display: none;
}

.sa-map-location {
    display: block;
    padding: .5em .9375em;
    /* 15px /16 */
    margin: 0;
    /* 16px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
    background-color: #fedd0e;
}

.sa-map-location-personalized {
    color: #fff;
    background-color: #16a44a;
    background-image: -webkit-linear-gradient(left, #16a44a 0%, #6fbe44 100%);
    background-image: -o-linear-gradient(left, #16a44a 0%, #6fbe44 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#16a44a), to(#6fbe44));
    background-image: linear-gradient(to right, #16a44a 0%, #6fbe44 100%);
    background-repeat: repeat-x;
}

.sa-map-subhed {
    float: right;
    /* 12px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.6;
    /* 19px */
}

.sa-map-details {
    padding: 0 12px;
    margin-bottom: 1.5em;
}

.sa-map-cta {
    margin-bottom: 1.8em;
    clear: both;
}

    .sa-map-cta p {
        /* 15px /16 */
        font-family: "Source Sans Pro", sans-serif;
        font-size: .9375em;
        font-style: normal;
        font-weight: 300;
    }

        .sa-map-cta p:last-child {
            margin-bottom: 0;
        }

.sa-map-salary {
    margin: 0;
    margin-bottom: 1em;
    /* 16px /16 */
}

    .sa-map-salary dt {
        font-family: "Source Sans Pro", sans-serif;
        font-size: .9375em;
        font-style: normal;
        font-weight: 300;
        /* 15px /16 */
        text-transform: none;
    }

    .sa-map-salary dd {
        /* 36px /16 */
        margin: 0;
        font-family: "Source Sans Pro", sans-serif;
        font-size: 2.25em;
        font-style: normal;
        font-weight: 400;
    }

.sa-map-salarydiff {
    padding: 0;
    margin: 4px 0 1.066666666667em;
    /* 15px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375em;
    font-style: normal;
    font-weight: 600;
    list-style: none;
    /* 16px /15 */
}

    .sa-map-salarydiff .icon-triangle-up,
    .sa-map-salarydiff .icon-triangle-down {
        /* 24px /15 */
        display: inline-block;
        overflow: hidden;
        font-size: 1.6em;
        line-height: .4583333333333;
        /* 11px /24 */
    }

.sa-map-salarydiff-up,
.sa-map-salarydiff-down {
    margin-bottom: .2em;
    /* 3px /15 */
}

.sa-map-salarydiff-up {
    color: #16a44a;
}

    .sa-map-salarydiff-up .icon-triangle-up {
        color: #67cc31;
    }

.sa-map-salarydiff-down {
    color: #c32026;
}

    .sa-map-salarydiff-down .icon-triangle-down {
        color: #d45b51;
    }

.sa-map-salarydiff-text {
    margin-left: 3px;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #007dbc;
}
/* Zoom buttons */
.sa-map-zoom {
    position: absolute;
    bottom: .5em;
    left: .5em;
}

.sa-map-zoom-btn {
    position: relative;
    display: block;
    width: 30px;
    height: 27px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow: hidden;
    color: #3c4144;
    text-indent: -9999px;
    background-color: #fff;
}

    .sa-map-zoom-btn:first-child {
        border-bottom: 1px solid #e6e7e8;
    }

    .sa-map-zoom-btn:hover {
        background-color: #eee;
    }

    .sa-map-zoom-btn:active {
        background-color: #ddd;
    }

    .sa-map-zoom-btn:before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        font-family: sans-serif;
        font-size: 1em;
        font-weight: 700;
        line-height: 24px;
        text-align: center;
        /* 16px /16 */
        text-indent: 0;
    }

    .sa-map-zoom-btn:first-child:before {
        content: "+";
    }

    .sa-map-zoom-btn:last-child:before {
        content: "â€“";
    }
/* Legend */
.sa-map .sa-map-legend {
    position: absolute;
    bottom: .5em;
    left: 3em;
}

.sa-map-legend {
    width: 14em;
    height: 54px;
    padding: .8em 1em;
    color: #3c4144;
    background-color: #fff;
}

.sa-map-legend-bar {
    display: table;
    width: 100%;
    height: .625em;
    /* 10px /16 */
    margin-bottom: .5em;
    /* 8px /16 */
}

    .sa-map-legend-bar > div {
        display: table-cell;
        height: 100%;
        font-size: 4px;
        text-indent: -9999px;
    }

.sa-map-legend-bar-1 {
    background-color: #043c3d;
}

.sa-map-legend-bar-2 {
    background-color: #095b5a;
}

.sa-map-legend-bar-3 {
    background-color: #107a78;
}

.sa-map-legend-bar-4 {
    background-color: #169492;
}

.sa-map-legend-bar-5 {
    background-color: #1bb0af;
}

.sa-map-legend-bar-6 {
    background-color: #22cecd;
}

.sa-map-legend-bar-7 {
    background-color: #28e9e8;
}

.sa-map-legend-bar-8 {
    background-color: #27e2eb;
}

.sa-map-legend-bar-9 {
    background-color: #25d9ee;
}

.sa-map-legend-bar-10 {
    background-color: #23cdee;
}

.sa-map-legend-bar-11 {
    background-color: #21c4ef;
}

.sa-map-legend-bar-12 {
    background-color: #1eb4f2;
}

.sa-map-legend-bar-13 {
    background-color: #1da9f1;
}

.sa-map-legend-bar-14 {
    background-color: #198bf3;
}

.sa-map-legend-bar-15 {
    background-color: #157bf3;
}

.sa-map-legend-bar-16 {
    background-color: #1367f4;
}

.sa-map-legend-bar-17 {
    background-color: #1058f2;
}

.sa-map-legend-bar-18 {
    background-color: #0e37f4;
}

.sa-map-legend-bar-19 {
    background-color: #0b23f3;
}

.sa-map-legend-bar-20 {
    background-color: #0c44b6;
}

.sa-map-legend-bar-21 {
    background-color: #0c6193;
}

.sa-map-legend-bar-22 {
    background-color: #13847b;
}

.sa-map-legend-bar-23 {
    background-color: #179f62;
}

.sa-map-legend-bar-24 {
    background-color: #1dc049;
}

.sa-map-legend-bar-25 {
    background-color: #24e335;
}

.sa-map-legend-bar-26 {
    background-color: #29fb2f;
}

.sa-map-legend-bar-27 {
    background-color: #27ec2c;
}

.sa-map-legend-bar-28 {
    background-color: #23de28;
}

.sa-map-legend-bar-29 {
    background-color: #21d125;
}

.sa-map-legend-bar-30 {
    background-color: #1ec422;
}

.sa-map-legend-bar-31 {
    background-color: #1db720;
}

.sa-map-legend-bar-32 {
    background-color: #18a81b;
}

.sa-map-legend-bar-33 {
    background-color: #169919;
}

.sa-map-legend-bar-34 {
    background-color: #48a81c;
}

.sa-map-legend-bar-35 {
    background-color: #67b721;
}

.sa-map-legend-bar-36 {
    background-color: #7fc324;
}

.sa-map-legend-bar-37 {
    background-color: #9fd229;
}

.sa-map-legend-bar-38 {
    background-color: #c3df2e;
}

.sa-map-legend-bar-39 {
    background-color: #e4ec32;
}

.sa-map-legend-bar-40 {
    background-color: #fdfc38;
}

.sa-map-legend-bar-41 {
    background-color: #fbf536;
}

.sa-map-legend-bar-42 {
    background-color: #f9ec35;
}

.sa-map-legend-bar-43 {
    background-color: #f0db30;
}

.sa-map-legend-bar-44 {
    background-color: #eed62f;
}

.sa-map-legend-bar-45 {
    background-color: #e8c42b;
}

.sa-map-legend-bar-46 {
    background-color: #e8bd2a;
}

.sa-map-legend-bar-47 {
    background-color: #ecb129;
}

.sa-map-legend-bar-48 {
    background-color: #f0ab28;
}

.sa-map-legend-bar-49 {
    background-color: #f4a228;
}

.sa-map-legend-bar-50 {
    background-color: #fa9226;
}

.sa-map-legend-bar-51 {
    background-color: #fd8d27;
}

.sa-map-legend-bar-52 {
    background-color: #f97e23;
}

.sa-map-legend-bar-53 {
    background-color: #fc5920;
}

.sa-map-legend-bar-54 {
    background-color: #fc4820;
}

.sa-map-legend-bar-55 {
    background-color: #fb281c;
}

.sa-map-legend-bar-56 {
    background-color: #f80e1b;
}

.sa-map-legend-bar-57 {
    background-color: #ee0d1a;
}

.sa-map-legend-bar-58 {
    background-color: #e90c19;
}

.sa-map-legend-bar-59 {
    background-color: #dd0a17;
}

.sa-map-legend-bar-60 {
    background-color: #db0b17;
}

.sa-map-legend-bar-61 {
    background-color: #af040d;
}

.sa-map-legend-bar-62 {
    background-color: #7f0108;
}

.sa-map-legend-bar-63 {
    background-color: #960404;
}

.sa-map-legend-bar-64 {
    background-color: #a00202;
}

.sa-map-legend-bar-65 {
    background-color: #be0813;
}

.sa-map-legend-bar-66 {
    background-color: #cb0c43;
}

.sa-map-legend-bar-67 {
    background-color: #d2105a;
}

.sa-map-legend-bar-68 {
    background-color: #da1372;
}

.sa-map-legend-bar-69 {
    background-color: #e21795;
}

.sa-map-legend-bar-70 {
    background-color: #eb1eb9;
}

.sa-map-legend-bar-71 {
    background-color: #f927f3;
}

.sa-map-legend-bar-72 {
    background-color: #de2def;
}

.sa-map-legend-bar-73 {
    background-color: #dc2fea;
}

.sa-map-legend-bar-74 {
    background-color: #bf3edc;
}

.sa-map-legend-bar-75 {
    background-color: #af46d4;
}

.sa-map-legend-bar-76 {
    background-color: #9656c6;
}

.sa-map-legend-bar-77 {
    background-color: #a06ccb;
}

.sa-map-legend-bar-78 {
    background-color: #aa82cf;
}

.sa-map-legend-bar-79 {
    background-color: #b997d9;
}

.sa-map-legend-bar-80 {
    background-color: #c7aae2;
}

.sa-map-legend-bar-81 {
    background-color: #d6c0e8;
}

.sa-map-legend-bar-82 {
    background-color: #e4d7ee;
}

.sa-map-legend-bar-83 {
    background-color: #f0ebf2;
}

.sa-map-legend-bar-84 {
    background-color: #dfdee0;
}

.sa-map-legend-bar-85 {
    background-color: #bfbfbf;
}

.sa-map-legend-min {
    float: left;
}

.sa-map-legend-max {
    float: right;
}

.sa-map-legend-desc {
    text-align: center;
}

.sa-map-legend-min,
.sa-map-legend-max,
.sa-map-legend-desc {
    /* 12px /16 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75em;
    font-style: normal;
    font-weight: 600;
}

@media (min-width: 23em) and (max-width: 767px) {
    /* 368 - 767 */
    .sa-map-details:before,
    .sa-map-details:after {
        display: table;
        content: " ";
    }

    .sa-map-details:after {
        clear: both;
    }

    .sa-map-details:before,
    .sa-map-details:after {
        display: table;
        content: " ";
    }

    .sa-map-details:after {
        clear: both;
    }

    .sa-map-salary {
        float: left;
        width: 48%;
        margin-bottom: 2em;
    }

    .sa-map-salarydiff {
        float: right;
        max-width: 48%;
        padding-right: 4%;
    }

    .sa-map-salarydiff-text {
        font-size: .9em;
    }
}

@media (min-width: 23em) and (max-width: 29.9375em), (min-width: 39em) and (max-width: 767px) {
    /* 368 - 479, 624 - 767 */
    .sa-map-salarydiff-text {
        display: block;
        margin-left: 2.083333333333em;
        /* 25px /12 */
    }
}

@media (min-width: 33em) and (max-width: 38.9375em) {
    /* 528 - 623 */
    .sa-map-salary {
        width: 100%;
        padding-right: 340px;
    }

    .sa-map-salarydiff {
        width: 320px;
        max-width: 52%;
        padding-right: 0;
        margin-left: -320px;
    }
}

@media (min-width: 33em) {
    /* 528 */
    .sa-map-cta {
        float: left;
        width: 100%;
        padding-right: 215px;
        margin-bottom: 0;
    }

    .sa-map-details .sa-basetcc-cta {
        float: right;
        width: 200px;
        margin-left: -200px;
    }
}

@media (min-width: 39em) and (max-width: 767px) {
    /* 624 - 767 */
    .sa-map-details {
        margin-bottom: .5em;
    }

    .sa-map-salary {
        width: 32%;
    }

    .sa-map-salarydiff {
        float: left;
        width: 28%;
    }

    .sa-map-cta {
        float: right;
        width: 40%;
        padding-right: 0;
        clear: none;
    }
}

@media (min-width: 768px) {
    /*
  //To Fix Bug 19818
  .sa-map {
    border: 1px solid #e6e7e8;
    -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
            box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
  }*/
    .sa-map-img {
        width: 100%;
        max-width: none;
        /* 335px /16 */
        height: auto;
        min-height: 20.9375em;
    }

    .sa-map-subhed {
        display: none;
    }

    .sa-map-location,
    .sa-map-details {
        position: absolute;
        right: 1em;
        width: 14em;
    }

    .sa-map-location {
        top: 1.5em;
    }

    .sa-map-details {
        top: 3.625em;
        padding: .9375em;
        /* 58px /16 */
        background-color: #fff;
        /* 15px /16 */
    }

    .sa-map .sa-btn-personalize {
        font-size: .9375em;
        /* 15px /16 */
    }

    .sa-map-salarydiff-text {
        font-size: .9333333333333em;
        /* 14px /15 */
    }

    .sa-map-cta {
        padding-right: 0;
    }
}

.sa-threeq {
    margin-bottom: 1.5em;
}

.sa-threeq-q {
    display: block;
    /* 15px /16 */
    padding: .4em .6666666666667em;
    font-size: .9375em;
    /* 6px 10px /15 */
}

@media (min-width: 25em) {
    /* 400px */
    .sa-threeq-q {
        font-size: 1.05em;
    }
}

@media (min-width: 35em) {
    /* 560px */
    .sa-threeq-q {
        float: left;
        width: 33.33333%;
        padding: 1em 1.666666667em 1em 1.333333333333em;
        font-family: "Source Sans Pro", sans-serif;
        font-size: .85em;
        font-style: normal;
        font-weight: 300;
        /* 15px 25px 15px 20px /15 */
        border: 1px solid #e6e7e8;
    }

        .sa-threeq-q:not(:first-child) {
            border-left: none;
        }

    @supports (display: flex) {
        .sa-threeq {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
            box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
            -webkit-box-align: stretch;
            -webkit-align-items: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
        }

        .sa-threeq-q {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }
    }
}

@media (min-width: 42em) {
    /* 672px */
    .sa-threeq-q {
        font-size: 1em;
    }
}

@media (min-width: 93em) {
    /* 1488px */
    .sa-threeq-q {
        font-size: 1.15em;
    }
}

.sa-basetcc-hed {
    margin-top: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.25em;
    font-style: normal;
    font-weight: 600;
}

.sa-basetcc-sub {
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375em;
    font-style: normal;
    font-weight: 300;
}

    .sa-basetcc-sub:first-child {
        margin-top: .2em;
    }

.sa-basetcc-b {
    position: relative;
    clear: both;
}

    .sa-basetcc-b:before,
    .sa-basetcc-b:after {
        display: table;
        content: " ";
    }

    .sa-basetcc-b:after {
        clear: both;
    }

    .sa-basetcc-b:before,
    .sa-basetcc-b:after {
        display: table;
        content: " ";
    }

    .sa-basetcc-b:after {
        clear: both;
    }

.sa-basetcc-content .sa-basetcc-hed {
    margin-bottom: .2em;
}

.sa-basetcc .sa-basetcc-cta {
    display: none;
}

.sa-basetcc-cta .sa-basetcc-sub {
    margin: 0 0 .3em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1em;
    font-style: normal;
    font-weight: 700;
}

.sa-basetcc-legend {
    height: 12px;
    padding-left: 12px;
    margin: 1em 0;
    font-size: .8125em;
    line-height: 12px;
}

    .sa-basetcc-legend span {
        display: block;
        padding-left: .5em;
        color: #212221;
        background-color: #fff;
    }

@media (min-width: 39em) {
    .sa-map-details .sa-basetcc-cta {
        display: none;
    }

    .sa-basetcc .sa-basetcc-cta {
        display: block;
        float: right;
        max-width: 200px;
        margin-left: -200px;
    }

    .sa-basetcc .sa-layout-section-hed {
        float: left;
        width: 100%;
        padding-right: 250px;
    }
}

@media (max-width: 767px) {
    .sa-basetcc-img {
        margin-bottom: 1em;
    }
}

@media (min-width: 768px) {
    .sa-basetcc-hed {
        font-size: 1.375em;
    }

    .sa-basetcc-content {
        float: left;
        width: 30%;
    }

    .sa-basetcc-img {
        float: left;
        width: 64%;
        max-width: 40em;
        margin-left: 6%;
    }

    .sa-basetcc-legend {
        margin-top: 2em;
    }
}

.table.sa-tablebarchart {
    margin-bottom: 0;
}

.sa-tablebarchart-chart {
    width: 60%;
    padding-left: 0;
}

.sa-tablebarchart-chart-sm {
    width: 38%;
}

.table.sa-tablebarchart-b tbody tr td:first-child {
    text-align: left;
}

.table tbody tr td.sa-tablebarchart-chart {
    padding-left: 0;
    text-align: left;
}

@media (max-width: 39.9375em) {
    /* 639px */
    .tablesaw-stack .sa-tablebarchart-chart {
        padding-top: 0;
        border-top: none;
    }

    .tablesaw-stack tbody tr td.sa-tablebarchart-chart {
        padding-left: 8px;
    }
}

.table.sa-tablebarchart-b .sa-tablebarchart-chart {
    width: 60%;
}

.sa-tablebarchart-chart-percent {
    height: 12px;
    margin-top: 2px;
    text-indent: -9999px;
    background-color: #55b3e3;
}
/* Positive and negative bars */
.sa-tablebarchart-chart-posneg {
    display: table;
}

    .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos,
    .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg,
    .sa-tablebarchart-chart-posneg .sa-tablebarchart-value {
        display: table-cell;
        width: 100px;
        height: 12px;
    }

        .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos span,
        .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg span {
            display: inline-block;
            height: 12px;
            vertical-align: middle;
        }

            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos span.width-xxs,
            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg span.width-xxs {
                width: 10%;
            }

            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos span.width-xs,
            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg span.width-xs {
                width: 20%;
            }

            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos span.width-sm,
            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg span.width-sm {
                width: 40%;
            }

            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos span.width-md,
            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg span.width-md {
                width: 60%;
            }

            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos span.width-lg,
            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg span.width-lg {
                width: 80%;
            }

            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-pos span.width-xlg,
            .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg span.width-xlg {
                width: 100%;
            }

    .sa-tablebarchart-chart-posneg .sa-tablebarchart-chart-neg {
        text-align: right;
    }

    .sa-tablebarchart-chart-posneg .sa-tablebarchart-value {
        padding: 0 10px;
        font-family: "Source Sans Pro", sans-serif;
        font-size: .875em;
        font-style: normal;
        font-weight: 700;
    }

        .sa-tablebarchart-chart-posneg .sa-tablebarchart-value:first-child {
            text-align: right;
        }
/* Category Links */
.sa-cat-links {
    margin-top: 3em;
}

    .sa-cat-links + .sa-cat-links {
        margin-top: 1em;
    }

.sa-cat-links-title {
    position: relative;
    min-height: 34px;
    padding-left: 45px;
    margin: 0;
}

    .sa-cat-links-title .sa-round-icon {
        position: absolute;
        top: -3px;
        left: 0;
    }

.sa-cat-link-list {
    padding-left: 0;
    margin: 0;
    list-style: none;
    -webkit-column-width: 10em;
    -moz-column-width: 10em;
    column-width: 10em;
}

    .sa-cat-link-list li {
        display: inline-block;
        width: 10em;
        padding-right: 10px;
        margin: 0 0 .8em;
        font-size: 1em;
        vertical-align: top;
        page-break-inside: avoid;
        /* Chrome needs this */
        -webkit-column-break-inside: avoid;
        break-inside: avoid-column;
        /* IE10 and IE11 need this */
    }

    .sa-cat-link-list a {
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 600;
    }

.sa-salaryrange {
    position: relative;
    /* 14px /16 */
    padding: 11px 1em 12px;
    margin: 2.5em 0 1em;
    font-size: .875rem;
}

    .sa-salaryrange:before,
    .sa-salaryrange:after {
        display: table;
        content: " ";
    }

    .sa-salaryrange:after {
        clear: both;
    }

    .sa-salaryrange:before,
    .sa-salaryrange:after {
        display: table;
        content: " ";
    }

    .sa-salaryrange:after {
        clear: both;
    }

.sa-salaryrange-withtooltip {
    font-size: 1rem;
    /* 16px /16 */
}

.sa-salaryrange-min,
.sa-salaryrange-max {
    position: relative;
    z-index: 2;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 700;
    text-shadow: 0 0 2px rgba(255, 255, 255, .6);
}

.bg-black .sa-salaryrange-min,
.bg-charcoal .sa-salaryrange-min,
.bg-gray .sa-salaryrange-min,
.bg-bluedark .sa-salaryrange-min,
.bg-blue .sa-salaryrange-min,
.bg-greendark .sa-salaryrange-min,
.bg-red .sa-salaryrange-min,
.bg-purpledark .sa-salaryrange-min,
.bg-black .sa-salaryrange-max,
.bg-charcoal .sa-salaryrange-max,
.bg-gray .sa-salaryrange-max,
.bg-bluedark .sa-salaryrange-max,
.bg-blue .sa-salaryrange-max,
.bg-greendark .sa-salaryrange-max,
.bg-red .sa-salaryrange-max,
.bg-purpledark .sa-salaryrange-max {
    text-shadow: 0 0 2px rgba(0, 0, 0, .6);
}

.sa-salaryrange-min {
    float: left;
}

.sa-salaryrange-max {
    float: right;
}

.sa-salaryrange-bar {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 50%;
    width: 4px;
    margin-left: -2;
    border-radius: 1px;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}

.sa-salaryrange-bar-value {
    position: absolute;
    top: -1.5em;
    /* 22px /14 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.571428571429em;
    font-style: normal;
    font-weight: 600;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* -33px /22 */
}
/* With Tooltip */
.sa-salaryrange-dot {
    position: absolute;
    top: 50%;
    width: 1em;
    /* 16px /16 */
    height: 1em;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin-top: -.75em;
    /* -12px /16 */
    margin-left: -.5625em;
    /* -9px /16 */
    background-color: #212221;
    border: 4px solid #fff;
    /* 16px /16 */
    border-radius: 50%;
    -webkit-transition: .4s all;
    -o-transition: .4s all;
    transition: .4s all;
}

.sa-salaryrange-dot-tooltip {
    position: absolute;
    top: -2.75em;
    /* -44px /16 */
    left: -.9375em;
    /* -15px /16 */
    padding: .2em .6em;
    color: #fff;
    background-color: #212221;
    border: 2px solid #f1f1f1;
    border-radius: .3em;
}

    .sa-salaryrange-dot-tooltip:before {
        position: absolute;
        bottom: -3px;
        left: 50%;
        width: 6px;
        height: 6px;
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
        margin-left: -4px;
        content: "";
        background-color: #212221;
        -webkit-box-shadow: 1.4px 1.4px 0 1px #f1f1f1;
        box-shadow: 1.4px 1.4px 0 1px #f1f1f1;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .sa-salaryrange-dot-tooltip:after {
        position: absolute;
        right: 2px;
        bottom: 0;
        left: 2px;
        height: 7px;
        content: "";
        background-color: #212221;
    }
/* Small variant */
.sa-salaryrange-sm {
    height: .4166666666667em;
    /* 12px /16 */
    padding: 0;
    /* 5px /12 */
    margin: 1em 0 3em;
    font-size: .75rem;
}

    .sa-salaryrange-sm .sa-salaryrange-min,
    .sa-salaryrange-sm .sa-salaryrange-max {
        padding: 11px 0 12px;
        font-family: "Source Sans Pro", sans-serif;
        font-style: normal;
        font-weight: 400;
    }

    .sa-salaryrange-sm .sa-salaryrange-bar-value {
        top: 1em;
        /* 12px /12 */
        font-family: "Source Sans Pro", sans-serif;
        font-size: 1em;
        font-style: normal;
        font-weight: 600;
    }

    .sa-salaryrange-sm .sa-salaryrange-min,
    .sa-salaryrange-sm .sa-salaryrange-max,
    .sa-salaryrange-sm .sa-salaryrange-bar-value {
        color: #212221;
        text-shadow: none;
    }
/* Description Text */
.sa-salaryrange-desc {
    /* 11px /16 */
    margin-bottom: 3.5em;
    font-size: .6875rem;
}

@media (min-width: 768px) {
    .sa-salaryrange-desc {
        /* 14px /16 */
        margin-bottom: 0;
        font-size: .875rem;
    }
}

.sa-ca-cta {
    padding-bottom: 180px;
    padding-left: 10px;
    margin: 4em 0;
    font-size: 1rem;
    /* 16px /16 */
    color: #fff;
    background-color: #075484;
    background-image: -webkit-linear-gradient(left, #075484 0%, #007dbc 100%);
    background-image: -o-linear-gradient(left, #075484 0%, #007dbc 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#075484), to(#007dbc));
    background-image: linear-gradient(to right, #075484 0%, #007dbc 100%);
    background-repeat: repeat-x;
    border-bottom: 1px solid #e6e7e8;
}

    .sa-ca-cta:after {
        position: absolute;
        /* 30px /16 */
        right: 1.875em;
        bottom: 0;
        left: 1.875em;
        /* 30px /16 */
        height: 150px;
        content: "";
        background-color: #fff;
        background-image: url(https://www.salary.com/expertsource/Styles/Salary/img/sa-ca-cta-preview.png);
        background-repeat: no-repeat;
        background-position: 50% 0;
        -webkit-background-size: 100% auto;
        background-size: 100% auto;
    }

.sa-ca-cta-hed {
    /* 22px /18 */
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 600;
    /* 18px /16 */
    line-height: 1.222222222222;
}

.sa-ca-cta-desc,
.sa-ca-cta-list {
    font-size: .875em;
    /* 14px /16 */
    line-height: 1.285714285714;
    /* 18px /14 */
}

.sa-ca-cta-list {
    padding-left: 1.214285714286em;
    /* 17px /14 */
    margin-bottom: 1.285714285714em;
    /* 18px /14 */
}

@media (min-width: 600px) {
    .sa-ca-cta {
        position: relative;
        max-width: 70em;
        padding-bottom: 1.5em;
        padding-left: 3%;
    }

        .sa-ca-cta:after {
            right: 3%;
            left: auto;
            width: 45%;
            height: 90%;
        }

    .sa-ca-cta-hed {
        font-size: 1.3125em;
        /* 21px /16 */
    }

    .sa-ca-cta-desc,
    .sa-ca-cta-list {
        font-size: .9375em;
        /* 15px /16 */
    }

    .sa-ca-cta-hed,
    .sa-ca-cta-desc,
    .sa-ca-cta-list {
        width: 47%;
    }
}

.sa-hero {
    position: relative;
    overflow: hidden;
    background: #1d77b3;
}

.sa-hero-contain {
    position: relative;
    margin: 0 auto;
}

.sa-hero-text {
    max-width: 1312px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /* 1200 + 56*2 (side padding) */
    margin: 0 auto;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .15);
    background: url(https://www.salary.com/expertsource/Styles/Salary/img/hero-gradient-smlscreen.jpg) left top repeat-y;
    -webkit-background-size: 180% auto;
    background-size: 180% auto;
}

.sa-hero-text-hed {
    display: inline-block;
    padding-top: .5em;
    margin-bottom: .4166666666667em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75em;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    border-top: 1px solid #77d5f3;
    /* 5px /12 */
}

.sa-hero-text-subhed {
    margin-top: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.375em;
    font-style: normal;
    font-weight: 600;
}

.sa-hero-text-main {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.0625em;
    font-style: normal;
    font-weight: 400;
}

.sa-hero-text-cta {
    display: inline-block;
    padding: 3px;
    margin-top: .3em;
    background-color: #9ccb3e;
    background-image: -webkit-linear-gradient(left, #9ccb3e 0%, #6fbe44 25%, #29abe2 50%, #77d5f3 100%);
    background-image: -o-linear-gradient(left, #9ccb3e 0%, #6fbe44 25%, #29abe2 50%, #77d5f3 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(#9ccb3e), color-stop(25%, #6fbe44), color-stop(50%, #29abe2), to(#77d5f3));
    background-image: linear-gradient(to right, #9ccb3e 0%, #6fbe44 25%, #29abe2 50%, #77d5f3 100%);
    background-repeat: no-repeat;
    border-width: 0;
    border-radius: 24px;
}
    /* Overrides .sa-infoblock-sect .btn-lg */
    .sa-hero-text-cta.sa-hero-text-cta .btn {
        position: relative;
        font-family: "Source Sans Pro", sans-serif;
        font-size: 1.25rem;
        font-style: normal;
        font-weight: 600;
        /* 20px /16 */
        line-height: 2;
        color: #212221;
        /* 40px /20 */
        text-shadow: none;
        background-color: #fff;
    }

@media (min-width: 64em) {
    .sa-hero-text-cta.sa-hero-text-cta .btn {
        line-height: 2.2;
        /* 44px /20 */
    }
}

.sa-infoblock-sect .sa-hero-text-cta .btn {
    /* 22px /16 */
    padding: .5em 1.8125em .7em 1.6875em;
    font-size: 1rem;
    /* 16px /16 */
    line-height: 1.375;
    /* 29px 27px /16 */
}
/* Overrides .sa-infoblock-sect .btn-lg */
.sa-hero-text-cta.sa-hero-text-cta .btn,
.sa-hero-text-cta.sa-hero-text-cta .btn.btn-lg {
    position: relative;
    padding-right: 3em;
    /* 60px /20 */
}
    /* Overrides .sa-infoblock-sect .btn-lg */
    .sa-hero-text-cta.sa-hero-text-cta .btn [class^="icon-"] {
        /* 22px /20 */
        position: absolute;
        right: .9090909090909em;
        font-size: 1.1em;
        color: #29abe2;
        /* 20px /22 */
    }

        .sa-hero-text-cta.sa-hero-text-cta .btn [class^="icon-"],
        .sa-hero-text-cta.sa-hero-text-cta .btn [class^="icon-"]:before {
            display: inline;
            margin: 0;
            vertical-align: baseline;
        }

.sa-hero-image {
    position: relative;
    height: 250px;
}

    .sa-hero-image div {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

@media (max-width: 37.4375em) {
    /* 599px */
    .sa-hero-image {
        position: relative;
    }

        .sa-hero-image:before {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            z-index: 1;
            width: 75%;
            content: "";
            opacity: .5;
        }

        .sa-hero-image:before {
            background-image: -webkit-linear-gradient(left, #8bca3e 0%, rgba(94, 186, 84, .8) 20%, rgba(40, 170, 225, .5) 50%, rgba(123, 209, 238, 0) 100%);
            background-image: -o-linear-gradient(left, #8bca3e 0%, rgba(94, 186, 84, .8) 20%, rgba(40, 170, 225, .5) 50%, rgba(123, 209, 238, 0) 100%);
            background-image: -webkit-gradient(linear, left top, right top, from(#8bca3e), color-stop(20%, rgba(94, 186, 84, .8)), color-stop(50%, rgba(40, 170, 225, .5)), to(rgba(123, 209, 238, 0)));
            background-image: linear-gradient(to right, #8bca3e 0%, rgba(94, 186, 84, .8) 20%, rgba(40, 170, 225, .5) 50%, rgba(123, 209, 238, 0) 100%);
            background-repeat: no-repeat;
        }

        .sa-hero-image:before {
            width: 100%;
        }

        .sa-hero-image :before {
            opacity: .4;
        }
}

@media (min-width: 30em) {
    .sa-hero-text-subhed {
        margin: 0 0 .8em;
        font-size: 1.625em;
    }

    .sa-hero-text-main {
        display: block;
        margin: 0 0 1em 0;
        font-size: 1.1875em;
    }
}

@media (min-width: 37.5em) {
    /* 600px */
    .sa-hero-text {
        position: relative;
        z-index: 4;
        background-image: url(https://www.salary.com/expertsource/Styles/Salary/img/hero-gradient.png);
        -webkit-background-size: 100% auto;
        background-size: 100% auto;
    }

    .sa-hero-home .sa-hero-text {
        min-height: 650px;
    }

    .sa-hero-landing .sa-hero-text {
        min-height: 500px;
    }

    .sa-hero-hub .sa-hero-text {
        min-height: 400px;
    }

    .sa-hero-detail .sa-hero-text {
        min-height: 300px;
    }

    .sa-hero-image {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        height: auto;
    }

    .sa-hero-home .sa-hero-image {
        height: 450px;
    }
    /*
  .sa-hero-image img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
  */
    .sa-hero-text-hed {
        max-width: 50%;
        font-size: .9375em;
    }

    .sa-hero-text-subhed {
        width: 50%;
        margin-top: .4em;
        font-size: 1.875em;
    }

    .sa-hero-text-main {
        display: block;
        width: 50%;
        font-size: 1.25em;
    }
}

@media (min-width: 52em) {
    .sa-hero-text {
        -webkit-background-size: 85% auto;
        background-size: 85% auto;
    }

    .sa-hero-text-hed {
        max-width: 45%;
    }

    .sa-hero-text-subhed {
        max-width: 45%;
        font-size: 2em;
    }

    .sa-hero-text-main {
        max-width: 45%;
        font-size: 1.3125em;
    }
}

@media (min-width: 75em) {
    .sa-hero-text {
        -webkit-background-size: 80% auto;
        background-size: 80% auto;
    }

    .sa-hero-image {
        left: auto;
        width: 80%;
    }

    .sa-hero-home .sa-hero-image {
        height: auto;
    }

    .sa-hero-text-subhed {
        max-width: 470px;
        font-size: 2.25em;
    }

    .sa-hero-text-main {
        max-width: 470px;
        font-size: 1.375em;
    }

    .sa-hero-text-cta .btn {
        height: 44px;
        font-size: 1.375em;
        line-height: 44px;
    }
}

@media (min-width: 80em) {
    .sa-hero-text {
        -webkit-background-size: 80% auto;
        background-size: 80% auto;
    }

    .sa-hero-image {
        left: auto;
        width: 70%;
    }

    .sa-hero-text-hed {
        max-width: 45%;
    }

    .sa-hero-text-subhed {
        font-size: 2.5em;
    }

    .sa-hero-text-main {
        font-size: 1.4375em;
    }
}

@media (min-width: 112.5em) {
    .sa-hero-text {
        -webkit-background-size: 80% auto;
        background-size: 80% auto;
    }

    .sa-hero-image {
        left: auto;
        width: 80%;
    }

    .sa-hero-text-hed {
        max-width: 470px;
    }

    .sa-hero-text-subhed {
        max-width: 470px;
        font-size: 2.75em;
    }

    .sa-hero-text-main {
        max-width: 470px;
        font-size: 1.5em;
    }
}

@media (min-width: 115.75em) {
    .sa-hero-text {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (min-width: 120em) {
    .sa-hero-image {
        width: 1500px;
    }
}

@media (min-width: 150em) {
    .sa-hero-text {
        -webkit-background-size: 80% auto;
        background-size: 80% auto;
    }

    .sa-hero-text-hed {
        max-width: 520px;
    }

    .sa-hero-text-subhed {
        max-width: 520px;
        font-size: 3em;
    }

    .sa-hero-text-main {
        max-width: 520px;
        font-size: 1.5625em;
    }

    .sa-hero-text-cta .btn {
        height: 48px;
        font-size: 1.2em;
        line-height: 48px;
    }
}

.sa-circlecon,
.sa-threeq-q-icon {
    display: inline-block;
    /* 11px /15 */
    padding: .3636363636364em;
    margin-right: .7272727272727em;
    font-size: .7333333333333em;
    /* 8px /11 */
    vertical-align: top;
    /* 4px /11 */
    background-color: #eee;
    border-radius: 50%;
}
    /* Override any text colors set in bg- classes */
    .sa-circlecon:not(.bg-yellowlite):not(.bg-graystroke):not(.bg-grayfill):not(.bg-bluefill):not(.bg-bluenavbar),
    .sa-threeq-q-icon:not(.bg-yellowlite):not(.bg-graystroke):not(.bg-grayfill):not(.bg-bluefill):not(.bg-bluenavbar) {
        color: #fff;
    }

img.sa-circlecon,
img.sa-threeq-q-icon {
    width: 18px;
    height: 18px;
    padding: 2px;
}

@media (min-width: 25em) {
    /* 400px */
    .sa-circlecon,
    .sa-threeq-q-icon {
        font-size: .85em;
    }
}

@media (min-width: 35em) {
    /* 560px */
    .sa-circlecon,
    .sa-threeq-q-icon {
        /* 15px /15 */
        padding: .4666666666667em;
        font-size: 1em;
        /* 7px /15 */
    }

    img.sa-circlecon,
    img.sa-threeq-q-icon {
        width: 31px;
        height: 31px;
    }
}

.sa-circlegrad {
    position: relative;
    display: inline-block;
    padding: 2px;
    margin: 0;
    line-height: .7;
}

    .sa-circlegrad:before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: " ";
        /* 
	Not using the mixin here, the mixin has a maximum of 2 color stops.
	*/
        background: #8ad21b;
        background: -webkit-linear-gradient(left, #8ad21b 0%, #63ce1d 38%, #29abe2 100%);
        background: -webkit-gradient(linear, left top, right top, from(#8ad21b), color-stop(38%, #63ce1d), to(#29abe2));
        background: -o-linear-gradient(left, #8ad21b 0%, #63ce1d 38%, #29abe2 100%);
        background: linear-gradient(to right, #8ad21b 0%, #63ce1d 38%, #29abe2 100%);
        border-radius: 50%;
    }

.sa-circlegrad-child {
    position: relative;
    z-index: 1;
    display: inline-block;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
/* ----- Layout */
.sa-infoblock,
.sa-infoblock-group > .panel-group {
    max-width: 1200px;
    margin: 0 auto;
}

    .sa-infoblock.sa-global-gradient {
        background: #fff;
    }

        .sa-global-gradient-infoblock:before,
        .sa-infoblock.sa-global-gradient:before {
            top: -9px;
            right: 0;
            left: 0;
            width: auto;
            height: 9px;
            -webkit-box-sizing: content-box;
            -moz-box-sizing: content-box;
            box-sizing: content-box;
            border-right: 1px solid #caeefa;
            border-left: 1px solid #6fbe44;
        }

.sa-home-triage .sa-global-gradient-infoblock:before,
.sa-home-triage .sa-infoblock.sa-global-gradient:before {
    right: auto;
    left: -1px;
    width: 100%;
}

.sa-global-gradient-infoblock.bg-grayfill,
.sa-infoblock.sa-global-gradient.bg-grayfill {
    background: #f8f8f9;
}

.sa-infoblock-sect {
    position: relative;
    text-align: center;
}

    .sa-infoblock-sect.sa-align-left,
    .sa-align-left .sa-infoblock-sect,
    .sa-align-left .sa-infoblock-sect .sa-infoblock-cta {
        text-align: left;
    }

    .sa-infoblock-sect.sa-align-right,
    .sa-align-right .sa-infoblock-sect,
    .sa-align-right .sa-infoblock-sect .sa-infoblock-cta {
        text-align: right;
    }

    .sa-infoblock-sect.sa-align-top,
    .sa-infoblock-sect.sa-align-middle,
    .sa-infoblock-sect.sa-align-bottom {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sa-infoblock-sect.sa-align-top {
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }

    .sa-infoblock-sect.sa-align-middle {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .sa-infoblock-sect.sa-align-bottom {
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
/* with borders */
.sa-boxed {
    border: 1px solid #e6e7e8;
    -webkit-box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
    box-shadow: 2px 2px 0 0 rgba(0, 0, 0, .04);
}

    .sa-boxed > .sa-infoblock-sect {
        background-color: #fff;
    }

        .sa-boxed > .sa-infoblock-sect:not( :last-child ) {
            border-color: #b1b3b6;
            border-style: solid;
            border-width: 0 0 1px;
        }

.sa-boxed-thickwrap {
    margin: 16px;
    -webkit-box-shadow: 0 0 0 16px rgba(0, 0, 0, .04);
    box-shadow: 0 0 0 16px rgba(0, 0, 0, .04);
}

    .sa-boxed-thickwrap > .sa-boxed {
        border: 1px solid #d0d2d3;
    }
/* header version */
.sa-infoblock-header .sa-infoblock-sect {
    padding-bottom: 1rem !important;
}

.sa-infoblock-header .sa-infoblock-hed {
    margin-bottom: .3em;
}
/* Grouping container */
.sa-infoblock-group {
    margin: 0 auto;
}
/* Positioning */
.sa-infoblock-position {
    position: relative;
}

.sa-infoblock-sect.sa-position-topleft,
.sa-infoblock-sect.sa-position-topright,
.sa-infoblock-sect.sa-position-middleleft,
.sa-infoblock-sect.sa-position-middleright,
.sa-infoblock-sect.sa-position-bottomleft,
.sa-infoblock-sect.sa-position-bottomright {
    background-color: #fff;
}

@media (min-width: 768px) {
    .sa-infoblock-sect.sa-position-topleft,
    .sa-infoblock-sect.sa-position-topright,
    .sa-infoblock-sect.sa-position-middleleft,
    .sa-infoblock-sect.sa-position-middleright,
    .sa-infoblock-sect.sa-position-bottomleft,
    .sa-infoblock-sect.sa-position-bottomright {
        position: absolute;
        z-index: 10;
    }

    .sa-infoblock-sect.sa-position-topright {
        top: 2rem;
        right: 2rem;
        margin-left: 1em;
    }

    .sa-infoblock-sect.sa-position-topleft {
        top: 2rem;
        left: 2rem;
        margin-right: 1em;
    }

    .sa-infoblock-sect.sa-position-middleright {
        top: 50%;
        right: 2rem;
        margin-left: 1em;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .sa-infoblock-sect.sa-position-middleleft {
        top: 50%;
        left: 2rem;
        margin-right: 1em;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .sa-infoblock-sect.sa-position-bottomright {
        right: 2rem;
        bottom: 2rem;
        margin-left: 1em;
    }

    .sa-infoblock-sect.sa-position-bottomleft {
        bottom: 2rem;
        left: 2rem;
        margin-right: 1em;
    }

    .sa-infoblock-sect.sa-position-topleft,
    .sa-infoblock-sect.sa-position-topright,
    .sa-infoblock-sect.sa-position-middleleft,
    .sa-infoblock-sect.sa-position-middleright,
    .sa-infoblock-sect.sa-position-bottomleft,
    .sa-infoblock-sect.sa-position-bottomright {
        width: 47%;
    }
}
/* mixin for multi col version - use this mixin at the breakpoint needed for your layout */
.sa-infoblock-multicol.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
    border-width: 0 1px 0 0;
}

.sa-infoblock-multicol.sa-infoblock {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.sa-infoblock-multicol.sa-infoblock-reversed {
    flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}

.sa-infoblock-multicol .sa-infoblock-sect {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

    .sa-infoblock-multicol .sa-infoblock-sect.sa-col-20 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 20%;
        -ms-flex: 0 1 20%;
        flex: 0 1 20%;
    }

    .sa-infoblock-multicol .sa-infoblock-sect.sa-col-25 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 25%;
        -ms-flex: 0 1 25%;
        flex: 0 1 25%;
    }

    .sa-infoblock-multicol .sa-infoblock-sect.sa-col-30 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 30%;
        -ms-flex: 0 1 30%;
        flex: 0 1 30%;
    }

    .sa-infoblock-multicol .sa-infoblock-sect.sa-col-40 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 40%;
        -ms-flex: 0 1 40%;
        flex: 0 1 40%;
    }

    .sa-infoblock-multicol .sa-infoblock-sect.sa-col-50 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 50%;
        -ms-flex: 0 1 50%;
        flex: 0 1 50%;
    }

@media (min-width: 600px) {
    .sa-infoblock-multicol-xs.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
        border-width: 0 1px 0 0;
    }

    .sa-infoblock-multicol-xs.sa-infoblock {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .sa-infoblock-multicol-xs.sa-infoblock-reversed {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
    }

    .sa-infoblock-multicol-xs .sa-infoblock-sect {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .sa-infoblock-multicol-xs .sa-infoblock-sect.sa-col-20 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 20%;
            -ms-flex: 0 1 20%;
            flex: 0 1 20%;
        }

        .sa-infoblock-multicol-xs .sa-infoblock-sect.sa-col-25 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 25%;
            -ms-flex: 0 1 25%;
            flex: 0 1 25%;
        }

        .sa-infoblock-multicol-xs .sa-infoblock-sect.sa-col-30 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
        }

        .sa-infoblock-multicol-xs .sa-infoblock-sect.sa-col-40 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 40%;
            -ms-flex: 0 1 40%;
            flex: 0 1 40%;
        }

        .sa-infoblock-multicol-xs .sa-infoblock-sect.sa-col-50 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
            flex: 0 1 50%;
        }
}

@media (min-width: 768px) {
    .sa-infoblock-multicol-sm.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
        border-width: 0 1px 0 0;
    }

    .sa-infoblock-multicol-sm.sa-infoblock {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .sa-infoblock-multicol-sm.sa-infoblock-reversed {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
    }

    .sa-infoblock-multicol-sm .sa-infoblock-sect {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .sa-infoblock-multicol-sm .sa-infoblock-sect.sa-col-20 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 20%;
            -ms-flex: 0 1 20%;
            flex: 0 1 20%;
        }

        .sa-infoblock-multicol-sm .sa-infoblock-sect.sa-col-25 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 25%;
            -ms-flex: 0 1 25%;
            flex: 0 1 25%;
        }

        .sa-infoblock-multicol-sm .sa-infoblock-sect.sa-col-30 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
        }

        .sa-infoblock-multicol-sm .sa-infoblock-sect.sa-col-40 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 40%;
            -ms-flex: 0 1 40%;
            flex: 0 1 40%;
        }

        .sa-infoblock-multicol-sm .sa-infoblock-sect.sa-col-50 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
            flex: 0 1 50%;
        }

    .sa-infoblock-text + .sa-infoblock-cta {
        margin-top: 2em;
    }
}

@media (min-width: 992px) {
    .sa-infoblock-multicol-md.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
        border-width: 0 1px 0 0;
    }

    .sa-infoblock-multicol-md.sa-infoblock {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .sa-infoblock-multicol-md.sa-infoblock-reversed {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
    }

    .sa-infoblock-multicol-md .sa-infoblock-sect {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .sa-infoblock-multicol-md .sa-infoblock-sect.sa-col-20 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 20%;
            -ms-flex: 0 1 20%;
            flex: 0 1 20%;
        }

        .sa-infoblock-multicol-md .sa-infoblock-sect.sa-col-25 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 25%;
            -ms-flex: 0 1 25%;
            flex: 0 1 25%;
        }

        .sa-infoblock-multicol-md .sa-infoblock-sect.sa-col-30 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
        }

        .sa-infoblock-multicol-md .sa-infoblock-sect.sa-col-40 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 40%;
            -ms-flex: 0 1 40%;
            flex: 0 1 40%;
        }

        .sa-infoblock-multicol-md .sa-infoblock-sect.sa-col-50 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
            flex: 0 1 50%;
        }
}

@media (min-width: 1200px) {
    .sa-infoblock-icon.sa-circlegrad {
        width: 9rem;
        /* 144px /16 */
        height: 9rem;
        /* 144px /16 */
    }
}
/* Layout exceptions */
.sa-infoblock-group .carousel {
    margin: 2em 0;
}
/* ----- Content */
.sa-infoblock-hed {
    margin: 0 0 .6em;
    font-family: "Source Sans Pro", sans-serif;
    /* font size 25-36px */
    font-size: 1.5625em;
    font-style: normal;
    font-weight: 600;
    line-height: 1.1;
}

@media (min-width: 480px) {
    .sa-infoblock-hed {
        font-size: -webkit-calc( 25px + ( 36 - 25 ) * ( ( 100vw - 480px ) / ( 1280 - 480 ) ) );
        font-size: calc( 25px + ( 36 - 25 ) * ( ( 100vw - 480px ) / ( 1280 - 480 ) ) );
    }
}

@media (min-width: 1280px) {
    .sa-infoblock-hed {
        font-size: 2.25em;
    }
}

.sa-infoblock-hed.sa-infoblock-hed-lrg {
    /* font size 25-42px */
    font-size: 1.5625em;
}

@media (min-width: 480px) {
    .sa-infoblock-hed.sa-infoblock-hed-lrg {
        font-size: -webkit-calc( 25px + ( 42 - 25 ) * ( ( 100vw - 480px ) / ( 1280 - 480 ) ) );
        font-size: calc( 25px + ( 42 - 25 ) * ( ( 100vw - 480px ) / ( 1280 - 480 ) ) );
    }
}

@media (min-width: 1280px) {
    .sa-infoblock-hed.sa-infoblock-hed-lrg {
        font-size: 2.625em;
    }
}

.sa-infoblock-flag {
    padding-top: 5px;
    font-family: "Source Sans Pro", sans-serif;
    /* font size 14-18px */
    font-size: .875em;
    font-style: normal;
    font-weight: 400;
    text-transform: uppercase;
    border-top: 1px solid #6fbe44;
}

@media (min-width: 480px) {
    .sa-infoblock-flag {
        font-size: -webkit-calc( 14px + ( 18 - 14 ) * ( ( 100vw - 480px ) / ( 1280 - 480 ) ) );
        font-size: calc( 14px + ( 18 - 14 ) * ( ( 100vw - 480px ) / ( 1280 - 480 ) ) );
    }
}

@media (min-width: 1280px) {
    .sa-infoblock-flag {
        font-size: 1.125em;
    }
}

.sa-infoblock-hed .sa-infoblock-flag {
    font-size: .5833333em;
    /* 14/24 */
}

@media (min-width: 1280px) {
    .sa-infoblock-hed .sa-infoblock-flag {
        font-size: .5em;
        /* 18/36 */
    }
}

.sa-infoblock-hed.sa-infoblock-hed-lrg .sa-infoblock-flag {
    font-size: .4666667em;
    /* 14/30 */
}

@media (min-width: 1280px) {
    .sa-infoblock-hed.sa-infoblock-hed-lrg .sa-infoblock-flag {
        font-size: .4285714em;
        /* 18/42 */
    }
}

.sa-infoblock-hed-logo img {
    max-width: 150px;
    margin: .1em 0;
}

.sa-infoblock-title {
    display: block;
    margin-top: .3em;
}

.sa-infoblock-intro,
p.sa-infoblock-intro {
    max-width: 58rem;
    margin: 0 auto 1.5em;
    font-family: "Source Sans Pro", sans-serif;
    /* font size 18-20px */
    font-size: 1.125em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
}

@media (min-width: 480px) {
    .sa-infoblock-intro,
    p.sa-infoblock-intro {
        font-size: -webkit-calc( 18px + ( 20 - 18 ) * ( ( 100vw - 480px ) / ( 992 - 480 ) ) );
        font-size: calc( 18px + ( 20 - 18 ) * ( ( 100vw - 480px ) / ( 992 - 480 ) ) );
    }
}

@media (min-width: 992px) {
    .sa-infoblock-intro,
    p.sa-infoblock-intro {
        font-size: 1.25em;
    }
}

.sa-infoblock-intro.sa-infoblock-intro-lrg,
p.sa-infoblock-intro.sa-infoblock-intro-lrg {
    /* font size 18-25px */
    font-size: 1.125em;
}

@media (min-width: 480px) {
    .sa-infoblock-intro.sa-infoblock-intro-lrg,
    p.sa-infoblock-intro.sa-infoblock-intro-lrg {
        font-size: -webkit-calc( 18px + ( 25 - 18 ) * ( ( 100vw - 480px ) / ( 992 - 480 ) ) );
        font-size: calc( 18px + ( 25 - 18 ) * ( ( 100vw - 480px ) / ( 992 - 480 ) ) );
    }
}

@media (min-width: 992px) {
    .sa-infoblock-intro.sa-infoblock-intro-lrg,
    p.sa-infoblock-intro.sa-infoblock-intro-lrg {
        font-size: 1.5625em;
    }
}

.sa-align-left .sa-infoblock-intro,
.sa-align-left p.sa-infoblock-intro,
.sa-infoblock-intro.sa-align-left,
p.sa-infoblock-intro.sa-align-left {
    margin-left: 0;
}

.sa-align-right .sa-infoblock-intro,
.sa-align-right p.sa-infoblock-intro,
.sa-infoblock-intro.sa-align-right,
p.sa-infoblock-intro.sa-align-right {
    margin-right: 0;
}

.sa-infoblock-sect .btn-cta {
    margin: 1.5em 0 0;
}

.sa-infoblock-sect .sa-navbar-more-ca {
    height: 15px;
    margin-left: 0;
}

.sa-infoblock-sect .btn-lg {
    /* 22px /16 */
    padding: .5em 1.8125em .7em 1.6875em;
    font-size: 1rem;
    /* 16px /16 */
    line-height: 1.375;
    /* 29px 27px /16 */
}

@media (min-width: 768px) {
    .sa-infoblock-sect .btn-lg {
        /* 28px /18 */
        height: 2.555555555556em;
        font-size: 1.125rem;
        /* 18px /16 */
        line-height: 1.555555555556;
        /* 46px /18 */
    }
}

.sa-infoblock-sect .btn-default {
    border-color: #d0d2d3;
}

    .sa-infoblock-sect .btn-default [class^="icon-"] {
        color: #29abe2;
    }

.sa-infoblock-sect .form-inline .form-group {
    max-width: 20em;
    margin: 0 auto .7em;
}
/* hero img */
.sa-infoblock-hero {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1em;
}
/* icon mixin -- apply to .sa-infoblock-icon.sa-circlecon elements */
.sa-infoblock-icon-center {
    position: relative;
    display: block;
    float: none;
    padding: .45em 0;
    margin: 0 auto 1rem;
}

    .sa-infoblock-icon-center:before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    .sa-infoblock-icon-center ~ .sa-infoblock-hed,
    .sa-infoblock-icon-center ~ .sa-infoblock-subhed,
    .sa-infoblock-icon-center ~ .sa-infoblock-text,
    .sa-infoblock-icon-center ~ .sa-infoblock-text-hed,
    .sa-infoblock-icon-center ~ .sa-infoblock-text-hed-lrg,
    .sa-infoblock-icon-center ~ .sa-infoblock-text-link,
    .sa-infoblock-icon-center ~ .sa-infoblock-cta {
        float: none;
        max-width: 24rem;
        padding-left: 0;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .sa-infoblock-icon-center ~ .sa-infoblock-text-link {
        width: 100%;
        /* keep centered */
        max-width: none;
        white-space: nowrap;
    }
/* big icons (not profile avatars) */
.sa-infoblock-icon {
    float: left;
    width: 40px;
    height: 40px;
    margin-right: -40px;
    text-align: center;
}

    .sa-infoblock-icon + [class*="sa-infoblock-text"] {
        float: right;
        width: 100%;
        margin: .3em 0;
    }

    .sa-infoblock-icon.sa-circlecon {
        padding: .45em 0;
        /* 21px /16 */
        margin-bottom: .5rem;
        font-size: 1.3125rem;
    }

        .sa-infoblock-icon.sa-circlecon + [class*="sa-infoblock-text"] {
            padding-left: 50px;
        }

        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text {
            clear: both;
        }

    .sa-infoblock-icon.sa-circlegrad {
        font-size: 1.5rem;
        color: #767676;
    }

        .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-hed-lrg {
            padding-left: 50px;
        }

        .sa-infoblock-icon.sa-circlegrad .icon-company-size-2 {
            margin-top: -.44444444em;
            /* 16px /36 */
            font-size: 1.2em;
            /* 36px /30 */
        }

        .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
            margin-top: 0;
            margin-bottom: .3076923076923em;
            /* 13px /16 */
            font-family: "Source Sans Pro", sans-serif;
            font-size: .8125rem;
            font-style: normal;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: .5px;
            /* 4px /13 */
        }

@media (min-width: 22em) {
    .sa-infoblock-icon {
        /* 352 */
    }

        .sa-infoblock-icon ~ .sa-infoblock-hed,
        .sa-infoblock-icon ~ .sa-infoblock-subhed,
        .sa-infoblock-icon ~ .sa-infoblock-text,
        .sa-infoblock-icon ~ .sa-infoblock-text-hed,
        .sa-infoblock-icon ~ .sa-infoblock-text-hed-lrg,
        .sa-infoblock-icon ~ .sa-infoblock-text-link,
        .sa-infoblock-icon ~ .sa-infoblock-cta {
            padding-left: 50px;
        }

        .sa-infoblock-icon + [class*="sa-infoblock-text"] {
            margin: .1em 0 .4em;
        }

        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text {
            clear: none;
        }
}

@media (min-width: 26em) {
    .sa-infoblock-icon {
        /* 416 */
        width: 48px;
        height: 48px;
        margin-right: -48px;
    }

        .sa-infoblock-icon.sa-circlecon {
            font-size: 1.7rem;
        }

        .sa-infoblock-icon.sa-circlegrad {
            font-size: 1.875rem;
            /* 30px /16 */
        }

            .sa-infoblock-icon ~ .sa-infoblock-hed,
            .sa-infoblock-icon ~ .sa-infoblock-subhed,
            .sa-infoblock-icon ~ .sa-infoblock-text,
            .sa-infoblock-icon ~ .sa-infoblock-text-hed,
            .sa-infoblock-icon ~ .sa-infoblock-text-hed-lrg,
            .sa-infoblock-icon ~ .sa-infoblock-text-link,
            .sa-infoblock-icon ~ .sa-infoblock-cta,
            .sa-infoblock-icon.sa-circlecon + [class*="sa-infoblock-text"],
            .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed,
            .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-hed-lrg {
                padding-left: 63px;
            }
}

@media (min-width: 600px) and (max-width: 53.9375em) {
    .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon {
        position: relative;
        display: block;
        float: none;
        padding: .45em 0;
        margin: 0 auto 1rem;
    }

        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon:before {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
        }

        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-hed,
        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-subhed,
        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text,
        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed,
        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed-lrg,
        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-link,
        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-cta {
            float: none;
            max-width: 24rem;
            padding-left: 0;
            margin-right: auto;
            margin-left: auto;
            text-align: center;
        }

        .sa-infoblock-grid.sa-infoblock-multicol-xs .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-link {
            width: 100%;
            /* keep centered */
            max-width: none;
            white-space: nowrap;
        }
}

@media (min-width: 600px) {
    .sa-infoblock-icon {
        width: 52px;
        height: 52px;
    }

    .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon {
        position: relative;
        display: block;
        float: none;
        padding: .45em 0;
        margin: 0 auto 1rem;
    }

        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon:before {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
        }

        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-hed,
        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-subhed,
        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text,
        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed,
        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed-lrg,
        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-link,
        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-cta {
            float: none;
            max-width: 24rem;
            padding-left: 0;
            margin-right: auto;
            margin-left: auto;
            text-align: center;
        }

        .sa-infoblock-multicol-xs:not( .sa-infoblock-grid ) .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-link {
            width: 100%;
            /* keep centered */
            max-width: none;
            white-space: nowrap;
        }

    .sa-infoblock-icon.sa-circlecon {
        margin-right: -52px;
    }

        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-hed,
        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-subhed,
        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text,
        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed,
        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed-lrg,
        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-link,
        .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-cta {
            padding-left: 67px;
        }

    .sa-infoblock-icon.sa-circlegrad {
        width: 120px;
        height: 120px;
        margin-right: -120px;
        font-size: 3.25rem;
        /* 52px /16 */
    }

        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-hed,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-hed,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-hed-lrg,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-link,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-cta {
            padding-left: 145px !important;
        }

        .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
            position: absolute;
            top: 8.6em;
            /* 12px /16 */
            left: 0;
            /* 28px /12 */
            z-index: 2;
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            width: 7.5rem;
            min-height: 2.333333333333em;
            padding-left: 0 !important;
            font-size: .75rem;
            text-align: center;
            -webkit-box-pack: center;
            -webkit-justify-content: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -webkit-align-items: center;
            -ms-flex-align: center;
            align-items: center;
        }

        .sa-infoblock-icon.sa-circlegrad .icon-company-size-2 {
            margin-top: -3.75rem;
            /* -60px /16 */
        }

    .sa-infoblock-icon .sa-circlegrad-icon {
        margin-top: -1.75rem;
        /* -28px /16 */
    }
}

@media (min-width: 768px) {
    .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon {
        position: relative;
        display: block;
        float: none;
        padding: .45em 0;
        margin: 0 auto 1rem;
    }

        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon:before {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translateX(-50%) translateY(-50%);
            -ms-transform: translateX(-50%) translateY(-50%);
            -o-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
        }

        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-hed,
        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-subhed,
        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text,
        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed,
        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-hed-lrg,
        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-link,
        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-cta {
            float: none;
            max-width: 24rem;
            padding-left: 0;
            margin-right: auto;
            margin-left: auto;
            text-align: center;
        }

        .sa-infoblock-multicol-sm .sa-infoblock-icon.sa-circlecon ~ .sa-infoblock-text-link {
            width: 100%;
            /* keep centered */
            max-width: none;
            white-space: nowrap;
        }

    .sa-infoblock-icon.sa-circlegrad {
        position: relative;
        display: block;
        float: none;
        width: 135px;
        height: 135px;
        /* 52px /16 */
        margin: 0 auto 1.625rem;
        font-size: 3.25rem;
        /* 26px /16 */
    }

        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-hed,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-hed,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-hed-lrg,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-text-link,
        .sa-infoblock-icon.sa-circlegrad ~ .sa-infoblock-cta {
            padding-left: 0 !important;
            text-align: center;
        }

        .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
            top: 8em;
            left: 50%;
            font-size: .875rem;
            /* 14px /16 */
        }

    .sa-infoblock-sect:first-child .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
        margin-left: -4.7rem;
    }

    .sa-infoblock-sect:last-child .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
        margin-left: -2.7rem;
    }
}

@media (min-width: 64em) {
    .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
        top: 8.6em;
    }

    .sa-infoblock-sect:first-child .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
        margin-left: -5.4rem;
    }

    .sa-infoblock-sect:last-child .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
        margin-left: -2rem;
    }
}

.sa-infoblock-solutions-enterprise .sa-infoblock-icon.sa-circlegrad + .sa-infoblock-subhed {
    padding-top: .5em;
}
/* headings, ps, ctas */
.sa-infoblock-logo {
    max-width: 149px;
    margin: 1em auto 2em;
}

.sa-infoblock-text-hed {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.1875em;
    font-style: normal;
    font-weight: 400;
}

    .sa-infoblock-text-hed:first-child {
        margin-top: 0;
    }

.sa-infoblock-text-hed-lrg {
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.375em;
    font-style: normal;
    font-weight: 600;
}

.sa-infoblock-cta {
    margin: 1em 0 0;
}

p.sa-infoblock-cta {
    max-width: none;
}

.sa-infoblock-text {
    margin: .5em 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.0625em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
}

    .sa-infoblock-text + .sa-infoblock-cta {
        margin-top: 1em;
    }

.sa-infoblock-text-link {
    display: inline-block;
    margin: .5em 0 0;
    font-size: 1em;
}

    .sa-infoblock-text-link .icon-arrow-circle-right {
        margin-left: 3px;
        font-size: .9em;
        vertical-align: middle;
    }

@media (min-width: 26em) {
    .sa-infoblock-sect .sa-navbar-more-ca {
        height: 18px;
    }
}

@media (min-width: 768px) {
    .sa-infoblock-text-hed {
        font-size: 1.375em;
    }

    .sa-infoblock-text-hed-lrg {
        font-size: 1.5625em;
    }

    .sa-infoblock-text {
        font-size: 1.25em;
    }

    .sa-infoblock-text-link {
        font-size: 1.0625em;
    }
}
/* infoblock quotes */
.sa-infoblock-quote:before,
.sa-infoblock-quote:after {
    display: table;
    content: " ";
}

.sa-infoblock-quote:after {
    clear: both;
}

.sa-infoblock-quote:before,
.sa-infoblock-quote:after {
    display: table;
    content: " ";
}

.sa-infoblock-quote:after {
    clear: both;
}

.sa-infoblock-quote blockquote {
    position: relative;
    padding: 0 0 0 1rem;
    /* font size 20-25px */
    font-size: 1.25em;
    line-height: 1.4;
    border: 0;
}

@media (min-width: 480px) {
    .sa-infoblock-quote blockquote {
        font-size: -webkit-calc( 20px + ( 25 - 20 ) * ( ( 100vw - 480px ) / ( 768 - 480 ) ) );
        font-size: calc( 20px + ( 25 - 20 ) * ( ( 100vw - 480px ) / ( 768 - 480 ) ) );
    }
}

@media (min-width: 768px) {
    .sa-infoblock-quote blockquote {
        font-size: 1.5625em;
    }
}

.sa-infoblock-quote blockquote:before,
.sa-infoblock-quote blockquote:after {
    color: #9c9c9c;
}

.sa-infoblock-quote blockquote:before,
.sa-infoblock-quote blockquote:after {
    position: absolute;
    z-index: 999;
    margin-left: -22px;
    font-size: 2em;
    line-height: 1;
    content: open-quote;
}

.sa-infoblock-quote blockquote:after {
    margin-right: -22px;
    margin-left: 3px;
    content: close-quote;
}

.sa-infoblock-quote-imbalanced blockquote:after {
    font-size: 1em;
}

.sa-infoblock-quote .sa-employee-img {
    float: left;
    width: 80px;
    max-width: none;
    margin-right: -80px;
}

.sa-infoblock-quote-source {
    display: inline-block;
    font-family: "Source Sans Pro", sans-serif;
    /* font size 19-22px */
    font-size: 1.1875em;
    font-style: normal;
    font-weight: 700;
}

@media (min-width: 480px) {
    .sa-infoblock-quote-source {
        font-size: -webkit-calc( 19px + ( 22 - 19 ) * ( ( 100vw - 480px ) / ( 768 - 480 ) ) );
        font-size: calc( 19px + ( 22 - 19 ) * ( ( 100vw - 480px ) / ( 768 - 480 ) ) );
    }
}

@media (min-width: 768px) {
    .sa-infoblock-quote-source {
        font-size: 1.375em;
    }
}

.sa-employee-img + .sa-infoblock-quote-source {
    float: right;
    width: 100%;
    padding-left: 100px;
}

.sa-infoblock-quote-meta {
    display: block;
    margin: .3em 0 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .636363em;
    font-style: normal;
    font-weight: 400;
    color: #58595b;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .sa-infoblock-sect.sa-infoblock-quote.sa-col-40 {
        padding-top: 0;
    }
}

@media (min-width: 768px) {
    .sa-infoblock-sect.sa-infoblock-quote.sa-col-40 {
        padding-left: 0;
    }
}
/* single award infoblock variation */
.sa-infoblock-award-single {
    position: relative;
    max-width: 100%;
    padding: 1rem 0;
    border-top: 1px solid #e6e7e8;
    border-bottom: 1px solid #d0d2d3;
    -webkit-box-shadow: 0 4px 0 0 rgba(0, 0, 0, .04);
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, .04);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .sa-infoblock-award-single:not( .sa-nograd ):before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        content: " ";
        background-color: #fcb52b;
        background-image: -webkit-linear-gradient(left, #fcb52b, #ffdc0c 50%, #f3ea25);
        background-image: -o-linear-gradient(left, #fcb52b, #ffdc0c 50%, #f3ea25);
        background-image: -webkit-gradient(linear, left top, right top, from(#fcb52b), color-stop(50%, #ffdc0c), to(#f3ea25));
        background-image: linear-gradient(to right, #fcb52b, #ffdc0c 50%, #f3ea25);
        background-repeat: no-repeat;
    }

    .sa-infoblock-award-single .sa-infoblock-intro {
        margin-bottom: 0;
    }

    .sa-infoblock-award-single .sa-infoblock-sect img {
        height: 4rem;
    }

        .sa-infoblock-award-single .sa-infoblock-sect img[src*="ventana"] {
            height: 3.5rem;
        }

    .sa-infoblock-award-single .sa-infoblock-intro b {
        display: block;
    }

@media (max-width: 37.4375em) {
    /* 599px */
    .sa-infoblock-award-single .sa-infoblock-sect {
        text-align: center;
    }

        .sa-infoblock-award-single .sa-infoblock-sect:first-child {
            padding-bottom: 0;
        }

        .sa-infoblock-award-single .sa-infoblock-sect:last-child {
            padding-top: 1rem;
        }
}

@media (min-width: 600px) {
    .sa-infoblock-award-single .sa-infoblock-sect:first-child {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 30%;
        -ms-flex: 0 1 30%;
        flex: 0 1 30%;
    }

    .sa-infoblock-award-single .sa-infoblock-sect:last-child {
        padding-left: 0;
    }
}

@media (min-width: 45em) {
    /* 720 */
    .sa-infoblock-award-single {
        padding: 1rem 6%;
    }
}

@media (min-width: 54em) {
    /* 864 */
    .sa-infoblock-award-single {
        padding: 1rem 10%;
    }
}

@media (min-width: 80em) {
    /* 1280 */
    .sa-infoblock-award-single {
        padding: 1rem 15%;
    }
}
/* callout style for infoblock sect */
@media (min-width: 768px) {
    .sa-infoblock-sect-callout {
        position: relative;
        z-index: 10;
        width: 80%;
        max-width: 42em;
        padding-top: 2rem;
        margin: -4.6em auto 0;
        font-size: .85em;
        color: #fff;
        background: url("https://www.salary.com/expertsource/Styles/Salary/img/bg-callout-grad.png") center top no-repeat;
    }

        .sa-infoblock-sect-callout .sa-infoblock-text-hed:first-child {
            margin-top: .6em;
        }

        .sa-infoblock-sect-callout .sa-infoblock-text:last-child {
            margin-bottom: 0;
        }
}

@media (min-width: 64em) {
    .sa-infoblock-sect-callout .sa-infoblock-text-hed:first-child {
        margin-top: 0;
    }
}
/* standardized padding across marketing components */
.sa-infoblock-sect {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.tmpl-sa-marketing .sa-ca-cta,
.sa-cta,
.sa-hero-text,
.sa-infoblock-group,
.sa-infoblock-group-min .sa-infoblock-sect,
.sa-boxed .sa-infoblock-sect,
.sa-infoblock-articles .sa-infoblock-sect,
.sa-infoblock-sect-callout {
    padding: 2rem 1.625rem;
}

.tmpl-sa-marketing .sa-footer-container {
    padding-right: 1.625rem;
    padding-left: 1.625rem;
}
/* padding is delegated to child nodes */
.sa-infoblock-group-min {
    padding: 0 !important;
}
/* some elements should be full width on smaller screens */
@media (max-width: 767px) {
    .sa-infoblock-group:not( .sa-infoblock-group-min ) .carousel,
    .sa-infoblock-group:not( .sa-infoblock-group-min ) > .panel-group {
        width: auto;
        margin-right: -1.625rem;
        margin-left: -1.625rem;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .sa-infoblock-group:not( .sa-infoblock-group-min ) .carousel {
        width: auto;
        margin-right: -2rem;
        margin-left: -2rem;
    }
}

@media (min-width: 600px) {
    .sa-infoblock-sect {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .tmpl-sa-marketing .sa-ca-cta,
    .sa-cta,
    .sa-hero-text,
    .sa-infoblock-group,
    .sa-infoblock-group-min .sa-infoblock-sect,
    .sa-boxed .sa-infoblock-sect,
    .sa-infoblock-articles .sa-infoblock-sect,
    .sa-infoblock-sect-callout {
        padding: 2rem 1.625rem;
    }

    .sa-infoblock-padding-min .sa-infoblock-sect,
    .sa-infoblock-multicol-xs:not( .sa-infoblock-padding-min ) .sa-infoblock-sect {
        padding-right: 1.625rem;
        padding-left: 1.625rem;
    }

    .sa-infoblock-multicol-xs:not( .sa-boxed ):not( .sa-infoblock-award-single ) .sa-infoblock-sect:first-child {
        padding-left: 0;
    }

    .sa-infoblock-multicol-xs:not( .sa-boxed ):not( .sa-infoblock-award-single ) .sa-infoblock-sect:last-child {
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .sa-infoblock-sect {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .tmpl-sa-marketing .sa-ca-cta,
    .sa-cta,
    .sa-hero-text,
    .sa-infoblock-group,
    .sa-infoblock-group-min .sa-infoblock-sect,
    .sa-boxed .sa-infoblock-sect,
    .sa-infoblock-articles .sa-infoblock-sect,
    .sa-infoblock-sect-callout {
        padding: 2rem 2rem;
    }

    .sa-infoblock-padding-min .sa-infoblock-sect {
        padding-right: 1.625rem;
        padding-left: 1.625rem;
    }

    .sa-infoblock-multicol-xs:not( .sa-infoblock-padding-min ) .sa-infoblock-sect,
    .sa-infoblock-multicol-sm:not( .sa-infoblock-padding-min ) .sa-infoblock-sect,
    .tmpl-sa-marketing .sa-navbar-secondary,
    .tmpl-sa-marketing .sa-footer-container {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .sa-infoblock-multicol-xs:not( .sa-boxed ):not( .sa-infoblock-award-single ) .sa-infoblock-sect:first-child,
    .sa-infoblock-multicol-sm:not( .sa-boxed ):not( .sa-photofeature ) .sa-infoblock-sect:not( .sa-infoblock-quote ):first-child {
        padding-left: 0;
    }

    .sa-infoblock-multicol-xs:not( .sa-boxed ):not( .sa-infoblock-award-single ) .sa-infoblock-sect:last-child,
    .sa-infoblock-multicol-sm:not( .sa-boxed ):not( .sa-photofeature ) .sa-infoblock-sect:not( .sa-infoblock-quote ):last-child {
        padding-right: 0;
    }
}

@media (min-width: 992px) {
    .sa-infoblock-multicol-md:not( .sa-infoblock-padding-min ) .sa-infoblock-sect {
        padding-right: 1.625rem;
        padding-left: 1.625rem;
    }

    .sa-infoblock-multicol-md:not( .sa-boxed ) .sa-infoblock-sect:first-child {
        padding-left: 0;
    }

    .sa-infoblock-multicol-md:not( .sa-boxed ) .sa-infoblock-sect:last-child {
        padding-right: 0;
    }
}

@media (min-width: 64em) {
    .sa-infoblock-sect {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .tmpl-sa-marketing .sa-ca-cta,
    .sa-cta,
    .sa-hero-text,
    .sa-infoblock-group,
    .sa-infoblock-group-min .sa-infoblock-sect,
    .sa-boxed .sa-infoblock-sect,
    .sa-infoblock-articles .sa-infoblock-sect,
    .sa-infoblock-sect-callout {
        padding: 2.5rem 3.5rem;
    }

    .sa-infoblock-sect-callout {
        padding: 3.5rem 2.5rem 2rem;
    }

    .sa-infoblock-padding-min .sa-infoblock-sect {
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .sa-infoblock-multicol-xs:not( .sa-infoblock-padding-min ) .sa-infoblock-sect,
    .sa-infoblock-multicol-sm:not( .sa-infoblock-padding-min ) .sa-infoblock-sect,
    .sa-infoblock-multicol-md:not( .sa-infoblock-padding-min ) .sa-infoblock-sect,
    .tmpl-sa-marketing .sa-navbar-secondary,
    .tmpl-sa-marketing .sa-footer-container {
        padding-right: 3.5rem;
        padding-left: 3.5rem;
    }

    .sa-infoblock-multicol-xs:not( .sa-boxed ):not( .sa-infoblock-award-single ) .sa-infoblock-sect:first-child,
    .sa-infoblock-multicol-sm:not( .sa-boxed ):not( .sa-photofeature ) .sa-infoblock-sect:not( .sa-infoblock-quote ):first-child,
    .sa-infoblock-multicol-md:not( .sa-boxed ) .sa-infoblock-sect:first-child {
        padding-left: 0;
    }

    .sa-infoblock-multicol-xs:not( .sa-boxed ):not( .sa-infoblock-award-single ) .sa-infoblock-sect:last-child,
    .sa-infoblock-multicol-sm:not( .sa-boxed ):not( .sa-photofeature ) .sa-infoblock-sect:not( .sa-infoblock-quote ):last-child,
    .sa-infoblock-multicol-md:not( .sa-boxed ) .sa-infoblock-sect:last-child {
        padding-right: 0;
    }
}

@media (min-width: 80em) {
    .sa-infoblock-multicol-xs:not( .sa-infoblock-padding-min ) .sa-infoblock-sect,
    .sa-infoblock-multicol-sm:not( .sa-infoblock-padding-min ) .sa-infoblock-sect,
    .sa-infoblock-multicol-md:not( .sa-infoblock-padding-min ) .sa-infoblock-sect {
        padding-right: 3.5rem;
        padding-left: 3.5rem;
    }
}
/* Fluid (no maxwidth infoblocks) */
.sa-infoblock-fluid {
    max-width: 100%;
}

@media (min-width: 75em) {
    /* 1200px */
    /* Fake the maxwidth: 1200px for position sectâ€™s */
    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-topright,
    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-middleright,
    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-bottomright {
        right: auto;
        /* 564px /16 */
        left: 50%;
        max-width: 35.25em;
        -webkit-transform: translateX(-webkit-calc(-50% + 284px));
        -ms-transform: translateX(calc(-50% + 284px));
        -o-transform: translateX(calc(-50% + 284px));
        transform: translateX(calc(-50% + 284px));
    }

    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-middleright {
        -webkit-transform: translateX(-webkit-calc(-50% + 284px)) translateY(-50%);
        -ms-transform: translateX(calc(-50% + 284px)) translateY(-50%);
        -o-transform: translateX(calc(-50% + 284px)) translateY(-50%);
        transform: translateX(calc(-50% + 284px)) translateY(-50%);
    }

    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-topleft,
    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-middleleft,
    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-bottomleft {
        right: 50%;
        /* 564px /16 */
        left: auto;
        max-width: 35.25em;
        -webkit-transform: translateX(-webkit-calc(50% - 284px));
        -ms-transform: translateX(calc(50% - 284px));
        -o-transform: translateX(calc(50% - 284px));
        transform: translateX(calc(50% - 284px));
    }

    .sa-infoblock-fluid > .sa-infoblock-sect.sa-position-middleleft {
        -webkit-transform: translateX(-webkit-calc(50% - 284px)) translateY(-50%);
        -ms-transform: translateX(calc(50% - 284px)) translateY(-50%);
        -o-transform: translateX(calc(50% - 284px)) translateY(-50%);
        transform: translateX(calc(50% - 284px)) translateY(-50%);
    }
}

.sa-infoblock-articles {
    background: #fff;
}

@media (max-width: 991px) {
    .sa-infoblock-articles {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}
/* article links */
.sa-articles-list.sa-infoblock .sa-infoblock-sect {
    padding-bottom: 0;
}

.sa-article-link,
.sa-topic-link {
    overflow: hidden;
    color: #212221;
}

    .sa-article-link:hover .sa-article-title,
    .sa-topic-link:hover .sa-article-title,
    .sa-article-link:focus .sa-article-title,
    .sa-topic-link:focus .sa-article-title {
        text-decoration: underline solid #767676;
        -webkit-text-decoration: underline solid #767676;
        -moz-text-decoration: underline solid #767676;
    }

.sa-article-link,
.sa-article-link-list {
    margin: 0 0 2em;
}

    .sa-article-link,
    .sa-article-link span {
        display: block;
    }

    .sa-article-link-list .sa-article-link {
        margin: .3em 0;
    }

.sa-article-flag {
    display: block;
    margin: 0 0 .3em;
    font-size: .75em;
    color: #58595b;
    text-transform: uppercase;
}

.sa-article-flag-lrg {
    font-size: .875em;
}

.sa-article-title {
    font-size: 1em;
}

.sa-article-feature .sa-article-title {
    font-size: 1.375em;
}

.sa-article-lede {
    margin: .5em 0 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.0625em;
    font-style: normal;
    font-weight: 300;
}

.sa-article-topics {
    padding-top: 1em;
    margin: 2.5em 0 .5em;
    border-top: 1px solid #e6e7e8;
}

.sa-article-imgwrap img,
.sa-article-imgwrap-feature img,
.sa-article-img,
.sa-article-img-feature {
    max-width: 100%;
}

.sa-article-imgwrap-feature,
.sa-article-img-feature {
    margin: 0 0 2em;
}

.sa-article-imgwrap,
.sa-article-img {
    margin: 0 0 1em;
}

.sa-article-author {
    margin: 0 0 .8em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 300;
    line-height: 1.3;
}

.sa-article-time {
    font-family: "Source Sans Pro", sans-serif;
    font-size: .9375em;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.sa-article-cta-link {
    font-size: 1.125em;
}

@media (min-width: 768px) {
    .sa-article-cta-link {
        font-size: 1.25em;
    }
}

.sa-article-cta-link [class^="icon-"] {
    display: inline-block;
    margin: .1em .3em 0 0;
    font-size: 1.1em;
    vertical-align: top;
}

@media (min-width: 18em) {
    .sa-article-imgwrap,
    .sa-article-img {
        float: left;
        width: 120px;
        margin-right: -85px;
        margin-bottom: 0;
        margin-left: -35px;
    }

        .sa-article-imgwrap ~ [class^="sa-article-"],
        .sa-article-img ~ [class^="sa-article-"] {
            padding-left: 100px;
        }
}

@media (min-width: 22.5em) {
    /* 360 */
    .sa-article-title {
        font-size: 1.0625em;
    }

    .sa-article-feature .sa-article-title {
        font-size: 1.4375em;
    }
}

@media (min-width: 36em) and (max-width: 991px) {
    .sa-infoblock-articles .sa-infoblock:not( .sa-infoblock-header ):not( .sa-infoblock-footer ) {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        .sa-infoblock-articles .sa-infoblock:not( .sa-infoblock-header ):not( .sa-infoblock-footer ) .sa-infoblock-sect {
            -webkit-box-flex: 1;
            -webkit-flex: 1 50%;
            -ms-flex: 1 50%;
            flex: 1 50%;
        }

            .sa-infoblock-articles .sa-infoblock:not( .sa-infoblock-header ):not( .sa-infoblock-footer ) .sa-infoblock-sect.sa-article-feature {
                -webkit-box-flex: 1;
                -webkit-flex: 1 100%;
                -ms-flex: 1 100%;
                flex: 1 100%;
            }
}

@media (min-width: 36em) and (max-width: 44.9375em) {
    .sa-infoblock-articles .sa-infoblock:not( .sa-infoblock-header ):not( .sa-infoblock-footer ) .sa-infoblock-sect.sa-col-25 {
        -webkit-box-flex: 1;
        -webkit-flex: 1 35%;
        -ms-flex: 1 35%;
        flex: 1 35%;
    }
}

@media (min-width: 36em) and (max-width: 991px) {
    /* 576 - 992 */
    .sa-infoblock-articles .sa-article-imgwrap-feature,
    .sa-infoblock-articles .sa-article-img-feature {
        float: left;
        max-width: 50%;
        margin-right: -50%;
    }

        .sa-infoblock-articles .sa-article-imgwrap-feature ~ span,
        .sa-infoblock-articles .sa-article-img-feature ~ span {
            float: right;
            width: 100%;
            padding-left: -webkit-calc( 50% + 30px );
            padding-left: calc( 50% + 30px );
        }

    .sa-infoblock-articles .sa-article-feature .sa-article-link {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {
    .sa-infoblock-articles .sa-infoblock.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
        border-width: 0 1px 0 0;
    }

    .sa-infoblock-articles .sa-infoblock.sa-infoblock {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .sa-infoblock-articles .sa-infoblock.sa-infoblock-reversed {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
    }

    .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect.sa-col-20 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 20%;
            -ms-flex: 0 1 20%;
            flex: 0 1 20%;
        }

        .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect.sa-col-25 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 25%;
            -ms-flex: 0 1 25%;
            flex: 0 1 25%;
        }

        .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect.sa-col-30 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
        }

        .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect.sa-col-40 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 40%;
            -ms-flex: 0 1 40%;
            flex: 0 1 40%;
        }

        .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect.sa-col-50 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
            flex: 0 1 50%;
        }

        .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect:first-child,
        .sa-infoblock-articles .sa-infoblock .sa-infoblock-sect:last-child {
            padding-right: 0;
            padding-left: 0;
        }
}

@media (min-width: 65em) {
    .sa-article-title {
        font-size: 1.125em;
    }

    .sa-article-imgwrap,
    .sa-article-img {
        width: 140px;
        margin-right: -140px;
        margin-left: 0;
    }

        .sa-article-imgwrap ~ [class^="sa-article-"],
        .sa-article-img ~ [class^="sa-article-"] {
            padding-left: 160px;
        }
}

.sa-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background-color: #0475b0;
    background-image: -webkit-linear-gradient(left, #0475b0, #067fbd 50%, #28aae1);
    background-image: -o-linear-gradient(left, #0475b0, #067fbd 50%, #28aae1);
    background-image: -webkit-gradient(linear, left top, right top, from(#0475b0), color-stop(50%, #067fbd), to(#28aae1));
    background-image: linear-gradient(to right, #0475b0, #067fbd 50%, #28aae1);
    background-repeat: no-repeat;
}

    .sa-cta:after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 4px;
        content: " ";
        background-color: #6fbe44;
        background-image: -webkit-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -o-linear-gradient(left, #6fbe44, #29abe2 40%, #caeefa);
        background-image: -webkit-gradient(linear, left top, right top, from(#6fbe44), color-stop(40%, #29abe2), to(#caeefa));
        background-image: linear-gradient(to right, #6fbe44, #29abe2 40%, #caeefa);
        background-repeat: no-repeat;
        -webkit-box-shadow: 0 0 0 6px rgba(0, 0, 0, .06);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, .06);
    }

.sa-cta-max {
    max-width: 28rem;
    margin: 0 auto;
    /* 448px /16 */
}

.sa-cta-hed {
    margin-top: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.sa-cta-desc {
    margin-bottom: 1.5em;
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 300;
}

.sa-cta-img {
    max-width: 100%;
    margin-top: 2rem;
    margin-bottom: -8rem;
}

@media (min-width: 37.5em) {
    /* 600px */
    .sa-cta-max {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        max-width: 1200px;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        -ms-flex-align: end;
        align-items: flex-end;
    }

    .sa-cta-content {
        max-width: 50%;
        -webkit-align-self: center;
        -ms-flex-item-align: center;
        align-self: center;
    }

    .sa-cta-img {
        width: 46%;
        margin-top: 1em;
        margin-bottom: -2rem;
    }
}

@media (min-width: 768px) {
    .sa-cta {
        padding-top: 2.875rem;
        /* 46px /16 */
        padding-bottom: 2.875rem;
        /* 46px /16 */
    }

    .sa-cta-img {
        margin-bottom: -2.875rem;
    }

    .sa-cta-hed {
        font-size: -webkit-calc( 22px + ( 40 - 22 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
        font-size: calc( 22px + ( 40 - 22 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
    }

    .sa-cta-desc {
        font-size: -webkit-calc( 15px + ( 25 - 15 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
        font-size: calc( 15px + ( 25 - 15 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
    }

    .sa-cta .sa-btn-cta .btn {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        height: -webkit-calc( 30px + ( 50 - 30 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
        height: calc( 30px + ( 50 - 30 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
        font-size: -webkit-calc( 15px + ( 20 - 15 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
        font-size: calc( 15px + ( 20 - 15 ) * ( ( 100vw - 768px ) / ( 992 - 768 ) ) );
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }

        .sa-cta .sa-btn-cta .btn strong {
            margin-left: .25em;
        }
}

@media (min-width: 992px) {
    .sa-cta {
        padding-top: 3.875rem;
        /* 46px /16 */
        padding-bottom: 3.875rem;
        /* 46px /16 */
    }

    .sa-cta-img {
        margin-bottom: -3.875rem;
    }

    .sa-cta-hed {
        font-size: 2.5rem;
        /* 40px /16 */
    }

    .sa-cta-desc {
        font-size: 1.5625rem;
        /* 25px /16 */
    }

    .sa-cta .sa-btn-cta .btn {
        /* 20px /16 */
        height: 50px;
        font-size: 1.25rem;
    }
}

.sa-infoblock-linkblock {
    text-align: left;
}

.sa-infoblock-linkblock-img {
    margin-bottom: 1em;
}

    .sa-infoblock-linkblock-img img {
        width: 100%;
    }

.sa-infoblock-linkblock-content {
    margin-bottom: 1em;
}

.sa-infoblock-linkblock-hed {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.375em;
    font-style: normal;
    font-weight: 600;
    /* 22px /16 */
}

.sa-infoblock-linkblock-hed-icon {
    font-size: 80%;
    color: #77d5f3;
}

.sa-infoblock-linkblock-info {
    /* 18px /16 */
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 300;
}

.sa-infoblock-linkblock-links {
    margin-bottom: 1em;
}

.sa-infoblock-linkblock-list {
    margin-bottom: 0;
}

    .sa-infoblock-linkblock-list > li > a {
        display: inline-block;
        padding: .2222222222222em 0;
        /* 4px 0px /18 */
        font-size: 1.0625em;
        /* 17px /16 */
    }

@media (min-width: 33.1875em) and (max-width: 39.9375em) {
    /* 531pxâ€“639px */
    .sa-infoblock-linkblock-content {
        float: right;
        width: 48%;
    }

    .sa-infoblock-linkblock-links {
        clear: both;
    }

        .sa-infoblock-linkblock-links:before,
        .sa-infoblock-linkblock-links:after {
            display: table;
            content: " ";
        }

        .sa-infoblock-linkblock-links:after {
            clear: both;
        }

        .sa-infoblock-linkblock-links:before,
        .sa-infoblock-linkblock-links:after {
            display: table;
            content: " ";
        }

        .sa-infoblock-linkblock-links:after {
            clear: both;
        }

    .sa-infoblock-linkblock:not(:last-child) .sa-infoblock-linkblock-links {
        padding-bottom: 2em;
        margin-bottom: -1.375em;
        border-bottom: 1px solid #e6e7e8;
        /* -22px /16 */
    }
}

@media (min-width: 33.1875em) and (max-width: 991px) {
    /* 531px /16 */
    .sa-infoblock-linkblock:before,
    .sa-infoblock-linkblock:after {
        display: table;
        content: " ";
    }

    .sa-infoblock-linkblock:after {
        clear: both;
    }

    .sa-infoblock-linkblock:before,
    .sa-infoblock-linkblock:after {
        display: table;
        content: " ";
    }

    .sa-infoblock-linkblock:after {
        clear: both;
    }

    .sa-infoblock-linkblock-content {
        float: right;
        width: 48%;
    }

    .sa-infoblock-linkblock-hed {
        margin-top: 0;
    }

    .sa-infoblock-linkblock-img {
        float: left;
        width: 47%;
        max-width: 28em;
    }
}

@media (min-width: 40em) and (max-width: 991px) {
    /* 640px /16 */
    .sa-infoblock-linkblock-content,
    .sa-infoblock-linkblock-links {
        float: right;
        width: 48%;
        clear: none;
    }

    .sa-infoblock-linkblock-img {
        width: 47%;
    }
}

@media (min-width: 768px) {
    .sa-infoblock-linkblock-hed {
        font-size: 1.4375em;
        /* 23px /16 */
    }

    .sa-infoblock-linkblock-info {
        font-size: 1.125em;
        /* 18px /16 */
    }

    .sa-infoblock-linkblock-list > li > a {
        font-size: 1.125em;
        /* 18px /16 */
    }
}
/* Two column links */
@media (min-width: 33.1875em) and (max-width: 39.9375em), (min-width: 50em) and (max-width: 991px) {
    /* 531pxâ€“639px, 800px-991px  */
    .sa-infoblock-linkblock-list {
        float: left;
        width: 50%;
        padding: 0 1rem 0 0;
    }

        .sa-infoblock-linkblock-list:last-child {
            padding-right: 0;
        }
}

.sa-iconstat {
    width: 11.875em;
    /* 190px /16 */
    padding: 0 2%;
    margin: 1.5em 0;
    text-align: center;
    /* 24px 0 /16 */
}

.sa-iconstat-icon {
    font-size: 2.125em;
    color: #29abe2;
    /* 34px /16 */
}

.sa-iconstat-hed {
    /* 24px /16 */
    margin-bottom: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.5em;
    font-style: normal;
    font-weight: 600;
}

.sa-iconstat-desc {
    /* 18px /16 */
    margin-top: 0;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 1.125em;
    font-style: normal;
    font-weight: 300;
}

.sa-iconstat-icon.icon-company-size-5 {
    font-weight: 700;
}

@media (min-width: 64em) {
    /* 1024px */
    .sa-iconstat-icon {
        font-size: 2.375em;
        /* 38px /16 */
    }

    .sa-iconstat-hed {
        font-size: 2em;
        /* 32px /16 */
    }

    .sa-iconstat-desc {
        font-size: 1.25em;
        /* 20px /16 */
    }
}
/* Panel */
.sa-iconstatpanel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

    .sa-iconstatpanel .sa-iconstat {
        width: 50%;
    }
/* 3 panels */
@media (min-width: 28.125em) {
    /* 450px */
    .sa-iconstatpanel .sa-iconstat:first-child,
    .sa-iconstatpanel .sa-iconstat:first-child ~ .sa-iconstat {
        width: 33.333%;
    }

    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(1) {
        width: 50%;
    }
}
/* 4 panels */
@media (min-width: 28.125em) {
    /* 450px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(4),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(1) {
        width: 50%;
    }
}

@media (min-width: 48em) {
    /* 768px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(4),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(1) {
        width: 25%;
    }
}
/* 5 panels */
@media (min-width: 48em) {
    /* 768px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(5),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(4),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(5):nth-last-child(1) {
        width: 33.333%;
    }
}

@media (min-width: 56.25em) {
    /* 900px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(5),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(4),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(5):nth-last-child(1) {
        width: 20%;
    }
}
/* 6 panels */
@media (min-width: 75em) {
    /* 1200px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(6),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(5),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(4),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(5):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(6):nth-last-child(1) {
        width: 16.666%;
    }
}
/* 7 panels */
@media (min-width: 28.125em) {
    /* 450px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(7),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(6),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(5),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(4) {
        width: 50%;
    }

    .sa-iconstatpanel .sa-iconstat:nth-child(5):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(6):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(7):nth-last-child(1) {
        width: 33.333%;
    }
}

@media (min-width: 48em) {
    /* 768px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(7),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(6),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(5),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(4),
    .sa-iconstatpanel .sa-iconstat:nth-child(5):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(6):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(7):nth-last-child(1) {
        width: 25%;
    }
}

@media (min-width: 87.5em) {
    /* 1400px */
    .sa-iconstatpanel .sa-iconstat:nth-child(1):nth-last-child(7),
    .sa-iconstatpanel .sa-iconstat:nth-child(2):nth-last-child(6),
    .sa-iconstatpanel .sa-iconstat:nth-child(3):nth-last-child(5),
    .sa-iconstatpanel .sa-iconstat:nth-child(4):nth-last-child(4),
    .sa-iconstatpanel .sa-iconstat:nth-child(5):nth-last-child(3),
    .sa-iconstatpanel .sa-iconstat:nth-child(6):nth-last-child(2),
    .sa-iconstatpanel .sa-iconstat:nth-child(7):nth-last-child(1) {
        width: 14.285%;
    }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 599px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width: 599px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width: 599px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width: 599px) {
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 767px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table !important;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width: 768px) and (max-width: 767px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 767px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) and (max-width: 767px) {
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) and (max-width: 991px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table !important;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width: 992px) and (max-width: 991px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 991px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 992px) and (max-width: 991px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table !important;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width: 599px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 767px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 991px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table !important;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

.sa-salaryreport-careerpath-tabs {
    display: none;
}

@media (min-width: 768px) {
    /* 768px */
    .sa-salaryreport-careerpath-tabs {
        display: block;
    }
}

.sa-personalize-industry .sa-searchinput {
    margin-bottom: 20px;
}

.sa-personalize-industry .sa-view-all {
    padding: 1em 0 0;
    margin: 0 0 0 1.5em;
    clear: both;
    font-size: .875em;
}

.sa-personalize-industry .radio label,
.sa-personalize-industry .checkbox label {
    font-size: .875em;
}

.sa-personalize-industry-opts {
    padding-left: 0;
    list-style: none;
    -webkit-column-width: 12em;
    -moz-column-width: 12em;
    column-width: 12em;
}

    .sa-personalize-industry-opts .radio {
        display: inline-block;
        width: 12em;
        margin: 7.5px 1px;
        vertical-align: top;
        page-break-inside: avoid;
        /* Chrome needs this */
        -webkit-column-break-inside: avoid;
        break-inside: avoid-column;
        /* IE10 and IE11 need this */
    }

.sa-personalize-getreport .col {
    max-width: 400px;
}

    .sa-personalize-getreport .col:not( :last-child ) {
        margin: 20px 0;
    }

.sa-job-description > .form-label:first-child {
    margin-top: 0;
}

.sa-job-description .lead {
    font-size: 1.0625em;
    line-height: 1.3;
}

.sa-job-description .list-unstyled {
    margin: 0 0 2em;
    font-family: "Source Sans Pro", sans-serif;
    font-size: .75em;
    font-style: normal;
    font-weight: 700;
}

.sa-job-description dl {
    font-size: 1.2em;
}

.sa-basetcc + .sa-job-description {
    margin-top: 2em;
}

@media (min-width: 28em) {
    .sa-personalize-industry .sa-searchinput {
        margin-top: -8px;
    }

    .sa-job-description .lead {
        float: left;
        width: 60%;
    }

    .sa-job-description-alts {
        float: right;
        max-width: 40%;
    }

        .sa-job-description-alts .form-label {
            margin-top: 0;
        }

    .sa-job-description-info {
        clear: both;
    }

        .sa-job-description-info:before,
        .sa-job-description-info:after {
            display: table;
            content: " ";
        }

        .sa-job-description-info:after {
            clear: both;
        }

        .sa-job-description-info:before,
        .sa-job-description-info:after {
            display: table;
            content: " ";
        }

        .sa-job-description-info:after {
            clear: both;
        }

        .sa-job-description-info dl {
            float: left;
            max-width: 50%;
            padding-right: 20px;
            margin-bottom: 0;
        }

            .sa-job-description-info dl:last-child {
                padding-right: 0;
            }
}

@media (min-width: 37.5em) {
    .sa-personalize-industry .radio label,
    .sa-personalize-industry .checkbox label {
        font-size: .9375em;
    }

    .sa-personalize-getreport .row {
        display: table;
        width: 100%;
    }

    .sa-personalize-getreport .col {
        display: table-cell;
        vertical-align: bottom;
    }

        .sa-personalize-getreport .col:not( :last-child ) {
            padding-right: 20px;
        }

    .sa-personalize-getreport .sa-btn-personalize {
        float: right;
    }

    .sa-job-description-info dl {
        padding-right: 2em;
    }

    .sa-job-description-alts {
        width: 35%;
    }
}

@media (min-width: 57em) and (max-width: 61.9375em), (min-width: 73em) {
    .sa-sliders:before,
    .sa-slider-block:before,
    .sa-personalize-industry:before,
    .sa-sliders:after,
    .sa-slider-block:after,
    .sa-personalize-industry:after {
        display: table;
        content: " ";
    }

    .sa-sliders:after,
    .sa-slider-block:after,
    .sa-personalize-industry:after {
        clear: both;
    }

    .sa-sliders:before,
    .sa-slider-block:before,
    .sa-personalize-industry:before,
    .sa-sliders:after,
    .sa-slider-block:after,
    .sa-personalize-industry:after {
        display: table;
        content: " ";
    }

    .sa-sliders:after,
    .sa-slider-block:after,
    .sa-personalize-industry:after {
        clear: both;
    }

    .sa-slider-block [data-slider],
    [data-opt-mssg-set] {
        float: left;
        width: 100%;
        padding-right: 220px;
    }

    [data-opt-mssg-set],
    .sa-personalize-industry-search {
        padding-right: 230px;
    }

        .sa-slider-block .sa-slider-feedback,
        [data-opt-mssg-set] + .sa-opt-mssg {
            float: right;
            width: 180px;
            margin-left: -180px;
        }

    .sa-slider {
        padding-left: 5px;
    }

    .sa-slider-feedback dl {
        margin-top: .6em;
    }

    .sa-slider-mssg,
    .sa-opt-mssg {
        margin: 0;
        font-size: .9375em;
    }

        .sa-slider-mssg:before,
        .sa-opt-mssg:before {
            top: 50%;
            left: 0;
            margin-top: -5px;
        }
}
/* Salary range on Salary Report */
@media (min-width: 768px) {
    .sa-salaryreport-range {
        float: left;
        width: 50%;
        margin-top: -.625em;
        /* -10px /16 */
    }
}

.sa-salarylist .tablesaw-cell-label {
    font-size: .6875rem;
    /* 11px /16 */
    text-transform: uppercase;
}
    /* Override */
    .sa-salarylist .tablesaw-cell-label.tablesaw-cell-label {
        padding-top: 4px;
    }

.sa-salarylist .tablesaw-cell-content {
    font-size: .9375rem;
    /* 15px /16 */
}

.sa-salarylist-title {
    font-family: "Source Sans Pro", sans-serif;
    font-style: normal;
    font-weight: 600;
}
    /* Override */
    .sa-salarylist-title.sa-salarylist-title.sa-salarylist-title {
        font-size: 1.0625em;
        /* 17px /16 */
    }
    /* Override */
    .sa-salarylist-title .tablesaw-cell-label.tablesaw-cell-label {
        display: none;
    }

@media (max-width: 39.9375em) {
    .sa-salarylist-desc {
        font-size: .75rem;
        /* 12px /16 */
    }

    .sa-salarylist-salary .tablesaw-cell-content {
        width: 20%;
    }

    .sa-salarylist-salary + .sa-tablebarchart-chart .tablesaw-cell-label {
        display: none;
    }

    .sa-salarylist-salary + .sa-tablebarchart-chart .tablesaw-cell-content {
        float: right;
        width: 48%;
        margin-top: -2.1875rem;
        /* 35px /16 */
    }
    /* Cell padding overrides */
    .sa-salarylist.sa-table > thead > tr > th,
    .sa-salarylist.sa-table > thead > tr > td,
    .sa-salarylist.sa-table > tfoot > tr > th,
    .sa-salarylist.sa-table > tfoot > tr > td,
    .sa-salarylist.sa-table > tbody > tr > th,
    .sa-salarylist.sa-table > tbody > tr > td {
        padding-top: 0;
        padding-bottom: 6px;
    }

    .sa-salarylist-title.sa-salarylist-title.sa-salarylist-title {
        padding-top: 15px;
        padding-bottom: 10px;
    }

    .sa-salarylist-salary.sa-salarylist-salary.sa-salarylist-salary {
        padding-bottom: 15px;
    }
}

@media (max-width: 27.4375em) {
    /* 439px */
    .sa-salarylist-salary .tablesaw-cell-content {
        width: 28%;
    }

    .sa-salarylist-salary + .sa-tablebarchart-chart .tablesaw-cell-content {
        width: 40%;
    }
}

@media (min-width: 40em) {
    .sa-salarylist-desc {
        margin-right: 3em;
    }

    .sa-salarylist-salary {
        width: 7.75rem;
        /* 124px /16 */
    }

        .sa-salarylist-salary + .sa-tablebarchart-chart {
            width: 27%;
        }
}

.sa-tmpl-home {
    background: #e6e7e8;
}

    .sa-tmpl-home .btn-default [class^="icon-"] {
        color: #29abe2;
    }

.sa-home-triage.sa-infoblock-group {
    padding: 0 !important;
}
/* awards content */
.sa-infoblock-group.sa-home-awards {
    border-top: 2px solid #fff;
}

.sa-home-awards .sa-article-flag {
    margin-top: 2em;
}

.sa-home-awards .sa-article-logo {
    width: auto;
    min-height: 50px;
    margin-top: 1em;
}
/* quote overrides for homepage */
.sa-award-title {
    display: inline-block;
    margin: 0;
    font-family: "Source Sans Pro", sans-serif;
    /* font size 19-22px */
    font-size: 1.1875em;
    font-style: normal;
    font-weight: 700;
    font-weight: 400;
}

@media (min-width: 480px) {
    .sa-award-title {
        font-size: -webkit-calc( 19px + ( 22 - 19 ) * ( ( 100vw - 480px ) / ( 768 - 480 ) ) );
        font-size: calc( 19px + ( 22 - 19 ) * ( ( 100vw - 480px ) / ( 768 - 480 ) ) );
    }
}

@media (min-width: 768px) {
    .sa-award-title {
        font-size: 1.375em;
    }
}

@media (min-width: 992px) {
    .sa-award-title {
        min-height: 4em;
    }
}
/* courses content */
.sa-home-courses .sa-home-course-list {
    position: relative;
    padding-left: 1.5em;
    margin-left: .5em;
    background: url(https://www.salary.com/expertsource/Styles/Salary/img/bg-line-dotted-v.png) repeat-y 0 0;
}

    .sa-home-courses .sa-home-course-list:before,
    .sa-home-courses .sa-home-course-list:after {
        position: absolute;
        left: -9px;
        display: block;
        width: 20px;
        height: 20px;
        background-color: #f8f8f9;
    }

    .sa-home-courses .sa-home-course-list:after {
        top: 0;
        content: " ";
        border: 0;
        border: 1px solid #bbb;
        border-radius: 20px;
    }

    .sa-home-courses .sa-home-course-list:before {
        bottom: 0;
        /* use !important to prevent issues with browser extensions that change fonts */
        font-family: 'icomoon' !important;
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        line-height: 1;
        color: #bbb;
        text-transform: none;
        content: "\e904";
        speak: none;
    }

.sa-home-courses .sa-article-link {
    margin: 0 0 .5em;
}

.sa-home-courses .sa-article-cta-link {
    display: inline-block;
}

.sa-home-courses .sa-employee-img {
    display: block;
    float: none;
    max-width: 80px;
    margin: 0 0 1em;
}

.sa-home-courses .sa-article-time {
    display: inline-block;
    margin-right: 2em;
}

@media (max-width: 54.9375em) {
    /*879 */
    #sa-form-worth [class*="sa-form-group-"] {
        width: 100%;
    }

    .sa-home-triage .sa-btn-personalize .sa-extra {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

@media (max-width: 991px) {
    .sa-home-awards .sa-infoblock-sect:not( .sa-infoblock-quote ) {
        padding-top: 0;
    }

        .sa-home-awards .sa-infoblock-sect:not( .sa-infoblock-quote ) .sa-article-flag {
            border-top: 1px solid #e6e7e8;
        }

    .sa-home-awards .sa-article-flag [class^="border-"] {
        display: inline-block;
        padding: .8em 0 .3em;
        margin-top: -3px;
        border-style: solid;
        border-width: 3px 0 0;
    }

    .sa-home-courses .sa-home-course-list {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        .sa-home-courses .sa-home-course-list .sa-infoblock-sect {
            padding-top: 1.5em;
            padding-bottom: 1.5em;
            -webkit-box-flex: 1;
            -webkit-flex: 1 100%;
            -ms-flex: 1 100%;
            flex: 1 100%;
        }
}

@media (min-width: 480px) {
    /* 480 */
    .sa-home-courses .sa-employee-img {
        position: absolute;
        left: 0;
    }

    .sa-home-courses .sa-home-course-list .sa-infoblock-sect {
        position: relative;
        padding-left: 6.5em;
    }

    .sa-home-awards .sa-infoblock .sa-infoblock-sect:not( .sa-infoblock-quote ) {
        padding-right: 4rem;
    }

    .sa-home-awards .sa-infoblock .sa-infoblock-sect:last-child {
        padding-right: 0;
    }
}

@media (min-width: 480px) and (max-width: 991px) {
    .sa-home-awards .sa-infoblock {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    }

        .sa-home-awards .sa-infoblock .sa-infoblock-sect {
            -webkit-box-flex: 1;
            -webkit-flex: 1 50%;
            -ms-flex: 1 50%;
            flex: 1 50%;
        }

            .sa-home-awards .sa-infoblock .sa-infoblock-sect.sa-infoblock-quote {
                -webkit-box-flex: 1;
                -webkit-flex: 1 100%;
                -ms-flex: 1 100%;
                flex: 1 100%;
            }
}

@media (min-width: 600px) {
    /* 600 */
    .sa-home-triage {
        position: relative;
        z-index: 4;
        margin-top: -200px;
    }

        .sa-home-triage .sa-infoblock.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
            border-width: 0 1px 0 0;
        }

        .sa-home-triage .sa-infoblock.sa-infoblock {
            display: -webkit-box;
            display: -webkit-flex;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: stretch;
            -webkit-align-items: stretch;
            -ms-flex-align: stretch;
            align-items: stretch;
        }

        .sa-home-triage .sa-infoblock.sa-infoblock-reversed {
            flex-direction: row-reverse;
            -webkit-box-orient: horizontal;
            -webkit-box-direction: reverse;
            -webkit-flex-direction: row-reverse;
            -ms-flex-direction: row-reverse;
        }

        .sa-home-triage .sa-infoblock .sa-infoblock-sect {
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            -webkit-box-flex: 1;
            -webkit-flex: 1;
            -ms-flex: 1;
            flex: 1;
        }

            .sa-home-triage .sa-infoblock .sa-infoblock-sect.sa-col-20 {
                -webkit-box-flex: 0;
                -webkit-flex: 0 1 20%;
                -ms-flex: 0 1 20%;
                flex: 0 1 20%;
            }

            .sa-home-triage .sa-infoblock .sa-infoblock-sect.sa-col-25 {
                -webkit-box-flex: 0;
                -webkit-flex: 0 1 25%;
                -ms-flex: 0 1 25%;
                flex: 0 1 25%;
            }

            .sa-home-triage .sa-infoblock .sa-infoblock-sect.sa-col-30 {
                -webkit-box-flex: 0;
                -webkit-flex: 0 1 30%;
                -ms-flex: 0 1 30%;
                flex: 0 1 30%;
            }

            .sa-home-triage .sa-infoblock .sa-infoblock-sect.sa-col-40 {
                -webkit-box-flex: 0;
                -webkit-flex: 0 1 40%;
                -ms-flex: 0 1 40%;
                flex: 0 1 40%;
            }

            .sa-home-triage .sa-infoblock .sa-infoblock-sect.sa-col-50 {
                -webkit-box-flex: 0;
                -webkit-flex: 0 1 50%;
                -ms-flex: 0 1 50%;
                flex: 0 1 50%;
            }

    .sa-home-awards blockquote {
        width: 90%;
    }
}

@media (min-width: 992px) {
    .sa-home-awards .sa-infoblock.sa-boxed > .sa-infoblock-sect:not( :last-child ),
    .sa-home-courses .sa-infoblock.sa-boxed > .sa-infoblock-sect:not( :last-child ) {
        border-width: 0 1px 0 0;
    }

    .sa-home-awards .sa-infoblock.sa-infoblock,
    .sa-home-courses .sa-infoblock.sa-infoblock {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .sa-home-awards .sa-infoblock.sa-infoblock-reversed,
    .sa-home-courses .sa-infoblock.sa-infoblock-reversed {
        flex-direction: row-reverse;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
    }

    .sa-home-awards .sa-infoblock .sa-infoblock-sect,
    .sa-home-courses .sa-infoblock .sa-infoblock-sect {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }

        .sa-home-awards .sa-infoblock .sa-infoblock-sect.sa-col-20,
        .sa-home-courses .sa-infoblock .sa-infoblock-sect.sa-col-20 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 20%;
            -ms-flex: 0 1 20%;
            flex: 0 1 20%;
        }

        .sa-home-awards .sa-infoblock .sa-infoblock-sect.sa-col-25,
        .sa-home-courses .sa-infoblock .sa-infoblock-sect.sa-col-25 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 25%;
            -ms-flex: 0 1 25%;
            flex: 0 1 25%;
        }

        .sa-home-awards .sa-infoblock .sa-infoblock-sect.sa-col-30,
        .sa-home-courses .sa-infoblock .sa-infoblock-sect.sa-col-30 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 30%;
            -ms-flex: 0 1 30%;
            flex: 0 1 30%;
        }

        .sa-home-awards .sa-infoblock .sa-infoblock-sect.sa-col-40,
        .sa-home-courses .sa-infoblock .sa-infoblock-sect.sa-col-40 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 40%;
            -ms-flex: 0 1 40%;
            flex: 0 1 40%;
        }

        .sa-home-awards .sa-infoblock .sa-infoblock-sect.sa-col-50,
        .sa-home-courses .sa-infoblock .sa-infoblock-sect.sa-col-50 {
            -webkit-box-flex: 0;
            -webkit-flex: 0 1 50%;
            -ms-flex: 0 1 50%;
            flex: 0 1 50%;
        }

    .sa-home-awards blockquote {
        width: 80%;
    }

    .sa-home-awards .sa-infoblock-sect:not( .sa-infoblock-quote ) .sa-article-flag {
        position: relative;
        white-space: nowrap;
    }

        .sa-home-awards .sa-infoblock-sect:not( .sa-infoblock-quote ) .sa-article-flag:before,
        .sa-home-awards .sa-article-flag [class^="border-"]:before {
            position: absolute;
            top: 0;
            left: -2rem;
            height: 170px;
            content: " ";
            border-left: 1px solid #e6e7e8;
        }

    .sa-home-awards .sa-article-flag [class^="border-"]:before {
        height: 70px;
        border-color: inherit;
        border-left-width: 3px;
    }

    .sa-home-awards .sa-article-flag {
        margin-top: 0;
    }

    .sa-home-awards .sa-article-logo[src*="stevie"] {
        margin-top: .5em;
    }

    .sa-home-courses .sa-article-link {
        margin: 0 0 1em;
    }

    .sa-home-courses .sa-home-course-list {
        padding-top: 2em;
        margin: 0;
        background: url(https://www.salary.com/expertsource/Styles/Salary/img/bg-line-dotted-h.png) repeat-x 0 2em;
    }

        .sa-home-courses .sa-home-course-list:before,
        .sa-home-courses .sa-home-course-list:after {
            position: absolute;
            bottom: auto;
            display: block;
            width: 20px;
            height: 20px;
            background-color: #f8f8f9;
        }

        .sa-home-courses .sa-home-course-list:after {
            top: 1.4em;
            left: 0;
        }

        .sa-home-courses .sa-home-course-list:before {
            top: 1.1em;
            right: 0;
            left: auto;
            content: "\e906";
        }

        .sa-home-courses .sa-home-course-list .sa-infoblock-sect {
            padding-top: 3.5em;
            padding-left: 3em;
        }

            .sa-home-courses .sa-home-course-list .sa-infoblock-sect:first-child {
                padding-left: 0;
            }

    .sa-home-courses .sa-employee-img {
        top: -2.3em;
        left: 0;
        left: 50%;
        margin-left: -50px;
    }

    .sa-home-courses .sa-article-time {
        display: block;
    }
}

@media (min-width: 80em) {
    .sa-home-courses .sa-home-course-list {
        margin: 0 auto;
    }
}
/*@import "sa-responsive-utilities.less";*/
/* Color classes */
.bg-black {
    background-color: #212221;
}

.bg-charcoal {
    background-color: #58595b;
}

.bg-gray {
    background-color: #767676;
}

.bg-graystroke {
    background-color: #e6e7e8;
}

.bg-grayfill {
    background-color: #f8f8f9;
}

.bg-bluedark {
    background-color: #075484;
}

.bg-blue {
    background-color: #007dbc;
}

.bg-bluebright {
    background-color: #29abe2;
}

.bg-bluelite {
    background-color: #77d5f3;
}

.bg-bluefill {
    background-color: #caeefa;
}

.bg-bluenavbar {
    background-color: #ddf4fc;
}

.bg-greendark {
    background-color: #118933;
}

.bg-green {
    background-color: #16a44a;
}

.bg-greenbright {
    background-color: #6fbe44;
}

.bg-greenlite {
    background-color: #9ccb3e;
}

.bg-red {
    background-color: #c32026;
}

.bg-orange {
    background-color: #ed7a23;
}

.bg-orangebright {
    background-color: #fbc62c;
}

.bg-yellow {
    background-color: #fedd0e;
}

.bg-yellowlite {
    background-color: #f3ea27;
}

.bg-purpledark {
    background-color: #935093;
}

.bg-purple {
    background-color: #af77ae;
}

.bg-fuscia {
    background-color: #f05566;
}

.bg-pink {
    background-color: #eb6f92;
}

.border-black {
    border-color: #212221;
}

.border-charcoal {
    border-color: #58595b;
}

.border-gray {
    border-color: #767676;
}

.border-graystroke {
    border-color: #e6e7e8;
}

.border-grayfill {
    border-color: #f8f8f9;
}

.border-bluedark {
    border-color: #075484;
}

.border-blue {
    border-color: #007dbc;
}

.border-bluebright {
    border-color: #29abe2;
}

.border-bluelite {
    border-color: #77d5f3;
}

.border-bluefill {
    border-color: #caeefa;
}

.border-greendark {
    border-color: #118933;
}

.border-green {
    border-color: #16a44a;
}

.border-greenbright {
    border-color: #6fbe44;
}

.border-greenlite {
    border-color: #9ccb3e;
}

.border-red {
    border-color: #c32026;
}

.border-orange {
    border-color: #ed7a23;
}

.border-orangebright {
    border-color: #fbc62c;
}

.border-yellow {
    border-color: #fedd0e;
}

.border-yellowlite {
    border-color: #f3ea27;
}

.border-purpledark {
    border-color: #935093;
}

.border-purple {
    border-color: #af77ae;
}

.border-fuscia {
    border-color: #f05566;
}

.border-pink {
    border-color: #eb6f92;
}

.text-black {
    color: #212221;
}

.text-charcoal {
    color: #58595b;
}

.text-gray {
    color: #767676;
}

.text-graystroke {
    color: #e6e7e8;
}

.text-grayfill {
    color: #f8f8f9;
}

.text-bluedark {
    color: #075484;
}

.text-blue {
    color: #007dbc;
}

.text-bluebright {
    color: #29abe2;
}

.text-bluelite {
    color: #77d5f3;
}

.text-bluefill {
    color: #caeefa;
}

.text-greendark {
    color: #118933;
}

.text-green {
    color: #16a44a;
}

.text-greenbright {
    color: #6fbe44;
}

.text-greenlite {
    color: #9ccb3e;
}

.text-red {
    color: #c32026;
}

.text-orange {
    color: #ed7a23;
}

.text-orangebright {
    color: #fbc62c;
}

.text-yellow {
    color: #fedd0e;
}

.text-yellowlite {
    color: #f3ea27;
}

.text-purpledark {
    color: #935093;
}

.text-purple {
    color: #af77ae;
}

.text-fuscia {
    color: #f05566;
}

.text-pink {
    color: #eb6f92;
}
/* Default to black text: */
.bg-graystroke,
.bg-grayfill,
.bg-bluebright,
.bg-bluelite,
.bg-bluefill,
.bg-bluenavbar,
.bg-green,
.bg-greenbright,
.bg-greenlite,
.bg-orange,
.bg-orangebright,
.bg-yellow,
.bg-yellowlite,
.bg-purple,
.bg-fuscia,
.bg-pink {
    color: #212221;
}
/* Default to white text: */
.bg-black,
.bg-charcoal,
.bg-gray,
.bg-bluedark,
.bg-blue,
.bg-greendark,
.bg-red,
.bg-purpledark {
    color: #fff;
}
/*@import "sa-theme.less";*/
/*# sourceMappingURL=bootstrap-salary-web.css.map */

/*account dropdown*/
.dropdown-menu li.accLabel {
    display: block;
    padding: 7px 10px;
    clear: both;
    font-weight: normal;
    line-height: 1.2;
    color: #212221;
    white-space: nowrap;
}

.sa-user-photo {
    position: relative;
    float: left;
    width: 34px;
    max-width: none;
    padding: 2px;
    margin-left: 0.8em;
}

    .sa-user-photo img {
        position: relative;
        z-index: 1;
        max-width: 100%;
        border-radius: 50%;
    }

#sa-global-header-login-btn .caret {
    display: inline-block;
    width: 16px;
    height: auto;
    margin-top: 5%;
    font-size: 1.2em;
    margin-left: 0;
}

    #sa-global-header-login-btn .caret:before {
        color: #007dbc;
        opacity: .7;
    }
/*end account dropdown*/

/*header/footer overwrite other style*/
.sa-global-gradient, footer {
    font-family: Source Sans Pro,sans-serif;
}

    .sa-global-gradient h2 {
        padding-left: 0;
    }

.sa-nav-block p {
    font-weight: normal;
}

.sa-footer-p {
    font-weight: normal;
}

.sa-nav-link-secondary:visited {
    color: #212221;
}

.sa-nav-link-secondary:hover {
    color: #004a70;
}

.sa-nav-link-primary:visited {
    color: #212221;
}

.sa-nav-link-primary:hover {
    color: #004a70;
}
/*header/footer overwrite other style end*/

/*for GDPR Agreement box*/
.cc-compliance > .cc-btn {
    border-radius: 2em;
    font-family: Source Sans Pro,sans-serif;
    font-size: 14px;
    flex: none !important;
    margin: 0 auto;
    min-width: 100px;
    padding: 0;
}

.cc-window.cc-floating {
    /*border-top: 5px solid rgb(251, 198, 44);*/
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.cc-link {
    text-decoration: none !important;
    font-size: 14px;
}

.cc-floating .cc-message {
    /*text-align: center;*/
}

.cc-floating .cc-compliance {
    margin-top: 20px;
}
/*for GDPR Agreement box end*/
@media screen and (min-width:768px) {
    .sal-error-title {
        padding: 70px 40px 0px 20px;
    }
}

@media(max-width:767px) {
    .sal-flex-wrap {
        display: flex;
        flex-wrap: wrap-reverse;
    }

    .sal-error-title {
        padding: 20px 40px 0px 20px;
    }
}

.cc-banner.cc-top {
    top: auto !important;
}

.cc-window.cc-banner .cc-btn:last-child {
    padding: 0px;
    min-width: 100px;
}

.cc-window.cc-banner .cc-compliance > .cc-btn {
    flex: none;
    margin: 0 auto;
}

.cc-window.cc-floating {
    max-width: 100% !important;
}

.cc-window.cc-banner, .cc-window.cc-floating {
    justify-content: center;
    -webkit-justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
}

@media(max-width:736px) {
    .cc-banner .cc-message, .cc-floating .cc-message {
        flex: 1;
        display: inline !important;
        margin-top: 0 !important;
        flex-basis: 100% !important;
    }

    .cc-window.cc-floating .cc-btn:last-child {
        padding: 0px;
        min-width: 100px;
    }

    .cc-window.cc-floating .cc-compliance > .cc-btn {
        flex: none;
        margin: 0 auto;
        text-transform: uppercase;
    }

    .cc-window.cc-banner, .cc-window.cc-floating {
        /*border-top: 4px solid rgb(251, 198, 44);*/
        padding: 1em 1em !important;
        left: 0;
        right: 0;
        bottom: 0;
        top: unset !important;
    }

    .cc-window .cc-message .icon-alert {
        display: none;
    }

    .cc-floating .cc-compliance {
        margin-bottom: 20px;
    }
}

@media(min-width:737px) {
    .cc-window.cc-banner, .cc-window.cc-floating {
        /*border-top: 4px solid rgb(251, 198, 44);*/
        /*position: static;*/
        left: 0;
        right: 0;
        bottom: 0;
    }

    .cc-banner .cc-message, .cc-floating .cc-message {
        margin-left: 7px;
        flex: unset !important;
        display: inline !important;
        margin-bottom: 0 !important;
        /*flex-basis: 60% !important;*/
    }

    .cc-window.cc-banner .cc-compliance {
        margin: 0 22px;
        text-transform: uppercase;
    }
}
