@charset "UTF-8";
/* CiscoSans Fonts for Dashboard
 * These imports were created based on recommendations from this CSS-tricks article
 * https://css-tricks.com/snippets/css/using-font-face/#article-header-id-1
 */
/* CiscoSans Thin */
@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTThin.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTThin.woff") format("woff");
    font-weight: 100; }

@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTThinOblique.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTThinOblique.woff") format("woff");
    font-weight: 100;
    font-style: oblique; }

/* CiscoSans Extra Light */
@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTExtraLight.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTExtraLight.woff") format("woff");
    font-weight: 200; }

@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTExtraLightOblique.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTExtraLightOblique.woff") format("woff");
    font-weight: 200;
    font-style: oblique; }

/* CiscoSans Light */
@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTLight.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTLight.woff") format("woff");
    font-weight: 300; }

@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTLightOblique.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTLightOblique.woff") format("woff");
    font-weight: 300;
    font-style: oblique; }

/* CiscoSans Regular */
@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTRegular.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTRegular.woff") format("woff");
    font-weight: 400; }

@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTRegularOblique.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTRegularOblique.woff") format("woff");
    font-weight: 400;
    font-style: oblique; }

/* CiscoSans Bold */
@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTBold.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTBold.woff") format("woff");
    font-weight: 700; }

@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTBoldOblique.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTBoldOblique.woff") format("woff");
    font-weight: 700;
    font-style: oblique; }

/* CiscoSans Heavy */
@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTHeavy.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTHeavy.woff") format("woff");
    font-weight: 900; }

@font-face {
    font-family: cisco-sans;
    font-display: fallback;
    src: url("/fonts/cisco-sans/CiscoSansTTHeavyOblique.woff2") format("woff2"), url("/fonts/cisco-sans/CiscoSansTTHeavyOblique.woff") format("woff");
    font-weight: 900;
    font-style: oblique; }

/* Button overrides
 * Creating our own mixin to allow us to use the button-variant mixin
 * that bootsrap provides.
 * Our additions set hover, active, and disabled states using color variables
 * rather than bootstrap's "darken" and "opacity" methods.
 */
button:not(.btn), input[type="button"]:not(.btn), input[type="submit"]:not(.btn), input[type="reset"]:not(.btn) {
    /* Include the base ".btn" styles from Bootstrap because we've excluded ".btn" */
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Since we want specific colors for showing disabled state, we need to
   * override the opacity style bootstrap uses for disabled
   */
    padding: 4px 10px;
    font-size: 13px;
    line-height: 1.42857;
    border-radius: 2px;
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */
    /* Create each of the button types */
    /* btn-secondary creates a "glassy" blue button that can be used as an alternate action when there is a btn-primary */ }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn) {
    opacity: 1; }
button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:hover:not(.btn), input[type="button"]:active:hover:not(.btn), input[type="submit"]:active:hover:not(.btn), input[type="reset"]:active:hover:not(.btn), button:active:focus:not(.btn), input[type="button"]:active:focus:not(.btn), input[type="submit"]:active:focus:not(.btn), input[type="reset"]:active:focus:not(.btn), button:active.focus:not(.btn), input[type="button"]:active.focus:not(.btn), input[type="submit"]:active.focus:not(.btn), input[type="reset"]:active.focus:not(.btn), button.active:hover:not(.btn), input.active[type="button"]:hover:not(.btn), input.active[type="submit"]:hover:not(.btn), input.active[type="reset"]:hover:not(.btn), button.active:focus:not(.btn), input.active[type="button"]:focus:not(.btn), input.active[type="submit"]:focus:not(.btn), input.active[type="reset"]:focus:not(.btn), button.active.focus:not(.btn), input.active.focus[type="button"]:not(.btn), input.active.focus[type="submit"]:not(.btn), input.active.focus[type="reset"]:not(.btn),
.open > button.dropdown-toggle:hover:not(.btn),
.open > input.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.dropdown-toggle:focus:not(.btn),
.open > input.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.dropdown-toggle.focus:not(.btn),
.open > input.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button:not(.btn) .badge, input[type="button"]:not(.btn) .badge, input[type="submit"]:not(.btn) .badge, input[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn), button.hover:not(.btn), input.hover[type="button"]:not(.btn), input.hover[type="submit"]:not(.btn), input.hover[type="reset"]:not(.btn), button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn), button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button.disabled:active:not(.btn), input.disabled[type="button"]:active:not(.btn), input.disabled[type="submit"]:active:not(.btn), input.disabled[type="reset"]:active:not(.btn), button.disabled.active:not(.btn), input.disabled.active[type="button"]:not(.btn), input.disabled.active[type="submit"]:not(.btn), input.disabled.active[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn), button[disabled]:active:not(.btn), input[disabled][type="button"]:active:not(.btn), input[disabled][type="submit"]:active:not(.btn), input[disabled][type="reset"]:active:not(.btn), button[disabled].active:not(.btn), input[disabled].active[type="button"]:not(.btn), input[disabled].active[type="submit"]:not(.btn), input[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button:not(.btn),
fieldset[disabled] input[type="button"]:not(.btn),
fieldset[disabled] input[type="submit"]:not(.btn),
fieldset[disabled] input[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn),
fieldset[disabled] button:active:not(.btn),
fieldset[disabled] input[type="button"]:active:not(.btn),
fieldset[disabled] input[type="submit"]:active:not(.btn),
fieldset[disabled] input[type="reset"]:active:not(.btn),
fieldset[disabled] button.active:not(.btn),
fieldset[disabled] input.active[type="button"]:not(.btn),
fieldset[disabled] input.active[type="submit"]:not(.btn),
fieldset[disabled] input.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-default:not(.btn), input.btn-default[type="button"]:not(.btn), input.btn-default[type="submit"]:not(.btn), input.btn-default[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:hover:not(.btn), input.btn-default[type="button"]:active:hover:not(.btn), input.btn-default[type="submit"]:active:hover:not(.btn), input.btn-default[type="reset"]:active:hover:not(.btn), button.btn-default:active:focus:not(.btn), input.btn-default[type="button"]:active:focus:not(.btn), input.btn-default[type="submit"]:active:focus:not(.btn), input.btn-default[type="reset"]:active:focus:not(.btn), button.btn-default:active.focus:not(.btn), input.btn-default[type="button"]:active.focus:not(.btn), input.btn-default[type="submit"]:active.focus:not(.btn), input.btn-default[type="reset"]:active.focus:not(.btn), button.btn-default.active:hover:not(.btn), input.btn-default.active[type="button"]:hover:not(.btn), input.btn-default.active[type="submit"]:hover:not(.btn), input.btn-default.active[type="reset"]:hover:not(.btn), button.btn-default.active:focus:not(.btn), input.btn-default.active[type="button"]:focus:not(.btn), input.btn-default.active[type="submit"]:focus:not(.btn), input.btn-default.active[type="reset"]:focus:not(.btn), button.btn-default.active.focus:not(.btn), input.btn-default.active.focus[type="button"]:not(.btn), input.btn-default.active.focus[type="submit"]:not(.btn), input.btn-default.active.focus[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-default.dropdown-toggle:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-default.dropdown-toggle.focus:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button.btn-default:not(.btn) .badge, input.btn-default[type="button"]:not(.btn) .badge, input.btn-default[type="submit"]:not(.btn) .badge, input.btn-default[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn), button.btn-default.hover:not(.btn), input.btn-default.hover[type="button"]:not(.btn), input.btn-default.hover[type="submit"]:not(.btn), input.btn-default.hover[type="reset"]:not(.btn), button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn), button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-default.disabled:not(.btn), input.btn-default.disabled[type="button"]:not(.btn), input.btn-default.disabled[type="submit"]:not(.btn), input.btn-default.disabled[type="reset"]:not(.btn), button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default.disabled:active:not(.btn), input.btn-default.disabled[type="button"]:active:not(.btn), input.btn-default.disabled[type="submit"]:active:not(.btn), input.btn-default.disabled[type="reset"]:active:not(.btn), button.btn-default.disabled.active:not(.btn), input.btn-default.disabled.active[type="button"]:not(.btn), input.btn-default.disabled.active[type="submit"]:not(.btn), input.btn-default.disabled.active[type="reset"]:not(.btn), button.btn-default[disabled]:not(.btn), input.btn-default[disabled][type="button"]:not(.btn), input.btn-default[disabled][type="submit"]:not(.btn), input.btn-default[disabled][type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn), button.btn-default[disabled]:active:not(.btn), input.btn-default[disabled][type="button"]:active:not(.btn), input.btn-default[disabled][type="submit"]:active:not(.btn), input.btn-default[disabled][type="reset"]:active:not(.btn), button.btn-default[disabled].active:not(.btn), input.btn-default[disabled].active[type="button"]:not(.btn), input.btn-default[disabled].active[type="submit"]:not(.btn), input.btn-default[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:active:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-default.active:not(.btn),
fieldset[disabled] input.btn-default.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-primary:not(.btn), input.btn-primary[type="button"]:not(.btn), input.btn-primary[type="submit"]:not(.btn), input.btn-primary[type="reset"]:not(.btn) {
    color: white;
    background-color: #1470CC;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #093058; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:hover:not(.btn), input.btn-primary[type="button"]:active:hover:not(.btn), input.btn-primary[type="submit"]:active:hover:not(.btn), input.btn-primary[type="reset"]:active:hover:not(.btn), button.btn-primary:active:focus:not(.btn), input.btn-primary[type="button"]:active:focus:not(.btn), input.btn-primary[type="submit"]:active:focus:not(.btn), input.btn-primary[type="reset"]:active:focus:not(.btn), button.btn-primary:active.focus:not(.btn), input.btn-primary[type="button"]:active.focus:not(.btn), input.btn-primary[type="submit"]:active.focus:not(.btn), input.btn-primary[type="reset"]:active.focus:not(.btn), button.btn-primary.active:hover:not(.btn), input.btn-primary.active[type="button"]:hover:not(.btn), input.btn-primary.active[type="submit"]:hover:not(.btn), input.btn-primary.active[type="reset"]:hover:not(.btn), button.btn-primary.active:focus:not(.btn), input.btn-primary.active[type="button"]:focus:not(.btn), input.btn-primary.active[type="submit"]:focus:not(.btn), input.btn-primary.active[type="reset"]:focus:not(.btn), button.btn-primary.active.focus:not(.btn), input.btn-primary.active.focus[type="button"]:not(.btn), input.btn-primary.active.focus[type="submit"]:not(.btn), input.btn-primary.active.focus[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-primary.dropdown-toggle:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-primary.dropdown-toggle.focus:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0c457d;
    border-color: #093058; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn) {
    background-color: #1470CC;
    border-color: #1470CC; }
button.btn-primary:not(.btn) .badge, input.btn-primary[type="button"]:not(.btn) .badge, input.btn-primary[type="submit"]:not(.btn) .badge, input.btn-primary[type="reset"]:not(.btn) .badge {
    color: #1470CC;
    background-color: white; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn), button.btn-primary.hover:not(.btn), input.btn-primary.hover[type="button"]:not(.btn), input.btn-primary.hover[type="submit"]:not(.btn), input.btn-primary.hover[type="reset"]:not(.btn), button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn), button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #0F5499;
    border-color: #0F5499; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-primary.disabled:not(.btn), input.btn-primary.disabled[type="button"]:not(.btn), input.btn-primary.disabled[type="submit"]:not(.btn), input.btn-primary.disabled[type="reset"]:not(.btn), button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary.disabled:active:not(.btn), input.btn-primary.disabled[type="button"]:active:not(.btn), input.btn-primary.disabled[type="submit"]:active:not(.btn), input.btn-primary.disabled[type="reset"]:active:not(.btn), button.btn-primary.disabled.active:not(.btn), input.btn-primary.disabled.active[type="button"]:not(.btn), input.btn-primary.disabled.active[type="submit"]:not(.btn), input.btn-primary.disabled.active[type="reset"]:not(.btn), button.btn-primary[disabled]:not(.btn), input.btn-primary[disabled][type="button"]:not(.btn), input.btn-primary[disabled][type="submit"]:not(.btn), input.btn-primary[disabled][type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn), button.btn-primary[disabled]:active:not(.btn), input.btn-primary[disabled][type="button"]:active:not(.btn), input.btn-primary[disabled][type="submit"]:active:not(.btn), input.btn-primary[disabled][type="reset"]:active:not(.btn), button.btn-primary[disabled].active:not(.btn), input.btn-primary[disabled].active[type="button"]:not(.btn), input.btn-primary[disabled].active[type="submit"]:not(.btn), input.btn-primary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:active:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-primary.active:not(.btn),
fieldset[disabled] input.btn-primary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #AACEF2;
    border-color: #AACEF2; }
button.btn-secondary:not(.btn), input.btn-secondary[type="button"]:not(.btn), input.btn-secondary[type="submit"]:not(.btn), input.btn-secondary[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #F1F7FD;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #093058; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:hover:not(.btn), input.btn-secondary[type="button"]:active:hover:not(.btn), input.btn-secondary[type="submit"]:active:hover:not(.btn), input.btn-secondary[type="reset"]:active:hover:not(.btn), button.btn-secondary:active:focus:not(.btn), input.btn-secondary[type="button"]:active:focus:not(.btn), input.btn-secondary[type="submit"]:active:focus:not(.btn), input.btn-secondary[type="reset"]:active:focus:not(.btn), button.btn-secondary:active.focus:not(.btn), input.btn-secondary[type="button"]:active.focus:not(.btn), input.btn-secondary[type="submit"]:active.focus:not(.btn), input.btn-secondary[type="reset"]:active.focus:not(.btn), button.btn-secondary.active:hover:not(.btn), input.btn-secondary.active[type="button"]:hover:not(.btn), input.btn-secondary.active[type="submit"]:hover:not(.btn), input.btn-secondary.active[type="reset"]:hover:not(.btn), button.btn-secondary.active:focus:not(.btn), input.btn-secondary.active[type="button"]:focus:not(.btn), input.btn-secondary.active[type="submit"]:focus:not(.btn), input.btn-secondary.active[type="reset"]:focus:not(.btn), button.btn-secondary.active.focus:not(.btn), input.btn-secondary.active.focus[type="button"]:not(.btn), input.btn-secondary.active.focus[type="submit"]:not(.btn), input.btn-secondary.active.focus[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-secondary.dropdown-toggle:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-secondary.dropdown-toggle.focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #a5ccf2;
    border-color: #093058; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn) {
    background-color: #F1F7FD;
    border-color: #1470CC; }
button.btn-secondary:not(.btn) .badge, input.btn-secondary[type="button"]:not(.btn) .badge, input.btn-secondary[type="submit"]:not(.btn) .badge, input.btn-secondary[type="reset"]:not(.btn) .badge {
    color: #F1F7FD;
    background-color: #1470CC; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn), button.btn-secondary.hover:not(.btn), input.btn-secondary.hover[type="button"]:not(.btn), input.btn-secondary.hover[type="submit"]:not(.btn), input.btn-secondary.hover[type="reset"]:not(.btn), button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn), button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-secondary.disabled:not(.btn), input.btn-secondary.disabled[type="button"]:not(.btn), input.btn-secondary.disabled[type="submit"]:not(.btn), input.btn-secondary.disabled[type="reset"]:not(.btn), button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary.disabled:active:not(.btn), input.btn-secondary.disabled[type="button"]:active:not(.btn), input.btn-secondary.disabled[type="submit"]:active:not(.btn), input.btn-secondary.disabled[type="reset"]:active:not(.btn), button.btn-secondary.disabled.active:not(.btn), input.btn-secondary.disabled.active[type="button"]:not(.btn), input.btn-secondary.disabled.active[type="submit"]:not(.btn), input.btn-secondary.disabled.active[type="reset"]:not(.btn), button.btn-secondary[disabled]:not(.btn), input.btn-secondary[disabled][type="button"]:not(.btn), input.btn-secondary[disabled][type="submit"]:not(.btn), input.btn-secondary[disabled][type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:active:not(.btn), input.btn-secondary[disabled][type="button"]:active:not(.btn), input.btn-secondary[disabled][type="submit"]:active:not(.btn), input.btn-secondary[disabled][type="reset"]:active:not(.btn), button.btn-secondary[disabled].active:not(.btn), input.btn-secondary[disabled].active[type="button"]:not(.btn), input.btn-secondary[disabled].active[type="submit"]:not(.btn), input.btn-secondary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-secondary.active:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-success:not(.btn), input.btn-success[type="button"]:not(.btn), input.btn-success[type="submit"]:not(.btn), input.btn-success[type="reset"]:not(.btn) {
    color: white;
    background-color: #67B346;
    border-color: #67B346;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #325722; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:hover:not(.btn), input.btn-success[type="button"]:active:hover:not(.btn), input.btn-success[type="submit"]:active:hover:not(.btn), input.btn-success[type="reset"]:active:hover:not(.btn), button.btn-success:active:focus:not(.btn), input.btn-success[type="button"]:active:focus:not(.btn), input.btn-success[type="submit"]:active:focus:not(.btn), input.btn-success[type="reset"]:active:focus:not(.btn), button.btn-success:active.focus:not(.btn), input.btn-success[type="button"]:active.focus:not(.btn), input.btn-success[type="submit"]:active.focus:not(.btn), input.btn-success[type="reset"]:active.focus:not(.btn), button.btn-success.active:hover:not(.btn), input.btn-success.active[type="button"]:hover:not(.btn), input.btn-success.active[type="submit"]:hover:not(.btn), input.btn-success.active[type="reset"]:hover:not(.btn), button.btn-success.active:focus:not(.btn), input.btn-success.active[type="button"]:focus:not(.btn), input.btn-success.active[type="submit"]:focus:not(.btn), input.btn-success.active[type="reset"]:focus:not(.btn), button.btn-success.active.focus:not(.btn), input.btn-success.active.focus[type="button"]:not(.btn), input.btn-success.active.focus[type="submit"]:not(.btn), input.btn-success.active.focus[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-success.dropdown-toggle:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-success.dropdown-toggle.focus:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #43752e;
    border-color: #325722; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn) {
    background-color: #67B346;
    border-color: #67B346; }
button.btn-success:not(.btn) .badge, input.btn-success[type="button"]:not(.btn) .badge, input.btn-success[type="submit"]:not(.btn) .badge, input.btn-success[type="reset"]:not(.btn) .badge {
    color: #67B346;
    background-color: white; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn), button.btn-success.hover:not(.btn), input.btn-success.hover[type="button"]:not(.btn), input.btn-success.hover[type="submit"]:not(.btn), input.btn-success.hover[type="reset"]:not(.btn), button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn), button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #42732D;
    border-color: #42732D; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-success.disabled:not(.btn), input.btn-success.disabled[type="button"]:not(.btn), input.btn-success.disabled[type="submit"]:not(.btn), input.btn-success.disabled[type="reset"]:not(.btn), button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success.disabled:active:not(.btn), input.btn-success.disabled[type="button"]:active:not(.btn), input.btn-success.disabled[type="submit"]:active:not(.btn), input.btn-success.disabled[type="reset"]:active:not(.btn), button.btn-success.disabled.active:not(.btn), input.btn-success.disabled.active[type="button"]:not(.btn), input.btn-success.disabled.active[type="submit"]:not(.btn), input.btn-success.disabled.active[type="reset"]:not(.btn), button.btn-success[disabled]:not(.btn), input.btn-success[disabled][type="button"]:not(.btn), input.btn-success[disabled][type="submit"]:not(.btn), input.btn-success[disabled][type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn), button.btn-success[disabled]:active:not(.btn), input.btn-success[disabled][type="button"]:active:not(.btn), input.btn-success[disabled][type="submit"]:active:not(.btn), input.btn-success[disabled][type="reset"]:active:not(.btn), button.btn-success[disabled].active:not(.btn), input.btn-success[disabled].active[type="button"]:not(.btn), input.btn-success[disabled].active[type="submit"]:not(.btn), input.btn-success[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:active:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-success.active:not(.btn),
fieldset[disabled] input.btn-success.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #9ED188;
    border-color: #9ED188; }
button.btn-info:not(.btn), input.btn-info[type="button"]:not(.btn), input.btn-info[type="submit"]:not(.btn), input.btn-info[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: white;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #093058; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:hover:not(.btn), input.btn-info[type="button"]:active:hover:not(.btn), input.btn-info[type="submit"]:active:hover:not(.btn), input.btn-info[type="reset"]:active:hover:not(.btn), button.btn-info:active:focus:not(.btn), input.btn-info[type="button"]:active:focus:not(.btn), input.btn-info[type="submit"]:active:focus:not(.btn), input.btn-info[type="reset"]:active:focus:not(.btn), button.btn-info:active.focus:not(.btn), input.btn-info[type="button"]:active.focus:not(.btn), input.btn-info[type="submit"]:active.focus:not(.btn), input.btn-info[type="reset"]:active.focus:not(.btn), button.btn-info.active:hover:not(.btn), input.btn-info.active[type="button"]:hover:not(.btn), input.btn-info.active[type="submit"]:hover:not(.btn), input.btn-info.active[type="reset"]:hover:not(.btn), button.btn-info.active:focus:not(.btn), input.btn-info.active[type="button"]:focus:not(.btn), input.btn-info.active[type="submit"]:focus:not(.btn), input.btn-info.active[type="reset"]:focus:not(.btn), button.btn-info.active.focus:not(.btn), input.btn-info.active.focus[type="button"]:not(.btn), input.btn-info.active.focus[type="submit"]:not(.btn), input.btn-info.active.focus[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-info.dropdown-toggle:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-info.dropdown-toggle.focus:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #d4d4d4;
    border-color: #093058; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #1470CC; }
button.btn-info:not(.btn) .badge, input.btn-info[type="button"]:not(.btn) .badge, input.btn-info[type="submit"]:not(.btn) .badge, input.btn-info[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #1470CC; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn), button.btn-info.hover:not(.btn), input.btn-info.hover[type="button"]:not(.btn), input.btn-info.hover[type="submit"]:not(.btn), input.btn-info.hover[type="reset"]:not(.btn), button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn), button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-info.disabled:not(.btn), input.btn-info.disabled[type="button"]:not(.btn), input.btn-info.disabled[type="submit"]:not(.btn), input.btn-info.disabled[type="reset"]:not(.btn), button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info.disabled:active:not(.btn), input.btn-info.disabled[type="button"]:active:not(.btn), input.btn-info.disabled[type="submit"]:active:not(.btn), input.btn-info.disabled[type="reset"]:active:not(.btn), button.btn-info.disabled.active:not(.btn), input.btn-info.disabled.active[type="button"]:not(.btn), input.btn-info.disabled.active[type="submit"]:not(.btn), input.btn-info.disabled.active[type="reset"]:not(.btn), button.btn-info[disabled]:not(.btn), input.btn-info[disabled][type="button"]:not(.btn), input.btn-info[disabled][type="submit"]:not(.btn), input.btn-info[disabled][type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn), button.btn-info[disabled]:active:not(.btn), input.btn-info[disabled][type="button"]:active:not(.btn), input.btn-info[disabled][type="submit"]:active:not(.btn), input.btn-info[disabled][type="reset"]:active:not(.btn), button.btn-info[disabled].active:not(.btn), input.btn-info[disabled].active[type="button"]:not(.btn), input.btn-info[disabled].active[type="submit"]:not(.btn), input.btn-info[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:active:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-info.active:not(.btn),
fieldset[disabled] input.btn-info.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-warning:not(.btn), input.btn-warning[type="button"]:not(.btn), input.btn-warning[type="submit"]:not(.btn), input.btn-warning[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: white;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #852410; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:hover:not(.btn), input.btn-warning[type="button"]:active:hover:not(.btn), input.btn-warning[type="submit"]:active:hover:not(.btn), input.btn-warning[type="reset"]:active:hover:not(.btn), button.btn-warning:active:focus:not(.btn), input.btn-warning[type="button"]:active:focus:not(.btn), input.btn-warning[type="submit"]:active:focus:not(.btn), input.btn-warning[type="reset"]:active:focus:not(.btn), button.btn-warning:active.focus:not(.btn), input.btn-warning[type="button"]:active.focus:not(.btn), input.btn-warning[type="submit"]:active.focus:not(.btn), input.btn-warning[type="reset"]:active.focus:not(.btn), button.btn-warning.active:hover:not(.btn), input.btn-warning.active[type="button"]:hover:not(.btn), input.btn-warning.active[type="submit"]:hover:not(.btn), input.btn-warning.active[type="reset"]:hover:not(.btn), button.btn-warning.active:focus:not(.btn), input.btn-warning.active[type="button"]:focus:not(.btn), input.btn-warning.active[type="submit"]:focus:not(.btn), input.btn-warning.active[type="reset"]:focus:not(.btn), button.btn-warning.active.focus:not(.btn), input.btn-warning.active.focus[type="button"]:not(.btn), input.btn-warning.active.focus[type="submit"]:not(.btn), input.btn-warning.active.focus[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-warning.dropdown-toggle:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-warning.dropdown-toggle.focus:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #d4d4d4;
    border-color: #852410; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #E64D2E; }
button.btn-warning:not(.btn) .badge, input.btn-warning[type="button"]:not(.btn) .badge, input.btn-warning[type="submit"]:not(.btn) .badge, input.btn-warning[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #E64D2E; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn), button.btn-warning.hover:not(.btn), input.btn-warning.hover[type="button"]:not(.btn), input.btn-warning.hover[type="submit"]:not(.btn), input.btn-warning.hover[type="reset"]:not(.btn), button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn), button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    color: #C7290A;
    background-color: #FAE1DC;
    border-color: #C7290A; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-warning.disabled:not(.btn), input.btn-warning.disabled[type="button"]:not(.btn), input.btn-warning.disabled[type="submit"]:not(.btn), input.btn-warning.disabled[type="reset"]:not(.btn), button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning.disabled:active:not(.btn), input.btn-warning.disabled[type="button"]:active:not(.btn), input.btn-warning.disabled[type="submit"]:active:not(.btn), input.btn-warning.disabled[type="reset"]:active:not(.btn), button.btn-warning.disabled.active:not(.btn), input.btn-warning.disabled.active[type="button"]:not(.btn), input.btn-warning.disabled.active[type="submit"]:not(.btn), input.btn-warning.disabled.active[type="reset"]:not(.btn), button.btn-warning[disabled]:not(.btn), input.btn-warning[disabled][type="button"]:not(.btn), input.btn-warning[disabled][type="submit"]:not(.btn), input.btn-warning[disabled][type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn), button.btn-warning[disabled]:active:not(.btn), input.btn-warning[disabled][type="button"]:active:not(.btn), input.btn-warning[disabled][type="submit"]:active:not(.btn), input.btn-warning[disabled][type="reset"]:active:not(.btn), button.btn-warning[disabled].active:not(.btn), input.btn-warning[disabled].active[type="button"]:not(.btn), input.btn-warning[disabled].active[type="submit"]:not(.btn), input.btn-warning[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:active:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-warning.active:not(.btn),
fieldset[disabled] input.btn-warning.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="reset"]:not(.btn) {
    color: #F7A894;
    background-color: white;
    border-color: #F7A894; }
button.btn-danger:not(.btn), input.btn-danger[type="button"]:not(.btn), input.btn-danger[type="submit"]:not(.btn), input.btn-danger[type="reset"]:not(.btn) {
    color: white;
    background-color: #E64D2E;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #852410; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:hover:not(.btn), input.btn-danger[type="button"]:active:hover:not(.btn), input.btn-danger[type="submit"]:active:hover:not(.btn), input.btn-danger[type="reset"]:active:hover:not(.btn), button.btn-danger:active:focus:not(.btn), input.btn-danger[type="button"]:active:focus:not(.btn), input.btn-danger[type="submit"]:active:focus:not(.btn), input.btn-danger[type="reset"]:active:focus:not(.btn), button.btn-danger:active.focus:not(.btn), input.btn-danger[type="button"]:active.focus:not(.btn), input.btn-danger[type="submit"]:active.focus:not(.btn), input.btn-danger[type="reset"]:active.focus:not(.btn), button.btn-danger.active:hover:not(.btn), input.btn-danger.active[type="button"]:hover:not(.btn), input.btn-danger.active[type="submit"]:hover:not(.btn), input.btn-danger.active[type="reset"]:hover:not(.btn), button.btn-danger.active:focus:not(.btn), input.btn-danger.active[type="button"]:focus:not(.btn), input.btn-danger.active[type="submit"]:focus:not(.btn), input.btn-danger.active[type="reset"]:focus:not(.btn), button.btn-danger.active.focus:not(.btn), input.btn-danger.active.focus[type="button"]:not(.btn), input.btn-danger.active.focus[type="submit"]:not(.btn), input.btn-danger.active.focus[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-danger.dropdown-toggle:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-danger.dropdown-toggle.focus:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #a92d14;
    border-color: #852410; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn) {
    background-color: #E64D2E;
    border-color: #E64D2E; }
button.btn-danger:not(.btn) .badge, input.btn-danger[type="button"]:not(.btn) .badge, input.btn-danger[type="submit"]:not(.btn) .badge, input.btn-danger[type="reset"]:not(.btn) .badge {
    color: #E64D2E;
    background-color: white; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn), button.btn-danger.hover:not(.btn), input.btn-danger.hover[type="button"]:not(.btn), input.btn-danger.hover[type="submit"]:not(.btn), input.btn-danger.hover[type="reset"]:not(.btn), button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn), button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #C7290A;
    border-color: #C7290A; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-danger.disabled:not(.btn), input.btn-danger.disabled[type="button"]:not(.btn), input.btn-danger.disabled[type="submit"]:not(.btn), input.btn-danger.disabled[type="reset"]:not(.btn), button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger.disabled:active:not(.btn), input.btn-danger.disabled[type="button"]:active:not(.btn), input.btn-danger.disabled[type="submit"]:active:not(.btn), input.btn-danger.disabled[type="reset"]:active:not(.btn), button.btn-danger.disabled.active:not(.btn), input.btn-danger.disabled.active[type="button"]:not(.btn), input.btn-danger.disabled.active[type="submit"]:not(.btn), input.btn-danger.disabled.active[type="reset"]:not(.btn), button.btn-danger[disabled]:not(.btn), input.btn-danger[disabled][type="button"]:not(.btn), input.btn-danger[disabled][type="submit"]:not(.btn), input.btn-danger[disabled][type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn), button.btn-danger[disabled]:active:not(.btn), input.btn-danger[disabled][type="button"]:active:not(.btn), input.btn-danger[disabled][type="submit"]:active:not(.btn), input.btn-danger[disabled][type="reset"]:active:not(.btn), button.btn-danger[disabled].active:not(.btn), input.btn-danger[disabled].active[type="button"]:not(.btn), input.btn-danger[disabled].active[type="submit"]:not(.btn), input.btn-danger[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:active:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-danger.active:not(.btn),
fieldset[disabled] input.btn-danger.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #F7A894;
    border-color: #F7A894; }
button.btn-subtle:not(.btn), input.btn-subtle[type="button"]:not(.btn), input.btn-subtle[type="submit"]:not(.btn), input.btn-subtle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:hover:not(.btn), input.btn-subtle[type="button"]:active:hover:not(.btn), input.btn-subtle[type="submit"]:active:hover:not(.btn), input.btn-subtle[type="reset"]:active:hover:not(.btn), button.btn-subtle:active:focus:not(.btn), input.btn-subtle[type="button"]:active:focus:not(.btn), input.btn-subtle[type="submit"]:active:focus:not(.btn), input.btn-subtle[type="reset"]:active:focus:not(.btn), button.btn-subtle:active.focus:not(.btn), input.btn-subtle[type="button"]:active.focus:not(.btn), input.btn-subtle[type="submit"]:active.focus:not(.btn), input.btn-subtle[type="reset"]:active.focus:not(.btn), button.btn-subtle.active:hover:not(.btn), input.btn-subtle.active[type="button"]:hover:not(.btn), input.btn-subtle.active[type="submit"]:hover:not(.btn), input.btn-subtle.active[type="reset"]:hover:not(.btn), button.btn-subtle.active:focus:not(.btn), input.btn-subtle.active[type="button"]:focus:not(.btn), input.btn-subtle.active[type="submit"]:focus:not(.btn), input.btn-subtle.active[type="reset"]:focus:not(.btn), button.btn-subtle.active.focus:not(.btn), input.btn-subtle.active.focus[type="button"]:not(.btn), input.btn-subtle.active.focus[type="submit"]:not(.btn), input.btn-subtle.active.focus[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-subtle.dropdown-toggle:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-subtle.dropdown-toggle.focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn) {
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:not(.btn) .badge, input.btn-subtle[type="button"]:not(.btn) .badge, input.btn-subtle[type="submit"]:not(.btn) .badge, input.btn-subtle[type="reset"]:not(.btn) .badge {
    color: transparent;
    background-color: #222325; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn), button.btn-subtle.hover:not(.btn), input.btn-subtle.hover[type="button"]:not(.btn), input.btn-subtle.hover[type="submit"]:not(.btn), input.btn-subtle.hover[type="reset"]:not(.btn), button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn), button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-subtle.disabled:not(.btn), input.btn-subtle.disabled[type="button"]:not(.btn), input.btn-subtle.disabled[type="submit"]:not(.btn), input.btn-subtle.disabled[type="reset"]:not(.btn), button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle.disabled:active:not(.btn), input.btn-subtle.disabled[type="button"]:active:not(.btn), input.btn-subtle.disabled[type="submit"]:active:not(.btn), input.btn-subtle.disabled[type="reset"]:active:not(.btn), button.btn-subtle.disabled.active:not(.btn), input.btn-subtle.disabled.active[type="button"]:not(.btn), input.btn-subtle.disabled.active[type="submit"]:not(.btn), input.btn-subtle.disabled.active[type="reset"]:not(.btn), button.btn-subtle[disabled]:not(.btn), input.btn-subtle[disabled][type="button"]:not(.btn), input.btn-subtle[disabled][type="submit"]:not(.btn), input.btn-subtle[disabled][type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:active:not(.btn), input.btn-subtle[disabled][type="button"]:active:not(.btn), input.btn-subtle[disabled][type="submit"]:active:not(.btn), input.btn-subtle[disabled][type="reset"]:active:not(.btn), button.btn-subtle[disabled].active:not(.btn), input.btn-subtle[disabled].active[type="button"]:not(.btn), input.btn-subtle[disabled].active[type="submit"]:not(.btn), input.btn-subtle[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-subtle.active:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: transparent;
    border-color: transparent; }

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%; }

body {
    margin: 0; }

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

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

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

[hidden],
template {
    display: none; }

a {
    background-color: transparent; }

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

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

b,
strong {
    font-weight: bold; }

dfn {
    font-style: italic; }

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

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

small {
    font-size: 80%; }

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

sup {
    top: -0.5em; }

sub {
    bottom: -0.25em; }

img {
    border: 0; }

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

figure {
    margin: 1em 40px; }

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

pre {
    overflow: auto; }

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

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

button {
    overflow: visible; }

button,
select {
    text-transform: none; }

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

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

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

input {
    line-height: normal; }

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

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

input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none; }

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

legend {
    border: 0;
    padding: 0; }

textarea {
    overflow: auto; }

optgroup {
    font-weight: bold; }

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

td,
th {
    padding: 0; }

.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;
    list-style: none;
    font-size: 13px;
    text-align: left;
    background-color: white;
    border: 1px solid #ccc;
    border: 1px solid #DEDFE0;
    border-radius: 3px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    background-clip: padding-box; }
.dropdown-menu.pull-right {
    right: 0;
    left: auto; }
.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #DEDFE0; }
.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: normal;
    line-height: 1.42857;
    color: #222325;
    white-space: nowrap; }

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #222325;
    background-color: #F2F2F2; }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #337ab7; }

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #A2A3A6; }

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
    cursor: not-allowed; }

.open > .dropdown-menu {
    display: block; }

.open > a {
    outline: 0; }

.dropdown-menu-right {
    left: auto;
    right: 0; }

.dropdown-menu-left {
    left: 0;
    right: auto; }

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857;
    color: #898A8C;
    white-space: nowrap; }

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990; }

.pull-right > .dropdown-menu {
    right: 0;
    left: auto; }

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: ""; }

.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 {
        left: 0;
        right: auto; } }

.close {
    float: right;
    font-size: 19.5px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20); }
.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: 0.5;
    filter: alpha(opacity=50); }

button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none; }

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 4px 10px;
    font-size: 13px;
    line-height: 1.42857;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px; }
.btn:hover, .btn:focus, .btn.focus {
    color: #222325;
    text-decoration: none; }
.btn:active, .btn.active {
    outline: 0;
    background-image: none;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
.btn.disabled, .btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: 0.65;
    filter: alpha(opacity=65);
    box-shadow: none; }

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none; }

.btn-default {
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
.btn-default:focus, .btn-default.focus {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
.btn-default:hover {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
.btn-default:active, .btn-default.active,
.open > .btn-default.dropdown-toggle {
    background-image: none; }
.btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
.btn-default .badge {
    color: #FAFAFA;
    background-color: #222325; }

.btn-primary {
    color: white;
    background-color: #1470CC;
    border-color: #1470CC; }
.btn-primary:focus, .btn-primary.focus {
    color: white;
    background-color: #0f579e;
    border-color: #093058; }
.btn-primary:hover {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
    color: white;
    background-color: #0c457d;
    border-color: #093058; }
.btn-primary:active, .btn-primary.active,
.open > .btn-primary.dropdown-toggle {
    background-image: none; }
.btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
    background-color: #1470CC;
    border-color: #1470CC; }
.btn-primary .badge {
    color: #1470CC;
    background-color: white; }

.btn-success {
    color: white;
    background-color: #67B346;
    border-color: #67B346; }
.btn-success:focus, .btn-success.focus {
    color: white;
    background-color: #528e38;
    border-color: #325722; }
.btn-success:hover {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
    color: white;
    background-color: #43752e;
    border-color: #325722; }
.btn-success:active, .btn-success.active,
.open > .btn-success.dropdown-toggle {
    background-image: none; }
.btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
    background-color: #67B346;
    border-color: #67B346; }
.btn-success .badge {
    color: #67B346;
    background-color: white; }

.btn-info {
    color: #1470CC;
    background-color: white;
    border-color: #1470CC; }
.btn-info:focus, .btn-info.focus {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #093058; }
.btn-info:hover {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
    color: #1470CC;
    background-color: #d4d4d4;
    border-color: #093058; }
.btn-info:active, .btn-info.active,
.open > .btn-info.dropdown-toggle {
    background-image: none; }
.btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
    background-color: white;
    border-color: #1470CC; }
.btn-info .badge {
    color: white;
    background-color: #1470CC; }

.btn-warning {
    color: #E64D2E;
    background-color: white;
    border-color: #E64D2E; }
.btn-warning:focus, .btn-warning.focus {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #852410; }
.btn-warning:hover {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
    color: #E64D2E;
    background-color: #d4d4d4;
    border-color: #852410; }
.btn-warning:active, .btn-warning.active,
.open > .btn-warning.dropdown-toggle {
    background-image: none; }
.btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
    background-color: white;
    border-color: #E64D2E; }
.btn-warning .badge {
    color: white;
    background-color: #E64D2E; }

.btn-danger {
    color: white;
    background-color: #E64D2E;
    border-color: #E64D2E; }
.btn-danger:focus, .btn-danger.focus {
    color: white;
    background-color: #c93618;
    border-color: #852410; }
.btn-danger:hover {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
    color: white;
    background-color: #a92d14;
    border-color: #852410; }
.btn-danger:active, .btn-danger.active,
.open > .btn-danger.dropdown-toggle {
    background-image: none; }
.btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
    background-color: #E64D2E;
    border-color: #E64D2E; }
.btn-danger .badge {
    color: #E64D2E;
    background-color: white; }

.btn-link {
    color: #337ab7;
    font-weight: normal;
    border-radius: 0; }
.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none; }
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent; }
.btn-link:hover, .btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent; }
.btn-link[disabled]:hover, .btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
    color: #A2A3A6;
    text-decoration: none; }

.btn-lg, .btn-group-lg > .btn {
    padding: 6px 12px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 2px; }

.btn-sm, .btn-group-sm > .btn {
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.45;
    border-radius: 2px; }

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.45;
    border-radius: 2px; }

.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%; }

.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 > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .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:before, .btn-toolbar:after {
    content: " ";
    display: table; }
.btn-toolbar:after {
    clear: both; }
.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-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-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-bottom-right-radius: 0;
    border-top-right-radius: 0; }

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0; }

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0; }

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px; }

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px; }

.btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
.btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none; }

.btn .caret {
    margin-left: 0; }

.btn-lg .caret, .btn-group-lg > .btn .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0; }

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .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:before, .btn-group-vertical > .btn-group:after {
    content: " ";
    display: table; }

.btn-group-vertical > .btn-group:after {
    clear: both; }

.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-right-radius: 2px;
    border-top-left-radius: 2px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px; }

.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-right-radius: 0;
    border-top-left-radius: 0; }

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate; }
.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    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 input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none; }

.alert {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px; }
.alert h4 {
    margin-top: 0;
    color: inherit; }
.alert .alert-link {
    font-weight: bold; }
.alert > p,
.alert > ul {
    margin-bottom: 0; }
.alert > p + p {
    margin-top: 5px; }

.alert-dismissable,
.alert-dismissible {
    padding-right: 30px; }
.alert-dismissable .close,
.alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit; }

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d; }
.alert-success hr {
    border-top-color: #c9e2b3; }
.alert-success .alert-link {
    color: #2b542c; }

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f; }
.alert-info hr {
    border-top-color: #a6e1ec; }
.alert-info .alert-link {
    color: #245269; }

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b; }
.alert-warning hr {
    border-top-color: #f7e1b5; }
.alert-warning .alert-link {
    color: #66512c; }

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442; }
.alert-danger hr {
    border-top-color: #e4b9c0; }
.alert-danger .alert-link {
    color: #843534; }

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }

.panel-body {
    padding: 15px; }
.panel-body:before, .panel-body:after {
    content: " ";
    display: table; }
.panel-body:after {
    clear: both; }

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
.panel-heading > .dropdown .dropdown-toggle {
    color: inherit; }

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 15px;
    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-right-radius: 3px;
    border-top-left-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-right-radius: 0;
    border-top-left-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-left: 15px;
    padding-right: 15px; }

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px; }
.panel > .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 > thead: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:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child,
.panel > .table-responsive:first-child > .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 th:first-child {
    border-top-left-radius: 3px; }
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .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 th:last-child,
.panel > .table-responsive:first-child > .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 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:last-child > tfoot:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child,
.panel > .table-responsive:last-child > .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 th:first-child {
    border-bottom-left-radius: 3px; }
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .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 th:last-child,
.panel > .table-responsive:last-child > .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 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-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th: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-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0; }
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0; }

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0; }

.panel-group {
    margin-bottom: 20px; }
.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: #333333;
    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: #333333; }
.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: #a94442;
    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: #a94442; }
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1; }

.fade {
    opacity: 0;
    transition: opacity 0.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;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease; }

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none; }
.nav:before, .nav:after {
    content: " ";
    display: table; }
.nav:after {
    clear: both; }
.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: #eeeeee; }
.nav > li.disabled > a {
    color: #777777; }
.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
    color: #777777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed; }
.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #337ab7; }
.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5; }
.nav > li > a > img {
    max-width: none; }

.nav-tabs {
    border-bottom: 1px solid #ddd; }
.nav-tabs > li {
    float: left;
    margin-bottom: -1px; }
.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857;
    border: 1px solid transparent;
    border-radius: 3px 3px 0 0; }
.nav-tabs > li > a:hover {
    border-color: #eeeeee #eeeeee #ddd; }
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #555555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default; }

.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, .nav-tabs.nav-justified {
    width: 100%; }
.nav-justified > li, .nav-tabs.nav-justified > li {
    float: none; }
.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px; }
.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto; }
@media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%; }
    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0; } }

.nav-tabs-justified, .nav-tabs.nav-justified {
    border-bottom: 0; }
.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 3px; }
.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd; }
@media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 3px 3px 0 0; }
    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-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-right-radius: 0;
    border-top-left-radius: 0; }

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent; }
.navbar:before, .navbar:after {
    content: " ";
    display: table; }
.navbar:after {
    clear: both; }
@media (min-width: 768px) {
    .navbar {
        border-radius: 4px; } }

.navbar-header:before, .navbar-header:after {
    content: " ";
    display: table; }

.navbar-header:after {
    clear: both; }

@media (min-width: 768px) {
    .navbar-header {
        float: left; } }

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch; }
.navbar-collapse:before, .navbar-collapse:after {
    content: " ";
    display: table; }
.navbar-collapse:after {
    clear: both; }
.navbar-collapse.in {
    overflow-y: auto; }
@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        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-left: 0;
        padding-right: 0; } }

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px; }
@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px; } }

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px; }
@media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .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;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px; }
.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;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px; }
.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.5px -15px; }
.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px; }
@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        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: 20px; }
    .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: 15px;
        padding-bottom: 15px; } }

.navbar-form {
    margin-left: -15px;
    margin-right: -15px;
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 13px;
    margin-bottom: 13px; }
@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;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        box-shadow: none; } }

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0; }

.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

.navbar-btn {
    margin-top: 13px;
    margin-bottom: 13px; }
.navbar-btn.btn-sm, .btn-group-sm > .navbar-btn.btn {
    margin-top: 10px;
    margin-bottom: 10px; }
.navbar-btn.btn-xs, .btn-group-xs > .navbar-btn.btn {
    margin-top: 14px;
    margin-bottom: 14px; }

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px; }
@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 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: #f8f8f8;
    border-color: #e7e7e7; }
.navbar-default .navbar-brand {
    color: #777; }
.navbar-default .navbar-brand:hover, .navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent; }
.navbar-default .navbar-text {
    color: #777; }
.navbar-default .navbar-nav > li > a {
    color: #777; }
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #333;
    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: #e7e7e7; }
.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: #e7e7e7; }
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
    background-color: #e7e7e7;
    color: #555; }
@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777; }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        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: #e7e7e7; }
    .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: #777; }
.navbar-default .navbar-link:hover {
    color: #333; }
.navbar-default .btn-link {
    color: #777; }
.navbar-default .btn-link:hover, .navbar-default .btn-link:focus {
    color: #333; }
.navbar-default .btn-link[disabled]:hover, .navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc; }

.navbar-inverse {
    background-color: #222;
    border-color: #090909; }
.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: #090909; }
.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 {
    background-color: #090909;
    color: #fff; }
@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #090909; }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909; }
    .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: #090909; }
    .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, .navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444; }

.modal-open {
    overflow: hidden; }

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0; }
.modal.fade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out; }
.modal.in .modal-dialog {
    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;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0; }

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000; }
.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0); }
.modal-backdrop.in {
    opacity: 0.5;
    filter: alpha(opacity=50); }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5; }
.modal-header:before, .modal-header:after {
    content: " ";
    display: table; }
.modal-header:after {
    clear: both; }

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

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

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

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5; }
.modal-footer:before, .modal-footer:after {
    content: " ";
    display: table; }
.modal-footer:after {
    clear: both; }
.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0; }
.modal-footer .btn-group .btn + .btn {
    margin-left: -1px; }
.modal-footer .btn-block + .btn-block {
    margin-left: 0; }

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

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto; }
    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
    .modal-sm {
        width: 300px; } }

@media (min-width: 992px) {
    .modal-lg {
        width: 900px; } }

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em; }
.label:empty {
    display: none; }
.btn .label {
    position: relative;
    top: -1px; }

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }

.label-default {
    background-color: #777777; }
.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; }

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0); }
.tooltip.in {
    opacity: 0.9;
    filter: alpha(opacity=90); }
.tooltip.top {
    margin-top: -3px;
    padding: 5px 0; }
.tooltip.right {
    margin-left: 3px;
    padding: 0 5px; }
.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0; }
.tooltip.left {
    margin-left: -3px;
    padding: 0 5px; }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 3px; }

.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 {
    bottom: 0;
    right: 5px;
    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; }

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777777;
    border-radius: 10px; }
.badge:empty {
    display: none; }
.btn .badge {
    position: relative;
    top: -1px; }
.btn-xs .badge, .btn-group-xs > .btn .badge,
.btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px; }
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #337ab7;
    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; }

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer; }

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15); }

.well-lg {
    padding: 24px;
    border-radius: 5px; }

.well-sm {
    padding: 9px;
    border-radius: 2px; }

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: normal;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 13px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); }
.popover.top {
    margin-top: -10px; }
.popover.right {
    margin-left: 10px; }
.popover.bottom {
    margin-top: 10px; }
.popover.left {
    margin-left: -10px; }

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 13px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 4px 4px 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 {
    border-width: 10px;
    content: ""; }

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999999;
    border-top-color: rgba(0, 0, 0, 0.25);
    bottom: -11px; }
.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff; }

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999999;
    border-right-color: rgba(0, 0, 0, 0.25); }
.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff; }

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999999;
    border-bottom-color: rgba(0, 0, 0, 0.25);
    top: -11px; }
.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    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: #999999;
    border-left-color: rgba(0, 0, 0, 0.25); }
.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px; }

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0; }
    to {
        background-position: 0 0; } }

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transition: width 0.6s ease; }

.progress-striped .progress-bar,
.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 40px 40px; }

.progress.active .progress-bar,
.progress-bar.active {
    animation: progress-bar-stripes 2s linear infinite; }

.progress-bar-success {
    background-color: #5cb85c; }
.progress-striped .progress-bar-success {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-info {
    background-color: #5bc0de; }
.progress-striped .progress-bar-info {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-warning {
    background-color: #f0ad4e; }
.progress-striped .progress-bar-warning {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.progress-bar-danger {
    background-color: #d9534f; }
.progress-striped .progress-bar-danger {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; }
.container:before, .container:after {
    content: " ";
    display: table; }
.container:after {
    clear: both; }
@media (min-width: 768px) {
    .container {
        width: 750px; } }
@media (min-width: 992px) {
    .container {
        width: 970px; } }
@media (min-width: 1200px) {
    .container {
        width: 1170px; } }

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px; }
.container-fluid:before, .container-fluid:after {
    content: " ";
    display: table; }
.container-fluid:after {
    clear: both; }

.row {
    margin-left: -15px;
    margin-right: -15px; }
.row:before, .row:after {
    content: " ";
    display: table; }
.row:after {
    clear: both; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@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-1 {
        width: 8.33333%; }
    .col-sm-2 {
        width: 16.66667%; }
    .col-sm-3 {
        width: 25%; }
    .col-sm-4 {
        width: 33.33333%; }
    .col-sm-5 {
        width: 41.66667%; }
    .col-sm-6 {
        width: 50%; }
    .col-sm-7 {
        width: 58.33333%; }
    .col-sm-8 {
        width: 66.66667%; }
    .col-sm-9 {
        width: 75%; }
    .col-sm-10 {
        width: 83.33333%; }
    .col-sm-11 {
        width: 91.66667%; }
    .col-sm-12 {
        width: 100%; }
    .col-sm-pull-0 {
        right: auto; }
    .col-sm-pull-1 {
        right: 8.33333%; }
    .col-sm-pull-2 {
        right: 16.66667%; }
    .col-sm-pull-3 {
        right: 25%; }
    .col-sm-pull-4 {
        right: 33.33333%; }
    .col-sm-pull-5 {
        right: 41.66667%; }
    .col-sm-pull-6 {
        right: 50%; }
    .col-sm-pull-7 {
        right: 58.33333%; }
    .col-sm-pull-8 {
        right: 66.66667%; }
    .col-sm-pull-9 {
        right: 75%; }
    .col-sm-pull-10 {
        right: 83.33333%; }
    .col-sm-pull-11 {
        right: 91.66667%; }
    .col-sm-pull-12 {
        right: 100%; }
    .col-sm-push-0 {
        left: auto; }
    .col-sm-push-1 {
        left: 8.33333%; }
    .col-sm-push-2 {
        left: 16.66667%; }
    .col-sm-push-3 {
        left: 25%; }
    .col-sm-push-4 {
        left: 33.33333%; }
    .col-sm-push-5 {
        left: 41.66667%; }
    .col-sm-push-6 {
        left: 50%; }
    .col-sm-push-7 {
        left: 58.33333%; }
    .col-sm-push-8 {
        left: 66.66667%; }
    .col-sm-push-9 {
        left: 75%; }
    .col-sm-push-10 {
        left: 83.33333%; }
    .col-sm-push-11 {
        left: 91.66667%; }
    .col-sm-push-12 {
        left: 100%; }
    .col-sm-offset-0 {
        margin-left: 0%; }
    .col-sm-offset-1 {
        margin-left: 8.33333%; }
    .col-sm-offset-2 {
        margin-left: 16.66667%; }
    .col-sm-offset-3 {
        margin-left: 25%; }
    .col-sm-offset-4 {
        margin-left: 33.33333%; }
    .col-sm-offset-5 {
        margin-left: 41.66667%; }
    .col-sm-offset-6 {
        margin-left: 50%; }
    .col-sm-offset-7 {
        margin-left: 58.33333%; }
    .col-sm-offset-8 {
        margin-left: 66.66667%; }
    .col-sm-offset-9 {
        margin-left: 75%; }
    .col-sm-offset-10 {
        margin-left: 83.33333%; }
    .col-sm-offset-11 {
        margin-left: 91.66667%; }
    .col-sm-offset-12 {
        margin-left: 100%; } }

@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-1 {
        width: 8.33333%; }
    .col-md-2 {
        width: 16.66667%; }
    .col-md-3 {
        width: 25%; }
    .col-md-4 {
        width: 33.33333%; }
    .col-md-5 {
        width: 41.66667%; }
    .col-md-6 {
        width: 50%; }
    .col-md-7 {
        width: 58.33333%; }
    .col-md-8 {
        width: 66.66667%; }
    .col-md-9 {
        width: 75%; }
    .col-md-10 {
        width: 83.33333%; }
    .col-md-11 {
        width: 91.66667%; }
    .col-md-12 {
        width: 100%; }
    .col-md-pull-0 {
        right: auto; }
    .col-md-pull-1 {
        right: 8.33333%; }
    .col-md-pull-2 {
        right: 16.66667%; }
    .col-md-pull-3 {
        right: 25%; }
    .col-md-pull-4 {
        right: 33.33333%; }
    .col-md-pull-5 {
        right: 41.66667%; }
    .col-md-pull-6 {
        right: 50%; }
    .col-md-pull-7 {
        right: 58.33333%; }
    .col-md-pull-8 {
        right: 66.66667%; }
    .col-md-pull-9 {
        right: 75%; }
    .col-md-pull-10 {
        right: 83.33333%; }
    .col-md-pull-11 {
        right: 91.66667%; }
    .col-md-pull-12 {
        right: 100%; }
    .col-md-push-0 {
        left: auto; }
    .col-md-push-1 {
        left: 8.33333%; }
    .col-md-push-2 {
        left: 16.66667%; }
    .col-md-push-3 {
        left: 25%; }
    .col-md-push-4 {
        left: 33.33333%; }
    .col-md-push-5 {
        left: 41.66667%; }
    .col-md-push-6 {
        left: 50%; }
    .col-md-push-7 {
        left: 58.33333%; }
    .col-md-push-8 {
        left: 66.66667%; }
    .col-md-push-9 {
        left: 75%; }
    .col-md-push-10 {
        left: 83.33333%; }
    .col-md-push-11 {
        left: 91.66667%; }
    .col-md-push-12 {
        left: 100%; }
    .col-md-offset-0 {
        margin-left: 0%; }
    .col-md-offset-1 {
        margin-left: 8.33333%; }
    .col-md-offset-2 {
        margin-left: 16.66667%; }
    .col-md-offset-3 {
        margin-left: 25%; }
    .col-md-offset-4 {
        margin-left: 33.33333%; }
    .col-md-offset-5 {
        margin-left: 41.66667%; }
    .col-md-offset-6 {
        margin-left: 50%; }
    .col-md-offset-7 {
        margin-left: 58.33333%; }
    .col-md-offset-8 {
        margin-left: 66.66667%; }
    .col-md-offset-9 {
        margin-left: 75%; }
    .col-md-offset-10 {
        margin-left: 83.33333%; }
    .col-md-offset-11 {
        margin-left: 91.66667%; }
    .col-md-offset-12 {
        margin-left: 100%; } }

@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-1 {
        width: 8.33333%; }
    .col-lg-2 {
        width: 16.66667%; }
    .col-lg-3 {
        width: 25%; }
    .col-lg-4 {
        width: 33.33333%; }
    .col-lg-5 {
        width: 41.66667%; }
    .col-lg-6 {
        width: 50%; }
    .col-lg-7 {
        width: 58.33333%; }
    .col-lg-8 {
        width: 66.66667%; }
    .col-lg-9 {
        width: 75%; }
    .col-lg-10 {
        width: 83.33333%; }
    .col-lg-11 {
        width: 91.66667%; }
    .col-lg-12 {
        width: 100%; }
    .col-lg-pull-0 {
        right: auto; }
    .col-lg-pull-1 {
        right: 8.33333%; }
    .col-lg-pull-2 {
        right: 16.66667%; }
    .col-lg-pull-3 {
        right: 25%; }
    .col-lg-pull-4 {
        right: 33.33333%; }
    .col-lg-pull-5 {
        right: 41.66667%; }
    .col-lg-pull-6 {
        right: 50%; }
    .col-lg-pull-7 {
        right: 58.33333%; }
    .col-lg-pull-8 {
        right: 66.66667%; }
    .col-lg-pull-9 {
        right: 75%; }
    .col-lg-pull-10 {
        right: 83.33333%; }
    .col-lg-pull-11 {
        right: 91.66667%; }
    .col-lg-pull-12 {
        right: 100%; }
    .col-lg-push-0 {
        left: auto; }
    .col-lg-push-1 {
        left: 8.33333%; }
    .col-lg-push-2 {
        left: 16.66667%; }
    .col-lg-push-3 {
        left: 25%; }
    .col-lg-push-4 {
        left: 33.33333%; }
    .col-lg-push-5 {
        left: 41.66667%; }
    .col-lg-push-6 {
        left: 50%; }
    .col-lg-push-7 {
        left: 58.33333%; }
    .col-lg-push-8 {
        left: 66.66667%; }
    .col-lg-push-9 {
        left: 75%; }
    .col-lg-push-10 {
        left: 83.33333%; }
    .col-lg-push-11 {
        left: 91.66667%; }
    .col-lg-push-12 {
        left: 100%; }
    .col-lg-offset-0 {
        margin-left: 0%; }
    .col-lg-offset-1 {
        margin-left: 8.33333%; }
    .col-lg-offset-2 {
        margin-left: 16.66667%; }
    .col-lg-offset-3 {
        margin-left: 25%; }
    .col-lg-offset-4 {
        margin-left: 33.33333%; }
    .col-lg-offset-5 {
        margin-left: 41.66667%; }
    .col-lg-offset-6 {
        margin-left: 50%; }
    .col-lg-offset-7 {
        margin-left: 58.33333%; }
    .col-lg-offset-8 {
        margin-left: 66.66667%; }
    .col-lg-offset-9 {
        margin-left: 75%; }
    .col-lg-offset-10 {
        margin-left: 83.33333%; }
    .col-lg-offset-11 {
        margin-left: 91.66667%; }
    .col-lg-offset-12 {
        margin-left: 100%; } }

.list-group {
    margin-bottom: 20px;
    padding-left: 0; }

.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-right-radius: 4px;
    border-top-left-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, a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    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 {
    background-color: #eeeeee;
    color: #777777;
    cursor: not-allowed; }
.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: #777777; }

.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 .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .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, a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6; }
a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
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, a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3; }
a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
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, a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc; }
a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b; }

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede; }

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442; }
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, a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc; }
a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442; }

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px; }

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3; }

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

.clearfix:after {
    clear: both; }

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

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

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

.hide {
    display: none !important; }

.show {
    display: block !important; }

.invisible {
    visibility: hidden; }

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

.hidden {
    display: none !important; }

.affix {
    position: fixed; }

/* Button overrides
 * Creating our own mixin to allow us to use the button-variant mixin
 * that bootsrap provides.
 * Our additions set hover, active, and disabled states using color variables
 * rather than bootstrap's "darken" and "opacity" methods.
 */
button:not(.btn), input[type="button"]:not(.btn), input[type="submit"]:not(.btn), input[type="reset"]:not(.btn) {
    /* Include the base ".btn" styles from Bootstrap because we've excluded ".btn" */
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Since we want specific colors for showing disabled state, we need to
   * override the opacity style bootstrap uses for disabled
   */
    padding: 4px 10px;
    font-size: 13px;
    line-height: 1.42857;
    border-radius: 2px;
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */
    /* Create each of the button types */
    /* btn-secondary creates a "glassy" blue button that can be used as an alternate action when there is a btn-primary */ }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn) {
    opacity: 1; }
button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:hover:not(.btn), input[type="button"]:active:hover:not(.btn), input[type="submit"]:active:hover:not(.btn), input[type="reset"]:active:hover:not(.btn), button:active:focus:not(.btn), input[type="button"]:active:focus:not(.btn), input[type="submit"]:active:focus:not(.btn), input[type="reset"]:active:focus:not(.btn), button:active.focus:not(.btn), input[type="button"]:active.focus:not(.btn), input[type="submit"]:active.focus:not(.btn), input[type="reset"]:active.focus:not(.btn), button.active:hover:not(.btn), input.active[type="button"]:hover:not(.btn), input.active[type="submit"]:hover:not(.btn), input.active[type="reset"]:hover:not(.btn), button.active:focus:not(.btn), input.active[type="button"]:focus:not(.btn), input.active[type="submit"]:focus:not(.btn), input.active[type="reset"]:focus:not(.btn), button.active.focus:not(.btn), input.active.focus[type="button"]:not(.btn), input.active.focus[type="submit"]:not(.btn), input.active.focus[type="reset"]:not(.btn),
.open > button.dropdown-toggle:hover:not(.btn),
.open > input.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.dropdown-toggle:focus:not(.btn),
.open > input.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.dropdown-toggle.focus:not(.btn),
.open > input.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button:not(.btn) .badge, input[type="button"]:not(.btn) .badge, input[type="submit"]:not(.btn) .badge, input[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn), button.hover:not(.btn), input.hover[type="button"]:not(.btn), input.hover[type="submit"]:not(.btn), input.hover[type="reset"]:not(.btn), button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn), button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button.disabled:active:not(.btn), input.disabled[type="button"]:active:not(.btn), input.disabled[type="submit"]:active:not(.btn), input.disabled[type="reset"]:active:not(.btn), button.disabled.active:not(.btn), input.disabled.active[type="button"]:not(.btn), input.disabled.active[type="submit"]:not(.btn), input.disabled.active[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn), button[disabled]:active:not(.btn), input[disabled][type="button"]:active:not(.btn), input[disabled][type="submit"]:active:not(.btn), input[disabled][type="reset"]:active:not(.btn), button[disabled].active:not(.btn), input[disabled].active[type="button"]:not(.btn), input[disabled].active[type="submit"]:not(.btn), input[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button:not(.btn),
fieldset[disabled] input[type="button"]:not(.btn),
fieldset[disabled] input[type="submit"]:not(.btn),
fieldset[disabled] input[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn),
fieldset[disabled] button:active:not(.btn),
fieldset[disabled] input[type="button"]:active:not(.btn),
fieldset[disabled] input[type="submit"]:active:not(.btn),
fieldset[disabled] input[type="reset"]:active:not(.btn),
fieldset[disabled] button.active:not(.btn),
fieldset[disabled] input.active[type="button"]:not(.btn),
fieldset[disabled] input.active[type="submit"]:not(.btn),
fieldset[disabled] input.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-default:not(.btn), input.btn-default[type="button"]:not(.btn), input.btn-default[type="submit"]:not(.btn), input.btn-default[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:hover:not(.btn), input.btn-default[type="button"]:active:hover:not(.btn), input.btn-default[type="submit"]:active:hover:not(.btn), input.btn-default[type="reset"]:active:hover:not(.btn), button.btn-default:active:focus:not(.btn), input.btn-default[type="button"]:active:focus:not(.btn), input.btn-default[type="submit"]:active:focus:not(.btn), input.btn-default[type="reset"]:active:focus:not(.btn), button.btn-default:active.focus:not(.btn), input.btn-default[type="button"]:active.focus:not(.btn), input.btn-default[type="submit"]:active.focus:not(.btn), input.btn-default[type="reset"]:active.focus:not(.btn), button.btn-default.active:hover:not(.btn), input.btn-default.active[type="button"]:hover:not(.btn), input.btn-default.active[type="submit"]:hover:not(.btn), input.btn-default.active[type="reset"]:hover:not(.btn), button.btn-default.active:focus:not(.btn), input.btn-default.active[type="button"]:focus:not(.btn), input.btn-default.active[type="submit"]:focus:not(.btn), input.btn-default.active[type="reset"]:focus:not(.btn), button.btn-default.active.focus:not(.btn), input.btn-default.active.focus[type="button"]:not(.btn), input.btn-default.active.focus[type="submit"]:not(.btn), input.btn-default.active.focus[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-default.dropdown-toggle:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-default.dropdown-toggle.focus:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button.btn-default:not(.btn) .badge, input.btn-default[type="button"]:not(.btn) .badge, input.btn-default[type="submit"]:not(.btn) .badge, input.btn-default[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn), button.btn-default.hover:not(.btn), input.btn-default.hover[type="button"]:not(.btn), input.btn-default.hover[type="submit"]:not(.btn), input.btn-default.hover[type="reset"]:not(.btn), button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn), button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-default.disabled:not(.btn), input.btn-default.disabled[type="button"]:not(.btn), input.btn-default.disabled[type="submit"]:not(.btn), input.btn-default.disabled[type="reset"]:not(.btn), button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default.disabled:active:not(.btn), input.btn-default.disabled[type="button"]:active:not(.btn), input.btn-default.disabled[type="submit"]:active:not(.btn), input.btn-default.disabled[type="reset"]:active:not(.btn), button.btn-default.disabled.active:not(.btn), input.btn-default.disabled.active[type="button"]:not(.btn), input.btn-default.disabled.active[type="submit"]:not(.btn), input.btn-default.disabled.active[type="reset"]:not(.btn), button.btn-default[disabled]:not(.btn), input.btn-default[disabled][type="button"]:not(.btn), input.btn-default[disabled][type="submit"]:not(.btn), input.btn-default[disabled][type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn), button.btn-default[disabled]:active:not(.btn), input.btn-default[disabled][type="button"]:active:not(.btn), input.btn-default[disabled][type="submit"]:active:not(.btn), input.btn-default[disabled][type="reset"]:active:not(.btn), button.btn-default[disabled].active:not(.btn), input.btn-default[disabled].active[type="button"]:not(.btn), input.btn-default[disabled].active[type="submit"]:not(.btn), input.btn-default[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:active:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-default.active:not(.btn),
fieldset[disabled] input.btn-default.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-primary:not(.btn), input.btn-primary[type="button"]:not(.btn), input.btn-primary[type="submit"]:not(.btn), input.btn-primary[type="reset"]:not(.btn) {
    color: white;
    background-color: #1470CC;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #093058; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:hover:not(.btn), input.btn-primary[type="button"]:active:hover:not(.btn), input.btn-primary[type="submit"]:active:hover:not(.btn), input.btn-primary[type="reset"]:active:hover:not(.btn), button.btn-primary:active:focus:not(.btn), input.btn-primary[type="button"]:active:focus:not(.btn), input.btn-primary[type="submit"]:active:focus:not(.btn), input.btn-primary[type="reset"]:active:focus:not(.btn), button.btn-primary:active.focus:not(.btn), input.btn-primary[type="button"]:active.focus:not(.btn), input.btn-primary[type="submit"]:active.focus:not(.btn), input.btn-primary[type="reset"]:active.focus:not(.btn), button.btn-primary.active:hover:not(.btn), input.btn-primary.active[type="button"]:hover:not(.btn), input.btn-primary.active[type="submit"]:hover:not(.btn), input.btn-primary.active[type="reset"]:hover:not(.btn), button.btn-primary.active:focus:not(.btn), input.btn-primary.active[type="button"]:focus:not(.btn), input.btn-primary.active[type="submit"]:focus:not(.btn), input.btn-primary.active[type="reset"]:focus:not(.btn), button.btn-primary.active.focus:not(.btn), input.btn-primary.active.focus[type="button"]:not(.btn), input.btn-primary.active.focus[type="submit"]:not(.btn), input.btn-primary.active.focus[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-primary.dropdown-toggle:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-primary.dropdown-toggle.focus:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0c457d;
    border-color: #093058; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn) {
    background-color: #1470CC;
    border-color: #1470CC; }
button.btn-primary:not(.btn) .badge, input.btn-primary[type="button"]:not(.btn) .badge, input.btn-primary[type="submit"]:not(.btn) .badge, input.btn-primary[type="reset"]:not(.btn) .badge {
    color: #1470CC;
    background-color: white; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn), button.btn-primary.hover:not(.btn), input.btn-primary.hover[type="button"]:not(.btn), input.btn-primary.hover[type="submit"]:not(.btn), input.btn-primary.hover[type="reset"]:not(.btn), button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn), button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #0F5499;
    border-color: #0F5499; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-primary.disabled:not(.btn), input.btn-primary.disabled[type="button"]:not(.btn), input.btn-primary.disabled[type="submit"]:not(.btn), input.btn-primary.disabled[type="reset"]:not(.btn), button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary.disabled:active:not(.btn), input.btn-primary.disabled[type="button"]:active:not(.btn), input.btn-primary.disabled[type="submit"]:active:not(.btn), input.btn-primary.disabled[type="reset"]:active:not(.btn), button.btn-primary.disabled.active:not(.btn), input.btn-primary.disabled.active[type="button"]:not(.btn), input.btn-primary.disabled.active[type="submit"]:not(.btn), input.btn-primary.disabled.active[type="reset"]:not(.btn), button.btn-primary[disabled]:not(.btn), input.btn-primary[disabled][type="button"]:not(.btn), input.btn-primary[disabled][type="submit"]:not(.btn), input.btn-primary[disabled][type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn), button.btn-primary[disabled]:active:not(.btn), input.btn-primary[disabled][type="button"]:active:not(.btn), input.btn-primary[disabled][type="submit"]:active:not(.btn), input.btn-primary[disabled][type="reset"]:active:not(.btn), button.btn-primary[disabled].active:not(.btn), input.btn-primary[disabled].active[type="button"]:not(.btn), input.btn-primary[disabled].active[type="submit"]:not(.btn), input.btn-primary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:active:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-primary.active:not(.btn),
fieldset[disabled] input.btn-primary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #AACEF2;
    border-color: #AACEF2; }
button.btn-secondary:not(.btn), input.btn-secondary[type="button"]:not(.btn), input.btn-secondary[type="submit"]:not(.btn), input.btn-secondary[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #F1F7FD;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #093058; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:hover:not(.btn), input.btn-secondary[type="button"]:active:hover:not(.btn), input.btn-secondary[type="submit"]:active:hover:not(.btn), input.btn-secondary[type="reset"]:active:hover:not(.btn), button.btn-secondary:active:focus:not(.btn), input.btn-secondary[type="button"]:active:focus:not(.btn), input.btn-secondary[type="submit"]:active:focus:not(.btn), input.btn-secondary[type="reset"]:active:focus:not(.btn), button.btn-secondary:active.focus:not(.btn), input.btn-secondary[type="button"]:active.focus:not(.btn), input.btn-secondary[type="submit"]:active.focus:not(.btn), input.btn-secondary[type="reset"]:active.focus:not(.btn), button.btn-secondary.active:hover:not(.btn), input.btn-secondary.active[type="button"]:hover:not(.btn), input.btn-secondary.active[type="submit"]:hover:not(.btn), input.btn-secondary.active[type="reset"]:hover:not(.btn), button.btn-secondary.active:focus:not(.btn), input.btn-secondary.active[type="button"]:focus:not(.btn), input.btn-secondary.active[type="submit"]:focus:not(.btn), input.btn-secondary.active[type="reset"]:focus:not(.btn), button.btn-secondary.active.focus:not(.btn), input.btn-secondary.active.focus[type="button"]:not(.btn), input.btn-secondary.active.focus[type="submit"]:not(.btn), input.btn-secondary.active.focus[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-secondary.dropdown-toggle:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-secondary.dropdown-toggle.focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #a5ccf2;
    border-color: #093058; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn) {
    background-color: #F1F7FD;
    border-color: #1470CC; }
button.btn-secondary:not(.btn) .badge, input.btn-secondary[type="button"]:not(.btn) .badge, input.btn-secondary[type="submit"]:not(.btn) .badge, input.btn-secondary[type="reset"]:not(.btn) .badge {
    color: #F1F7FD;
    background-color: #1470CC; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn), button.btn-secondary.hover:not(.btn), input.btn-secondary.hover[type="button"]:not(.btn), input.btn-secondary.hover[type="submit"]:not(.btn), input.btn-secondary.hover[type="reset"]:not(.btn), button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn), button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-secondary.disabled:not(.btn), input.btn-secondary.disabled[type="button"]:not(.btn), input.btn-secondary.disabled[type="submit"]:not(.btn), input.btn-secondary.disabled[type="reset"]:not(.btn), button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary.disabled:active:not(.btn), input.btn-secondary.disabled[type="button"]:active:not(.btn), input.btn-secondary.disabled[type="submit"]:active:not(.btn), input.btn-secondary.disabled[type="reset"]:active:not(.btn), button.btn-secondary.disabled.active:not(.btn), input.btn-secondary.disabled.active[type="button"]:not(.btn), input.btn-secondary.disabled.active[type="submit"]:not(.btn), input.btn-secondary.disabled.active[type="reset"]:not(.btn), button.btn-secondary[disabled]:not(.btn), input.btn-secondary[disabled][type="button"]:not(.btn), input.btn-secondary[disabled][type="submit"]:not(.btn), input.btn-secondary[disabled][type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:active:not(.btn), input.btn-secondary[disabled][type="button"]:active:not(.btn), input.btn-secondary[disabled][type="submit"]:active:not(.btn), input.btn-secondary[disabled][type="reset"]:active:not(.btn), button.btn-secondary[disabled].active:not(.btn), input.btn-secondary[disabled].active[type="button"]:not(.btn), input.btn-secondary[disabled].active[type="submit"]:not(.btn), input.btn-secondary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-secondary.active:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-success:not(.btn), input.btn-success[type="button"]:not(.btn), input.btn-success[type="submit"]:not(.btn), input.btn-success[type="reset"]:not(.btn) {
    color: white;
    background-color: #67B346;
    border-color: #67B346;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #325722; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:hover:not(.btn), input.btn-success[type="button"]:active:hover:not(.btn), input.btn-success[type="submit"]:active:hover:not(.btn), input.btn-success[type="reset"]:active:hover:not(.btn), button.btn-success:active:focus:not(.btn), input.btn-success[type="button"]:active:focus:not(.btn), input.btn-success[type="submit"]:active:focus:not(.btn), input.btn-success[type="reset"]:active:focus:not(.btn), button.btn-success:active.focus:not(.btn), input.btn-success[type="button"]:active.focus:not(.btn), input.btn-success[type="submit"]:active.focus:not(.btn), input.btn-success[type="reset"]:active.focus:not(.btn), button.btn-success.active:hover:not(.btn), input.btn-success.active[type="button"]:hover:not(.btn), input.btn-success.active[type="submit"]:hover:not(.btn), input.btn-success.active[type="reset"]:hover:not(.btn), button.btn-success.active:focus:not(.btn), input.btn-success.active[type="button"]:focus:not(.btn), input.btn-success.active[type="submit"]:focus:not(.btn), input.btn-success.active[type="reset"]:focus:not(.btn), button.btn-success.active.focus:not(.btn), input.btn-success.active.focus[type="button"]:not(.btn), input.btn-success.active.focus[type="submit"]:not(.btn), input.btn-success.active.focus[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-success.dropdown-toggle:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-success.dropdown-toggle.focus:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #43752e;
    border-color: #325722; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn) {
    background-color: #67B346;
    border-color: #67B346; }
button.btn-success:not(.btn) .badge, input.btn-success[type="button"]:not(.btn) .badge, input.btn-success[type="submit"]:not(.btn) .badge, input.btn-success[type="reset"]:not(.btn) .badge {
    color: #67B346;
    background-color: white; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn), button.btn-success.hover:not(.btn), input.btn-success.hover[type="button"]:not(.btn), input.btn-success.hover[type="submit"]:not(.btn), input.btn-success.hover[type="reset"]:not(.btn), button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn), button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #42732D;
    border-color: #42732D; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-success.disabled:not(.btn), input.btn-success.disabled[type="button"]:not(.btn), input.btn-success.disabled[type="submit"]:not(.btn), input.btn-success.disabled[type="reset"]:not(.btn), button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success.disabled:active:not(.btn), input.btn-success.disabled[type="button"]:active:not(.btn), input.btn-success.disabled[type="submit"]:active:not(.btn), input.btn-success.disabled[type="reset"]:active:not(.btn), button.btn-success.disabled.active:not(.btn), input.btn-success.disabled.active[type="button"]:not(.btn), input.btn-success.disabled.active[type="submit"]:not(.btn), input.btn-success.disabled.active[type="reset"]:not(.btn), button.btn-success[disabled]:not(.btn), input.btn-success[disabled][type="button"]:not(.btn), input.btn-success[disabled][type="submit"]:not(.btn), input.btn-success[disabled][type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn), button.btn-success[disabled]:active:not(.btn), input.btn-success[disabled][type="button"]:active:not(.btn), input.btn-success[disabled][type="submit"]:active:not(.btn), input.btn-success[disabled][type="reset"]:active:not(.btn), button.btn-success[disabled].active:not(.btn), input.btn-success[disabled].active[type="button"]:not(.btn), input.btn-success[disabled].active[type="submit"]:not(.btn), input.btn-success[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:active:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-success.active:not(.btn),
fieldset[disabled] input.btn-success.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #9ED188;
    border-color: #9ED188; }
button.btn-info:not(.btn), input.btn-info[type="button"]:not(.btn), input.btn-info[type="submit"]:not(.btn), input.btn-info[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: white;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #093058; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:hover:not(.btn), input.btn-info[type="button"]:active:hover:not(.btn), input.btn-info[type="submit"]:active:hover:not(.btn), input.btn-info[type="reset"]:active:hover:not(.btn), button.btn-info:active:focus:not(.btn), input.btn-info[type="button"]:active:focus:not(.btn), input.btn-info[type="submit"]:active:focus:not(.btn), input.btn-info[type="reset"]:active:focus:not(.btn), button.btn-info:active.focus:not(.btn), input.btn-info[type="button"]:active.focus:not(.btn), input.btn-info[type="submit"]:active.focus:not(.btn), input.btn-info[type="reset"]:active.focus:not(.btn), button.btn-info.active:hover:not(.btn), input.btn-info.active[type="button"]:hover:not(.btn), input.btn-info.active[type="submit"]:hover:not(.btn), input.btn-info.active[type="reset"]:hover:not(.btn), button.btn-info.active:focus:not(.btn), input.btn-info.active[type="button"]:focus:not(.btn), input.btn-info.active[type="submit"]:focus:not(.btn), input.btn-info.active[type="reset"]:focus:not(.btn), button.btn-info.active.focus:not(.btn), input.btn-info.active.focus[type="button"]:not(.btn), input.btn-info.active.focus[type="submit"]:not(.btn), input.btn-info.active.focus[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-info.dropdown-toggle:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-info.dropdown-toggle.focus:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #d4d4d4;
    border-color: #093058; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #1470CC; }
button.btn-info:not(.btn) .badge, input.btn-info[type="button"]:not(.btn) .badge, input.btn-info[type="submit"]:not(.btn) .badge, input.btn-info[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #1470CC; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn), button.btn-info.hover:not(.btn), input.btn-info.hover[type="button"]:not(.btn), input.btn-info.hover[type="submit"]:not(.btn), input.btn-info.hover[type="reset"]:not(.btn), button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn), button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-info.disabled:not(.btn), input.btn-info.disabled[type="button"]:not(.btn), input.btn-info.disabled[type="submit"]:not(.btn), input.btn-info.disabled[type="reset"]:not(.btn), button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info.disabled:active:not(.btn), input.btn-info.disabled[type="button"]:active:not(.btn), input.btn-info.disabled[type="submit"]:active:not(.btn), input.btn-info.disabled[type="reset"]:active:not(.btn), button.btn-info.disabled.active:not(.btn), input.btn-info.disabled.active[type="button"]:not(.btn), input.btn-info.disabled.active[type="submit"]:not(.btn), input.btn-info.disabled.active[type="reset"]:not(.btn), button.btn-info[disabled]:not(.btn), input.btn-info[disabled][type="button"]:not(.btn), input.btn-info[disabled][type="submit"]:not(.btn), input.btn-info[disabled][type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn), button.btn-info[disabled]:active:not(.btn), input.btn-info[disabled][type="button"]:active:not(.btn), input.btn-info[disabled][type="submit"]:active:not(.btn), input.btn-info[disabled][type="reset"]:active:not(.btn), button.btn-info[disabled].active:not(.btn), input.btn-info[disabled].active[type="button"]:not(.btn), input.btn-info[disabled].active[type="submit"]:not(.btn), input.btn-info[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:active:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-info.active:not(.btn),
fieldset[disabled] input.btn-info.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-warning:not(.btn), input.btn-warning[type="button"]:not(.btn), input.btn-warning[type="submit"]:not(.btn), input.btn-warning[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: white;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #852410; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:hover:not(.btn), input.btn-warning[type="button"]:active:hover:not(.btn), input.btn-warning[type="submit"]:active:hover:not(.btn), input.btn-warning[type="reset"]:active:hover:not(.btn), button.btn-warning:active:focus:not(.btn), input.btn-warning[type="button"]:active:focus:not(.btn), input.btn-warning[type="submit"]:active:focus:not(.btn), input.btn-warning[type="reset"]:active:focus:not(.btn), button.btn-warning:active.focus:not(.btn), input.btn-warning[type="button"]:active.focus:not(.btn), input.btn-warning[type="submit"]:active.focus:not(.btn), input.btn-warning[type="reset"]:active.focus:not(.btn), button.btn-warning.active:hover:not(.btn), input.btn-warning.active[type="button"]:hover:not(.btn), input.btn-warning.active[type="submit"]:hover:not(.btn), input.btn-warning.active[type="reset"]:hover:not(.btn), button.btn-warning.active:focus:not(.btn), input.btn-warning.active[type="button"]:focus:not(.btn), input.btn-warning.active[type="submit"]:focus:not(.btn), input.btn-warning.active[type="reset"]:focus:not(.btn), button.btn-warning.active.focus:not(.btn), input.btn-warning.active.focus[type="button"]:not(.btn), input.btn-warning.active.focus[type="submit"]:not(.btn), input.btn-warning.active.focus[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-warning.dropdown-toggle:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-warning.dropdown-toggle.focus:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #d4d4d4;
    border-color: #852410; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #E64D2E; }
button.btn-warning:not(.btn) .badge, input.btn-warning[type="button"]:not(.btn) .badge, input.btn-warning[type="submit"]:not(.btn) .badge, input.btn-warning[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #E64D2E; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn), button.btn-warning.hover:not(.btn), input.btn-warning.hover[type="button"]:not(.btn), input.btn-warning.hover[type="submit"]:not(.btn), input.btn-warning.hover[type="reset"]:not(.btn), button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn), button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    color: #C7290A;
    background-color: #FAE1DC;
    border-color: #C7290A; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-warning.disabled:not(.btn), input.btn-warning.disabled[type="button"]:not(.btn), input.btn-warning.disabled[type="submit"]:not(.btn), input.btn-warning.disabled[type="reset"]:not(.btn), button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning.disabled:active:not(.btn), input.btn-warning.disabled[type="button"]:active:not(.btn), input.btn-warning.disabled[type="submit"]:active:not(.btn), input.btn-warning.disabled[type="reset"]:active:not(.btn), button.btn-warning.disabled.active:not(.btn), input.btn-warning.disabled.active[type="button"]:not(.btn), input.btn-warning.disabled.active[type="submit"]:not(.btn), input.btn-warning.disabled.active[type="reset"]:not(.btn), button.btn-warning[disabled]:not(.btn), input.btn-warning[disabled][type="button"]:not(.btn), input.btn-warning[disabled][type="submit"]:not(.btn), input.btn-warning[disabled][type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn), button.btn-warning[disabled]:active:not(.btn), input.btn-warning[disabled][type="button"]:active:not(.btn), input.btn-warning[disabled][type="submit"]:active:not(.btn), input.btn-warning[disabled][type="reset"]:active:not(.btn), button.btn-warning[disabled].active:not(.btn), input.btn-warning[disabled].active[type="button"]:not(.btn), input.btn-warning[disabled].active[type="submit"]:not(.btn), input.btn-warning[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:active:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-warning.active:not(.btn),
fieldset[disabled] input.btn-warning.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="reset"]:not(.btn) {
    color: #F7A894;
    background-color: white;
    border-color: #F7A894; }
button.btn-danger:not(.btn), input.btn-danger[type="button"]:not(.btn), input.btn-danger[type="submit"]:not(.btn), input.btn-danger[type="reset"]:not(.btn) {
    color: white;
    background-color: #E64D2E;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #852410; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:hover:not(.btn), input.btn-danger[type="button"]:active:hover:not(.btn), input.btn-danger[type="submit"]:active:hover:not(.btn), input.btn-danger[type="reset"]:active:hover:not(.btn), button.btn-danger:active:focus:not(.btn), input.btn-danger[type="button"]:active:focus:not(.btn), input.btn-danger[type="submit"]:active:focus:not(.btn), input.btn-danger[type="reset"]:active:focus:not(.btn), button.btn-danger:active.focus:not(.btn), input.btn-danger[type="button"]:active.focus:not(.btn), input.btn-danger[type="submit"]:active.focus:not(.btn), input.btn-danger[type="reset"]:active.focus:not(.btn), button.btn-danger.active:hover:not(.btn), input.btn-danger.active[type="button"]:hover:not(.btn), input.btn-danger.active[type="submit"]:hover:not(.btn), input.btn-danger.active[type="reset"]:hover:not(.btn), button.btn-danger.active:focus:not(.btn), input.btn-danger.active[type="button"]:focus:not(.btn), input.btn-danger.active[type="submit"]:focus:not(.btn), input.btn-danger.active[type="reset"]:focus:not(.btn), button.btn-danger.active.focus:not(.btn), input.btn-danger.active.focus[type="button"]:not(.btn), input.btn-danger.active.focus[type="submit"]:not(.btn), input.btn-danger.active.focus[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-danger.dropdown-toggle:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-danger.dropdown-toggle.focus:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #a92d14;
    border-color: #852410; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn) {
    background-color: #E64D2E;
    border-color: #E64D2E; }
button.btn-danger:not(.btn) .badge, input.btn-danger[type="button"]:not(.btn) .badge, input.btn-danger[type="submit"]:not(.btn) .badge, input.btn-danger[type="reset"]:not(.btn) .badge {
    color: #E64D2E;
    background-color: white; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn), button.btn-danger.hover:not(.btn), input.btn-danger.hover[type="button"]:not(.btn), input.btn-danger.hover[type="submit"]:not(.btn), input.btn-danger.hover[type="reset"]:not(.btn), button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn), button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #C7290A;
    border-color: #C7290A; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-danger.disabled:not(.btn), input.btn-danger.disabled[type="button"]:not(.btn), input.btn-danger.disabled[type="submit"]:not(.btn), input.btn-danger.disabled[type="reset"]:not(.btn), button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger.disabled:active:not(.btn), input.btn-danger.disabled[type="button"]:active:not(.btn), input.btn-danger.disabled[type="submit"]:active:not(.btn), input.btn-danger.disabled[type="reset"]:active:not(.btn), button.btn-danger.disabled.active:not(.btn), input.btn-danger.disabled.active[type="button"]:not(.btn), input.btn-danger.disabled.active[type="submit"]:not(.btn), input.btn-danger.disabled.active[type="reset"]:not(.btn), button.btn-danger[disabled]:not(.btn), input.btn-danger[disabled][type="button"]:not(.btn), input.btn-danger[disabled][type="submit"]:not(.btn), input.btn-danger[disabled][type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn), button.btn-danger[disabled]:active:not(.btn), input.btn-danger[disabled][type="button"]:active:not(.btn), input.btn-danger[disabled][type="submit"]:active:not(.btn), input.btn-danger[disabled][type="reset"]:active:not(.btn), button.btn-danger[disabled].active:not(.btn), input.btn-danger[disabled].active[type="button"]:not(.btn), input.btn-danger[disabled].active[type="submit"]:not(.btn), input.btn-danger[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:active:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-danger.active:not(.btn),
fieldset[disabled] input.btn-danger.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #F7A894;
    border-color: #F7A894; }
button.btn-subtle:not(.btn), input.btn-subtle[type="button"]:not(.btn), input.btn-subtle[type="submit"]:not(.btn), input.btn-subtle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:hover:not(.btn), input.btn-subtle[type="button"]:active:hover:not(.btn), input.btn-subtle[type="submit"]:active:hover:not(.btn), input.btn-subtle[type="reset"]:active:hover:not(.btn), button.btn-subtle:active:focus:not(.btn), input.btn-subtle[type="button"]:active:focus:not(.btn), input.btn-subtle[type="submit"]:active:focus:not(.btn), input.btn-subtle[type="reset"]:active:focus:not(.btn), button.btn-subtle:active.focus:not(.btn), input.btn-subtle[type="button"]:active.focus:not(.btn), input.btn-subtle[type="submit"]:active.focus:not(.btn), input.btn-subtle[type="reset"]:active.focus:not(.btn), button.btn-subtle.active:hover:not(.btn), input.btn-subtle.active[type="button"]:hover:not(.btn), input.btn-subtle.active[type="submit"]:hover:not(.btn), input.btn-subtle.active[type="reset"]:hover:not(.btn), button.btn-subtle.active:focus:not(.btn), input.btn-subtle.active[type="button"]:focus:not(.btn), input.btn-subtle.active[type="submit"]:focus:not(.btn), input.btn-subtle.active[type="reset"]:focus:not(.btn), button.btn-subtle.active.focus:not(.btn), input.btn-subtle.active.focus[type="button"]:not(.btn), input.btn-subtle.active.focus[type="submit"]:not(.btn), input.btn-subtle.active.focus[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-subtle.dropdown-toggle:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-subtle.dropdown-toggle.focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn) {
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:not(.btn) .badge, input.btn-subtle[type="button"]:not(.btn) .badge, input.btn-subtle[type="submit"]:not(.btn) .badge, input.btn-subtle[type="reset"]:not(.btn) .badge {
    color: transparent;
    background-color: #222325; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn), button.btn-subtle.hover:not(.btn), input.btn-subtle.hover[type="button"]:not(.btn), input.btn-subtle.hover[type="submit"]:not(.btn), input.btn-subtle.hover[type="reset"]:not(.btn), button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn), button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-subtle.disabled:not(.btn), input.btn-subtle.disabled[type="button"]:not(.btn), input.btn-subtle.disabled[type="submit"]:not(.btn), input.btn-subtle.disabled[type="reset"]:not(.btn), button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle.disabled:active:not(.btn), input.btn-subtle.disabled[type="button"]:active:not(.btn), input.btn-subtle.disabled[type="submit"]:active:not(.btn), input.btn-subtle.disabled[type="reset"]:active:not(.btn), button.btn-subtle.disabled.active:not(.btn), input.btn-subtle.disabled.active[type="button"]:not(.btn), input.btn-subtle.disabled.active[type="submit"]:not(.btn), input.btn-subtle.disabled.active[type="reset"]:not(.btn), button.btn-subtle[disabled]:not(.btn), input.btn-subtle[disabled][type="button"]:not(.btn), input.btn-subtle[disabled][type="submit"]:not(.btn), input.btn-subtle[disabled][type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:active:not(.btn), input.btn-subtle[disabled][type="button"]:active:not(.btn), input.btn-subtle[disabled][type="submit"]:active:not(.btn), input.btn-subtle[disabled][type="reset"]:active:not(.btn), button.btn-subtle[disabled].active:not(.btn), input.btn-subtle[disabled].active[type="button"]:not(.btn), input.btn-subtle[disabled].active[type="submit"]:not(.btn), input.btn-subtle[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-subtle.active:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: transparent;
    border-color: transparent; }

/* The normalizer bootstrap uses overrides disabled inputs cursor state with an
 * overscoped selector `html input[disabled] {cursor: default}` L251-252
 * This is not what we want so I'm overriding it back to cursor: not-allowed
 */
html input[disabled] {
    cursor: not-allowed; }

/* Style for <a> masquerading as a <button>
 * Here we just need to tell the <a> tag to have our default btn style
 */
a.btn {
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
a.btn:focus, a.btn.focus {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
a.btn:hover {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
a.btn:active, a.btn.active,
.open > a.btn.dropdown-toggle {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
a.btn:active:hover, a.btn:active:focus, a.btn:active.focus, a.btn.active:hover, a.btn.active:focus, a.btn.active.focus,
.open > a.btn.dropdown-toggle:hover,
.open > a.btn.dropdown-toggle:focus,
.open > a.btn.dropdown-toggle.focus {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
a.btn:active, a.btn.active,
.open > a.btn.dropdown-toggle {
    background-image: none; }
a.btn.disabled:hover, a.btn.disabled:focus, a.btn.disabled.focus, a.btn[disabled]:hover, a.btn[disabled]:focus, a.btn[disabled].focus,
fieldset[disabled] a.btn:hover,
fieldset[disabled] a.btn:focus,
fieldset[disabled] a.btn.focus {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
a.btn .badge {
    color: #FAFAFA;
    background-color: #222325; }
a.btn:hover, a.btn.hover, a.btn:focus, a.btn.focus, a.btn:active, a.btn.active {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
a.btn:active, a.btn.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
a.btn.disabled, a.btn.disabled:hover, a.btn.disabled:focus, a.btn.disabled.focus, a.btn.disabled:active, a.btn.disabled.active, a.btn[disabled], a.btn[disabled]:hover, a.btn[disabled]:focus, a.btn[disabled].focus, a.btn[disabled]:active, a.btn[disabled].active,
fieldset[disabled] a.btn,
fieldset[disabled] a.btn:hover,
fieldset[disabled] a.btn:focus,
fieldset[disabled] a.btn.focus,
fieldset[disabled] a.btn:active,
fieldset[disabled] a.btn.active {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }

/* Styles for ".btn" elements */
.btn {
    /* Create each of the button types */
    /* btn-secondary creates a "glassy" blue button that can be used as an alternate action when there is a btn-primary */
    /* Since we want specific colors for showing disabled state, we need to
   * override the opacity style bootstrap uses for disabled
   */ }
.btn.btn-default {
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-default:focus, .btn.btn-default.focus {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
.btn.btn-default:hover {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
.btn.btn-default:active, .btn.btn-default.active,
.open > .btn.btn-default.dropdown-toggle {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
.btn.btn-default:active:hover, .btn.btn-default:active:focus, .btn.btn-default:active.focus, .btn.btn-default.active:hover, .btn.btn-default.active:focus, .btn.btn-default.active.focus,
.open > .btn.btn-default.dropdown-toggle:hover,
.open > .btn.btn-default.dropdown-toggle:focus,
.open > .btn.btn-default.dropdown-toggle.focus {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
.btn.btn-default:active, .btn.btn-default.active,
.open > .btn.btn-default.dropdown-toggle {
    background-image: none; }
.btn.btn-default.disabled:hover, .btn.btn-default.disabled:focus, .btn.btn-default.disabled.focus, .btn.btn-default[disabled]:hover, .btn.btn-default[disabled]:focus, .btn.btn-default[disabled].focus,
fieldset[disabled] .btn.btn-default:hover,
fieldset[disabled] .btn.btn-default:focus,
fieldset[disabled] .btn.btn-default.focus {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
.btn.btn-default .badge {
    color: #FAFAFA;
    background-color: #222325; }
.btn.btn-default:hover, .btn.btn-default.hover, .btn.btn-default:focus, .btn.btn-default.focus, .btn.btn-default:active, .btn.btn-default.active {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
.btn.btn-default:active, .btn.btn-default.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-default.disabled, .btn.btn-default.disabled:hover, .btn.btn-default.disabled:focus, .btn.btn-default.disabled.focus, .btn.btn-default.disabled:active, .btn.btn-default.disabled.active, .btn.btn-default[disabled], .btn.btn-default[disabled]:hover, .btn.btn-default[disabled]:focus, .btn.btn-default[disabled].focus, .btn.btn-default[disabled]:active, .btn.btn-default[disabled].active,
fieldset[disabled] .btn.btn-default,
fieldset[disabled] .btn.btn-default:hover,
fieldset[disabled] .btn.btn-default:focus,
fieldset[disabled] .btn.btn-default.focus,
fieldset[disabled] .btn.btn-default:active,
fieldset[disabled] .btn.btn-default.active {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
.btn.btn-primary {
    color: white;
    background-color: #1470CC;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-primary:focus, .btn.btn-primary.focus {
    color: white;
    background-color: #0f579e;
    border-color: #093058; }
.btn.btn-primary:hover {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
.btn.btn-primary:active, .btn.btn-primary.active,
.open > .btn.btn-primary.dropdown-toggle {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
.btn.btn-primary:active:hover, .btn.btn-primary:active:focus, .btn.btn-primary:active.focus, .btn.btn-primary.active:hover, .btn.btn-primary.active:focus, .btn.btn-primary.active.focus,
.open > .btn.btn-primary.dropdown-toggle:hover,
.open > .btn.btn-primary.dropdown-toggle:focus,
.open > .btn.btn-primary.dropdown-toggle.focus {
    color: white;
    background-color: #0c457d;
    border-color: #093058; }
.btn.btn-primary:active, .btn.btn-primary.active,
.open > .btn.btn-primary.dropdown-toggle {
    background-image: none; }
.btn.btn-primary.disabled:hover, .btn.btn-primary.disabled:focus, .btn.btn-primary.disabled.focus, .btn.btn-primary[disabled]:hover, .btn.btn-primary[disabled]:focus, .btn.btn-primary[disabled].focus,
fieldset[disabled] .btn.btn-primary:hover,
fieldset[disabled] .btn.btn-primary:focus,
fieldset[disabled] .btn.btn-primary.focus {
    background-color: #1470CC;
    border-color: #1470CC; }
.btn.btn-primary .badge {
    color: #1470CC;
    background-color: white; }
.btn.btn-primary:hover, .btn.btn-primary.hover, .btn.btn-primary:focus, .btn.btn-primary.focus, .btn.btn-primary:active, .btn.btn-primary.active {
    color: white;
    background-color: #0F5499;
    border-color: #0F5499; }
.btn.btn-primary:active, .btn.btn-primary.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-primary.disabled, .btn.btn-primary.disabled:hover, .btn.btn-primary.disabled:focus, .btn.btn-primary.disabled.focus, .btn.btn-primary.disabled:active, .btn.btn-primary.disabled.active, .btn.btn-primary[disabled], .btn.btn-primary[disabled]:hover, .btn.btn-primary[disabled]:focus, .btn.btn-primary[disabled].focus, .btn.btn-primary[disabled]:active, .btn.btn-primary[disabled].active,
fieldset[disabled] .btn.btn-primary,
fieldset[disabled] .btn.btn-primary:hover,
fieldset[disabled] .btn.btn-primary:focus,
fieldset[disabled] .btn.btn-primary.focus,
fieldset[disabled] .btn.btn-primary:active,
fieldset[disabled] .btn.btn-primary.active {
    color: white;
    background-color: #AACEF2;
    border-color: #AACEF2; }
.btn.btn-secondary {
    color: #1470CC;
    background-color: #F1F7FD;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-secondary:focus, .btn.btn-secondary.focus {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #093058; }
.btn.btn-secondary:hover {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
.btn.btn-secondary:active, .btn.btn-secondary.active,
.open > .btn.btn-secondary.dropdown-toggle {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
.btn.btn-secondary:active:hover, .btn.btn-secondary:active:focus, .btn.btn-secondary:active.focus, .btn.btn-secondary.active:hover, .btn.btn-secondary.active:focus, .btn.btn-secondary.active.focus,
.open > .btn.btn-secondary.dropdown-toggle:hover,
.open > .btn.btn-secondary.dropdown-toggle:focus,
.open > .btn.btn-secondary.dropdown-toggle.focus {
    color: #1470CC;
    background-color: #a5ccf2;
    border-color: #093058; }
.btn.btn-secondary:active, .btn.btn-secondary.active,
.open > .btn.btn-secondary.dropdown-toggle {
    background-image: none; }
.btn.btn-secondary.disabled:hover, .btn.btn-secondary.disabled:focus, .btn.btn-secondary.disabled.focus, .btn.btn-secondary[disabled]:hover, .btn.btn-secondary[disabled]:focus, .btn.btn-secondary[disabled].focus,
fieldset[disabled] .btn.btn-secondary:hover,
fieldset[disabled] .btn.btn-secondary:focus,
fieldset[disabled] .btn.btn-secondary.focus {
    background-color: #F1F7FD;
    border-color: #1470CC; }
.btn.btn-secondary .badge {
    color: #F1F7FD;
    background-color: #1470CC; }
.btn.btn-secondary:hover, .btn.btn-secondary.hover, .btn.btn-secondary:focus, .btn.btn-secondary.focus, .btn.btn-secondary:active, .btn.btn-secondary.active {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
.btn.btn-secondary:active, .btn.btn-secondary.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-secondary.disabled, .btn.btn-secondary.disabled:hover, .btn.btn-secondary.disabled:focus, .btn.btn-secondary.disabled.focus, .btn.btn-secondary.disabled:active, .btn.btn-secondary.disabled.active, .btn.btn-secondary[disabled], .btn.btn-secondary[disabled]:hover, .btn.btn-secondary[disabled]:focus, .btn.btn-secondary[disabled].focus, .btn.btn-secondary[disabled]:active, .btn.btn-secondary[disabled].active,
fieldset[disabled] .btn.btn-secondary,
fieldset[disabled] .btn.btn-secondary:hover,
fieldset[disabled] .btn.btn-secondary:focus,
fieldset[disabled] .btn.btn-secondary.focus,
fieldset[disabled] .btn.btn-secondary:active,
fieldset[disabled] .btn.btn-secondary.active {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
.btn.btn-success {
    color: white;
    background-color: #67B346;
    border-color: #67B346;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-success:focus, .btn.btn-success.focus {
    color: white;
    background-color: #528e38;
    border-color: #325722; }
.btn.btn-success:hover {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
.btn.btn-success:active, .btn.btn-success.active,
.open > .btn.btn-success.dropdown-toggle {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
.btn.btn-success:active:hover, .btn.btn-success:active:focus, .btn.btn-success:active.focus, .btn.btn-success.active:hover, .btn.btn-success.active:focus, .btn.btn-success.active.focus,
.open > .btn.btn-success.dropdown-toggle:hover,
.open > .btn.btn-success.dropdown-toggle:focus,
.open > .btn.btn-success.dropdown-toggle.focus {
    color: white;
    background-color: #43752e;
    border-color: #325722; }
.btn.btn-success:active, .btn.btn-success.active,
.open > .btn.btn-success.dropdown-toggle {
    background-image: none; }
.btn.btn-success.disabled:hover, .btn.btn-success.disabled:focus, .btn.btn-success.disabled.focus, .btn.btn-success[disabled]:hover, .btn.btn-success[disabled]:focus, .btn.btn-success[disabled].focus,
fieldset[disabled] .btn.btn-success:hover,
fieldset[disabled] .btn.btn-success:focus,
fieldset[disabled] .btn.btn-success.focus {
    background-color: #67B346;
    border-color: #67B346; }
.btn.btn-success .badge {
    color: #67B346;
    background-color: white; }
.btn.btn-success:hover, .btn.btn-success.hover, .btn.btn-success:focus, .btn.btn-success.focus, .btn.btn-success:active, .btn.btn-success.active {
    color: white;
    background-color: #42732D;
    border-color: #42732D; }
.btn.btn-success:active, .btn.btn-success.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-success.disabled, .btn.btn-success.disabled:hover, .btn.btn-success.disabled:focus, .btn.btn-success.disabled.focus, .btn.btn-success.disabled:active, .btn.btn-success.disabled.active, .btn.btn-success[disabled], .btn.btn-success[disabled]:hover, .btn.btn-success[disabled]:focus, .btn.btn-success[disabled].focus, .btn.btn-success[disabled]:active, .btn.btn-success[disabled].active,
fieldset[disabled] .btn.btn-success,
fieldset[disabled] .btn.btn-success:hover,
fieldset[disabled] .btn.btn-success:focus,
fieldset[disabled] .btn.btn-success.focus,
fieldset[disabled] .btn.btn-success:active,
fieldset[disabled] .btn.btn-success.active {
    color: white;
    background-color: #9ED188;
    border-color: #9ED188; }
.btn.btn-info {
    color: #1470CC;
    background-color: white;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-info:focus, .btn.btn-info.focus {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #093058; }
.btn.btn-info:hover {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
.btn.btn-info:active, .btn.btn-info.active,
.open > .btn.btn-info.dropdown-toggle {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
.btn.btn-info:active:hover, .btn.btn-info:active:focus, .btn.btn-info:active.focus, .btn.btn-info.active:hover, .btn.btn-info.active:focus, .btn.btn-info.active.focus,
.open > .btn.btn-info.dropdown-toggle:hover,
.open > .btn.btn-info.dropdown-toggle:focus,
.open > .btn.btn-info.dropdown-toggle.focus {
    color: #1470CC;
    background-color: #d4d4d4;
    border-color: #093058; }
.btn.btn-info:active, .btn.btn-info.active,
.open > .btn.btn-info.dropdown-toggle {
    background-image: none; }
.btn.btn-info.disabled:hover, .btn.btn-info.disabled:focus, .btn.btn-info.disabled.focus, .btn.btn-info[disabled]:hover, .btn.btn-info[disabled]:focus, .btn.btn-info[disabled].focus,
fieldset[disabled] .btn.btn-info:hover,
fieldset[disabled] .btn.btn-info:focus,
fieldset[disabled] .btn.btn-info.focus {
    background-color: white;
    border-color: #1470CC; }
.btn.btn-info .badge {
    color: white;
    background-color: #1470CC; }
.btn.btn-info:hover, .btn.btn-info.hover, .btn.btn-info:focus, .btn.btn-info.focus, .btn.btn-info:active, .btn.btn-info.active {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
.btn.btn-info:active, .btn.btn-info.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-info.disabled, .btn.btn-info.disabled:hover, .btn.btn-info.disabled:focus, .btn.btn-info.disabled.focus, .btn.btn-info.disabled:active, .btn.btn-info.disabled.active, .btn.btn-info[disabled], .btn.btn-info[disabled]:hover, .btn.btn-info[disabled]:focus, .btn.btn-info[disabled].focus, .btn.btn-info[disabled]:active, .btn.btn-info[disabled].active,
fieldset[disabled] .btn.btn-info,
fieldset[disabled] .btn.btn-info:hover,
fieldset[disabled] .btn.btn-info:focus,
fieldset[disabled] .btn.btn-info.focus,
fieldset[disabled] .btn.btn-info:active,
fieldset[disabled] .btn.btn-info.active {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
.btn.btn-warning {
    color: #E64D2E;
    background-color: white;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-warning:focus, .btn.btn-warning.focus {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #852410; }
.btn.btn-warning:hover {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
.btn.btn-warning:active, .btn.btn-warning.active,
.open > .btn.btn-warning.dropdown-toggle {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
.btn.btn-warning:active:hover, .btn.btn-warning:active:focus, .btn.btn-warning:active.focus, .btn.btn-warning.active:hover, .btn.btn-warning.active:focus, .btn.btn-warning.active.focus,
.open > .btn.btn-warning.dropdown-toggle:hover,
.open > .btn.btn-warning.dropdown-toggle:focus,
.open > .btn.btn-warning.dropdown-toggle.focus {
    color: #E64D2E;
    background-color: #d4d4d4;
    border-color: #852410; }
.btn.btn-warning:active, .btn.btn-warning.active,
.open > .btn.btn-warning.dropdown-toggle {
    background-image: none; }
.btn.btn-warning.disabled:hover, .btn.btn-warning.disabled:focus, .btn.btn-warning.disabled.focus, .btn.btn-warning[disabled]:hover, .btn.btn-warning[disabled]:focus, .btn.btn-warning[disabled].focus,
fieldset[disabled] .btn.btn-warning:hover,
fieldset[disabled] .btn.btn-warning:focus,
fieldset[disabled] .btn.btn-warning.focus {
    background-color: white;
    border-color: #E64D2E; }
.btn.btn-warning .badge {
    color: white;
    background-color: #E64D2E; }
.btn.btn-warning:hover, .btn.btn-warning.hover, .btn.btn-warning:focus, .btn.btn-warning.focus, .btn.btn-warning:active, .btn.btn-warning.active {
    color: #C7290A;
    background-color: #FAE1DC;
    border-color: #C7290A; }
.btn.btn-warning:active, .btn.btn-warning.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-warning.disabled, .btn.btn-warning.disabled:hover, .btn.btn-warning.disabled:focus, .btn.btn-warning.disabled.focus, .btn.btn-warning.disabled:active, .btn.btn-warning.disabled.active, .btn.btn-warning[disabled], .btn.btn-warning[disabled]:hover, .btn.btn-warning[disabled]:focus, .btn.btn-warning[disabled].focus, .btn.btn-warning[disabled]:active, .btn.btn-warning[disabled].active,
fieldset[disabled] .btn.btn-warning,
fieldset[disabled] .btn.btn-warning:hover,
fieldset[disabled] .btn.btn-warning:focus,
fieldset[disabled] .btn.btn-warning.focus,
fieldset[disabled] .btn.btn-warning:active,
fieldset[disabled] .btn.btn-warning.active {
    color: #F7A894;
    background-color: white;
    border-color: #F7A894; }
.btn.btn-danger {
    color: white;
    background-color: #E64D2E;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-danger:focus, .btn.btn-danger.focus {
    color: white;
    background-color: #c93618;
    border-color: #852410; }
.btn.btn-danger:hover {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
.btn.btn-danger:active, .btn.btn-danger.active,
.open > .btn.btn-danger.dropdown-toggle {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
.btn.btn-danger:active:hover, .btn.btn-danger:active:focus, .btn.btn-danger:active.focus, .btn.btn-danger.active:hover, .btn.btn-danger.active:focus, .btn.btn-danger.active.focus,
.open > .btn.btn-danger.dropdown-toggle:hover,
.open > .btn.btn-danger.dropdown-toggle:focus,
.open > .btn.btn-danger.dropdown-toggle.focus {
    color: white;
    background-color: #a92d14;
    border-color: #852410; }
.btn.btn-danger:active, .btn.btn-danger.active,
.open > .btn.btn-danger.dropdown-toggle {
    background-image: none; }
.btn.btn-danger.disabled:hover, .btn.btn-danger.disabled:focus, .btn.btn-danger.disabled.focus, .btn.btn-danger[disabled]:hover, .btn.btn-danger[disabled]:focus, .btn.btn-danger[disabled].focus,
fieldset[disabled] .btn.btn-danger:hover,
fieldset[disabled] .btn.btn-danger:focus,
fieldset[disabled] .btn.btn-danger.focus {
    background-color: #E64D2E;
    border-color: #E64D2E; }
.btn.btn-danger .badge {
    color: #E64D2E;
    background-color: white; }
.btn.btn-danger:hover, .btn.btn-danger.hover, .btn.btn-danger:focus, .btn.btn-danger.focus, .btn.btn-danger:active, .btn.btn-danger.active {
    color: white;
    background-color: #C7290A;
    border-color: #C7290A; }
.btn.btn-danger:active, .btn.btn-danger.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-danger.disabled, .btn.btn-danger.disabled:hover, .btn.btn-danger.disabled:focus, .btn.btn-danger.disabled.focus, .btn.btn-danger.disabled:active, .btn.btn-danger.disabled.active, .btn.btn-danger[disabled], .btn.btn-danger[disabled]:hover, .btn.btn-danger[disabled]:focus, .btn.btn-danger[disabled].focus, .btn.btn-danger[disabled]:active, .btn.btn-danger[disabled].active,
fieldset[disabled] .btn.btn-danger,
fieldset[disabled] .btn.btn-danger:hover,
fieldset[disabled] .btn.btn-danger:focus,
fieldset[disabled] .btn.btn-danger.focus,
fieldset[disabled] .btn.btn-danger:active,
fieldset[disabled] .btn.btn-danger.active {
    color: white;
    background-color: #F7A894;
    border-color: #F7A894; }
.btn.btn-subtle {
    color: #222325;
    background-color: transparent;
    border-color: transparent;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn.btn-subtle:focus, .btn.btn-subtle.focus {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn.btn-subtle:hover {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn.btn-subtle:active, .btn.btn-subtle.active,
.open > .btn.btn-subtle.dropdown-toggle {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn.btn-subtle:active:hover, .btn.btn-subtle:active:focus, .btn.btn-subtle:active.focus, .btn.btn-subtle.active:hover, .btn.btn-subtle.active:focus, .btn.btn-subtle.active.focus,
.open > .btn.btn-subtle.dropdown-toggle:hover,
.open > .btn.btn-subtle.dropdown-toggle:focus,
.open > .btn.btn-subtle.dropdown-toggle.focus {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn.btn-subtle:active, .btn.btn-subtle.active,
.open > .btn.btn-subtle.dropdown-toggle {
    background-image: none; }
.btn.btn-subtle.disabled:hover, .btn.btn-subtle.disabled:focus, .btn.btn-subtle.disabled.focus, .btn.btn-subtle[disabled]:hover, .btn.btn-subtle[disabled]:focus, .btn.btn-subtle[disabled].focus,
fieldset[disabled] .btn.btn-subtle:hover,
fieldset[disabled] .btn.btn-subtle:focus,
fieldset[disabled] .btn.btn-subtle.focus {
    background-color: transparent;
    border-color: transparent; }
.btn.btn-subtle .badge {
    color: transparent;
    background-color: #222325; }
.btn.btn-subtle:hover, .btn.btn-subtle.hover, .btn.btn-subtle:focus, .btn.btn-subtle.focus, .btn.btn-subtle:active, .btn.btn-subtle.active {
    color: #222325;
    background-color: #EBEBEB;
    border-color: transparent; }
.btn.btn-subtle:active, .btn.btn-subtle.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn.btn-subtle.disabled, .btn.btn-subtle.disabled:hover, .btn.btn-subtle.disabled:focus, .btn.btn-subtle.disabled.focus, .btn.btn-subtle.disabled:active, .btn.btn-subtle.disabled.active, .btn.btn-subtle[disabled], .btn.btn-subtle[disabled]:hover, .btn.btn-subtle[disabled]:focus, .btn.btn-subtle[disabled].focus, .btn.btn-subtle[disabled]:active, .btn.btn-subtle[disabled].active,
fieldset[disabled] .btn.btn-subtle,
fieldset[disabled] .btn.btn-subtle:hover,
fieldset[disabled] .btn.btn-subtle:focus,
fieldset[disabled] .btn.btn-subtle.focus,
fieldset[disabled] .btn.btn-subtle:active,
fieldset[disabled] .btn.btn-subtle.active {
    color: #A2A3A6;
    background-color: transparent;
    border-color: transparent; }
.btn.disabled:not(.btn-link), .btn[disabled]:not(.btn-link) {
    opacity: 1; }
.btn.btn-mini {
    padding: 2px 6px;
    font-size: 11px;
    line-height: -2.57143px; }

.btn-group {
    /* Extra specificity is required because the default dropdown styles are overriding */ }
.btn-group.subtle > .dropdown-toggle {
    color: #222325;
    background-color: transparent;
    border-color: transparent;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
.btn-group.subtle > .dropdown-toggle:focus, .btn-group.subtle > .dropdown-toggle.focus {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn-group.subtle > .dropdown-toggle:hover {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn-group.subtle > .dropdown-toggle:active, .btn-group.subtle > .dropdown-toggle.active,
.open > .btn-group.subtle > .dropdown-toggle.dropdown-toggle {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn-group.subtle > .dropdown-toggle:active:hover, .btn-group.subtle > .dropdown-toggle:active:focus, .btn-group.subtle > .dropdown-toggle:active.focus, .btn-group.subtle > .dropdown-toggle.active:hover, .btn-group.subtle > .dropdown-toggle.active:focus, .btn-group.subtle > .dropdown-toggle.active.focus,
.open > .btn-group.subtle > .dropdown-toggle.dropdown-toggle:hover,
.open > .btn-group.subtle > .dropdown-toggle.dropdown-toggle:focus,
.open > .btn-group.subtle > .dropdown-toggle.dropdown-toggle.focus {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
.btn-group.subtle > .dropdown-toggle:active, .btn-group.subtle > .dropdown-toggle.active,
.open > .btn-group.subtle > .dropdown-toggle.dropdown-toggle {
    background-image: none; }
.btn-group.subtle > .dropdown-toggle.disabled:hover, .btn-group.subtle > .dropdown-toggle.disabled:focus, .btn-group.subtle > .dropdown-toggle.disabled.focus, .btn-group.subtle > .dropdown-toggle[disabled]:hover, .btn-group.subtle > .dropdown-toggle[disabled]:focus, .btn-group.subtle > .dropdown-toggle[disabled].focus,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle:hover,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle:focus,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle.focus {
    background-color: transparent;
    border-color: transparent; }
.btn-group.subtle > .dropdown-toggle .badge {
    color: transparent;
    background-color: #222325; }
.btn-group.subtle > .dropdown-toggle:hover, .btn-group.subtle > .dropdown-toggle.hover, .btn-group.subtle > .dropdown-toggle:focus, .btn-group.subtle > .dropdown-toggle.focus, .btn-group.subtle > .dropdown-toggle:active, .btn-group.subtle > .dropdown-toggle.active {
    color: #222325;
    background-color: #EBEBEB;
    border-color: transparent; }
.btn-group.subtle > .dropdown-toggle:active, .btn-group.subtle > .dropdown-toggle.active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
.btn-group.subtle > .dropdown-toggle.disabled, .btn-group.subtle > .dropdown-toggle.disabled:hover, .btn-group.subtle > .dropdown-toggle.disabled:focus, .btn-group.subtle > .dropdown-toggle.disabled.focus, .btn-group.subtle > .dropdown-toggle.disabled:active, .btn-group.subtle > .dropdown-toggle.disabled.active, .btn-group.subtle > .dropdown-toggle[disabled], .btn-group.subtle > .dropdown-toggle[disabled]:hover, .btn-group.subtle > .dropdown-toggle[disabled]:focus, .btn-group.subtle > .dropdown-toggle[disabled].focus, .btn-group.subtle > .dropdown-toggle[disabled]:active, .btn-group.subtle > .dropdown-toggle[disabled].active,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle:hover,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle:focus,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle.focus,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle:active,
fieldset[disabled] .btn-group.subtle > .dropdown-toggle.active {
    color: #A2A3A6;
    background-color: transparent;
    border-color: transparent; }
.btn-group.subtle > .dropdown-toggle:active, .btn-group.subtle > .dropdown-toggle.active {
    border-color: #DEDFE0;
    box-shadow: none; }
.btn-group.open.subtle > .dropdown-toggle, .btn-group.open.subtle > .dropdown-toggle:focus, .btn-group.open.subtle > .dropdown-toggle.focus {
    border: 1px solid #DEDFE0;
    background-color: #EBEBEB;
    box-shadow: none; }

.dropdown-menu > li > a {
    text-decoration: none;
    padding: 0.75em 1em; }

.nav {
    margin-bottom: 18px; }

.nav-tabs > li > a {
    text-decoration: none; }

.alert-clear {
    background-color: inherit;
    color: inherit;
    border: 0; }

.alert span.notice_close_button {
    font-size: 1.25em; }

.alert a[data-dismiss="alert"] {
    top: 2px;
    font-size: 1.5em; }

.alert a[data-dismiss="alert"], .alert span.notice_close_button {
    cursor: pointer;
    text-decoration: none;
    position: relative; }
.alert a[data-dismiss="alert"]:hover, .alert span.notice_close_button:hover {
    text-decoration: none;
    -webkit-filter: brightness(50%); }

.modal-header .close {
    padding: 4px 8px;
    cursor: pointer; }

h4.modal-title, h1.modal-title {
    margin-right: 35px; }

input[type="search"] {
    box-sizing: border-box; }

/* Button overrides
 * Creating our own mixin to allow us to use the button-variant mixin
 * that bootsrap provides.
 * Our additions set hover, active, and disabled states using color variables
 * rather than bootstrap's "darken" and "opacity" methods.
 */
button:not(.btn), input[type="button"]:not(.btn), input[type="submit"]:not(.btn), input[type="reset"]:not(.btn) {
    /* Include the base ".btn" styles from Bootstrap because we've excluded ".btn" */
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Since we want specific colors for showing disabled state, we need to
   * override the opacity style bootstrap uses for disabled
   */
    padding: 4px 10px;
    font-size: 13px;
    line-height: 1.42857;
    border-radius: 2px;
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */
    /* Create each of the button types */
    /* btn-secondary creates a "glassy" blue button that can be used as an alternate action when there is a btn-primary */ }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn) {
    opacity: 1; }
button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:hover:not(.btn), input[type="button"]:active:hover:not(.btn), input[type="submit"]:active:hover:not(.btn), input[type="reset"]:active:hover:not(.btn), button:active:focus:not(.btn), input[type="button"]:active:focus:not(.btn), input[type="submit"]:active:focus:not(.btn), input[type="reset"]:active:focus:not(.btn), button:active.focus:not(.btn), input[type="button"]:active.focus:not(.btn), input[type="submit"]:active.focus:not(.btn), input[type="reset"]:active.focus:not(.btn), button.active:hover:not(.btn), input.active[type="button"]:hover:not(.btn), input.active[type="submit"]:hover:not(.btn), input.active[type="reset"]:hover:not(.btn), button.active:focus:not(.btn), input.active[type="button"]:focus:not(.btn), input.active[type="submit"]:focus:not(.btn), input.active[type="reset"]:focus:not(.btn), button.active.focus:not(.btn), input.active.focus[type="button"]:not(.btn), input.active.focus[type="submit"]:not(.btn), input.active.focus[type="reset"]:not(.btn),
.open > button.dropdown-toggle:hover:not(.btn),
.open > input.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.dropdown-toggle:focus:not(.btn),
.open > input.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.dropdown-toggle.focus:not(.btn),
.open > input.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button:not(.btn) .badge, input[type="button"]:not(.btn) .badge, input[type="submit"]:not(.btn) .badge, input[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn), button.hover:not(.btn), input.hover[type="button"]:not(.btn), input.hover[type="submit"]:not(.btn), input.hover[type="reset"]:not(.btn), button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn), button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button.disabled:active:not(.btn), input.disabled[type="button"]:active:not(.btn), input.disabled[type="submit"]:active:not(.btn), input.disabled[type="reset"]:active:not(.btn), button.disabled.active:not(.btn), input.disabled.active[type="button"]:not(.btn), input.disabled.active[type="submit"]:not(.btn), input.disabled.active[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn), button[disabled]:active:not(.btn), input[disabled][type="button"]:active:not(.btn), input[disabled][type="submit"]:active:not(.btn), input[disabled][type="reset"]:active:not(.btn), button[disabled].active:not(.btn), input[disabled].active[type="button"]:not(.btn), input[disabled].active[type="submit"]:not(.btn), input[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button:not(.btn),
fieldset[disabled] input[type="button"]:not(.btn),
fieldset[disabled] input[type="submit"]:not(.btn),
fieldset[disabled] input[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn),
fieldset[disabled] button:active:not(.btn),
fieldset[disabled] input[type="button"]:active:not(.btn),
fieldset[disabled] input[type="submit"]:active:not(.btn),
fieldset[disabled] input[type="reset"]:active:not(.btn),
fieldset[disabled] button.active:not(.btn),
fieldset[disabled] input.active[type="button"]:not(.btn),
fieldset[disabled] input.active[type="submit"]:not(.btn),
fieldset[disabled] input.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-default:not(.btn), input.btn-default[type="button"]:not(.btn), input.btn-default[type="submit"]:not(.btn), input.btn-default[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:hover:not(.btn), input.btn-default[type="button"]:active:hover:not(.btn), input.btn-default[type="submit"]:active:hover:not(.btn), input.btn-default[type="reset"]:active:hover:not(.btn), button.btn-default:active:focus:not(.btn), input.btn-default[type="button"]:active:focus:not(.btn), input.btn-default[type="submit"]:active:focus:not(.btn), input.btn-default[type="reset"]:active:focus:not(.btn), button.btn-default:active.focus:not(.btn), input.btn-default[type="button"]:active.focus:not(.btn), input.btn-default[type="submit"]:active.focus:not(.btn), input.btn-default[type="reset"]:active.focus:not(.btn), button.btn-default.active:hover:not(.btn), input.btn-default.active[type="button"]:hover:not(.btn), input.btn-default.active[type="submit"]:hover:not(.btn), input.btn-default.active[type="reset"]:hover:not(.btn), button.btn-default.active:focus:not(.btn), input.btn-default.active[type="button"]:focus:not(.btn), input.btn-default.active[type="submit"]:focus:not(.btn), input.btn-default.active[type="reset"]:focus:not(.btn), button.btn-default.active.focus:not(.btn), input.btn-default.active.focus[type="button"]:not(.btn), input.btn-default.active.focus[type="submit"]:not(.btn), input.btn-default.active.focus[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-default.dropdown-toggle:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-default.dropdown-toggle.focus:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button.btn-default:not(.btn) .badge, input.btn-default[type="button"]:not(.btn) .badge, input.btn-default[type="submit"]:not(.btn) .badge, input.btn-default[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn), button.btn-default.hover:not(.btn), input.btn-default.hover[type="button"]:not(.btn), input.btn-default.hover[type="submit"]:not(.btn), input.btn-default.hover[type="reset"]:not(.btn), button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn), button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-default.disabled:not(.btn), input.btn-default.disabled[type="button"]:not(.btn), input.btn-default.disabled[type="submit"]:not(.btn), input.btn-default.disabled[type="reset"]:not(.btn), button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default.disabled:active:not(.btn), input.btn-default.disabled[type="button"]:active:not(.btn), input.btn-default.disabled[type="submit"]:active:not(.btn), input.btn-default.disabled[type="reset"]:active:not(.btn), button.btn-default.disabled.active:not(.btn), input.btn-default.disabled.active[type="button"]:not(.btn), input.btn-default.disabled.active[type="submit"]:not(.btn), input.btn-default.disabled.active[type="reset"]:not(.btn), button.btn-default[disabled]:not(.btn), input.btn-default[disabled][type="button"]:not(.btn), input.btn-default[disabled][type="submit"]:not(.btn), input.btn-default[disabled][type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn), button.btn-default[disabled]:active:not(.btn), input.btn-default[disabled][type="button"]:active:not(.btn), input.btn-default[disabled][type="submit"]:active:not(.btn), input.btn-default[disabled][type="reset"]:active:not(.btn), button.btn-default[disabled].active:not(.btn), input.btn-default[disabled].active[type="button"]:not(.btn), input.btn-default[disabled].active[type="submit"]:not(.btn), input.btn-default[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:active:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-default.active:not(.btn),
fieldset[disabled] input.btn-default.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-primary:not(.btn), input.btn-primary[type="button"]:not(.btn), input.btn-primary[type="submit"]:not(.btn), input.btn-primary[type="reset"]:not(.btn) {
    color: white;
    background-color: #1470CC;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #093058; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:hover:not(.btn), input.btn-primary[type="button"]:active:hover:not(.btn), input.btn-primary[type="submit"]:active:hover:not(.btn), input.btn-primary[type="reset"]:active:hover:not(.btn), button.btn-primary:active:focus:not(.btn), input.btn-primary[type="button"]:active:focus:not(.btn), input.btn-primary[type="submit"]:active:focus:not(.btn), input.btn-primary[type="reset"]:active:focus:not(.btn), button.btn-primary:active.focus:not(.btn), input.btn-primary[type="button"]:active.focus:not(.btn), input.btn-primary[type="submit"]:active.focus:not(.btn), input.btn-primary[type="reset"]:active.focus:not(.btn), button.btn-primary.active:hover:not(.btn), input.btn-primary.active[type="button"]:hover:not(.btn), input.btn-primary.active[type="submit"]:hover:not(.btn), input.btn-primary.active[type="reset"]:hover:not(.btn), button.btn-primary.active:focus:not(.btn), input.btn-primary.active[type="button"]:focus:not(.btn), input.btn-primary.active[type="submit"]:focus:not(.btn), input.btn-primary.active[type="reset"]:focus:not(.btn), button.btn-primary.active.focus:not(.btn), input.btn-primary.active.focus[type="button"]:not(.btn), input.btn-primary.active.focus[type="submit"]:not(.btn), input.btn-primary.active.focus[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-primary.dropdown-toggle:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-primary.dropdown-toggle.focus:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0c457d;
    border-color: #093058; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn) {
    background-color: #1470CC;
    border-color: #1470CC; }
button.btn-primary:not(.btn) .badge, input.btn-primary[type="button"]:not(.btn) .badge, input.btn-primary[type="submit"]:not(.btn) .badge, input.btn-primary[type="reset"]:not(.btn) .badge {
    color: #1470CC;
    background-color: white; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn), button.btn-primary.hover:not(.btn), input.btn-primary.hover[type="button"]:not(.btn), input.btn-primary.hover[type="submit"]:not(.btn), input.btn-primary.hover[type="reset"]:not(.btn), button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn), button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #0F5499;
    border-color: #0F5499; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-primary.disabled:not(.btn), input.btn-primary.disabled[type="button"]:not(.btn), input.btn-primary.disabled[type="submit"]:not(.btn), input.btn-primary.disabled[type="reset"]:not(.btn), button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary.disabled:active:not(.btn), input.btn-primary.disabled[type="button"]:active:not(.btn), input.btn-primary.disabled[type="submit"]:active:not(.btn), input.btn-primary.disabled[type="reset"]:active:not(.btn), button.btn-primary.disabled.active:not(.btn), input.btn-primary.disabled.active[type="button"]:not(.btn), input.btn-primary.disabled.active[type="submit"]:not(.btn), input.btn-primary.disabled.active[type="reset"]:not(.btn), button.btn-primary[disabled]:not(.btn), input.btn-primary[disabled][type="button"]:not(.btn), input.btn-primary[disabled][type="submit"]:not(.btn), input.btn-primary[disabled][type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn), button.btn-primary[disabled]:active:not(.btn), input.btn-primary[disabled][type="button"]:active:not(.btn), input.btn-primary[disabled][type="submit"]:active:not(.btn), input.btn-primary[disabled][type="reset"]:active:not(.btn), button.btn-primary[disabled].active:not(.btn), input.btn-primary[disabled].active[type="button"]:not(.btn), input.btn-primary[disabled].active[type="submit"]:not(.btn), input.btn-primary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:active:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-primary.active:not(.btn),
fieldset[disabled] input.btn-primary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #AACEF2;
    border-color: #AACEF2; }
button.btn-secondary:not(.btn), input.btn-secondary[type="button"]:not(.btn), input.btn-secondary[type="submit"]:not(.btn), input.btn-secondary[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #F1F7FD;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #093058; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:hover:not(.btn), input.btn-secondary[type="button"]:active:hover:not(.btn), input.btn-secondary[type="submit"]:active:hover:not(.btn), input.btn-secondary[type="reset"]:active:hover:not(.btn), button.btn-secondary:active:focus:not(.btn), input.btn-secondary[type="button"]:active:focus:not(.btn), input.btn-secondary[type="submit"]:active:focus:not(.btn), input.btn-secondary[type="reset"]:active:focus:not(.btn), button.btn-secondary:active.focus:not(.btn), input.btn-secondary[type="button"]:active.focus:not(.btn), input.btn-secondary[type="submit"]:active.focus:not(.btn), input.btn-secondary[type="reset"]:active.focus:not(.btn), button.btn-secondary.active:hover:not(.btn), input.btn-secondary.active[type="button"]:hover:not(.btn), input.btn-secondary.active[type="submit"]:hover:not(.btn), input.btn-secondary.active[type="reset"]:hover:not(.btn), button.btn-secondary.active:focus:not(.btn), input.btn-secondary.active[type="button"]:focus:not(.btn), input.btn-secondary.active[type="submit"]:focus:not(.btn), input.btn-secondary.active[type="reset"]:focus:not(.btn), button.btn-secondary.active.focus:not(.btn), input.btn-secondary.active.focus[type="button"]:not(.btn), input.btn-secondary.active.focus[type="submit"]:not(.btn), input.btn-secondary.active.focus[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-secondary.dropdown-toggle:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-secondary.dropdown-toggle.focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #a5ccf2;
    border-color: #093058; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn) {
    background-color: #F1F7FD;
    border-color: #1470CC; }
button.btn-secondary:not(.btn) .badge, input.btn-secondary[type="button"]:not(.btn) .badge, input.btn-secondary[type="submit"]:not(.btn) .badge, input.btn-secondary[type="reset"]:not(.btn) .badge {
    color: #F1F7FD;
    background-color: #1470CC; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn), button.btn-secondary.hover:not(.btn), input.btn-secondary.hover[type="button"]:not(.btn), input.btn-secondary.hover[type="submit"]:not(.btn), input.btn-secondary.hover[type="reset"]:not(.btn), button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn), button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-secondary.disabled:not(.btn), input.btn-secondary.disabled[type="button"]:not(.btn), input.btn-secondary.disabled[type="submit"]:not(.btn), input.btn-secondary.disabled[type="reset"]:not(.btn), button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary.disabled:active:not(.btn), input.btn-secondary.disabled[type="button"]:active:not(.btn), input.btn-secondary.disabled[type="submit"]:active:not(.btn), input.btn-secondary.disabled[type="reset"]:active:not(.btn), button.btn-secondary.disabled.active:not(.btn), input.btn-secondary.disabled.active[type="button"]:not(.btn), input.btn-secondary.disabled.active[type="submit"]:not(.btn), input.btn-secondary.disabled.active[type="reset"]:not(.btn), button.btn-secondary[disabled]:not(.btn), input.btn-secondary[disabled][type="button"]:not(.btn), input.btn-secondary[disabled][type="submit"]:not(.btn), input.btn-secondary[disabled][type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:active:not(.btn), input.btn-secondary[disabled][type="button"]:active:not(.btn), input.btn-secondary[disabled][type="submit"]:active:not(.btn), input.btn-secondary[disabled][type="reset"]:active:not(.btn), button.btn-secondary[disabled].active:not(.btn), input.btn-secondary[disabled].active[type="button"]:not(.btn), input.btn-secondary[disabled].active[type="submit"]:not(.btn), input.btn-secondary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-secondary.active:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-success:not(.btn), input.btn-success[type="button"]:not(.btn), input.btn-success[type="submit"]:not(.btn), input.btn-success[type="reset"]:not(.btn) {
    color: white;
    background-color: #67B346;
    border-color: #67B346;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #325722; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:hover:not(.btn), input.btn-success[type="button"]:active:hover:not(.btn), input.btn-success[type="submit"]:active:hover:not(.btn), input.btn-success[type="reset"]:active:hover:not(.btn), button.btn-success:active:focus:not(.btn), input.btn-success[type="button"]:active:focus:not(.btn), input.btn-success[type="submit"]:active:focus:not(.btn), input.btn-success[type="reset"]:active:focus:not(.btn), button.btn-success:active.focus:not(.btn), input.btn-success[type="button"]:active.focus:not(.btn), input.btn-success[type="submit"]:active.focus:not(.btn), input.btn-success[type="reset"]:active.focus:not(.btn), button.btn-success.active:hover:not(.btn), input.btn-success.active[type="button"]:hover:not(.btn), input.btn-success.active[type="submit"]:hover:not(.btn), input.btn-success.active[type="reset"]:hover:not(.btn), button.btn-success.active:focus:not(.btn), input.btn-success.active[type="button"]:focus:not(.btn), input.btn-success.active[type="submit"]:focus:not(.btn), input.btn-success.active[type="reset"]:focus:not(.btn), button.btn-success.active.focus:not(.btn), input.btn-success.active.focus[type="button"]:not(.btn), input.btn-success.active.focus[type="submit"]:not(.btn), input.btn-success.active.focus[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-success.dropdown-toggle:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-success.dropdown-toggle.focus:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #43752e;
    border-color: #325722; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn) {
    background-color: #67B346;
    border-color: #67B346; }
button.btn-success:not(.btn) .badge, input.btn-success[type="button"]:not(.btn) .badge, input.btn-success[type="submit"]:not(.btn) .badge, input.btn-success[type="reset"]:not(.btn) .badge {
    color: #67B346;
    background-color: white; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn), button.btn-success.hover:not(.btn), input.btn-success.hover[type="button"]:not(.btn), input.btn-success.hover[type="submit"]:not(.btn), input.btn-success.hover[type="reset"]:not(.btn), button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn), button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #42732D;
    border-color: #42732D; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-success.disabled:not(.btn), input.btn-success.disabled[type="button"]:not(.btn), input.btn-success.disabled[type="submit"]:not(.btn), input.btn-success.disabled[type="reset"]:not(.btn), button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success.disabled:active:not(.btn), input.btn-success.disabled[type="button"]:active:not(.btn), input.btn-success.disabled[type="submit"]:active:not(.btn), input.btn-success.disabled[type="reset"]:active:not(.btn), button.btn-success.disabled.active:not(.btn), input.btn-success.disabled.active[type="button"]:not(.btn), input.btn-success.disabled.active[type="submit"]:not(.btn), input.btn-success.disabled.active[type="reset"]:not(.btn), button.btn-success[disabled]:not(.btn), input.btn-success[disabled][type="button"]:not(.btn), input.btn-success[disabled][type="submit"]:not(.btn), input.btn-success[disabled][type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn), button.btn-success[disabled]:active:not(.btn), input.btn-success[disabled][type="button"]:active:not(.btn), input.btn-success[disabled][type="submit"]:active:not(.btn), input.btn-success[disabled][type="reset"]:active:not(.btn), button.btn-success[disabled].active:not(.btn), input.btn-success[disabled].active[type="button"]:not(.btn), input.btn-success[disabled].active[type="submit"]:not(.btn), input.btn-success[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:active:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-success.active:not(.btn),
fieldset[disabled] input.btn-success.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #9ED188;
    border-color: #9ED188; }
button.btn-info:not(.btn), input.btn-info[type="button"]:not(.btn), input.btn-info[type="submit"]:not(.btn), input.btn-info[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: white;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #093058; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:hover:not(.btn), input.btn-info[type="button"]:active:hover:not(.btn), input.btn-info[type="submit"]:active:hover:not(.btn), input.btn-info[type="reset"]:active:hover:not(.btn), button.btn-info:active:focus:not(.btn), input.btn-info[type="button"]:active:focus:not(.btn), input.btn-info[type="submit"]:active:focus:not(.btn), input.btn-info[type="reset"]:active:focus:not(.btn), button.btn-info:active.focus:not(.btn), input.btn-info[type="button"]:active.focus:not(.btn), input.btn-info[type="submit"]:active.focus:not(.btn), input.btn-info[type="reset"]:active.focus:not(.btn), button.btn-info.active:hover:not(.btn), input.btn-info.active[type="button"]:hover:not(.btn), input.btn-info.active[type="submit"]:hover:not(.btn), input.btn-info.active[type="reset"]:hover:not(.btn), button.btn-info.active:focus:not(.btn), input.btn-info.active[type="button"]:focus:not(.btn), input.btn-info.active[type="submit"]:focus:not(.btn), input.btn-info.active[type="reset"]:focus:not(.btn), button.btn-info.active.focus:not(.btn), input.btn-info.active.focus[type="button"]:not(.btn), input.btn-info.active.focus[type="submit"]:not(.btn), input.btn-info.active.focus[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-info.dropdown-toggle:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-info.dropdown-toggle.focus:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #d4d4d4;
    border-color: #093058; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #1470CC; }
button.btn-info:not(.btn) .badge, input.btn-info[type="button"]:not(.btn) .badge, input.btn-info[type="submit"]:not(.btn) .badge, input.btn-info[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #1470CC; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn), button.btn-info.hover:not(.btn), input.btn-info.hover[type="button"]:not(.btn), input.btn-info.hover[type="submit"]:not(.btn), input.btn-info.hover[type="reset"]:not(.btn), button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn), button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-info.disabled:not(.btn), input.btn-info.disabled[type="button"]:not(.btn), input.btn-info.disabled[type="submit"]:not(.btn), input.btn-info.disabled[type="reset"]:not(.btn), button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info.disabled:active:not(.btn), input.btn-info.disabled[type="button"]:active:not(.btn), input.btn-info.disabled[type="submit"]:active:not(.btn), input.btn-info.disabled[type="reset"]:active:not(.btn), button.btn-info.disabled.active:not(.btn), input.btn-info.disabled.active[type="button"]:not(.btn), input.btn-info.disabled.active[type="submit"]:not(.btn), input.btn-info.disabled.active[type="reset"]:not(.btn), button.btn-info[disabled]:not(.btn), input.btn-info[disabled][type="button"]:not(.btn), input.btn-info[disabled][type="submit"]:not(.btn), input.btn-info[disabled][type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn), button.btn-info[disabled]:active:not(.btn), input.btn-info[disabled][type="button"]:active:not(.btn), input.btn-info[disabled][type="submit"]:active:not(.btn), input.btn-info[disabled][type="reset"]:active:not(.btn), button.btn-info[disabled].active:not(.btn), input.btn-info[disabled].active[type="button"]:not(.btn), input.btn-info[disabled].active[type="submit"]:not(.btn), input.btn-info[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:active:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-info.active:not(.btn),
fieldset[disabled] input.btn-info.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-warning:not(.btn), input.btn-warning[type="button"]:not(.btn), input.btn-warning[type="submit"]:not(.btn), input.btn-warning[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: white;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #852410; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:hover:not(.btn), input.btn-warning[type="button"]:active:hover:not(.btn), input.btn-warning[type="submit"]:active:hover:not(.btn), input.btn-warning[type="reset"]:active:hover:not(.btn), button.btn-warning:active:focus:not(.btn), input.btn-warning[type="button"]:active:focus:not(.btn), input.btn-warning[type="submit"]:active:focus:not(.btn), input.btn-warning[type="reset"]:active:focus:not(.btn), button.btn-warning:active.focus:not(.btn), input.btn-warning[type="button"]:active.focus:not(.btn), input.btn-warning[type="submit"]:active.focus:not(.btn), input.btn-warning[type="reset"]:active.focus:not(.btn), button.btn-warning.active:hover:not(.btn), input.btn-warning.active[type="button"]:hover:not(.btn), input.btn-warning.active[type="submit"]:hover:not(.btn), input.btn-warning.active[type="reset"]:hover:not(.btn), button.btn-warning.active:focus:not(.btn), input.btn-warning.active[type="button"]:focus:not(.btn), input.btn-warning.active[type="submit"]:focus:not(.btn), input.btn-warning.active[type="reset"]:focus:not(.btn), button.btn-warning.active.focus:not(.btn), input.btn-warning.active.focus[type="button"]:not(.btn), input.btn-warning.active.focus[type="submit"]:not(.btn), input.btn-warning.active.focus[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-warning.dropdown-toggle:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-warning.dropdown-toggle.focus:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #d4d4d4;
    border-color: #852410; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #E64D2E; }
button.btn-warning:not(.btn) .badge, input.btn-warning[type="button"]:not(.btn) .badge, input.btn-warning[type="submit"]:not(.btn) .badge, input.btn-warning[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #E64D2E; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn), button.btn-warning.hover:not(.btn), input.btn-warning.hover[type="button"]:not(.btn), input.btn-warning.hover[type="submit"]:not(.btn), input.btn-warning.hover[type="reset"]:not(.btn), button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn), button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    color: #C7290A;
    background-color: #FAE1DC;
    border-color: #C7290A; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-warning.disabled:not(.btn), input.btn-warning.disabled[type="button"]:not(.btn), input.btn-warning.disabled[type="submit"]:not(.btn), input.btn-warning.disabled[type="reset"]:not(.btn), button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning.disabled:active:not(.btn), input.btn-warning.disabled[type="button"]:active:not(.btn), input.btn-warning.disabled[type="submit"]:active:not(.btn), input.btn-warning.disabled[type="reset"]:active:not(.btn), button.btn-warning.disabled.active:not(.btn), input.btn-warning.disabled.active[type="button"]:not(.btn), input.btn-warning.disabled.active[type="submit"]:not(.btn), input.btn-warning.disabled.active[type="reset"]:not(.btn), button.btn-warning[disabled]:not(.btn), input.btn-warning[disabled][type="button"]:not(.btn), input.btn-warning[disabled][type="submit"]:not(.btn), input.btn-warning[disabled][type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn), button.btn-warning[disabled]:active:not(.btn), input.btn-warning[disabled][type="button"]:active:not(.btn), input.btn-warning[disabled][type="submit"]:active:not(.btn), input.btn-warning[disabled][type="reset"]:active:not(.btn), button.btn-warning[disabled].active:not(.btn), input.btn-warning[disabled].active[type="button"]:not(.btn), input.btn-warning[disabled].active[type="submit"]:not(.btn), input.btn-warning[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:active:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-warning.active:not(.btn),
fieldset[disabled] input.btn-warning.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="reset"]:not(.btn) {
    color: #F7A894;
    background-color: white;
    border-color: #F7A894; }
button.btn-danger:not(.btn), input.btn-danger[type="button"]:not(.btn), input.btn-danger[type="submit"]:not(.btn), input.btn-danger[type="reset"]:not(.btn) {
    color: white;
    background-color: #E64D2E;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #852410; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:hover:not(.btn), input.btn-danger[type="button"]:active:hover:not(.btn), input.btn-danger[type="submit"]:active:hover:not(.btn), input.btn-danger[type="reset"]:active:hover:not(.btn), button.btn-danger:active:focus:not(.btn), input.btn-danger[type="button"]:active:focus:not(.btn), input.btn-danger[type="submit"]:active:focus:not(.btn), input.btn-danger[type="reset"]:active:focus:not(.btn), button.btn-danger:active.focus:not(.btn), input.btn-danger[type="button"]:active.focus:not(.btn), input.btn-danger[type="submit"]:active.focus:not(.btn), input.btn-danger[type="reset"]:active.focus:not(.btn), button.btn-danger.active:hover:not(.btn), input.btn-danger.active[type="button"]:hover:not(.btn), input.btn-danger.active[type="submit"]:hover:not(.btn), input.btn-danger.active[type="reset"]:hover:not(.btn), button.btn-danger.active:focus:not(.btn), input.btn-danger.active[type="button"]:focus:not(.btn), input.btn-danger.active[type="submit"]:focus:not(.btn), input.btn-danger.active[type="reset"]:focus:not(.btn), button.btn-danger.active.focus:not(.btn), input.btn-danger.active.focus[type="button"]:not(.btn), input.btn-danger.active.focus[type="submit"]:not(.btn), input.btn-danger.active.focus[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-danger.dropdown-toggle:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-danger.dropdown-toggle.focus:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #a92d14;
    border-color: #852410; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn) {
    background-color: #E64D2E;
    border-color: #E64D2E; }
button.btn-danger:not(.btn) .badge, input.btn-danger[type="button"]:not(.btn) .badge, input.btn-danger[type="submit"]:not(.btn) .badge, input.btn-danger[type="reset"]:not(.btn) .badge {
    color: #E64D2E;
    background-color: white; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn), button.btn-danger.hover:not(.btn), input.btn-danger.hover[type="button"]:not(.btn), input.btn-danger.hover[type="submit"]:not(.btn), input.btn-danger.hover[type="reset"]:not(.btn), button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn), button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #C7290A;
    border-color: #C7290A; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-danger.disabled:not(.btn), input.btn-danger.disabled[type="button"]:not(.btn), input.btn-danger.disabled[type="submit"]:not(.btn), input.btn-danger.disabled[type="reset"]:not(.btn), button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger.disabled:active:not(.btn), input.btn-danger.disabled[type="button"]:active:not(.btn), input.btn-danger.disabled[type="submit"]:active:not(.btn), input.btn-danger.disabled[type="reset"]:active:not(.btn), button.btn-danger.disabled.active:not(.btn), input.btn-danger.disabled.active[type="button"]:not(.btn), input.btn-danger.disabled.active[type="submit"]:not(.btn), input.btn-danger.disabled.active[type="reset"]:not(.btn), button.btn-danger[disabled]:not(.btn), input.btn-danger[disabled][type="button"]:not(.btn), input.btn-danger[disabled][type="submit"]:not(.btn), input.btn-danger[disabled][type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn), button.btn-danger[disabled]:active:not(.btn), input.btn-danger[disabled][type="button"]:active:not(.btn), input.btn-danger[disabled][type="submit"]:active:not(.btn), input.btn-danger[disabled][type="reset"]:active:not(.btn), button.btn-danger[disabled].active:not(.btn), input.btn-danger[disabled].active[type="button"]:not(.btn), input.btn-danger[disabled].active[type="submit"]:not(.btn), input.btn-danger[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:active:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-danger.active:not(.btn),
fieldset[disabled] input.btn-danger.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #F7A894;
    border-color: #F7A894; }
button.btn-subtle:not(.btn), input.btn-subtle[type="button"]:not(.btn), input.btn-subtle[type="submit"]:not(.btn), input.btn-subtle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:hover:not(.btn), input.btn-subtle[type="button"]:active:hover:not(.btn), input.btn-subtle[type="submit"]:active:hover:not(.btn), input.btn-subtle[type="reset"]:active:hover:not(.btn), button.btn-subtle:active:focus:not(.btn), input.btn-subtle[type="button"]:active:focus:not(.btn), input.btn-subtle[type="submit"]:active:focus:not(.btn), input.btn-subtle[type="reset"]:active:focus:not(.btn), button.btn-subtle:active.focus:not(.btn), input.btn-subtle[type="button"]:active.focus:not(.btn), input.btn-subtle[type="submit"]:active.focus:not(.btn), input.btn-subtle[type="reset"]:active.focus:not(.btn), button.btn-subtle.active:hover:not(.btn), input.btn-subtle.active[type="button"]:hover:not(.btn), input.btn-subtle.active[type="submit"]:hover:not(.btn), input.btn-subtle.active[type="reset"]:hover:not(.btn), button.btn-subtle.active:focus:not(.btn), input.btn-subtle.active[type="button"]:focus:not(.btn), input.btn-subtle.active[type="submit"]:focus:not(.btn), input.btn-subtle.active[type="reset"]:focus:not(.btn), button.btn-subtle.active.focus:not(.btn), input.btn-subtle.active.focus[type="button"]:not(.btn), input.btn-subtle.active.focus[type="submit"]:not(.btn), input.btn-subtle.active.focus[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-subtle.dropdown-toggle:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-subtle.dropdown-toggle.focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn) {
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:not(.btn) .badge, input.btn-subtle[type="button"]:not(.btn) .badge, input.btn-subtle[type="submit"]:not(.btn) .badge, input.btn-subtle[type="reset"]:not(.btn) .badge {
    color: transparent;
    background-color: #222325; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn), button.btn-subtle.hover:not(.btn), input.btn-subtle.hover[type="button"]:not(.btn), input.btn-subtle.hover[type="submit"]:not(.btn), input.btn-subtle.hover[type="reset"]:not(.btn), button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn), button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-subtle.disabled:not(.btn), input.btn-subtle.disabled[type="button"]:not(.btn), input.btn-subtle.disabled[type="submit"]:not(.btn), input.btn-subtle.disabled[type="reset"]:not(.btn), button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle.disabled:active:not(.btn), input.btn-subtle.disabled[type="button"]:active:not(.btn), input.btn-subtle.disabled[type="submit"]:active:not(.btn), input.btn-subtle.disabled[type="reset"]:active:not(.btn), button.btn-subtle.disabled.active:not(.btn), input.btn-subtle.disabled.active[type="button"]:not(.btn), input.btn-subtle.disabled.active[type="submit"]:not(.btn), input.btn-subtle.disabled.active[type="reset"]:not(.btn), button.btn-subtle[disabled]:not(.btn), input.btn-subtle[disabled][type="button"]:not(.btn), input.btn-subtle[disabled][type="submit"]:not(.btn), input.btn-subtle[disabled][type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:active:not(.btn), input.btn-subtle[disabled][type="button"]:active:not(.btn), input.btn-subtle[disabled][type="submit"]:active:not(.btn), input.btn-subtle[disabled][type="reset"]:active:not(.btn), button.btn-subtle[disabled].active:not(.btn), input.btn-subtle[disabled].active[type="button"]:not(.btn), input.btn-subtle[disabled].active[type="submit"]:not(.btn), input.btn-subtle[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-subtle.active:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: transparent;
    border-color: transparent; }

/* Styles for the <button> and <input> masquerading as <button>
 * These are legacy styles to support raw HTML buttons in erb code
 * --- DO NOT INCLUDE THIS FILE ANYWHERE BUT MANAGE.SCSS ---
 * --- IT WILL BREAK THE PHONE SSP ---
 * In order to avoid redundancy in the final CSS,
 * we exclude elements that have the ".btn" class
 * and have those applied separately
 */
button:not(.btn) {
    /* Need to reapply the styles for the Bootstrap close button
   * because it is not specific enough
   */ }
button:not(.btn).close {
    font-size: 19.5px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    border: 0; }

/* @group Base */
.chosen-container {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    font-size: 13px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.chosen-container * {
    box-sizing: border-box; }
.chosen-container .chosen-drop {
    position: absolute;
    top: 100%;
    z-index: 1010;
    width: 100%;
    border: 1px solid #aaa;
    border-top: 0;
    background: #fff;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
    clip: rect(0, 0, 0, 0); }
.chosen-container.chosen-with-drop .chosen-drop {
    clip: auto; }
.chosen-container a {
    cursor: pointer; }
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
    margin-right: 4px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: normal;
    color: #999999; }
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
    content: ":";
    padding-left: 2px;
    vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 0 8px;
    height: 25px;
    border: 1px solid #aaa;
    border-radius: 5px;
    background-color: #fff;
    background: linear-gradient(#fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
    background-clip: padding-box;
    box-shadow: 0 0 3px #fff inset, 0 1px 1px rgba(0, 0, 0, 0.1);
    color: #444;
    text-decoration: none;
    white-space: nowrap;
    line-height: 24px; }

.chosen-container-single .chosen-default {
    color: #999; }

.chosen-container-single .chosen-single span {
    display: block;
    overflow: hidden;
    margin-right: 26px;
    text-overflow: ellipsis;
    white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
    margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
    position: absolute;
    top: 6px;
    right: 26px;
    display: block;
    width: 12px;
    height: 12px;
    background: url("/images/chosen-sprite.png") -42px 1px no-repeat;
    font-size: 1px; }
.chosen-container-single .chosen-single abbr:hover {
    background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
    background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 18px;
    height: 100%; }
.chosen-container-single .chosen-single div b {
    display: block;
    width: 100%;
    height: 100%;
    background: url("/images/chosen-sprite.png") no-repeat 0px 2px; }

.chosen-container-single .chosen-search {
    position: relative;
    z-index: 1010;
    margin: 0;
    padding: 3px 4px;
    white-space: nowrap; }
.chosen-container-single .chosen-search input[type="text"] {
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    width: 100%;
    height: auto;
    outline: 0;
    border: 1px solid #aaa;
    background: url("/images/chosen-sprite.png") no-repeat 100% -20px;
    font-size: 1em;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0; }

.chosen-container-single .chosen-drop {
    margin-top: -1px;
    border-radius: 0 0 4px 4px;
    background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
    position: absolute;
    clip: rect(0, 0, 0, 0); }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
    color: #444;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0 4px 4px 0;
    padding: 0 0 0 4px;
    max-height: 240px;
    -webkit-overflow-scrolling: touch; }
.chosen-container .chosen-results li {
    display: none;
    margin: 0;
    padding: 5px 6px;
    list-style: none;
    line-height: 15px;
    word-wrap: break-word;
    -webkit-touch-callout: none; }
.chosen-container .chosen-results li.active-result {
    display: list-item;
    cursor: pointer; }
.chosen-container .chosen-results li.disabled-result {
    display: list-item;
    color: #ccc;
    cursor: default; }
.chosen-container .chosen-results li.highlighted {
    background-color: #3875d7;
    background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
    color: #fff; }
.chosen-container .chosen-results li.no-results, .chosen-container .chosen-results li.create-option {
    color: #777;
    display: list-item;
    background: #f4f4f4; }
.chosen-container .chosen-results li.group-result {
    display: list-item;
    font-weight: bold;
    cursor: default; }
.chosen-container .chosen-results li.group-option {
    padding-left: 15px; }
.chosen-container .chosen-results li em {
    font-style: normal;
    text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0 5px;
    width: 100%;
    height: auto;
    border: 1px solid #aaa;
    background-color: #fff;
    background-image: linear-gradient(#eee 1%, #fff 15%);
    cursor: text; }

.chosen-container-multi .chosen-choices li {
    float: left;
    list-style: none; }
.chosen-container-multi .chosen-choices li.search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap; }
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    margin: 1px 0;
    padding: 0;
    height: 25px;
    outline: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none;
    color: #999;
    font-size: 100%;
    font-family: sans-serif;
    line-height: normal;
    border-radius: 0;
    width: 25px; }
.chosen-container-multi .chosen-choices li.search-choice {
    position: relative;
    margin: 3px 5px 3px 0;
    padding: 3px 20px 3px 5px;
    border: 1px solid #aaa;
    max-width: 100%;
    border-radius: 3px;
    background-color: #eeeeee;
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-size: 100% 19px;
    background-repeat: repeat-x;
    background-clip: padding-box;
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    color: #333;
    line-height: 13px;
    cursor: default; }
.chosen-container-multi .chosen-choices li.search-choice span {
    word-wrap: break-word; }
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    position: absolute;
    top: 4px;
    right: 3px;
    display: block;
    width: 12px;
    height: 12px;
    background: url("/images/chosen-sprite.png") -42px 1px no-repeat;
    font-size: 1px; }
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
    background-position: -42px -10px; }
.chosen-container-multi .chosen-choices li.search-choice-disabled {
    padding-right: 5px;
    border: 1px solid #ccc;
    background-color: #e4e4e4;
    background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    color: #666; }
.chosen-container-multi .chosen-choices li.search-choice-focus {
    background: #d4d4d4; }
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
    background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
    margin: 0;
    padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
    display: list-item;
    color: #ccc;
    cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.chosen-container-active.chosen-with-drop .chosen-single {
    border: 1px solid #aaa;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-image: linear-gradient(#eee 20%, #fff 80%);
    box-shadow: 0 1px 0 #fff inset; }

.chosen-container-active.chosen-with-drop .chosen-single div {
    border-left: none;
    background: transparent; }
.chosen-container-active.chosen-with-drop .chosen-single div b {
    background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
    border: 1px solid #5897fb;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
    color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
    opacity: 0.5 !important;
    cursor: default; }
.chosen-disabled .chosen-single {
    cursor: default; }
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
    cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
    text-align: right; }
.chosen-rtl .chosen-single {
    overflow: visible;
    padding: 0 8px 0 0; }
.chosen-rtl .chosen-single span {
    margin-right: 0;
    margin-left: 26px;
    direction: rtl; }
.chosen-rtl .chosen-single-with-deselect span {
    margin-left: 38px; }
.chosen-rtl .chosen-single div {
    right: auto;
    left: 3px; }
.chosen-rtl .chosen-single abbr {
    right: auto;
    left: 26px; }
.chosen-rtl .chosen-choices li {
    float: right; }
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
    direction: rtl; }
.chosen-rtl .chosen-choices li.search-choice {
    margin: 3px 5px 3px 0;
    padding: 3px 5px 3px 19px; }
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
    right: auto;
    left: 4px; }
.chosen-rtl.chosen-container-single .chosen-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0; }
.chosen-rtl .chosen-results li.group-option {
    padding-right: 15px;
    padding-left: 0; }
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
    border-right: none; }
.chosen-rtl .chosen-search input[type="text"] {
    padding: 4px 5px 4px 20px;
    background: url("/images/chosen-sprite.png") no-repeat -30px -20px;
    direction: rtl; }
.chosen-rtl.chosen-container-single .chosen-single div b {
    background-position: 6px 2px; }
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
    background-position: -12px 2px; }

/* @end */
/* @group Retina compatibility */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
    .chosen-rtl .chosen-search input[type="text"],
    .chosen-container-single .chosen-single abbr,
    .chosen-container-single .chosen-single div b,
    .chosen-container-single .chosen-search input[type="text"],
    .chosen-container-multi .chosen-choices .search-choice .search-choice-close,
    .chosen-container .chosen-results-scroll-down span,
    .chosen-container .chosen-results-scroll-up span {
        background-image: url("/images/chosen-sprite@2x.png") !important;
        background-size: 52px 37px !important;
        background-repeat: no-repeat !important; } }

/* @end */
/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
.tooltip-inner {
    border-radius: 0;
    background-color: #FFF0B4;
    border: 1px solid #A88F2A;
    color: #222;
    font-size: 12px; }

.tooltip.in {
    opacity: 1; }

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #A88F2A; }

.tooltip.top .tooltip-arrow {
    border-top-color: #A88F2A; }

.tooltip.right .tooltip-arrow {
    border-right-color: #A88F2A; }

.tooltip.left .tooltip-arrow {
    border-left-color: #A88F2A; }

.tooltip--dark .tooltip-inner {
    background-color: #222325;
    border: 1px solid #222325;
    color: #fff;
    padding: 0.5em; }

.tooltip.tooltip--dark.in {
    opacity: 1; }

.tooltip.tooltip--dark.bottom .tooltip-arrow {
    border-bottom-color: #222325; }

.tooltip.tooltip--dark.top .tooltip-arrow {
    border-top-color: #222325; }

.tooltip.tooltip--dark.right .tooltip-arrow {
    border-right-color: #222325; }

.tooltip.tooltip--dark.left .tooltip-arrow {
    border-left-color: #222325; }

.alert > ul {
    list-style-position: inside; }

[class*="span"].right-align {
    text-align: right; }

[class*="span"].centered {
    text-align: center; }

/* Button overrides
 * Creating our own mixin to allow us to use the button-variant mixin
 * that bootsrap provides.
 * Our additions set hover, active, and disabled states using color variables
 * rather than bootstrap's "darken" and "opacity" methods.
 */
button:not(.btn), input[type="button"]:not(.btn), input[type="submit"]:not(.btn), input[type="reset"]:not(.btn) {
    /* Include the base ".btn" styles from Bootstrap because we've excluded ".btn" */
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* Since we want specific colors for showing disabled state, we need to
   * override the opacity style bootstrap uses for disabled
   */
    padding: 4px 10px;
    font-size: 13px;
    line-height: 1.42857;
    border-radius: 2px;
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */
    /* Create each of the button types */
    /* btn-secondary creates a "glassy" blue button that can be used as an alternate action when there is a btn-primary */ }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn) {
    opacity: 1; }
button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button:active:hover:not(.btn), input[type="button"]:active:hover:not(.btn), input[type="submit"]:active:hover:not(.btn), input[type="reset"]:active:hover:not(.btn), button:active:focus:not(.btn), input[type="button"]:active:focus:not(.btn), input[type="submit"]:active:focus:not(.btn), input[type="reset"]:active:focus:not(.btn), button:active.focus:not(.btn), input[type="button"]:active.focus:not(.btn), input[type="submit"]:active.focus:not(.btn), input[type="reset"]:active.focus:not(.btn), button.active:hover:not(.btn), input.active[type="button"]:hover:not(.btn), input.active[type="submit"]:hover:not(.btn), input.active[type="reset"]:hover:not(.btn), button.active:focus:not(.btn), input.active[type="button"]:focus:not(.btn), input.active[type="submit"]:focus:not(.btn), input.active[type="reset"]:focus:not(.btn), button.active.focus:not(.btn), input.active.focus[type="button"]:not(.btn), input.active.focus[type="submit"]:not(.btn), input.active.focus[type="reset"]:not(.btn),
.open > button.dropdown-toggle:hover:not(.btn),
.open > input.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.dropdown-toggle:focus:not(.btn),
.open > input.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.dropdown-toggle.focus:not(.btn),
.open > input.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn),
.open > button.dropdown-toggle:not(.btn),
.open > input.dropdown-toggle[type="button"]:not(.btn),
.open > input.dropdown-toggle[type="submit"]:not(.btn),
.open > input.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button:not(.btn) .badge, input[type="button"]:not(.btn) .badge, input[type="submit"]:not(.btn) .badge, input[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button:hover:not(.btn), input[type="button"]:hover:not(.btn), input[type="submit"]:hover:not(.btn), input[type="reset"]:hover:not(.btn), button.hover:not(.btn), input.hover[type="button"]:not(.btn), input.hover[type="submit"]:not(.btn), input.hover[type="reset"]:not(.btn), button:focus:not(.btn), input[type="button"]:focus:not(.btn), input[type="submit"]:focus:not(.btn), input[type="reset"]:focus:not(.btn), button.focus:not(.btn), input.focus[type="button"]:not(.btn), input.focus[type="submit"]:not(.btn), input.focus[type="reset"]:not(.btn), button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button:active:not(.btn), input[type="button"]:active:not(.btn), input[type="submit"]:active:not(.btn), input[type="reset"]:active:not(.btn), button.active:not(.btn), input.active[type="button"]:not(.btn), input.active[type="submit"]:not(.btn), input.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.disabled:not(.btn), input.disabled[type="button"]:not(.btn), input.disabled[type="submit"]:not(.btn), input.disabled[type="reset"]:not(.btn), button.disabled:hover:not(.btn), input.disabled[type="button"]:hover:not(.btn), input.disabled[type="submit"]:hover:not(.btn), input.disabled[type="reset"]:hover:not(.btn), button.disabled:focus:not(.btn), input.disabled[type="button"]:focus:not(.btn), input.disabled[type="submit"]:focus:not(.btn), input.disabled[type="reset"]:focus:not(.btn), button.disabled.focus:not(.btn), input.disabled.focus[type="button"]:not(.btn), input.disabled.focus[type="submit"]:not(.btn), input.disabled.focus[type="reset"]:not(.btn), button.disabled:active:not(.btn), input.disabled[type="button"]:active:not(.btn), input.disabled[type="submit"]:active:not(.btn), input.disabled[type="reset"]:active:not(.btn), button.disabled.active:not(.btn), input.disabled.active[type="button"]:not(.btn), input.disabled.active[type="submit"]:not(.btn), input.disabled.active[type="reset"]:not(.btn), button[disabled]:not(.btn), input[disabled][type="button"]:not(.btn), input[disabled][type="submit"]:not(.btn), input[disabled][type="reset"]:not(.btn), button[disabled]:hover:not(.btn), input[disabled][type="button"]:hover:not(.btn), input[disabled][type="submit"]:hover:not(.btn), input[disabled][type="reset"]:hover:not(.btn), button[disabled]:focus:not(.btn), input[disabled][type="button"]:focus:not(.btn), input[disabled][type="submit"]:focus:not(.btn), input[disabled][type="reset"]:focus:not(.btn), button[disabled].focus:not(.btn), input[disabled].focus[type="button"]:not(.btn), input[disabled].focus[type="submit"]:not(.btn), input[disabled].focus[type="reset"]:not(.btn), button[disabled]:active:not(.btn), input[disabled][type="button"]:active:not(.btn), input[disabled][type="submit"]:active:not(.btn), input[disabled][type="reset"]:active:not(.btn), button[disabled].active:not(.btn), input[disabled].active[type="button"]:not(.btn), input[disabled].active[type="submit"]:not(.btn), input[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button:not(.btn),
fieldset[disabled] input[type="button"]:not(.btn),
fieldset[disabled] input[type="submit"]:not(.btn),
fieldset[disabled] input[type="reset"]:not(.btn),
fieldset[disabled] button:hover:not(.btn),
fieldset[disabled] input[type="button"]:hover:not(.btn),
fieldset[disabled] input[type="submit"]:hover:not(.btn),
fieldset[disabled] input[type="reset"]:hover:not(.btn),
fieldset[disabled] button:focus:not(.btn),
fieldset[disabled] input[type="button"]:focus:not(.btn),
fieldset[disabled] input[type="submit"]:focus:not(.btn),
fieldset[disabled] input[type="reset"]:focus:not(.btn),
fieldset[disabled] button.focus:not(.btn),
fieldset[disabled] input.focus[type="button"]:not(.btn),
fieldset[disabled] input.focus[type="submit"]:not(.btn),
fieldset[disabled] input.focus[type="reset"]:not(.btn),
fieldset[disabled] button:active:not(.btn),
fieldset[disabled] input[type="button"]:active:not(.btn),
fieldset[disabled] input[type="submit"]:active:not(.btn),
fieldset[disabled] input[type="reset"]:active:not(.btn),
fieldset[disabled] button.active:not(.btn),
fieldset[disabled] input.active[type="button"]:not(.btn),
fieldset[disabled] input.active[type="submit"]:not(.btn),
fieldset[disabled] input.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-default:not(.btn), input.btn-default[type="button"]:not(.btn), input.btn-default[type="submit"]:not(.btn), input.btn-default[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #FAFAFA;
    border-color: #C5C5C7;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #848488; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #e1e1e1;
    border-color: #a6a6a9; }
button.btn-default:active:hover:not(.btn), input.btn-default[type="button"]:active:hover:not(.btn), input.btn-default[type="submit"]:active:hover:not(.btn), input.btn-default[type="reset"]:active:hover:not(.btn), button.btn-default:active:focus:not(.btn), input.btn-default[type="button"]:active:focus:not(.btn), input.btn-default[type="submit"]:active:focus:not(.btn), input.btn-default[type="reset"]:active:focus:not(.btn), button.btn-default:active.focus:not(.btn), input.btn-default[type="button"]:active.focus:not(.btn), input.btn-default[type="submit"]:active.focus:not(.btn), input.btn-default[type="reset"]:active.focus:not(.btn), button.btn-default.active:hover:not(.btn), input.btn-default.active[type="button"]:hover:not(.btn), input.btn-default.active[type="submit"]:hover:not(.btn), input.btn-default.active[type="reset"]:hover:not(.btn), button.btn-default.active:focus:not(.btn), input.btn-default.active[type="button"]:focus:not(.btn), input.btn-default.active[type="submit"]:focus:not(.btn), input.btn-default.active[type="reset"]:focus:not(.btn), button.btn-default.active.focus:not(.btn), input.btn-default.active.focus[type="button"]:not(.btn), input.btn-default.active.focus[type="submit"]:not(.btn), input.btn-default.active.focus[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-default.dropdown-toggle:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-default.dropdown-toggle.focus:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #cfcfcf;
    border-color: #848488; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn),
.open > button.btn-default.dropdown-toggle:not(.btn),
.open > input.btn-default.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-default.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn) {
    background-color: #FAFAFA;
    border-color: #C5C5C7; }
button.btn-default:not(.btn) .badge, input.btn-default[type="button"]:not(.btn) .badge, input.btn-default[type="submit"]:not(.btn) .badge, input.btn-default[type="reset"]:not(.btn) .badge {
    color: #FAFAFA;
    background-color: #222325; }
button.btn-default:hover:not(.btn), input.btn-default[type="button"]:hover:not(.btn), input.btn-default[type="submit"]:hover:not(.btn), input.btn-default[type="reset"]:hover:not(.btn), button.btn-default.hover:not(.btn), input.btn-default.hover[type="button"]:not(.btn), input.btn-default.hover[type="submit"]:not(.btn), input.btn-default.hover[type="reset"]:not(.btn), button.btn-default:focus:not(.btn), input.btn-default[type="button"]:focus:not(.btn), input.btn-default[type="submit"]:focus:not(.btn), input.btn-default[type="reset"]:focus:not(.btn), button.btn-default.focus:not(.btn), input.btn-default.focus[type="button"]:not(.btn), input.btn-default.focus[type="submit"]:not(.btn), input.btn-default.focus[type="reset"]:not(.btn), button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: #C5C5C7; }
button.btn-default:active:not(.btn), input.btn-default[type="button"]:active:not(.btn), input.btn-default[type="submit"]:active:not(.btn), input.btn-default[type="reset"]:active:not(.btn), button.btn-default.active:not(.btn), input.btn-default.active[type="button"]:not(.btn), input.btn-default.active[type="submit"]:not(.btn), input.btn-default.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-default.disabled:not(.btn), input.btn-default.disabled[type="button"]:not(.btn), input.btn-default.disabled[type="submit"]:not(.btn), input.btn-default.disabled[type="reset"]:not(.btn), button.btn-default.disabled:hover:not(.btn), input.btn-default.disabled[type="button"]:hover:not(.btn), input.btn-default.disabled[type="submit"]:hover:not(.btn), input.btn-default.disabled[type="reset"]:hover:not(.btn), button.btn-default.disabled:focus:not(.btn), input.btn-default.disabled[type="button"]:focus:not(.btn), input.btn-default.disabled[type="submit"]:focus:not(.btn), input.btn-default.disabled[type="reset"]:focus:not(.btn), button.btn-default.disabled.focus:not(.btn), input.btn-default.disabled.focus[type="button"]:not(.btn), input.btn-default.disabled.focus[type="submit"]:not(.btn), input.btn-default.disabled.focus[type="reset"]:not(.btn), button.btn-default.disabled:active:not(.btn), input.btn-default.disabled[type="button"]:active:not(.btn), input.btn-default.disabled[type="submit"]:active:not(.btn), input.btn-default.disabled[type="reset"]:active:not(.btn), button.btn-default.disabled.active:not(.btn), input.btn-default.disabled.active[type="button"]:not(.btn), input.btn-default.disabled.active[type="submit"]:not(.btn), input.btn-default.disabled.active[type="reset"]:not(.btn), button.btn-default[disabled]:not(.btn), input.btn-default[disabled][type="button"]:not(.btn), input.btn-default[disabled][type="submit"]:not(.btn), input.btn-default[disabled][type="reset"]:not(.btn), button.btn-default[disabled]:hover:not(.btn), input.btn-default[disabled][type="button"]:hover:not(.btn), input.btn-default[disabled][type="submit"]:hover:not(.btn), input.btn-default[disabled][type="reset"]:hover:not(.btn), button.btn-default[disabled]:focus:not(.btn), input.btn-default[disabled][type="button"]:focus:not(.btn), input.btn-default[disabled][type="submit"]:focus:not(.btn), input.btn-default[disabled][type="reset"]:focus:not(.btn), button.btn-default[disabled].focus:not(.btn), input.btn-default[disabled].focus[type="button"]:not(.btn), input.btn-default[disabled].focus[type="submit"]:not(.btn), input.btn-default[disabled].focus[type="reset"]:not(.btn), button.btn-default[disabled]:active:not(.btn), input.btn-default[disabled][type="button"]:active:not(.btn), input.btn-default[disabled][type="submit"]:active:not(.btn), input.btn-default[disabled][type="reset"]:active:not(.btn), button.btn-default[disabled].active:not(.btn), input.btn-default[disabled].active[type="button"]:not(.btn), input.btn-default[disabled].active[type="submit"]:not(.btn), input.btn-default[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:hover:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-default:focus:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-default.focus:not(.btn),
fieldset[disabled] input.btn-default.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-default:active:not(.btn),
fieldset[disabled] input.btn-default[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-default[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-default.active:not(.btn),
fieldset[disabled] input.btn-default.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-default.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: #FAFAFA;
    border-color: #DEDFE0; }
button.btn-primary:not(.btn), input.btn-primary[type="button"]:not(.btn), input.btn-primary[type="submit"]:not(.btn), input.btn-primary[type="reset"]:not(.btn) {
    color: white;
    background-color: #1470CC;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #093058; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #0f579e;
    border-color: #0f5194; }
button.btn-primary:active:hover:not(.btn), input.btn-primary[type="button"]:active:hover:not(.btn), input.btn-primary[type="submit"]:active:hover:not(.btn), input.btn-primary[type="reset"]:active:hover:not(.btn), button.btn-primary:active:focus:not(.btn), input.btn-primary[type="button"]:active:focus:not(.btn), input.btn-primary[type="submit"]:active:focus:not(.btn), input.btn-primary[type="reset"]:active:focus:not(.btn), button.btn-primary:active.focus:not(.btn), input.btn-primary[type="button"]:active.focus:not(.btn), input.btn-primary[type="submit"]:active.focus:not(.btn), input.btn-primary[type="reset"]:active.focus:not(.btn), button.btn-primary.active:hover:not(.btn), input.btn-primary.active[type="button"]:hover:not(.btn), input.btn-primary.active[type="submit"]:hover:not(.btn), input.btn-primary.active[type="reset"]:hover:not(.btn), button.btn-primary.active:focus:not(.btn), input.btn-primary.active[type="button"]:focus:not(.btn), input.btn-primary.active[type="submit"]:focus:not(.btn), input.btn-primary.active[type="reset"]:focus:not(.btn), button.btn-primary.active.focus:not(.btn), input.btn-primary.active.focus[type="button"]:not(.btn), input.btn-primary.active.focus[type="submit"]:not(.btn), input.btn-primary.active.focus[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-primary.dropdown-toggle:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-primary.dropdown-toggle.focus:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #0c457d;
    border-color: #093058; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn),
.open > button.btn-primary.dropdown-toggle:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-primary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn) {
    background-color: #1470CC;
    border-color: #1470CC; }
button.btn-primary:not(.btn) .badge, input.btn-primary[type="button"]:not(.btn) .badge, input.btn-primary[type="submit"]:not(.btn) .badge, input.btn-primary[type="reset"]:not(.btn) .badge {
    color: #1470CC;
    background-color: white; }
button.btn-primary:hover:not(.btn), input.btn-primary[type="button"]:hover:not(.btn), input.btn-primary[type="submit"]:hover:not(.btn), input.btn-primary[type="reset"]:hover:not(.btn), button.btn-primary.hover:not(.btn), input.btn-primary.hover[type="button"]:not(.btn), input.btn-primary.hover[type="submit"]:not(.btn), input.btn-primary.hover[type="reset"]:not(.btn), button.btn-primary:focus:not(.btn), input.btn-primary[type="button"]:focus:not(.btn), input.btn-primary[type="submit"]:focus:not(.btn), input.btn-primary[type="reset"]:focus:not(.btn), button.btn-primary.focus:not(.btn), input.btn-primary.focus[type="button"]:not(.btn), input.btn-primary.focus[type="submit"]:not(.btn), input.btn-primary.focus[type="reset"]:not(.btn), button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #0F5499;
    border-color: #0F5499; }
button.btn-primary:active:not(.btn), input.btn-primary[type="button"]:active:not(.btn), input.btn-primary[type="submit"]:active:not(.btn), input.btn-primary[type="reset"]:active:not(.btn), button.btn-primary.active:not(.btn), input.btn-primary.active[type="button"]:not(.btn), input.btn-primary.active[type="submit"]:not(.btn), input.btn-primary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-primary.disabled:not(.btn), input.btn-primary.disabled[type="button"]:not(.btn), input.btn-primary.disabled[type="submit"]:not(.btn), input.btn-primary.disabled[type="reset"]:not(.btn), button.btn-primary.disabled:hover:not(.btn), input.btn-primary.disabled[type="button"]:hover:not(.btn), input.btn-primary.disabled[type="submit"]:hover:not(.btn), input.btn-primary.disabled[type="reset"]:hover:not(.btn), button.btn-primary.disabled:focus:not(.btn), input.btn-primary.disabled[type="button"]:focus:not(.btn), input.btn-primary.disabled[type="submit"]:focus:not(.btn), input.btn-primary.disabled[type="reset"]:focus:not(.btn), button.btn-primary.disabled.focus:not(.btn), input.btn-primary.disabled.focus[type="button"]:not(.btn), input.btn-primary.disabled.focus[type="submit"]:not(.btn), input.btn-primary.disabled.focus[type="reset"]:not(.btn), button.btn-primary.disabled:active:not(.btn), input.btn-primary.disabled[type="button"]:active:not(.btn), input.btn-primary.disabled[type="submit"]:active:not(.btn), input.btn-primary.disabled[type="reset"]:active:not(.btn), button.btn-primary.disabled.active:not(.btn), input.btn-primary.disabled.active[type="button"]:not(.btn), input.btn-primary.disabled.active[type="submit"]:not(.btn), input.btn-primary.disabled.active[type="reset"]:not(.btn), button.btn-primary[disabled]:not(.btn), input.btn-primary[disabled][type="button"]:not(.btn), input.btn-primary[disabled][type="submit"]:not(.btn), input.btn-primary[disabled][type="reset"]:not(.btn), button.btn-primary[disabled]:hover:not(.btn), input.btn-primary[disabled][type="button"]:hover:not(.btn), input.btn-primary[disabled][type="submit"]:hover:not(.btn), input.btn-primary[disabled][type="reset"]:hover:not(.btn), button.btn-primary[disabled]:focus:not(.btn), input.btn-primary[disabled][type="button"]:focus:not(.btn), input.btn-primary[disabled][type="submit"]:focus:not(.btn), input.btn-primary[disabled][type="reset"]:focus:not(.btn), button.btn-primary[disabled].focus:not(.btn), input.btn-primary[disabled].focus[type="button"]:not(.btn), input.btn-primary[disabled].focus[type="submit"]:not(.btn), input.btn-primary[disabled].focus[type="reset"]:not(.btn), button.btn-primary[disabled]:active:not(.btn), input.btn-primary[disabled][type="button"]:active:not(.btn), input.btn-primary[disabled][type="submit"]:active:not(.btn), input.btn-primary[disabled][type="reset"]:active:not(.btn), button.btn-primary[disabled].active:not(.btn), input.btn-primary[disabled].active[type="button"]:not(.btn), input.btn-primary[disabled].active[type="submit"]:not(.btn), input.btn-primary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-primary:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-primary.focus:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-primary:active:not(.btn),
fieldset[disabled] input.btn-primary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-primary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-primary.active:not(.btn),
fieldset[disabled] input.btn-primary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-primary.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #AACEF2;
    border-color: #AACEF2; }
button.btn-secondary:not(.btn), input.btn-secondary[type="button"]:not(.btn), input.btn-secondary[type="submit"]:not(.btn), input.btn-secondary[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #F1F7FD;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #093058; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #c4def7;
    border-color: #0f5194; }
button.btn-secondary:active:hover:not(.btn), input.btn-secondary[type="button"]:active:hover:not(.btn), input.btn-secondary[type="submit"]:active:hover:not(.btn), input.btn-secondary[type="reset"]:active:hover:not(.btn), button.btn-secondary:active:focus:not(.btn), input.btn-secondary[type="button"]:active:focus:not(.btn), input.btn-secondary[type="submit"]:active:focus:not(.btn), input.btn-secondary[type="reset"]:active:focus:not(.btn), button.btn-secondary:active.focus:not(.btn), input.btn-secondary[type="button"]:active.focus:not(.btn), input.btn-secondary[type="submit"]:active.focus:not(.btn), input.btn-secondary[type="reset"]:active.focus:not(.btn), button.btn-secondary.active:hover:not(.btn), input.btn-secondary.active[type="button"]:hover:not(.btn), input.btn-secondary.active[type="submit"]:hover:not(.btn), input.btn-secondary.active[type="reset"]:hover:not(.btn), button.btn-secondary.active:focus:not(.btn), input.btn-secondary.active[type="button"]:focus:not(.btn), input.btn-secondary.active[type="submit"]:focus:not(.btn), input.btn-secondary.active[type="reset"]:focus:not(.btn), button.btn-secondary.active.focus:not(.btn), input.btn-secondary.active.focus[type="button"]:not(.btn), input.btn-secondary.active.focus[type="submit"]:not(.btn), input.btn-secondary.active.focus[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-secondary.dropdown-toggle:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-secondary.dropdown-toggle.focus:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #a5ccf2;
    border-color: #093058; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn),
.open > button.btn-secondary.dropdown-toggle:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-secondary.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn) {
    background-color: #F1F7FD;
    border-color: #1470CC; }
button.btn-secondary:not(.btn) .badge, input.btn-secondary[type="button"]:not(.btn) .badge, input.btn-secondary[type="submit"]:not(.btn) .badge, input.btn-secondary[type="reset"]:not(.btn) .badge {
    color: #F1F7FD;
    background-color: #1470CC; }
button.btn-secondary:hover:not(.btn), input.btn-secondary[type="button"]:hover:not(.btn), input.btn-secondary[type="submit"]:hover:not(.btn), input.btn-secondary[type="reset"]:hover:not(.btn), button.btn-secondary.hover:not(.btn), input.btn-secondary.hover[type="button"]:not(.btn), input.btn-secondary.hover[type="submit"]:not(.btn), input.btn-secondary.hover[type="reset"]:not(.btn), button.btn-secondary:focus:not(.btn), input.btn-secondary[type="button"]:focus:not(.btn), input.btn-secondary[type="submit"]:focus:not(.btn), input.btn-secondary[type="reset"]:focus:not(.btn), button.btn-secondary.focus:not(.btn), input.btn-secondary.focus[type="button"]:not(.btn), input.btn-secondary.focus[type="submit"]:not(.btn), input.btn-secondary.focus[type="reset"]:not(.btn), button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-secondary:active:not(.btn), input.btn-secondary[type="button"]:active:not(.btn), input.btn-secondary[type="submit"]:active:not(.btn), input.btn-secondary[type="reset"]:active:not(.btn), button.btn-secondary.active:not(.btn), input.btn-secondary.active[type="button"]:not(.btn), input.btn-secondary.active[type="submit"]:not(.btn), input.btn-secondary.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-secondary.disabled:not(.btn), input.btn-secondary.disabled[type="button"]:not(.btn), input.btn-secondary.disabled[type="submit"]:not(.btn), input.btn-secondary.disabled[type="reset"]:not(.btn), button.btn-secondary.disabled:hover:not(.btn), input.btn-secondary.disabled[type="button"]:hover:not(.btn), input.btn-secondary.disabled[type="submit"]:hover:not(.btn), input.btn-secondary.disabled[type="reset"]:hover:not(.btn), button.btn-secondary.disabled:focus:not(.btn), input.btn-secondary.disabled[type="button"]:focus:not(.btn), input.btn-secondary.disabled[type="submit"]:focus:not(.btn), input.btn-secondary.disabled[type="reset"]:focus:not(.btn), button.btn-secondary.disabled.focus:not(.btn), input.btn-secondary.disabled.focus[type="button"]:not(.btn), input.btn-secondary.disabled.focus[type="submit"]:not(.btn), input.btn-secondary.disabled.focus[type="reset"]:not(.btn), button.btn-secondary.disabled:active:not(.btn), input.btn-secondary.disabled[type="button"]:active:not(.btn), input.btn-secondary.disabled[type="submit"]:active:not(.btn), input.btn-secondary.disabled[type="reset"]:active:not(.btn), button.btn-secondary.disabled.active:not(.btn), input.btn-secondary.disabled.active[type="button"]:not(.btn), input.btn-secondary.disabled.active[type="submit"]:not(.btn), input.btn-secondary.disabled.active[type="reset"]:not(.btn), button.btn-secondary[disabled]:not(.btn), input.btn-secondary[disabled][type="button"]:not(.btn), input.btn-secondary[disabled][type="submit"]:not(.btn), input.btn-secondary[disabled][type="reset"]:not(.btn), button.btn-secondary[disabled]:hover:not(.btn), input.btn-secondary[disabled][type="button"]:hover:not(.btn), input.btn-secondary[disabled][type="submit"]:hover:not(.btn), input.btn-secondary[disabled][type="reset"]:hover:not(.btn), button.btn-secondary[disabled]:focus:not(.btn), input.btn-secondary[disabled][type="button"]:focus:not(.btn), input.btn-secondary[disabled][type="submit"]:focus:not(.btn), input.btn-secondary[disabled][type="reset"]:focus:not(.btn), button.btn-secondary[disabled].focus:not(.btn), input.btn-secondary[disabled].focus[type="button"]:not(.btn), input.btn-secondary[disabled].focus[type="submit"]:not(.btn), input.btn-secondary[disabled].focus[type="reset"]:not(.btn), button.btn-secondary[disabled]:active:not(.btn), input.btn-secondary[disabled][type="button"]:active:not(.btn), input.btn-secondary[disabled][type="submit"]:active:not(.btn), input.btn-secondary[disabled][type="reset"]:active:not(.btn), button.btn-secondary[disabled].active:not(.btn), input.btn-secondary[disabled].active[type="button"]:not(.btn), input.btn-secondary[disabled].active[type="submit"]:not(.btn), input.btn-secondary[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-secondary:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-secondary.focus:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-secondary:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-secondary[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-secondary.active:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-secondary.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-success:not(.btn), input.btn-success[type="button"]:not(.btn), input.btn-success[type="submit"]:not(.btn), input.btn-success[type="reset"]:not(.btn) {
    color: white;
    background-color: #67B346;
    border-color: #67B346;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #325722; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #528e38;
    border-color: #4e8735; }
button.btn-success:active:hover:not(.btn), input.btn-success[type="button"]:active:hover:not(.btn), input.btn-success[type="submit"]:active:hover:not(.btn), input.btn-success[type="reset"]:active:hover:not(.btn), button.btn-success:active:focus:not(.btn), input.btn-success[type="button"]:active:focus:not(.btn), input.btn-success[type="submit"]:active:focus:not(.btn), input.btn-success[type="reset"]:active:focus:not(.btn), button.btn-success:active.focus:not(.btn), input.btn-success[type="button"]:active.focus:not(.btn), input.btn-success[type="submit"]:active.focus:not(.btn), input.btn-success[type="reset"]:active.focus:not(.btn), button.btn-success.active:hover:not(.btn), input.btn-success.active[type="button"]:hover:not(.btn), input.btn-success.active[type="submit"]:hover:not(.btn), input.btn-success.active[type="reset"]:hover:not(.btn), button.btn-success.active:focus:not(.btn), input.btn-success.active[type="button"]:focus:not(.btn), input.btn-success.active[type="submit"]:focus:not(.btn), input.btn-success.active[type="reset"]:focus:not(.btn), button.btn-success.active.focus:not(.btn), input.btn-success.active.focus[type="button"]:not(.btn), input.btn-success.active.focus[type="submit"]:not(.btn), input.btn-success.active.focus[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-success.dropdown-toggle:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-success.dropdown-toggle.focus:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #43752e;
    border-color: #325722; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn),
.open > button.btn-success.dropdown-toggle:not(.btn),
.open > input.btn-success.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-success.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn) {
    background-color: #67B346;
    border-color: #67B346; }
button.btn-success:not(.btn) .badge, input.btn-success[type="button"]:not(.btn) .badge, input.btn-success[type="submit"]:not(.btn) .badge, input.btn-success[type="reset"]:not(.btn) .badge {
    color: #67B346;
    background-color: white; }
button.btn-success:hover:not(.btn), input.btn-success[type="button"]:hover:not(.btn), input.btn-success[type="submit"]:hover:not(.btn), input.btn-success[type="reset"]:hover:not(.btn), button.btn-success.hover:not(.btn), input.btn-success.hover[type="button"]:not(.btn), input.btn-success.hover[type="submit"]:not(.btn), input.btn-success.hover[type="reset"]:not(.btn), button.btn-success:focus:not(.btn), input.btn-success[type="button"]:focus:not(.btn), input.btn-success[type="submit"]:focus:not(.btn), input.btn-success[type="reset"]:focus:not(.btn), button.btn-success.focus:not(.btn), input.btn-success.focus[type="button"]:not(.btn), input.btn-success.focus[type="submit"]:not(.btn), input.btn-success.focus[type="reset"]:not(.btn), button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #42732D;
    border-color: #42732D; }
button.btn-success:active:not(.btn), input.btn-success[type="button"]:active:not(.btn), input.btn-success[type="submit"]:active:not(.btn), input.btn-success[type="reset"]:active:not(.btn), button.btn-success.active:not(.btn), input.btn-success.active[type="button"]:not(.btn), input.btn-success.active[type="submit"]:not(.btn), input.btn-success.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-success.disabled:not(.btn), input.btn-success.disabled[type="button"]:not(.btn), input.btn-success.disabled[type="submit"]:not(.btn), input.btn-success.disabled[type="reset"]:not(.btn), button.btn-success.disabled:hover:not(.btn), input.btn-success.disabled[type="button"]:hover:not(.btn), input.btn-success.disabled[type="submit"]:hover:not(.btn), input.btn-success.disabled[type="reset"]:hover:not(.btn), button.btn-success.disabled:focus:not(.btn), input.btn-success.disabled[type="button"]:focus:not(.btn), input.btn-success.disabled[type="submit"]:focus:not(.btn), input.btn-success.disabled[type="reset"]:focus:not(.btn), button.btn-success.disabled.focus:not(.btn), input.btn-success.disabled.focus[type="button"]:not(.btn), input.btn-success.disabled.focus[type="submit"]:not(.btn), input.btn-success.disabled.focus[type="reset"]:not(.btn), button.btn-success.disabled:active:not(.btn), input.btn-success.disabled[type="button"]:active:not(.btn), input.btn-success.disabled[type="submit"]:active:not(.btn), input.btn-success.disabled[type="reset"]:active:not(.btn), button.btn-success.disabled.active:not(.btn), input.btn-success.disabled.active[type="button"]:not(.btn), input.btn-success.disabled.active[type="submit"]:not(.btn), input.btn-success.disabled.active[type="reset"]:not(.btn), button.btn-success[disabled]:not(.btn), input.btn-success[disabled][type="button"]:not(.btn), input.btn-success[disabled][type="submit"]:not(.btn), input.btn-success[disabled][type="reset"]:not(.btn), button.btn-success[disabled]:hover:not(.btn), input.btn-success[disabled][type="button"]:hover:not(.btn), input.btn-success[disabled][type="submit"]:hover:not(.btn), input.btn-success[disabled][type="reset"]:hover:not(.btn), button.btn-success[disabled]:focus:not(.btn), input.btn-success[disabled][type="button"]:focus:not(.btn), input.btn-success[disabled][type="submit"]:focus:not(.btn), input.btn-success[disabled][type="reset"]:focus:not(.btn), button.btn-success[disabled].focus:not(.btn), input.btn-success[disabled].focus[type="button"]:not(.btn), input.btn-success[disabled].focus[type="submit"]:not(.btn), input.btn-success[disabled].focus[type="reset"]:not(.btn), button.btn-success[disabled]:active:not(.btn), input.btn-success[disabled][type="button"]:active:not(.btn), input.btn-success[disabled][type="submit"]:active:not(.btn), input.btn-success[disabled][type="reset"]:active:not(.btn), button.btn-success[disabled].active:not(.btn), input.btn-success[disabled].active[type="button"]:not(.btn), input.btn-success[disabled].active[type="submit"]:not(.btn), input.btn-success[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:hover:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-success:focus:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-success.focus:not(.btn),
fieldset[disabled] input.btn-success.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-success:active:not(.btn),
fieldset[disabled] input.btn-success[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-success[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-success.active:not(.btn),
fieldset[disabled] input.btn-success.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-success.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #9ED188;
    border-color: #9ED188; }
button.btn-info:not(.btn), input.btn-info[type="button"]:not(.btn), input.btn-info[type="submit"]:not(.btn), input.btn-info[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: white;
    border-color: #1470CC;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #093058; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #e6e6e6;
    border-color: #0f5194; }
button.btn-info:active:hover:not(.btn), input.btn-info[type="button"]:active:hover:not(.btn), input.btn-info[type="submit"]:active:hover:not(.btn), input.btn-info[type="reset"]:active:hover:not(.btn), button.btn-info:active:focus:not(.btn), input.btn-info[type="button"]:active:focus:not(.btn), input.btn-info[type="submit"]:active:focus:not(.btn), input.btn-info[type="reset"]:active:focus:not(.btn), button.btn-info:active.focus:not(.btn), input.btn-info[type="button"]:active.focus:not(.btn), input.btn-info[type="submit"]:active.focus:not(.btn), input.btn-info[type="reset"]:active.focus:not(.btn), button.btn-info.active:hover:not(.btn), input.btn-info.active[type="button"]:hover:not(.btn), input.btn-info.active[type="submit"]:hover:not(.btn), input.btn-info.active[type="reset"]:hover:not(.btn), button.btn-info.active:focus:not(.btn), input.btn-info.active[type="button"]:focus:not(.btn), input.btn-info.active[type="submit"]:focus:not(.btn), input.btn-info.active[type="reset"]:focus:not(.btn), button.btn-info.active.focus:not(.btn), input.btn-info.active.focus[type="button"]:not(.btn), input.btn-info.active.focus[type="submit"]:not(.btn), input.btn-info.active.focus[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-info.dropdown-toggle:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-info.dropdown-toggle.focus:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #1470CC;
    background-color: #d4d4d4;
    border-color: #093058; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn),
.open > button.btn-info.dropdown-toggle:not(.btn),
.open > input.btn-info.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-info.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #1470CC; }
button.btn-info:not(.btn) .badge, input.btn-info[type="button"]:not(.btn) .badge, input.btn-info[type="submit"]:not(.btn) .badge, input.btn-info[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #1470CC; }
button.btn-info:hover:not(.btn), input.btn-info[type="button"]:hover:not(.btn), input.btn-info[type="submit"]:hover:not(.btn), input.btn-info[type="reset"]:hover:not(.btn), button.btn-info.hover:not(.btn), input.btn-info.hover[type="button"]:not(.btn), input.btn-info.hover[type="submit"]:not(.btn), input.btn-info.hover[type="reset"]:not(.btn), button.btn-info:focus:not(.btn), input.btn-info[type="button"]:focus:not(.btn), input.btn-info[type="submit"]:focus:not(.btn), input.btn-info[type="reset"]:focus:not(.btn), button.btn-info.focus:not(.btn), input.btn-info.focus[type="button"]:not(.btn), input.btn-info.focus[type="submit"]:not(.btn), input.btn-info.focus[type="reset"]:not(.btn), button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    color: #0F5499;
    background-color: #F1F7FD;
    border-color: #0F5499; }
button.btn-info:active:not(.btn), input.btn-info[type="button"]:active:not(.btn), input.btn-info[type="submit"]:active:not(.btn), input.btn-info[type="reset"]:active:not(.btn), button.btn-info.active:not(.btn), input.btn-info.active[type="button"]:not(.btn), input.btn-info.active[type="submit"]:not(.btn), input.btn-info.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-info.disabled:not(.btn), input.btn-info.disabled[type="button"]:not(.btn), input.btn-info.disabled[type="submit"]:not(.btn), input.btn-info.disabled[type="reset"]:not(.btn), button.btn-info.disabled:hover:not(.btn), input.btn-info.disabled[type="button"]:hover:not(.btn), input.btn-info.disabled[type="submit"]:hover:not(.btn), input.btn-info.disabled[type="reset"]:hover:not(.btn), button.btn-info.disabled:focus:not(.btn), input.btn-info.disabled[type="button"]:focus:not(.btn), input.btn-info.disabled[type="submit"]:focus:not(.btn), input.btn-info.disabled[type="reset"]:focus:not(.btn), button.btn-info.disabled.focus:not(.btn), input.btn-info.disabled.focus[type="button"]:not(.btn), input.btn-info.disabled.focus[type="submit"]:not(.btn), input.btn-info.disabled.focus[type="reset"]:not(.btn), button.btn-info.disabled:active:not(.btn), input.btn-info.disabled[type="button"]:active:not(.btn), input.btn-info.disabled[type="submit"]:active:not(.btn), input.btn-info.disabled[type="reset"]:active:not(.btn), button.btn-info.disabled.active:not(.btn), input.btn-info.disabled.active[type="button"]:not(.btn), input.btn-info.disabled.active[type="submit"]:not(.btn), input.btn-info.disabled.active[type="reset"]:not(.btn), button.btn-info[disabled]:not(.btn), input.btn-info[disabled][type="button"]:not(.btn), input.btn-info[disabled][type="submit"]:not(.btn), input.btn-info[disabled][type="reset"]:not(.btn), button.btn-info[disabled]:hover:not(.btn), input.btn-info[disabled][type="button"]:hover:not(.btn), input.btn-info[disabled][type="submit"]:hover:not(.btn), input.btn-info[disabled][type="reset"]:hover:not(.btn), button.btn-info[disabled]:focus:not(.btn), input.btn-info[disabled][type="button"]:focus:not(.btn), input.btn-info[disabled][type="submit"]:focus:not(.btn), input.btn-info[disabled][type="reset"]:focus:not(.btn), button.btn-info[disabled].focus:not(.btn), input.btn-info[disabled].focus[type="button"]:not(.btn), input.btn-info[disabled].focus[type="submit"]:not(.btn), input.btn-info[disabled].focus[type="reset"]:not(.btn), button.btn-info[disabled]:active:not(.btn), input.btn-info[disabled][type="button"]:active:not(.btn), input.btn-info[disabled][type="submit"]:active:not(.btn), input.btn-info[disabled][type="reset"]:active:not(.btn), button.btn-info[disabled].active:not(.btn), input.btn-info[disabled].active[type="button"]:not(.btn), input.btn-info[disabled].active[type="submit"]:not(.btn), input.btn-info[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:hover:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-info:focus:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-info.focus:not(.btn),
fieldset[disabled] input.btn-info.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-info:active:not(.btn),
fieldset[disabled] input.btn-info[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-info[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-info.active:not(.btn),
fieldset[disabled] input.btn-info.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-info.active[type="reset"]:not(.btn) {
    color: #AACEF2;
    background-color: white;
    border-color: #AACEF2; }
button.btn-warning:not(.btn), input.btn-warning[type="button"]:not(.btn), input.btn-warning[type="submit"]:not(.btn), input.btn-warning[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: white;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #852410; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #e6e6e6;
    border-color: #c03317; }
button.btn-warning:active:hover:not(.btn), input.btn-warning[type="button"]:active:hover:not(.btn), input.btn-warning[type="submit"]:active:hover:not(.btn), input.btn-warning[type="reset"]:active:hover:not(.btn), button.btn-warning:active:focus:not(.btn), input.btn-warning[type="button"]:active:focus:not(.btn), input.btn-warning[type="submit"]:active:focus:not(.btn), input.btn-warning[type="reset"]:active:focus:not(.btn), button.btn-warning:active.focus:not(.btn), input.btn-warning[type="button"]:active.focus:not(.btn), input.btn-warning[type="submit"]:active.focus:not(.btn), input.btn-warning[type="reset"]:active.focus:not(.btn), button.btn-warning.active:hover:not(.btn), input.btn-warning.active[type="button"]:hover:not(.btn), input.btn-warning.active[type="submit"]:hover:not(.btn), input.btn-warning.active[type="reset"]:hover:not(.btn), button.btn-warning.active:focus:not(.btn), input.btn-warning.active[type="button"]:focus:not(.btn), input.btn-warning.active[type="submit"]:focus:not(.btn), input.btn-warning.active[type="reset"]:focus:not(.btn), button.btn-warning.active.focus:not(.btn), input.btn-warning.active.focus[type="button"]:not(.btn), input.btn-warning.active.focus[type="submit"]:not(.btn), input.btn-warning.active.focus[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-warning.dropdown-toggle:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-warning.dropdown-toggle.focus:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #E64D2E;
    background-color: #d4d4d4;
    border-color: #852410; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn),
.open > button.btn-warning.dropdown-toggle:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-warning.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn) {
    background-color: white;
    border-color: #E64D2E; }
button.btn-warning:not(.btn) .badge, input.btn-warning[type="button"]:not(.btn) .badge, input.btn-warning[type="submit"]:not(.btn) .badge, input.btn-warning[type="reset"]:not(.btn) .badge {
    color: white;
    background-color: #E64D2E; }
button.btn-warning:hover:not(.btn), input.btn-warning[type="button"]:hover:not(.btn), input.btn-warning[type="submit"]:hover:not(.btn), input.btn-warning[type="reset"]:hover:not(.btn), button.btn-warning.hover:not(.btn), input.btn-warning.hover[type="button"]:not(.btn), input.btn-warning.hover[type="submit"]:not(.btn), input.btn-warning.hover[type="reset"]:not(.btn), button.btn-warning:focus:not(.btn), input.btn-warning[type="button"]:focus:not(.btn), input.btn-warning[type="submit"]:focus:not(.btn), input.btn-warning[type="reset"]:focus:not(.btn), button.btn-warning.focus:not(.btn), input.btn-warning.focus[type="button"]:not(.btn), input.btn-warning.focus[type="submit"]:not(.btn), input.btn-warning.focus[type="reset"]:not(.btn), button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    color: #C7290A;
    background-color: #FAE1DC;
    border-color: #C7290A; }
button.btn-warning:active:not(.btn), input.btn-warning[type="button"]:active:not(.btn), input.btn-warning[type="submit"]:active:not(.btn), input.btn-warning[type="reset"]:active:not(.btn), button.btn-warning.active:not(.btn), input.btn-warning.active[type="button"]:not(.btn), input.btn-warning.active[type="submit"]:not(.btn), input.btn-warning.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-warning.disabled:not(.btn), input.btn-warning.disabled[type="button"]:not(.btn), input.btn-warning.disabled[type="submit"]:not(.btn), input.btn-warning.disabled[type="reset"]:not(.btn), button.btn-warning.disabled:hover:not(.btn), input.btn-warning.disabled[type="button"]:hover:not(.btn), input.btn-warning.disabled[type="submit"]:hover:not(.btn), input.btn-warning.disabled[type="reset"]:hover:not(.btn), button.btn-warning.disabled:focus:not(.btn), input.btn-warning.disabled[type="button"]:focus:not(.btn), input.btn-warning.disabled[type="submit"]:focus:not(.btn), input.btn-warning.disabled[type="reset"]:focus:not(.btn), button.btn-warning.disabled.focus:not(.btn), input.btn-warning.disabled.focus[type="button"]:not(.btn), input.btn-warning.disabled.focus[type="submit"]:not(.btn), input.btn-warning.disabled.focus[type="reset"]:not(.btn), button.btn-warning.disabled:active:not(.btn), input.btn-warning.disabled[type="button"]:active:not(.btn), input.btn-warning.disabled[type="submit"]:active:not(.btn), input.btn-warning.disabled[type="reset"]:active:not(.btn), button.btn-warning.disabled.active:not(.btn), input.btn-warning.disabled.active[type="button"]:not(.btn), input.btn-warning.disabled.active[type="submit"]:not(.btn), input.btn-warning.disabled.active[type="reset"]:not(.btn), button.btn-warning[disabled]:not(.btn), input.btn-warning[disabled][type="button"]:not(.btn), input.btn-warning[disabled][type="submit"]:not(.btn), input.btn-warning[disabled][type="reset"]:not(.btn), button.btn-warning[disabled]:hover:not(.btn), input.btn-warning[disabled][type="button"]:hover:not(.btn), input.btn-warning[disabled][type="submit"]:hover:not(.btn), input.btn-warning[disabled][type="reset"]:hover:not(.btn), button.btn-warning[disabled]:focus:not(.btn), input.btn-warning[disabled][type="button"]:focus:not(.btn), input.btn-warning[disabled][type="submit"]:focus:not(.btn), input.btn-warning[disabled][type="reset"]:focus:not(.btn), button.btn-warning[disabled].focus:not(.btn), input.btn-warning[disabled].focus[type="button"]:not(.btn), input.btn-warning[disabled].focus[type="submit"]:not(.btn), input.btn-warning[disabled].focus[type="reset"]:not(.btn), button.btn-warning[disabled]:active:not(.btn), input.btn-warning[disabled][type="button"]:active:not(.btn), input.btn-warning[disabled][type="submit"]:active:not(.btn), input.btn-warning[disabled][type="reset"]:active:not(.btn), button.btn-warning[disabled].active:not(.btn), input.btn-warning[disabled].active[type="button"]:not(.btn), input.btn-warning[disabled].active[type="submit"]:not(.btn), input.btn-warning[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-warning:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-warning.focus:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-warning:active:not(.btn),
fieldset[disabled] input.btn-warning[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-warning[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-warning.active:not(.btn),
fieldset[disabled] input.btn-warning.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-warning.active[type="reset"]:not(.btn) {
    color: #F7A894;
    background-color: white;
    border-color: #F7A894; }
button.btn-danger:not(.btn), input.btn-danger[type="button"]:not(.btn), input.btn-danger[type="submit"]:not(.btn), input.btn-danger[type="reset"]:not(.btn) {
    color: white;
    background-color: #E64D2E;
    border-color: #E64D2E;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #852410; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    color: white;
    background-color: #c93618;
    border-color: #c03317; }
button.btn-danger:active:hover:not(.btn), input.btn-danger[type="button"]:active:hover:not(.btn), input.btn-danger[type="submit"]:active:hover:not(.btn), input.btn-danger[type="reset"]:active:hover:not(.btn), button.btn-danger:active:focus:not(.btn), input.btn-danger[type="button"]:active:focus:not(.btn), input.btn-danger[type="submit"]:active:focus:not(.btn), input.btn-danger[type="reset"]:active:focus:not(.btn), button.btn-danger:active.focus:not(.btn), input.btn-danger[type="button"]:active.focus:not(.btn), input.btn-danger[type="submit"]:active.focus:not(.btn), input.btn-danger[type="reset"]:active.focus:not(.btn), button.btn-danger.active:hover:not(.btn), input.btn-danger.active[type="button"]:hover:not(.btn), input.btn-danger.active[type="submit"]:hover:not(.btn), input.btn-danger.active[type="reset"]:hover:not(.btn), button.btn-danger.active:focus:not(.btn), input.btn-danger.active[type="button"]:focus:not(.btn), input.btn-danger.active[type="submit"]:focus:not(.btn), input.btn-danger.active[type="reset"]:focus:not(.btn), button.btn-danger.active.focus:not(.btn), input.btn-danger.active.focus[type="button"]:not(.btn), input.btn-danger.active.focus[type="submit"]:not(.btn), input.btn-danger.active.focus[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-danger.dropdown-toggle:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-danger.dropdown-toggle.focus:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: white;
    background-color: #a92d14;
    border-color: #852410; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn),
.open > button.btn-danger.dropdown-toggle:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-danger.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn) {
    background-color: #E64D2E;
    border-color: #E64D2E; }
button.btn-danger:not(.btn) .badge, input.btn-danger[type="button"]:not(.btn) .badge, input.btn-danger[type="submit"]:not(.btn) .badge, input.btn-danger[type="reset"]:not(.btn) .badge {
    color: #E64D2E;
    background-color: white; }
button.btn-danger:hover:not(.btn), input.btn-danger[type="button"]:hover:not(.btn), input.btn-danger[type="submit"]:hover:not(.btn), input.btn-danger[type="reset"]:hover:not(.btn), button.btn-danger.hover:not(.btn), input.btn-danger.hover[type="button"]:not(.btn), input.btn-danger.hover[type="submit"]:not(.btn), input.btn-danger.hover[type="reset"]:not(.btn), button.btn-danger:focus:not(.btn), input.btn-danger[type="button"]:focus:not(.btn), input.btn-danger[type="submit"]:focus:not(.btn), input.btn-danger[type="reset"]:focus:not(.btn), button.btn-danger.focus:not(.btn), input.btn-danger.focus[type="button"]:not(.btn), input.btn-danger.focus[type="submit"]:not(.btn), input.btn-danger.focus[type="reset"]:not(.btn), button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #C7290A;
    border-color: #C7290A; }
button.btn-danger:active:not(.btn), input.btn-danger[type="button"]:active:not(.btn), input.btn-danger[type="submit"]:active:not(.btn), input.btn-danger[type="reset"]:active:not(.btn), button.btn-danger.active:not(.btn), input.btn-danger.active[type="button"]:not(.btn), input.btn-danger.active[type="submit"]:not(.btn), input.btn-danger.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-danger.disabled:not(.btn), input.btn-danger.disabled[type="button"]:not(.btn), input.btn-danger.disabled[type="submit"]:not(.btn), input.btn-danger.disabled[type="reset"]:not(.btn), button.btn-danger.disabled:hover:not(.btn), input.btn-danger.disabled[type="button"]:hover:not(.btn), input.btn-danger.disabled[type="submit"]:hover:not(.btn), input.btn-danger.disabled[type="reset"]:hover:not(.btn), button.btn-danger.disabled:focus:not(.btn), input.btn-danger.disabled[type="button"]:focus:not(.btn), input.btn-danger.disabled[type="submit"]:focus:not(.btn), input.btn-danger.disabled[type="reset"]:focus:not(.btn), button.btn-danger.disabled.focus:not(.btn), input.btn-danger.disabled.focus[type="button"]:not(.btn), input.btn-danger.disabled.focus[type="submit"]:not(.btn), input.btn-danger.disabled.focus[type="reset"]:not(.btn), button.btn-danger.disabled:active:not(.btn), input.btn-danger.disabled[type="button"]:active:not(.btn), input.btn-danger.disabled[type="submit"]:active:not(.btn), input.btn-danger.disabled[type="reset"]:active:not(.btn), button.btn-danger.disabled.active:not(.btn), input.btn-danger.disabled.active[type="button"]:not(.btn), input.btn-danger.disabled.active[type="submit"]:not(.btn), input.btn-danger.disabled.active[type="reset"]:not(.btn), button.btn-danger[disabled]:not(.btn), input.btn-danger[disabled][type="button"]:not(.btn), input.btn-danger[disabled][type="submit"]:not(.btn), input.btn-danger[disabled][type="reset"]:not(.btn), button.btn-danger[disabled]:hover:not(.btn), input.btn-danger[disabled][type="button"]:hover:not(.btn), input.btn-danger[disabled][type="submit"]:hover:not(.btn), input.btn-danger[disabled][type="reset"]:hover:not(.btn), button.btn-danger[disabled]:focus:not(.btn), input.btn-danger[disabled][type="button"]:focus:not(.btn), input.btn-danger[disabled][type="submit"]:focus:not(.btn), input.btn-danger[disabled][type="reset"]:focus:not(.btn), button.btn-danger[disabled].focus:not(.btn), input.btn-danger[disabled].focus[type="button"]:not(.btn), input.btn-danger[disabled].focus[type="submit"]:not(.btn), input.btn-danger[disabled].focus[type="reset"]:not(.btn), button.btn-danger[disabled]:active:not(.btn), input.btn-danger[disabled][type="button"]:active:not(.btn), input.btn-danger[disabled][type="submit"]:active:not(.btn), input.btn-danger[disabled][type="reset"]:active:not(.btn), button.btn-danger[disabled].active:not(.btn), input.btn-danger[disabled].active[type="button"]:not(.btn), input.btn-danger[disabled].active[type="submit"]:not(.btn), input.btn-danger[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-danger:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-danger.focus:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-danger:active:not(.btn),
fieldset[disabled] input.btn-danger[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-danger[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-danger.active:not(.btn),
fieldset[disabled] input.btn-danger.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-danger.active[type="reset"]:not(.btn) {
    color: white;
    background-color: #F7A894;
    border-color: #F7A894; }
button.btn-subtle:not(.btn), input.btn-subtle[type="button"]:not(.btn), input.btn-subtle[type="submit"]:not(.btn), input.btn-subtle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent;
    /* Hover, focus, active color styling */
    /* Active inset shadow */
    /* Disabled styles
   * The nesting here is taken from how bootstrap does it, sorry for the poor readability
   */ }
button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:hover:not(.btn), input.btn-subtle[type="button"]:active:hover:not(.btn), input.btn-subtle[type="submit"]:active:hover:not(.btn), input.btn-subtle[type="reset"]:active:hover:not(.btn), button.btn-subtle:active:focus:not(.btn), input.btn-subtle[type="button"]:active:focus:not(.btn), input.btn-subtle[type="submit"]:active:focus:not(.btn), input.btn-subtle[type="reset"]:active:focus:not(.btn), button.btn-subtle:active.focus:not(.btn), input.btn-subtle[type="button"]:active.focus:not(.btn), input.btn-subtle[type="submit"]:active.focus:not(.btn), input.btn-subtle[type="reset"]:active.focus:not(.btn), button.btn-subtle.active:hover:not(.btn), input.btn-subtle.active[type="button"]:hover:not(.btn), input.btn-subtle.active[type="submit"]:hover:not(.btn), input.btn-subtle.active[type="reset"]:hover:not(.btn), button.btn-subtle.active:focus:not(.btn), input.btn-subtle.active[type="button"]:focus:not(.btn), input.btn-subtle.active[type="submit"]:focus:not(.btn), input.btn-subtle.active[type="reset"]:focus:not(.btn), button.btn-subtle.active.focus:not(.btn), input.btn-subtle.active.focus[type="button"]:not(.btn), input.btn-subtle.active.focus[type="submit"]:not(.btn), input.btn-subtle.active.focus[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:hover:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:hover:not(.btn),
.open > button.btn-subtle.dropdown-toggle:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:focus:not(.btn),
.open > button.btn-subtle.dropdown-toggle.focus:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle.focus[type="reset"]:not(.btn) {
    color: #222325;
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn),
.open > button.btn-subtle.dropdown-toggle:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="button"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="submit"]:not(.btn),
.open > input.btn-subtle.dropdown-toggle[type="reset"]:not(.btn) {
    background-image: none; }
button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn) {
    background-color: transparent;
    border-color: transparent; }
button.btn-subtle:not(.btn) .badge, input.btn-subtle[type="button"]:not(.btn) .badge, input.btn-subtle[type="submit"]:not(.btn) .badge, input.btn-subtle[type="reset"]:not(.btn) .badge {
    color: transparent;
    background-color: #222325; }
button.btn-subtle:hover:not(.btn), input.btn-subtle[type="button"]:hover:not(.btn), input.btn-subtle[type="submit"]:hover:not(.btn), input.btn-subtle[type="reset"]:hover:not(.btn), button.btn-subtle.hover:not(.btn), input.btn-subtle.hover[type="button"]:not(.btn), input.btn-subtle.hover[type="submit"]:not(.btn), input.btn-subtle.hover[type="reset"]:not(.btn), button.btn-subtle:focus:not(.btn), input.btn-subtle[type="button"]:focus:not(.btn), input.btn-subtle[type="submit"]:focus:not(.btn), input.btn-subtle[type="reset"]:focus:not(.btn), button.btn-subtle.focus:not(.btn), input.btn-subtle.focus[type="button"]:not(.btn), input.btn-subtle.focus[type="submit"]:not(.btn), input.btn-subtle.focus[type="reset"]:not(.btn), button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #222325;
    background-color: #EBEBEB;
    border-color: transparent; }
button.btn-subtle:active:not(.btn), input.btn-subtle[type="button"]:active:not(.btn), input.btn-subtle[type="submit"]:active:not(.btn), input.btn-subtle[type="reset"]:active:not(.btn), button.btn-subtle.active:not(.btn), input.btn-subtle.active[type="button"]:not(.btn), input.btn-subtle.active[type="submit"]:not(.btn), input.btn-subtle.active[type="reset"]:not(.btn) {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.16); }
button.btn-subtle.disabled:not(.btn), input.btn-subtle.disabled[type="button"]:not(.btn), input.btn-subtle.disabled[type="submit"]:not(.btn), input.btn-subtle.disabled[type="reset"]:not(.btn), button.btn-subtle.disabled:hover:not(.btn), input.btn-subtle.disabled[type="button"]:hover:not(.btn), input.btn-subtle.disabled[type="submit"]:hover:not(.btn), input.btn-subtle.disabled[type="reset"]:hover:not(.btn), button.btn-subtle.disabled:focus:not(.btn), input.btn-subtle.disabled[type="button"]:focus:not(.btn), input.btn-subtle.disabled[type="submit"]:focus:not(.btn), input.btn-subtle.disabled[type="reset"]:focus:not(.btn), button.btn-subtle.disabled.focus:not(.btn), input.btn-subtle.disabled.focus[type="button"]:not(.btn), input.btn-subtle.disabled.focus[type="submit"]:not(.btn), input.btn-subtle.disabled.focus[type="reset"]:not(.btn), button.btn-subtle.disabled:active:not(.btn), input.btn-subtle.disabled[type="button"]:active:not(.btn), input.btn-subtle.disabled[type="submit"]:active:not(.btn), input.btn-subtle.disabled[type="reset"]:active:not(.btn), button.btn-subtle.disabled.active:not(.btn), input.btn-subtle.disabled.active[type="button"]:not(.btn), input.btn-subtle.disabled.active[type="submit"]:not(.btn), input.btn-subtle.disabled.active[type="reset"]:not(.btn), button.btn-subtle[disabled]:not(.btn), input.btn-subtle[disabled][type="button"]:not(.btn), input.btn-subtle[disabled][type="submit"]:not(.btn), input.btn-subtle[disabled][type="reset"]:not(.btn), button.btn-subtle[disabled]:hover:not(.btn), input.btn-subtle[disabled][type="button"]:hover:not(.btn), input.btn-subtle[disabled][type="submit"]:hover:not(.btn), input.btn-subtle[disabled][type="reset"]:hover:not(.btn), button.btn-subtle[disabled]:focus:not(.btn), input.btn-subtle[disabled][type="button"]:focus:not(.btn), input.btn-subtle[disabled][type="submit"]:focus:not(.btn), input.btn-subtle[disabled][type="reset"]:focus:not(.btn), button.btn-subtle[disabled].focus:not(.btn), input.btn-subtle[disabled].focus[type="button"]:not(.btn), input.btn-subtle[disabled].focus[type="submit"]:not(.btn), input.btn-subtle[disabled].focus[type="reset"]:not(.btn), button.btn-subtle[disabled]:active:not(.btn), input.btn-subtle[disabled][type="button"]:active:not(.btn), input.btn-subtle[disabled][type="submit"]:active:not(.btn), input.btn-subtle[disabled][type="reset"]:active:not(.btn), button.btn-subtle[disabled].active:not(.btn), input.btn-subtle[disabled].active[type="button"]:not(.btn), input.btn-subtle[disabled].active[type="submit"]:not(.btn), input.btn-subtle[disabled].active[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:hover:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:hover:not(.btn),
fieldset[disabled] button.btn-subtle:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:focus:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:focus:not(.btn),
fieldset[disabled] button.btn-subtle.focus:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.focus[type="reset"]:not(.btn),
fieldset[disabled] button.btn-subtle:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="button"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="submit"]:active:not(.btn),
fieldset[disabled] input.btn-subtle[type="reset"]:active:not(.btn),
fieldset[disabled] button.btn-subtle.active:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="button"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="submit"]:not(.btn),
fieldset[disabled] input.btn-subtle.active[type="reset"]:not(.btn) {
    color: #A2A3A6;
    background-color: transparent;
    border-color: transparent; }

.dropdown-widget {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    padding: 12px 16px;
    margin: 0;
    border: 1px solid #DEDFE0;
    border-radius: 0 0 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 7px 5px -3px;
    margin-top: -1px;
    background-color: white; }
.dropdown-widget.pull-right {
    right: 0;
    left: auto;
    border-top-left-radius: 5px; }
.dropdown-widget:not(.pull-right) {
    border-top-right-radius: 5px; }

.btn-group.open .dropdown-widget {
    display: block; }

.drop-widget > div {
    display: none; }

.drop-widget-menu {
    position: absolute;
    z-index: 1000;
    padding: 12px 16px;
    border: 1px solid #DEDFE0;
    border-radius: 0 0 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.3) 0 7px 5px -3px;
    margin-top: -1px;
    background-color: white; }

.drop-widget.right > .dropdown-toggle {
    float: right; }

a.q, a.q:visited {
    color: #444; }

a.q {
    text-decoration: none; }

a img {
    border: none; }

a:hover, a:active {
    text-decoration: underline; }

/* clearfix http://nicolasgallagher.com/micro-clearfix-hack/ */
.cf:before, .cf:after {
    content: "";
    display: table; }

.cf:after {
    clear: both; }

.cf {
    zoom: 1; }

/* For IE 6/7 (trigger hasLayout) */
.small_print {
    font-size: .8em; }

#body_container {
    margin: 2px auto 20px; }

.clear {
    clear: both; }

.nodisplay {
    display: none; }

.nowrap {
    white-space: nowrap; }

.thinsp {
    padding-left: 0.2em; }

.rp_nowrap {
    white-space: nowrap;
    padding-right: 1.2em;
    text-align: right; }

.deftext {
    font-style: italic;
    color: #666; }

div.gs {
    /* small gap */
    margin: 0.8ex 0px; }

.narrow {
    width: 640px; }

div.scroll {
    height: 200px;
    width: 350px;
    overflow: auto;
    border: 0px;
    background-color: white;
    padding: 2px; }

div#main {
    padding-top: 1em;
    width: 100%; }

#minor_main {
    padding: 1em 0em 0em 1.5em;
    width: 100%; }

#login_main {
    padding-top: 1em;
    margin: 0 40px 0 40px; }

.account_bar {
    white-space: nowrap;
    font-size: smaller;
    text-align: right; }

.logo {
    float: left;
    padding: 0 0 6px 5px; }

span.normal {
    font-weight: lighter;
    color: #aaa; }

tr#admin {
    background-color: #eee; }

.dashboard {
    font: 1em/1.3em Arial,Arial,Helvetica,sans-serif;
    margin: 0 auto; }

h1.dashboard {
    margin-top: 70px;
    margin-bottom: 0px;
    font: bold 3em Arial,Arial,Helvetica,sans-serif;
    font-weight: bold;
    text-align: center;
    color: #fff; }

h2.dashboard {
    font: 1.2em/1.5em Arial,Arial,Helvetica,sans-serif;
    font-weight: bold;
    text-align: center;
    color: #222; }

h3.dashboard {
    margin-top: 80px;
    margin-bottom: 0px;
    font: 1.4em Arial,Arial,Helvetica,sans-serif;
    font-weight: bold;
    text-align: center;
    color: #fff; }

table.dashboard, table.lean, table.leanbase {
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show; }

tr.top {
    vertical-align: top; }

tr.base, table.leanbase {
    vertical-align: baseline; }

tr.middle {
    vertical-align: middle; }

td {
    padding: 0; }

.news {
    margin: 0 auto;
    margin-top: 80px;
    width: 600px; }

.fieldWithErrors, div.errf {
    padding: 2px;
    background-color: red;
    display: table; }

input.errf, textarea.errf {
    outline: 2px solid red;
    /* XXX IE7 does not understand */ }

.lean_error {
    border: 1px solid red;
    padding: 3px 6px;
    margin: 4px 0;
    background-color: #f0f0f0;
    color: #000; }

#errorExplanation {
    border: 2px solid red;
    padding: 7px;
    padding-bottom: 12px;
    margin-bottom: 20px;
    background-color: #f0f0f0; }

#errorExplanation p {
    color: #333;
    margin-bottom: 0;
    padding: 5px; }

#errorExplanation ul li {
    font-size: 12px;
    list-style: square;
    margin-left: 20px; }

div.good {
    border-color: #9c9;
    color: #060;
    background-color: #e2f9e3; }

div.working {
    border-color: #9c9;
    color: #000;
    background-color: #fafafa; }

div.bad {
    border-color: #c99;
    color: #fff;
    background-color: #c00; }

table.fancy_table {
    font-size: 100%;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-spacing: 0;
    border-collapse: collapse;
    white-space: nowrap; }

table.fancy_table > thead > tr > th,
table.fancy_table > tbody > tr > th,
table.fancy_table > tfoot > tr > th {
    border: 1px solid #c4d0d3;
    border-bottom: 1px solid #8cacbb;
    border-right: 1px solid #8cacbb;
    border-left: 1px solid #8cacbb;
    padding: 3px;
    text-align: center;
    background-color: #dee7ec; }

table.fancy_table > thead > tr > td,
table.fancy_table > tbody > tr > td,
table.fancy_table > tfoot > tr > td {
    border: 1px solid #dee7ec;
    padding: 3px; }

table.fancy_table td.key {
    font-weight: bold; }

/* Sortable tables */
table.fancy_table a.sortheader {
    color: #666666;
    font-weight: bold;
    text-decoration: none;
    display: block; }

table.fancy_table span.sortarrow {
    color: black;
    text-decoration: none; }

/* a link, like 'destroy', or 'update' */
table.fancy_table td.action {
    font-weight: bold; }

/* Borderless detail table styles.  Every th and td in a borderless_detail_table
   must be styled like this. */
th.bd, td.bd {
    background-color: #ffffff;
    border: none; }

/* --- jquery.tablesorter headers */
th.header {
    background-image: url(/images/sort_small.gif);
    cursor: pointer;
    font-weight: bold;
    background-repeat: no-repeat;
    background-position: center left;
    padding-left: 20px;
    border-right: 1px solid #dad9c7;
    margin-left: -1px; }

th.headerSortUp {
    background-image: url(/images/sort_small_asc.gif);
    background-color: #3399FF; }

th.headerSortDown {
    background-image: url(/images/sort_small_desc.gif);
    background-color: #3399FF; }

/* --- end jquery.tablesorter */
/* table.nice_table is only used by users/list */
table.nice_table {
    font-size: 100%;
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-spacing: 0;
    border-collapse: collapse;
    white-space: nowrap;
    border-bottom: 20px; }

table.nice_table th {
    /* border: 1px solid #8cacbb; */
    color: #000000;
    /* background:#E5E5E5 none repeat scroll 0%; */
    border-bottom: 2px solid #888;
    padding: 8px;
    text-align: center;
    /* font-size:95%; */ }

td.td_nice {
    /* border: 1px solid #8cacbb; */
    border-bottom: 1px solid #BBBBBB;
    /* border: 1px solid #b5c9d3; */
    padding: 8px; }

/* end table.nice_table */
/* begin configure tables */
table.cfg {
    border: 0;
    border-spacing: 0;
    border-collapse: collapse;
    margin: 0 0 1.3em 0;
    width: 100%; }

h1 + table.cfg, table.cfg.cfg_first {
    margin-top: 0.2em;
    /* smaller margin for first config option in each section */ }

table.cfg.cfgc {
    margin: 0.5em 0; }

/* table.cfg rows are vertical-align: baseline by default.
   If you want vertical-align: top, use tr class="top". */
table.cfg > tbody > tr,
table.cfg > tr {
    vertical-align: baseline; }

table.cfg > tbody > tr.top,
table.cfg > tr.top {
    vertical-align: top; }

td.cfgq {
    width: 13.4em;
    padding-right: 1.6em;
    vertical-align: top; }
td.cfgq.baseline {
    vertical-align: baseline; }

#floorplan_container td.cfgq {
    width: 40px; }

td.cfgs {
    padding: 0.1em 0; }

label.hidden_config_label {
    display: none; }

/* end configure tables */
div.graph_div {
    border-style: none; }

div.graph_sep {
    border: solid 1px #eee; }

.status_good, .status_bad {
    font-weight: bold; }

.status_good {
    color: green; }

.status_bad {
    color: red; }

.mki-fade {
    color: #888888; }

span.beta_label {
    color: red;
    font-size: 0.7em;
    padding: 0 0 0 .5em;
    padding-right: 0;
    padding-top: 0;
    vertical-align: super;
    text-transform: uppercase; }

.graph {
    width: 50px;
    border: 1px solid #444;
    padding: 1px;
    margin-right: 4px;
    margin-top: 2px; }

.mki-fade .graph {
    border: 1px solid #888; }

.mbar, .mbar_y, .mbar_r, .mbar_gy,
.rmbar, .rmbar_y, .rmbar_r, .rmbar_gy {
    font: 0.4em sans-serif;
    height: 0.9em; }

.rmbar, .rmbar_y, .rmbar_r, .rmbar_gy {
    margin: 0 0 0 auto; }

.mbar, .rmbar {
    background: #7ac142; }

.mki-fade .mbar, .mki-fade .rmbar {
    background: #a3df73; }

.mbar_y, .rmbar_y {
    background: #ffd200; }

.mbar_r, .rmbar_r {
    background: #f91313; }

.mbar_gy, .rmbar_gy {
    background: #666; }

.lowlight .mbar_gy, .lowlight .rmbar_gy {
    background: #bbb; }

.graph .bar {
    display: block;
    background: #7ac142;
    text-align: center;
    font: 0.4em sans-serif;
    color: #333;
    height: 0.7em;
    line-height: 1em; }

.graph .bar.weak {
    background: #ffd200; }

.graph .bar.very_weak {
    background: #f91313; }

.mki-fade .graph .bar {
    background: #a3df73; }

.bar2 {
    display: block;
    background: #00C659;
    text-align: center;
    font: 0.4em sans-serif;
    color: #333;
    height: 8px;
    line-height: 1em; }

.page_title {
    color: #727171;
    font-size: 1.6em;
    float: left;
    margin-top: 20px; }

.page_nav {
    float: right; }

.inline_form {
    white-space: nowrap;
    display: inline; }

table.adminDashboardTable tr td {
    padding-top: 2px; }

.adminDashboardTitle {
    font-size: 120%;
    font-weight: bold;
    display: inline;
    white-space: nowrap;
    padding-right: 10px; }

.tips {
    width: 100%;
    background-color: #d2e1e6; }

.cornerTL {
    background-image: url("/images/tl-line.gif");
    height: 10px;
    font-size: 2px;
    /* IE is dumb */
    margin-right: 10px;
    /* hack: clip the TR corner so the line doesn't show behind corner */ }

.cornerTR {
    float: right;
    margin-top: -10px;
    background-image: url("/images/tr.gif");
    height: 10px;
    width: 10px;
    font-size: 2px;
    /* IE is dumb */ }

.cornerBL {
    background-image: url("/images/bl-line.gif");
    height: 10px;
    font-size: 2px;
    /* IE is dumb */
    margin-right: 10px;
    /* hack: clip the TR corner so the line doesn't show behind corner */ }

.cornerBR {
    float: right;
    margin-top: -10px;
    background-image: url("/images/br.gif");
    height: 10px;
    width: 10px;
    font-size: 2px;
    /* IE is dumb */ }

.panel-heading {
    clear: both;
    border-bottom: 1px solid #d8d8d8;
    font-size: 1.5em;
    color: black; }

.panel-inside {
    padding: 8px 12px 8px 12px;
    background-color: #ffffff;
    border-left: 1px solid #39b97c;
    border-right: 1px solid #39b97c; }

.panel {
    padding: 0;
    margin: 0;
    overflow: auto; }

.blurry-text {
    color: transparent;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.9); }

.dimtext {
    color: #777;
    font-weight: normal; }

.superdim {
    color: #bbb;
    font-weight: normal; }

table.node_status {
    font-size: 11px;
    border-collapse: collapse;
    border-spacing: 0; }

td.ns_label, td.ns_data {
    vertical-align: top;
    padding: 0; }

.node_link {
    vertical-align: top;
    font-size: 11px; }

/* ----  InPlaceEditor style --------------------------------------------- */
.inplaceeditor_edit {
    /*   font-style: italic; */
    color: #999;
    font-size: 11px;
    font-weight: normal;
    text-decoration: none; }

a.inplaceeditor_edit {
    /*   font-style: italic; */
    color: #999;
    font-size: 11px;
    font-weight: normal;
    text-decoration: none; }

/* --- jquery.jeditable style */
.editable_highlight {
    background-color: #ffff99; }

/* --- end jquery.jeditable */
.node_status_heading {
    margin: 1px 0 0;
    padding: 4px 0 2px;
    line-height: 15px;
    font-size: 11px;
    font-weight: bold;
    margin-top: 10px;
    border-top: 1px solid #eee; }

.node_performance_heading {
    margin: 1px 0 0;
    padding: 4px 0 2px;
    font-weight: bold; }

/* Begin rules for app/helpers/application_helper.rb :: toggled_helplink() */
.config_explanation .hide_when_collapsed, .config_explanation.expanded .hide_when_expanded {
    display: none; }

.config_explanation.expanded .hide_when_collapsed {
    display: block; }

/* End rules for app/helpers/application_helper.rb :: toggled_helplink() */
/* Begin rules for public/javascript/application.min.js :: jQuery.fn.dim() */
.controls_dimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -37; }

.controls_dimmer.active {
    z-index: 37;
    background: url("/images/backgrounds/white_o50.png") repeat; }

/* End rules for public/javascript/application.min.js :: jQuery.fn.dim() */
/* begin rules for Google Maps-like buttons */
div.gmap_button {
    white-space: nowrap;
    font-size: 12px;
    color: black;
    cursor: pointer;
    background-color: #fff; }

div.gmap_button.gmap_buttondown {
    background-color: #eeee99; }

div.gmap_button0 {
    border: 1px solid #000000; }

div.gmap_button1 {
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-color: white #b0b0b0 #b0b0b0 white; }

div.gmap_button2 {
    font-weight: bold;
    padding: 0 6px; }

div.gmap_menu_pointer {
    position: absolute;
    top: 3px;
    right: 7px;
    width: 13px;
    height: 9px;
    background-image: url(/images/menu_pointers.gif); }

/* end rules for Google Maps-like buttons */
/* begin hover help */
.hover_help_contents {
    padding: 0.5em 0.8em;
    background-color: #fff0b4;
    font-size: 12px;
    color: #222222;
    width: auto;
    border: 1px solid #a88f2a;
    text-decoration: none; }

.hhsh_tl, .hhsh_bl, .hhsh_tr, .hhsh_br,
.hhptr_down, .hhptr_up, .hhptr_left, .hhptr_right {
    background-image: url("/images/mainsprite.png");
    background-repeat: no-repeat; }

.hhsh_tl {
    background-position: -45px -45px; }

.hhsh_bl {
    background-position: -45px -51px; }

.hhsh_tr {
    background-position: -52px -45px; }

.hhsh_br {
    background-position: -52px -51px; }

.hhsh_t {
    background-image: url(/images/shadow_drop1_t.png);
    background-repeat: repeat-x;
    background-position: bottom center; }

.hhsh_b {
    background-image: url(/images/shadow_drop1_b.png);
    background-repeat: repeat-x;
    background-position: top center; }

.hhsh_l {
    background-image: url(/images/shadow_drop1_l.png);
    background-repeat: repeat-y;
    background-position: center right; }

.hhsh_r {
    background-image: url(/images/shadow_drop1_r.png);
    background-repeat: repeat-y;
    background-position: center left; }

.hhptr_down {
    background-position: -67px -49px;
    width: 13px;
    height: 14px;
    z-index: 1; }

.hhptr_up {
    background-position: -85px -45px;
    width: 13px;
    height: 14px;
    z-index: 1; }

.hhptr_left {
    background-position: -82px -67px;
    width: 14px;
    height: 13px;
    z-index: 1; }

.hhptr_right {
    background-position: -86px -85px;
    width: 14px;
    height: 13px;
    z-index: 1; }

/* end hover help */
/* map3 */
.map3bg_light {
    filter: alpha(opacity=25);
    opacity: 0.25;
    -moz-opacity: 0.25; }

.map3bg_dark {
    filter: alpha(opacity=36);
    opacity: 0.36;
    -moz-opacity: 0.36; }

#nodemap_tooltip {
    position: absolute;
    display: none;
    color: black;
    font-size: 11px; }

.nodemap_tooltip_contents {
    padding: 1px 4px 1px 3px;
    background-color: #fff0b4;
    border: 1px solid #a88f2a; }

.hhsh_tls, .hhsh_bls, .hhsh_trs, .hhsh_brs,
.hhsh_ls, .hhsh_bs, .hhsh_ts, .hhsh_rs,
.hhptr_ups, .hhptr_downs, .hhptr_lefts, .hhptr_rights {
    background-image: url("/images/mainsprite.png");
    background-repeat: no-repeat; }

.hhsh_tls {
    background-position: -32px -54px; }

.hhsh_bls {
    background-position: -32px -58px; }

.hhsh_trs {
    background-position: -36px -54px; }

.hhsh_brs {
    background-position: -36px -58px; }

.hhsh_ts, .hhsh_bs {
    background-image: url(/images/shadow_drop2_tb.png);
    background-repeat: repeat-x; }

.hhsh_bs {
    background-position: 0 -4px; }

.hhsh_ls, .hhsh_rs {
    background-image: url(/images/shadow_drop2_lr.png);
    background-repeat: repeat-y; }

.hhsh_rs {
    background-position: -4px 0; }

.hhptr_downs, .hhptr_ups, .hhptr_lefts, .hhptr_rights {
    position: absolute;
    z-index: 1; }

.hhptr_downs {
    background-position: -69px -53px;
    width: 9px;
    height: 10px; }

.hhptr_ups {
    background-position: -87px -45px;
    width: 9px;
    height: 10px; }

.hhptr_lefts {
    background-position: -82px -69px;
    width: 10px;
    height: 9px; }

.hhptr_rights {
    background-position: -90px -87px;
    width: 10px;
    height: 9px; }

#nodemap_tooltip div.o85 {
    padding: 1px 4px 1px; }

.o85 {
    background-color: rgba(255, 255, 255, 0.85); }

.o85png, .o85.o85png {
    background-color: none;
    background-image: url(/images/backgrounds/white_o85.png);
    background-repeat: repeat; }

img.up_pointer, td.up_pointer {
    background-image: url(/images/up_pointer_white_o85.png);
    background-repeat: no-repeat;
    background-position: top center; }

img.down_pointer, td.down_pointer {
    background-image: url(/images/down_pointer_white_o85.png);
    background-repeat: no-repeat;
    background-position: bottom center; }

img.left_pointer, td.left_pointer {
    background-image: url(/images/left_pointer_white_o85.png);
    background-repeat: no-repeat;
    background-position: center left; }

img.right_pointer, td.right_pointer {
    background-image: url(/images/right_pointer_white_o85.png);
    background-repeat: no-repeat;
    background-position: center right; }

img.warning12 {
    width: 12px;
    height: 11px;
    background-image: url("/images/mainsprite.png");
    background-position: -6px -45px;
    border: 0 none; }

img.clock10 {
    width: 10px;
    height: 10px;
    background-image: url("/images/mainsprite.png");
    background-position: -21px -45px;
    border: 0 none; }

div.map3pref {
    font-size: 11px; }

/* drop-down menus */
div.dmenuctr {
    border: 1px solid black;
    background-color: white;
    color: black; }

div.dmenuctr1 {
    border-width: 1px 1px 1px 0px;
    border-style: solid;
    border-color: white #b0b0b0 #b0b0b0 white;
    padding: 2px 0 4px; }

div.dmenugap, h3.dmenu {
    margin: 0.5em 0 0; }

h3.dmenu_first {
    margin: 0; }

h3.dmenu, h3.dmenu_first {
    font-size: 100%;
    padding: 0 6px; }

input.dmenu {
    margin-left: 0; }

div.dmenuitem {
    padding: 1px 6px; }

div.dmenuitem:hover {
    background-color: #ffeac0;
    cursor: pointer; }

div.dropdown_rating {
    clear: both;
    float: none; }

div.dropdown_rating label {
    clear: left;
    float: left;
    text-align: right;
    display: block;
    width: 70px; }

div.dropdown_rating select {
    clear: right;
    float: left;
    margin-left: 10px;
    width: 150px; }

/* node icons */
/* If you update the "?VERSION" number, also change l3.js. */
img.ni {
    width: 26px;
    height: 22px;
    background-image: url(/images/node_icons/unknown_all.png?5); }

img.ni_mini {
    background-image: url(/images/node_icons/mini_all.png?5); }

img.ni_indoor {
    background-image: url(/images/node_icons/indoor_all.png?5); }

img.ni_outdoor {
    background-image: url(/images/node_icons/outdoor_all.png?5); }

img.ni_solar {
    background-image: url(/images/node_icons/solar_all.png?5); }

img.ni_wallplug, img.ni_wallmount {
    background-image: url(/images/node_icons/wallmount_all.png?5); }

img.ni_mr11 {
    background-image: url(/images/node_icons/mr11_all.png?5); }

img.ni_mr12 {
    background-image: url(/images/node_icons/mr12_all.png?5); }

img.ni_mr14 {
    background-image: url(/images/node_icons/mr14_all.png?5); }

img.ni_mr16 {
    background-image: url(/images/node_icons/mr16_all.png?5); }

img.ni_mr24 {
    background-image: url(/images/node_icons/mr24_all.png?5); }

img.ni_mr58 {
    background-image: url(/images/node_icons/mr58_all.png?5); }

img.ni_mr62 {
    background-image: url(/images/node_icons/mr62_all.png?5); }

img.ni_mr66 {
    background-image: url(/images/node_icons/mr66_all.png?5); }

img.ni_ms {
    background-image: url(/images/node_icons/ms_all.png?5); }

img.ni_mv {
    background-image: url(/images/node_icons/mv_all.png?5); }

img.ni_rogue {
    background-image: url(/images/node_icons/rogue_aps.png?5); }

img.ni_ma20 {
    background: no-repeat url(/images/node_icons/ma20_all.png?5);
    width: 40px; }

img.ni_active {
    background-position: 0px 0px; }

img.ni_active_gw {
    background-position: -26px 0px; }

img.ni_alerting, img.ni_alert {
    background-position: 0px -22px; }

img.ni_alerting_gw, img.ni_alert_gw {
    background-position: -26px -22px; }

img.ni_unreachable {
    background-position: 0px -44px; }

img.ni_unreachable_gw {
    background-position: -26px -44px; }

img.ni_dormant, img.ni_unseen {
    background-position: 0px -66px; }

img.ni_dormant_gw, img.ni_unseen_gw {
    background-position: -26px -66px; }

img.ni_blank {
    background-position: 0px -110px; }

img.ni_blank_gw {
    background-position: -26px -110px; }

img.ni_known_rogue_ap {
    background-position: 0 0; }

img.ni_unknown_rogue_ap {
    background-position: 0 -22px; }

/* printable node icons */
div.pni, div.pcni {
    width: 26px;
    height: 22px;
    position: relative;
    overflow: hidden; }

div.pcni {
    margin: 0 auto; }

img.pni_active {
    position: absolute;
    left: 0;
    top: 0; }

img.pni_active_gw {
    position: absolute;
    left: -26px;
    top: 0; }

img.pni_alerting, img.pni_alert {
    position: absolute;
    left: 0;
    top: -22px; }

img.pni_alerting_gw, img.pni_alert_gw {
    position: absolute;
    left: -26px;
    top: -22px; }

img.pni_unreachable {
    position: absolute;
    left: 0;
    top: -44px; }

img.pni_unreachable_gw {
    position: absolute;
    left: -26px;
    top: -44px; }

img.pni_dormant, img.pni_unseen {
    position: absolute;
    left: 0;
    top: -66px; }

img.pni_dormant_gw, img.pni_unseen_gw {
    position: absolute;
    left: -26px;
    top: -66px; }

img.pni_blank {
    position: absolute;
    left: 0;
    top: -110px; }

img.pni_blank_gw {
    position: absolute;
    left: -26px;
    top: -110px; }

img.pni_known_rogue_ap {
    position: absolute;
    left: 0;
    top: 0; }

img.pni_unknown_rogue_ap {
    position: absolute;
    left: 0;
    top: -22px; }

/* node small icons */
img.ni_sm {
    width: 20px;
    height: 17px;
    background-image: url(/images/node_icons/unknown_small.png?5); }

img.ni_sm_mini {
    background-image: url(/images/node_icons/mini_small.png?5); }

img.ni_sm_indoor {
    background-image: url(/images/node_icons/indoor_small.png?5); }

img.ni_sm_outdoor {
    background-image: url(/images/node_icons/outdoor_small.png?5); }

img.ni_sm_solar {
    background-image: url(/images/node_icons/solar_small.png?5); }

img.ni_sm_wallplug, img.ni_sm_wallmount {
    background-image: url(/images/node_icons/wallmount_small.png?5); }

img.ni_sm_mr11 {
    background-image: url(/images/node_icons/mr11_small.png?5); }

img.ni_sm_mr14 {
    background-image: url(/images/node_icons/mr14_small.png?5); }

img.ni_sm_mr58 {
    background-image: url(/images/node_icons/mr58_small.png?5); }

img.ni_sm_active {
    background-position: 0px 0px; }

img.ni_sm_active_gw {
    background-position: -20px 0px; }

img.ni_sm_warning, img.ni_sm_alert {
    background-position: 0px -17px; }

img.ni_sm_warning_gw, img.ni_sm_alert_gw {
    background-position: -20px -17px; }

img.ni_sm_inactive {
    background-position: 0px -34px; }

img.ni_sm_inactive_gw {
    background-position: -20px -34px; }

img.ni_sm_dead, img.ni_sm_unseen {
    background-position: 0px -51px; }

img.ni_sm_dead_gw, img.ni_sm_unseen_gw {
    background-position: -20px -51px; }

img.ni_sm_blank {
    background-position: 0px -85px; }

img.ni_sm_blank_gw {
    background-position: -20px -85px; }

/* printable node small icons */
div.pni_sm, div.pcni_sm {
    width: 20px;
    height: 17px;
    position: relative;
    overflow: hidden; }

div.pcni_sm {
    margin: 0 auto; }

img.pni_sm_active {
    position: absolute;
    left: 0;
    top: 0; }

img.pni_sm_active_gw {
    position: absolute;
    left: -20px;
    top: 0; }

img.pni_sm_warning, img.pni_sm_alert, img.pni_sm_alerting {
    position: absolute;
    left: 0;
    top: -17px; }

img.pni_sm_warning_gw, img.pni_sm_alert_gw, img.pni_sm_alerting_gw {
    position: absolute;
    left: -20px;
    top: -17px; }

img.pni_sm_inactive, img.pni_sm_unreachable {
    position: absolute;
    left: 0;
    top: -34px; }

img.pni_sm_inactive_gw, img.pni_sm_unreachable_gw {
    position: absolute;
    left: -20px;
    top: -34px; }

img.pni_sm_dead, img.pni_sm_unseen, img.pni_sm_dormant {
    position: absolute;
    left: 0;
    top: -51px; }

img.pni_sm_dead_gw, img.pni_sm_unseen_gw, img.pni_sm_dormant_gw {
    position: absolute;
    left: -20px;
    top: -51px; }

img.pni_sm_blank {
    position: absolute;
    left: 0;
    top: -85px; }

img.pni_sm_blank_gw {
    position: absolute;
    left: -20px;
    top: -85px; }

/* node status sprites */
img.maplegend {
    background-image: url("/images/mainsprite.png"); }

img.maplegend.s0, img.maplegend.s1, img.maplegend.s23 {
    height: 12px;
    position: relative;
    bottom: -1px; }

img.maplegend.s0 {
    width: 12px;
    background-position: -6px -78px; }

img.maplegend.s1 {
    width: 12px;
    background-position: -19px -78px; }

img.maplegend.s23 {
    width: 25px;
    background-position: -32px -78px; }

img.maplegend.g0 {
    width: 13px;
    height: 16px;
    background-position: -20px -91px;
    vertical-align: middle; }

img.maplegend.g1 {
    width: 13px;
    height: 16px;
    background-position: -6px -91px;
    vertical-align: middle; }

/* node status sprites */
img.nss {
    height: 20px;
    background-image: url(/images/dingle-pno-z0/dingle-pno-z0-sprite.png);
    vertical-align: middle; }

img.nss.s0g0 {
    width: 15px;
    background-position: 0px 0px; }

img.nss.s1g0 {
    width: 15px;
    background-position: -16px 0px; }

img.nss.s23g0 {
    width: 31px;
    background-position: -32px 0px; }

img.nss.s0g1 {
    width: 17px;
    background-position: -64px 0px; }

img.nss.s1g1 {
    width: 17px;
    background-position: -82px 0px; }

img.nss.s23g1 {
    width: 35px;
    background-position: -100px 0px; }

.w100 {
    width: 100%; }

/* resizable flot graphs */
.flotresizer {
    /* outer div */
    position: relative;
    overflow: hidden; }

.flotresizee {
    /* inner div, passed to flot */
    width: 100%;
    height: 100%;
    position: absolute; }

/* Colored bullet HTML */
span.colbult, span.colbult_l2 {
    font-weight: bold;
    text-shadow: rgba(64, 64, 64, 0.5) 0 0 0.1em; }

span.colbult_l1 {
    display: inline-block;
    position: relative;
    width: 1em; }

span.colbult_l2 {
    display: inline-block;
    position: absolute;
    font-size: 150%;
    bottom: -0.2ex;
    right: 0; }

/* End colored bullet HTML */
div.smlspace {
    height: 3px; }

div.medspace {
    height: 6px; }

div.bigspace {
    height: 10px; }

.dashboard_new_update_account_form input {
    margin: 0; }

div.signup_form > table > tbody > tr.formrow > td {
    padding: 1px 0 2px 0; }

div.signup_form > table > tbody > tr.formrow > td > input[type=checkbox] {
    margin: 0 6px 0 0; }

input[readonly] {
    background: #eee; }

@media print {
    .noprint {
        display: none; } }

@media screen {
    .noscreen {
        display: none; } }

.ui-autocomplete {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 20px; }

/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
.logo {
    float: none;
    min-height: 50px;
    height: auto !important;
    /* Helps IE respect min-height */
    height: 50px;
    /* Helps IE respect min-height */ }

.pseudo_link {
    color: #1D770B;
    text-decoration: underline;
    cursor: pointer; }

.edit_img {
    width: 20px;
    height: 20px;
    background: url("/images/manage/networks/icon_write_20x20_sprite.png") no-repeat 0 0; }

.edit_img:hover {
    background: url("/images/manage/networks/icon_write_20x20_sprite.png") no-repeat 0 -20px; }

.delete_img {
    width: 20px;
    height: 20px;
    background: url("/images/manage/networks/icon_x_20x20_sprite.png") no-repeat 0 0; }

.delete_img:hover {
    background: url("/images/manage/networks/icon_x_20x20_sprite.png") no-repeat 0 -20px; }

.really_delete_img {
    width: 20px;
    height: 20px;
    background: #FFE6E6 url("/images/manage/networks/icon_x_20x20_sprite.png") no-repeat 0 0; }

.really_delete_img:hover {
    background: #FFE6E6 url("/images/manage/networks/icon_x_20x20_sprite.png") no-repeat 0 -20px; }

div#swports_div span.circle {
    cursor: pointer; }

span.circle {
    font-size: 1.5em; }

span.circle.group1 {
    color: #90ecdc; }

span.circle.group2 {
    color: #69b93f; }

span.circle.group3 {
    color: #f08b80; }

span.circle.group0 {
    display: none; }

/*
 * settings form XXX move to settings-specific?
 */
fieldset p {
    font-size: 12px;
    margin-top: 0; }

fieldset li {
    font-size: 12px; }

td.error {
    color: red;
    font-weight: bold; }

#account_bar {
    position: absolute;
    top: .3em;
    right: 0;
    z-index: 1; }

#top_bar {
    text-align: left; }

/* begin pill account bar */
div.load_indicator span {
    vertical-align: top;
    padding-left: 10px; }

/* Begin styles for Dashboard sub-tabs */
div#subtabs {
    position: relative;
    padding: 5px 4px 6px 0;
    font-size: 12px;
    color: #aaa; }

div#subtabs ul {
    list-style: none;
    margin: 0;
    padding: 0; }

div#subtabs ul li {
    float: left;
    padding: 0 .15em;
    margin: 0; }

div#subtabs ul li.subtab {
    color: #000;
    font-weight: bold; }

div#subtabs ul li a {
    font-weight: normal; }

/* End styles for Dashboard sub-tabs */
/* White rounded corners */
img.wrc_tl, img.wrc_tr, img.wrc_bl, img.wrc_br {
    width: 3px;
    height: 3px;
    background-image: url("/images/mainsprite.png");
    position: absolute; }

img.wrc_tl {
    background-position: -34px -45px;
    left: 0;
    top: 0; }

img.wrc_tr {
    background-position: -37px -45px;
    right: 0;
    top: 0; }

img.wrc_bl {
    background-position: -34px -48px;
    left: 0;
    bottom: 0; }

img.wrc_br {
    background-position: -37px -48px;
    right: 0;
    bottom: 0; }

/* End white rounded corners */
span.barsep {
    color: #aaa;
    padding: 0 0.2em; }

span.sep {
    padding: 0 0.2em; }

.pagination {
    padding: 3px;
    margin: 3px; }

.pagination a {
    padding: 2px 5px 2px 5px;
    margin: 2px;
    border: 1px solid #aad;
    text-decoration: none;
    color: #009; }

.pagination a:hover, .pagination a:active {
    border: 1px solid #009;
    color: #000; }

.pagination span.current {
    padding: 2px 5px;
    margin: 2px;
    border: 1px solid #009;
    font-weight: bold;
    background-color: #009;
    color: #FFF; }

.pagination span.disabled {
    padding: 2px 5px;
    margin: 2px;
    border: 1px solid #eee;
    color: #ddd; }

#ta2_other {
    padding: 1em;
    font-size: 0.8125em; }

/* list3, map3, show3 */
#table_area #text_filter_state .table_area {
    margin: 0 0 1em; }

#table_area.l3 .nol3, #table_area.m3 .nom3, #table_area.sh3 .nosh3 {
    display: none; }

.ft_foot td.pgnum {
    text-align: right; }

#nodes_div, #clients_div {
    border-bottom: 5px solid #ccc;
    position: relative; }

#swports_div, #nac_attempts_table, #pcc_machines_table, #pcc_security_table, #pcc_conn_log_table,
#rogue_ssids, #interfering_ssids, #contained_ssids, #rogue_aps_table, #network_table, #network_tag_table, #device_table, #network_tags_table, #devices_table {
    position: relative; }

#node_info_details {
    width: 490px;
    float: left;
    margin-left: -100%; }

#map_details_column {
    margin-left: 500px;
    margin-right: 2px; }

#map_details {
    float: left;
    width: 100%; }

#details_wrapper {
    position: relative; }

#details_wrapper_mx {
    position: relative; }

@media screen and (max-width: 1019px) {
    #node_info_details {
        width: 100%;
        margin-left: 0px;
        float: none; }
    #map_details {
        width: 100%;
        position: absolute;
        bottom: 0; }
    #map_details_column {
        margin-left: 0px; }
    #details_wrapper {
        padding-bottom: 270px; }
    #map_details_column_mx {
        margin-left: 0px; }
    #map_details_mx {
        float: left;
        width: 100%; } }

@media screen and (min-width: 1020px) and (max-width: 1399px) {
    #node_info_details {
        width: 48%;
        float: left;
        margin-left: 0px; }
    #map_details_column {
        margin-left: 0px; }
    #map_details {
        float: right;
        width: 48%; }
    #map_details_column_mx {
        margin-left: 0px; }
    #map_details_mx {
        float: left;
        width: 100%; } }

@media screen and (min-width: 1400px) {
    #node_info_details {
        width: 650px;
        float: left;
        margin-left: -100%; }
    #map_details_column {
        margin-left: 660px; }
    #map_details {
        float: left;
        width: 100%; }
    #map_details_column_mx {
        margin-left: 0px; } }

div.l3search {
    border: 0 none;
    border-spacing: 0;
    border-collapse: collapse;
    padding: 0; }

div.l3search input {
    font-size: 11px; }

div.l3search {
    vertical-align: baseline; }

div.l3search td.openpane {
    background-color: #dbe2d5;
    padding: 4px 0.5em;
    font-size: 90%; }

div.l3search td.openpane a.opener, a.l3opener,
div.l3search td.openpane a.closer, a.l3closer {
    font-weight: bold;
    padding: 0px 10px 0px 0px;
    text-decoration: none; }

div.l3search td.openpane a.opener:hover, a.l3opener:hover,
div.l3search td.openpane a.closer:hover, a.l3closer:hover {
    text-decoration: underline; }

div.l3search td.openpane a.opener, a.l3opener {
    background: url("/images/icon_arrow_down_10x10.png?mtime=1") 100% 65% no-repeat; }

div.l3search td.openpane a.closer, a.l3closer {
    background: url("/images/icon_arrow_up_10x10.png?mtime=1") 100% 65% no-repeat; }

div.l3search td.matchpane {
    width: 16em; }

table.l3counter {
    background-color: #f2f2f2;
    float: right; }

table.l3counter td#node_count {
    padding: 5px 0.5em 5px 0.75em; }

table.l3counter td.l3spacer img {
    width: 1px;
    height: 2.25em; }

#node_count span.result {
    font-weight: bold; }

a.alert_count, .redbold {
    font-weight: bold;
    color: #c60; }

#detail_area .showport3, #detail_header .showport3 {
    display: none; }

#detail_area.showport3 .hideport3, #detail_header.showport3 .hideport3 {
    display: none; }

#detail_area.showport3 .showport3, #detail_header.showport3 .showport3 {
    display: block; }

#port_header {
    position: relative; }

#port_label {
    padding-left: 7px;
    font-weight: bold;
    font-size: 1.2em; }

#port_nav_links {
    position: absolute;
    top: 7px;
    right: 0px; }

.port_status_graph {
    width: 200px;
    height: 20px;
    position: relative; }

#edit_port_config_link {
    font-size: small; }

#port_stats td.curr_traffic {
    width: 215px; }

#port_current_clients table.filter .traffic {
    min-width: 260px; }

div.assoc_graph {
    width: 135px;
    height: 18px;
    position: relative;
    margin: 0 auto; }

div.health_graph {
    width: 200px;
    height: 18px;
    position: relative; }

/* list3 outage graphs */
div.l3outage {
    width: 135px;
    height: 15px;
    position: relative;
    overflow: hidden;
    margin: 0 auto; }

img.l3outage_s0g0, img.l3outage_s0g1, img.l3outage_s2, img.l3outage_s4 {
    width: 135px;
    height: 15px;
    background-image: url(/images/outage-135x15.png?mtime=1); }

img.l3outage_s0g0 {
    background-position: 0 0; }

img.l3outage_s0g1 {
    background-position: 0 -15px; }

img.l3outage_s2 {
    background-position: 0 -30px; }

img.l3outage_s4 {
    background-position: 0 -45px; }

/* printable list3 outage graphs */
img.pl3outage_s0g0 {
    position: absolute;
    left: 0;
    top: 0; }

img.pl3outage_s0g1 {
    position: absolute;
    left: 0;
    top: -15px; }

img.pl3outage_s2 {
    position: absolute;
    left: 0;
    top: -30px; }

img.pl3outage_s4 {
    position: absolute;
    left: 0;
    top: -45px; }

/* list3 pie charts */
#pchart_next_link {
    float: right; }

#pchart_prev_link {
    float: left; }

#rusage_pie_title {
    font-weight: normal;
    font-size: 100%;
    text-align: center;
    margin: 0; }

#pchart_next_link, #pchart_prev_link {
    border: 0; }

#pchart_left_arrow, #pchart_right_arrow {
    border: 0;
    padding: 4px 0 4px 4px;
    width: 7px;
    height: 11px;
    background: url("/images/ui_sprites.gif?2") no-repeat scroll -41px -1px transparent; }

#pchart_right_arrow {
    padding: 4px 4px 4px 0;
    background-position: -60px -1px; }

#pchart_right_arrow:hover {
    background-position: -60px -18px; }

#pchart_left_arrow:hover {
    background-position: -41px -18px; }

/* show3 */
table.s3basic {
    border: 0 none;
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0; }

table.s3basic {
    width: 100%; }

#detail_header {
    position: relative; }

#detail_header > table td {
    vertical-align: middle; }

td.s3status {
    text-align: center;
    padding: 0 0.5em 0 0; }

#next_prev_links {
    position: absolute;
    right: 0;
    bottom: 9px; }

table.s3basic td.s3l {
    text-align: right;
    color: #666;
    padding-right: 0.5em;
    width: 120px;
    white-space: nowrap; }

td.s3w {
    padding-bottom: 0.5ex; }

td.s3x {
    padding-bottom: 0.3ex; }

hr {
    background-color: #bbb;
    color: #bbb;
    border: 0 none;
    height: 1px;
    clear: both; }

table.s3addr_assignment {
    margin-bottom: 0.2em; }

table.s3addr_assignment td {
    padding-bottom: 0.3em; }

div.adminhighlight, span.adminhighlight, table.adminhighlight,
tr.adminhighlight, tr.ft1.adminhighlight, li.adminhighlight, label.adminhighlight,
tr.ftp1.adminhighlight, tr.fth1.adminhighlight, input.adminhighlight,
a.btn.adminhighlight {
    background-color: #fff0f0; }

.btn.btn-default.adminhighlight {
    background-color: #fff0f0; }

div.pendinghighlight, span.pendinghighlight, table.pendinghighlight,
tr.pendinghighlight, li.pendinghighlight, tr.ft1.pendinghighlight,
tr.ftp1.pendinghighlight, tr.fth1.pendinghighlight {
    background-color: #F7F9B3; }

div.pendingdelete, span.pendingdelete, table.pendingdelete,
tr.pendingdelete, li.pendingdelete, tr.ft1.pendingdelete,
tr.ftp1.pendingdelete, tr.fth1.pendingdelete {
    background-color: #F0D3D3; }

a.become_user {
    font-size: 9px;
    margin: 0px 5px;
    display: inline-block;
    padding: 2px; }

span.as_blocked, label.as_blocked {
    color: darkRed; }

span.as_whitelisted, label.as_whitelisted {
    color: #55c; }

div.show3_graph h3 {
    margin: 10px 0px 5px;
    font-size: 11px;
    font-weight: bold; }

div.show3_graph {
    position: relative; }

h3.s3graph,
div.show3_graph h3.s3graph {
    margin: 10px 0 5px;
    font-size: 100%;
    font-weight: bold; }

div.s3graph_subhead {
    margin: -2px 0 5px;
    font-size: 11px; }

div.show3_graph div.gholder {
    width: 350px;
    height: 100px;
    position: relative; }

div#right_switch div.show3_graph.outage_graph {
    margin-left: 46px; }

div.right_mx div.show3_graph.outage_graph, div.span6 div.show3_graph.outage_graph {
    margin-left: 46px; }

div.show3_graph.outage_graph div.gholder {
    height: 60px;
    position: relative; }

div.show3_graph div.gholder_mx, div.show3_graph div.gholder_switch {
    width: 100%;
    height: 60px;
    position: relative; }

div.show3_graph.outage_graph div.gholder_mx, div.show3_graph.outage_graph div.gholder_switch {
    height: 30px;
    position: relative; }

#outage_graph_canvas_tooltip {
    background-color: white;
    opacity: 0.8;
    -moz-opacity: 0.8;
    filter: alpha(opacity=80);
    font-size: x-small;
    padding: 0px 2px;
    display: none;
    position: absolute; }

div.show3_inline_graph_subhead {
    position: absolute;
    right: 0;
    top: 5px; }

div.show3_legend_reversed table tr td {
    float: right;
    clear: left;
    padding-left: 3px; }

div.show3_legend_reversed table tr td.legendLabel {
    padding-left: 10px; }

h3.s3rusage_pie_title {
    font-weight: normal;
    font-size: 13px;
    padding: 0 22px 0 0;
    margin: 0; }

div.s3rusage_pie_canvas {
    width: 138px;
    height: 138px;
    margin-top: 5px; }

div.s3rusage_pie_legend {
    width: 138px;
    font-size: smaller;
    margin: 5px 0 15px; }

#w3times .t0, #w3times .t1 {
    font-weight: bold; }

a.live img.live {
    position: relative;
    bottom: -3px; }

a.live img.spinner {
    padding-right: 1px; }

#w3times span.t, #w3timespan span.t {
    font-weight: bold;
    white-space: nowrap; }

#w3times span.t {
    padding: 0 0.3em; }

#w3times span.t a.t, #w3timespan span.t a.t {
    font-weight: normal; }

#w3stale {
    font-size: smaller;
    color: black;
    margin: 2px 0; }

.mw_lb {
    border-left: 1px solid #ddd; }

.mw_tb {
    border-top: 1px solid #ddd; }

.mw_rb {
    border-right: 1px solid #ddd; }

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

.mw_tsp, .mw_tbsp {
    padding-top: 5px; }

.mw_bsp, .mw_tbsp, .mw_blsp, .mw_brsp {
    padding-bottom: 5px; }

.mw_lsp, .mw_blsp {
    padding-left: 10px; }

.mw_rsp, .mw_brsp {
    padding-right: 10px; }

.mw_yellow {
    background: #ffffe8;
    padding: 0 5px;
    border-top: 1px solid #e8e8b8;
    border-bottom: 1px solid #e8e8b8;
    margin: 2px 0 8px; }

.mw_yellow > .mw_tbsp {
    padding-top: 3px;
    padding-bottom: 3px; }

/* usage3 */
table.u3times {
    margin: 0 auto;
    width: 798px;
    border-spacing: 0;
    border-collapse: collapse; }

#sidetabs_body_container table.u3times {
    margin: 0 auto 0 0; }

table.u3times td.timelinks, table.u3times td.timecur {
    font-size: 85%; }

table.u3times td.timelinks {
    text-align: right; }

table.u3times td.timelinks span.t {
    padding: 0 0.5em; }

/* Begin Switchport rules */
div#table_area.switchports {
    margin-left: auto;
    margin-right: auto; }

input#switchports_edit {
    margin-top: 5px; }

#switch_ports_edit_modal .modal-footer {
    padding-top: 7px;
    padding-bottom: 7px; }

#switch_ports_edit_modal table {
    width: 100%; }

#switch_ports_edit_modal table td {
    padding-bottom: 8px;
    vertical-align: middle; }

#switch_ports_edit_modal table td:first-child {
    width: 20em; }

#switch_ports_edit_modal table td select {
    width: 100%; }

#switch_ports_edit_modal table td input {
    width: 100%;
    box-sizing: border-box; }

#switch_ports_edit_modal table td textarea {
    width: 100%;
    box-sizing: border-box; }

#switch_ports_mirror_port_modal table {
    width: 100%; }

#switch_ports_mirror_port_modal table td {
    padding-bottom: 8px;
    vertical-align: middle; }

#switch_ports_mirror_port_modal table td:first-child {
    width: 20em; }

#switch_ports_mirror_port_modal table td select {
    width: 100%; }

#switch_ports_mirror_port_modal table td input {
    width: 100%;
    box-sizing: border-box; }

#switch_ports_mirror_port_modal table td textarea {
    width: 100%;
    box-sizing: border-box; }

#mx_ports_edit_modal.not_enabled .enabled_only,
#mx_ports_edit_modal.not_trunk_port .trunk_only,
#mx_ports_edit_modal.not_access_port .access_only,
#mx_ports_edit_modal.access_policy_type_open .access_policy_type_not_open {
    display: none; }

#mx_ports_edit_modal .chosen-results {
    max-height: 60px; }

#switch_ports_edit_modal.stp_disabled .stp_only {
    display: none; }

#switch_ports_edit_modal.trunk_port .access_only {
    display: none; }

#switch_ports_edit_modal.access_port .trunk_only {
    display: none; }

#switch_ports_edit_modal.hide_mac_whitelist .mac_whitelist {
    display: none; }

#switch_ports_edit_modal.hide_dual_media_only .dual_media_only {
    display: none; }

#switch_ports_edit_modal.hide_sticky_whitelist_limit .sticky_whitelist_limit {
    display: none; }

#switch_ports_edit_modal .stack_hide {
    display: none; }

label[for='switch_ports_edit_switch_ports'] {
    vertical-align: top; }

#switch_ports_edit_switch_ports {
    max-height: 50px;
    width: 100%;
    border: 1px solid #cccccc;
    padding: 4px;
    margin-bottom: 4px;
    display: inline-block;
    overflow-y: auto; }

div.switch-ports-edit-banner {
    font-size: 1em;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
    white-space: normal;
    display: block;
    line-height: 1.5; }

div.switch_port_status_fill_graph {
    width: 100px;
    height: 18px;
    position: relative; }

div.switch_ports_actions_bar {
    text-align: left;
    margin: 5px 0 5px 0; }

/* End Switchport rules */
div.fake_fill_graph {
    border: 2px solid #555555;
    margin-top: 1px;
    margin-bottom: 1px; }

/* Begin rogue_aps rules */
ul#timeranges {
    list-style: none;
    display: inline;
    margin: 0;
    padding: 0; }

ul#timeranges li {
    margin-left: .9em;
    display: inline; }

ul#timeranges li.selected {
    font-weight: bold; }

ul#timespan_controls {
    list-style: none;
    display: inline;
    margin: 0;
    padding: 0; }

ul#timespan_controls li {
    margin-right: .9em;
    line-height: 16px;
    vertical-align: middle;
    display: inline; }

ul#timespan_controls li.hide_last_scan {
    display: none; }

ul#timespan_controls li img {
    vertical-align: text-bottom; }

ul#timespan_controls li span.timespan_currently_selected {
    font-weight: bold; }

/* End rogue_aps rules */
div.map3saveloc {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 20em;
    z-index: 100; }

.table_map3saver {
    margin: 8px auto;
    border-spacing: 1px;
    border: 1px solid black;
    background-color: white; }

.td_map3saver {
    padding: 2px 8px;
    color: black;
    font-size: 13px; }

.b_map3saver {
    font-size: 11px; }

.nodisplay {
    display: none; }

/* Begin rules for splash2 theme editor (app/views/manage/networks/splash2_theme_edit.rhtml) */
.splash2_title_div {
    width: 100%;
    margin: 10px 0 14px 0;
    border-bottom: 1px dotted #ccc;
    position: relative;
    padding-bottom: 6px; }

.splash2_edit_title {
    font-size: 24px;
    display: inline;
    margin: 0 10px 10px 0; }

.title_links {
    display: inline;
    position: absolute;
    right: 0;
    bottom: 10px; }

.grey_highlighted {
    background-color: #eee; }

.yellow_highlighted {
    background-color: #ff9; }

.editable_grey {
    color: #999; }

.file_loading_div {
    filter: alpha(opacity=90);
    -moz-opacity: .90;
    opacity: .90;
    color: #111;
    background-color: #eee;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    font-size: 24px; }

#left_pane {
    float: left;
    width: 250px;
    margin-top: 16px; }

.file_list_title {
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px; }

.file_list_entry {
    font-size: 12px;
    padding: 4px 14px;
    border-top: 1px dotted #ccc;
    position: relative; }

.file_list_filename {
    font-weight: normal; }

.file_list_details {
    font-style: italic; }

.file_list_details_right {
    float: right; }

.file_displayedit_div {
    margin-left: 250px;
    width: auto; }

#file_preview_el {
    position: relative;
    color: #ccc; }

#file_display_iframe {
    width: 99%;
    height: 800px;
    border: 1px solid #999; }

.file_edit_area {
    width: 99%; }

.arrow_indicator {
    position: absolute;
    font-size: 32px;
    left: -2px;
    top: -10px;
    color: #22f; }

#upload_target {
    width: 0;
    height: 0;
    border: 0 solid #fff; }

/* End rules for splash2 theme editor (app/views/manage/networks/splash2_theme_edit.rhtml) */
/* begin rules for user_auth_list widget */
.access_list_controls {
    width: 100%; }

.access_list_controls input {
    font-size: 11px; }

.access_list {
    font-size: 11px;
    border-collapse: collapse; }

.access_list_heading {
    font-size: 12px;
    margin-bottom: 0.3em; }

.authed_users_list {
    max-height: 250px;
    overflow-y: auto;
    margin: 0.5em 0;
    position: relative; }

.access_list_entry {
    border-bottom: 1px dotted #bbb;
    padding: 6px;
    background-color: #fff;
    /* necessary for .hover() in IE? */
    cursor: pointer; }

.access_list_entry:last-child {
    border: 0; }

.access_list_entry .options_links {
    color: #1D770B;
    position: absolute;
    right: 10px;
    font-size: 11px;
    background-color: #fff;
    display: none;
    padding: 0 2px 0 4px; }

.access_list_entry.highlight2 .options_links {
    background-color: #f7f9b3; }

.access_list_entry .options_links a {
    padding: 0 1px; }

.add_user_form_outer {
    font-size: 11px;
    width: 100%;
    display: none; }

.add_user_tabs {
    position: relative;
    top: 1px; }

.add_user_tabs ul {
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
    margin: 0;
    overflow: hidden;
    padding: 0;
    white-space: nowrap; }

.add_user_tabs ul li {
    border-color: #ccc;
    border-width: 1px;
    border-style: solid;
    display: block;
    float: left;
    margin: 0 3px;
    padding: 4px 8px;
    border-bottom: 0;
    background-color: #ddd; }

.add_user_tabs ul li.selected {
    border-bottom: 1px solid #eee;
    background-color: #eee; }

.add_user_tabs ul li a {
    color: #333;
    text-decoration: none; }

.add_user_tabs ul li.selected a {
    color: #000; }

.add_user_tab1 {
    display: none; }

.add_user_form_div {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 6px; }

.add_user_form_div div {
    font-weight: normal; }

.add_user_form_div select {
    font-size: 11px; }

.add_existing_user_button {
    margin: 4px 0 0; }

.edit_user_form_div {
    font-size: 11px;
    margin-top: 2px; }

.edit_user_form_div select {
    font-size: 11px; }

.edit_user_form_div ul, .edit_user_form_div li {
    list-style: none;
    margin-left: 0;
    padding-bottom: 0; }

.edit_user_form_div label {
    display: block;
    margin-bottom: 0;
    margin-right: 4px;
    width: 100px;
    text-align: right;
    line-height: 18px; }

.highlight2 {
    /* outline:2px solid #f7f9b3; */
    background-color: #f7f9b3; }

/* end rules for user_auth_list widget */
/* begin rules for floorplan "dialog" */
table.floorplan_edit tr {
    vertical-align: top; }

/* end rules for floorplan "dialog" */
/* begin rules for ui-dialog */
.ui-dialog {
    z-index: 1000000;
    /* in front of everything */ }

/* end rules for ui-dialog */
.confirm_button_container {
    position: relative;
    margin: 15px 0 0;
    text-align: center; }

/* start rules for license warnings */
div.license_state {
    display: inline-block; }

.license_state input {
    margin-top: 4px;
    font-size: 12px; }

span.license_quality {
    font-weight: bold;
    margin: 0;
    padding: 2px 10px; }

span.license_quality.valid {
    color: #fff;
    background-color: #0d0; }

span.license_quality.warning {
    color: #444;
    background-color: #f9dc2f; }

span.license_quality.bad {
    color: #fff;
    background-color: #d00; }

span.license_quality.advisory {
    background-color: #fdd; }

/* end licensing */
/* Begin Organization::Bulk-edit */
body.org_bulk_edit table#editor {
    width: 800px;
    border-collapse: collapse; }

#editor .spinner {
    display: none; }

#editor.has_spinner .spinner {
    display: inline; }

body.org_bulk_edit table#editor #dst_network_picker {
    width: 100%; }

body.org_bulk_edit table#editor #src_network_picker {
    width: 100%; }

body.org_bulk_edit table#editor td {
    padding-right: 6px; }

body.org_bulk_edit table#editor td.topic {
    width: 22%; }

body.org_bulk_edit table#editor td.src {
    width: 30%; }

body.org_bulk_edit table#editor td.dst {
    padding-right: 0; }

body.org_bulk_edit table#editor span.description {
    text-decoration: none;
    border-bottom: 1px dotted; }

body.org_bulk_edit table#editor span.description.single_network {
    border: none; }

body.org_bulk_edit table#editor tr.setting td.copy_controls {
    text-align: right;
    padding: 3px; }

body.org_bulk_edit table#editor tr.setting {
    height: 24px; }

body.org_bulk_edit table#editor tr.setting.ft1 {
    background-color: #F2F4F5; }

body.org_bulk_edit table#editor tr.setting td {
    padding-right: 12px; }

body.org_bulk_edit table#editor tr.setting.main td {
    /*  padding-top: 4px;*/ }

body.org_bulk_edit table#editor tr.setting.main td.title {
    font-weight: bold;
    padding-left: 5px; }

body.org_bulk_edit table#editor tr.setting.sub td.title {
    padding-left: 10px; }

/* Default bubble */
body.org_bulk_edit table#editor tr.setting td.dst .undefined_bubble {
    display: inline-block; }

/* Hide red/green bubbles for undifferentiated cells, and hide default bubble
   for differentiated cells. */
body.org_bulk_edit table#editor tr.setting td.dst .same_bubble,
body.org_bulk_edit table#editor tr.setting td.dst .different_bubble,
body.org_bulk_edit table#editor tr.setting td.dst.same .undefined_bubble,
body.org_bulk_edit table#editor tr.setting td.dst.different .undefined_bubble {
    display: none; }

/* Show red/green bubbles for differentiated cells */
body.org_bulk_edit table#editor tr.setting td.dst.same .same_bubble,
body.org_bulk_edit table#editor tr.setting td.dst.different .different_bubble {
    display: inline-block; }

body.org_bulk_edit table#editor tr.setting td.dst .colbult_l2 {
    /* Fix alignment of green/red bubbles */
    position: static; }

/* End Organization::Bulk-edit */
/* LLDP Device icon */
.lldp_icon {
    vertical-align: bottom;
    width: 15px;
    height: 15px;
    margin: -5px 0 0 0; }

.phone {
    background-image: url("/images/phone-512.png");
    margin-left: -1px;
    margin-right: 2px;
    margin-bottom: 1px;
    background-size: 100%; }

.speaker {
    background-image: url("/images/speaker-phone.png");
    margin-right: 5px;
    background-size: 100%; }

.mv {
    background-image: url("/images/node_icons/mv_all.png");
    margin-right: 5px;
    margin-left: -4px;
    width: 26px;
    height: 22px;
    vertical-align: bottom;
    background-position: 1px 3px; }

.ms {
    background-image: url("/images/node_icons/ms_all.png");
    margin-right: 5px;
    margin-left: -4px;
    width: 26px;
    height: 22px;
    vertical-align: bottom;
    background-position: 1px 3px; }

.mx {
    background-image: url("/images/node_icons/ma20_small.png");
    margin-right: 5px;
    margin-left: -4px;
    width: 28px; }

.mr {
    background-position: -4px -2px;
    margin-left: -2px;
    margin-right: 3px; }

.mr11 {
    background-image: url("/images/node_icons/mr11_small.png"); }

.mr12 {
    background-image: url("/images/node_icons/mr12_small.png"); }

.mr14 {
    background-image: url("/images/node_icons/mr14_small.png"); }

.mr16 {
    background-image: url("/images/node_icons/mr16_small.png"); }

.mr18 {
    background-image: url("/images/node_icons/mr18_small.png"); }

.mr24 {
    background-image: url("/images/node_icons/mr24_small.png"); }

.mr26 {
    background-image: url("/images/node_icons/mr26_small.png"); }

.mr32 {
    background-image: url("/images/node_icons/mr32_small.png"); }

.mr34 {
    background-image: url("/images/node_icons/mr34_small.png"); }

.mr42 {
    background-image: url("/images/node_icons/mr42_small.png"); }

.mr52 {
    background-image: url("/images/node_icons/mr52_small.png"); }

.mr53 {
    background-image: url("/images/node_icons/mr53_small.png"); }

.mr58 {
    background-image: url("/images/node_icons/mr58_small.png"); }

.mr62 {
    background-position: -5px -1px;
    background-image: url("/images/node_icons/mr62_small.png"); }

.mr66 {
    background-image: url("/images/node_icons/mr66_small.png");
    background-position: -5px -1px; }

.mr72 {
    background-image: url("/images/node_icons/mr72_small.png");
    background-position: -3px -1px; }

/* help-info */
.asx_p, .asx_np {
    font-size: 13px !important;
    vertical-align: baseline;
    cursor: pointer;
    margin: 2px 0 0 5px; }

.asx_p {
    color: #848484; }

.asx_np {
    color: #d8d8d8; }

.asx_l {
    width: 11px;
    height: 11px;
    background-image: url(/images/liveupdateon_small.gif?mtime=14);
    cursor: pointer;
    margin-left: 3px; }

/* help-info */
/* live tools play and stop */
.ltplay, .ltstop, .ltagain, .ltclose {
    vertical-align: top;
    width: 17px;
    height: 15px;
    background-image: url("/images/mainsprite.png"); }

.ltplay, .ltagain {
    background-position: -34px -91px; }

.ltplay:hover, .ltagain:hover {
    background-position: -211px -54px; }

.ltstop {
    background-position: -210px -22px; }

.ltstop:hover {
    background-position: -228px -22px; }

.ltclose {
    background-position: -52px -91px; }

.ltclose:hover {
    background-position: -229px -54px; }

.ltleftscroll, .ltrightscroll {
    width: 14px;
    height: 15px;
    background-image: url("/images/mainsprite.png"); }

.ltrightscroll {
    background-position: -210px -6px; }

.ltrightscroll:hover {
    background-position: -211px -38px; }

.ltleftscroll {
    background-position: -225px -6px; }

.ltleftscroll:hover {
    background-position: -226px -38px; }

.ltscroll {
    background-color: #fff;
    position: absolute;
    z-index: 1;
    cursor: pointer; }

.ltscroll:hover {
    background-color: #ffeac0; }

.ltsupplement, .ltprompt {
    display: none; }

h3.ltsupplement {
    margin: 15px 0 0 50px; }

.tickLabel {
    font-size: 96%; }

/* live tools play and stop */
/* live tools box */
#live_toolbox {
    clear: both;
    width: 100%;
    border-spacing: 0; }

#lt_tools_cell {
    border-right: 1px solid #BBB;
    white-space: nowrap;
    vertical-align: top; }

#lt_tools_container {
    padding-bottom: 20px; }

#lt_display_container {
    vertical-align: top;
    padding: 5px 0 20px 30px; }

.ltplay:hover, .ltstop:hover {
    cursor: pointer; }

.terminal {
    font-family: 'Monaco', 'Courier New', Courier, monospace;
    font-size: 80%; }

.tool_header {
    background-color: #F7F6F6;
    border: solid 1px #BBB;
    border-left: none;
    padding: 8px;
    cursor: pointer;
    margin: 0px -1px -1px 0;
    text-align: right; }

.tool_header .ltstop {
    visibility: hidden;
    margin-left: 10px;
    float: right; }

.tool_header:hover {
    color: #1D770B;
    text-decoration: underline; }

.tool_body {
    display: none; }

.tool_body h3 {
    font-size: 100%;
    font-weight: bold;
    margin: 4px 0 8px;
    height: 20px; }

.tool_body h3 span {
    margin-left: 5px; }

.tool_body h3 img {
    vertical-align: top;
    top: 0; }

.tool_body .spinner {
    margin: 0 10px;
    vertical-align: middle; }

.running_tool {
    background-color: #EEE; }

.current_tool {
    border-right: 1px solid white;
    background-color: white; }

.tool_info {
    margin-bottom: 20px;
    margin-left: 20px; }

.trace_details {
    margin-bottom: 20px; }

.dig_details {
    margin-bottom: 20px; }

#current_usage_hdr {
    margin-bottom: 3px; }

.ping_list {
    width: 100%; }

.ping_list th {
    vertical-align: top;
    border: 1px solid #BBB;
    border-width: 0 0 1px 0;
    padding: 0 0 8px 0; }

.ping_list tbody td {
    padding: 8px 0; }

.testc_ping_canvas {
    width: 350px;
    height: 80px;
    position: relative;
    display: inline-block; }

.single_ping .delete_col {
    vertical-align: top;
    padding-top: 10px; }

.ping_title {
    margin: 0 10px 10px 0;
    min-width: 180px; }

.ping_title img {
    margin-right: 7px; }

.channel_graph {
    border: 1px solid #ddd;
    height: 80px;
    display: table-cell;
    vertical-align: bottom; }

.channel_bar {
    display: inline-block;
    vertical-align: bottom;
    background-color: #dee7ec;
    margin: 0 1px;
    border: 1px solid #84a5b7; }

.channel_label {
    display: inline-block;
    margin: 4px 2px 0;
    text-align: center; }

/* end live tools box */
/* usage graph widgets */
.ugzoomtab, .ugclosetbtab {
    width: 16px;
    background-image: url("/images/mainsprite.png");
    cursor: pointer; }

.ugzoomtab {
    height: 18px;
    background-position: -6px -108px; }

.ugzoomtab:hover {
    background-position: -23px -108px; }

.ugclosetbtab {
    height: 13px;
    background-position: -6px -126px;
    cursor: pointer; }

.ugclosetbtab:hover {
    background-position: -23px -126px; }

.roundgrip {
    width: 9px;
    height: 9px;
    background-image: url("/images/mainsprite.png");
    background-position: -59px -78px; }

/* usage graph widgets */
.mapper_swatch {
    background-color: #eee;
    width: 11px;
    height: 11px;
    float: left;
    position: relative;
    top: 5px; }

.minmax_container {
    position: relative;
    margin-top: 2px; }

.minmax_container input {
    margin-bottom: 2px; }

/* snmp live tool results */
table.ltsn_results tr {
    vertical-align: baseline; }

table.ltsn_results td.field_name {
    font-weight: bold;
    width: 134px; }

table.psupplies td.color {
    width: 18px;
    text-align: center; }

table.psupplies td.supply_name {
    width: 200px; }

table.psupplies td.supply_name span.psupply_detail {
    font-size: 0.7em;
    padding-left: 1ex;
    color: #777; }

table.psupplies td.pct {
    padding-left: 15px; }

table.psupplies td.pct.bad {
    color: #f00;
    font-weight: bold; }

#ifstats_container {
    padding-top: 1ex;
    font-size: 11px; }

#ifstats_container td {
    height: 20px;
    vertical-align: middle; }

div.pcni.iswd {
    width: 37px;
    height: 22px; }

div.pcni.iswd > img {
    left: 0; }

div.pcni_sm.iswd {
    width: 30px; }

div.pcni_sm.iswd > img {
    left: 0; }

div.client_status {
    width: 16px;
    height: 16px;
    position: relative;
    overflow: hidden;
    margin: 0 auto; }

div.client_status img {
    position: absolute;
    left: 0px; }

div.client_status .active {
    top: 0px; }

div.client_status .inactive {
    top: -16px; }

.rssi_graph {
    margin: 0px;
    width: 200px;
    border: 1px solid #aaa;
    background-color: white;
    padding: 0px; }

.rssi_graph .bar {
    display: block;
    background: #6dc86d;
    margin-right: 2px;
    text-align: center;
    font: 0.9em normal 'Lucida Grande', Verdana, Helvetica, sans-serif;
    font-weight: bold;
    color: #fff;
    height: 1.1em;
    line-height: 1.1em; }

.disk_graph {
    margin: 0px;
    margin-top: 2px;
    margin-bottom: 4px;
    height: 12px;
    width: 180px;
    border: 1px solid #aaa;
    padding: 0px;
    background: white; }

.disk_graph .bar {
    height: 100%;
    display: block;
    background: #6dc86d; }

.channel_bargraph {
    margin: 5px 0;
    position: relative;
    border: 1px solid #aaa;
    padding: 0px; }

.channel_bargraph .channel_bar {
    margin: 0px;
    margin-top: 0px;
    margin-bottom: 0px;
    display: inline-block;
    text-align: center;
    color: #fff;
    height: 1.1em;
    line-height: 1.1em; }

.legend_color_bar {
    position: relative;
    padding: 0px;
    margin: 0px;
    display: inline-block;
    text-align: center;
    color: #fff;
    height: 1.0em;
    line-height: 1.0em;
    width: 1.0em;
    margin-left: 0.2em; }

.c_tx {
    /*    background: #ffaa00; */
    background: #7ca1b5; }

.c_rx {
    /*    background: #6dc86d;  */ }

.c_non80211 {
    background: #dee7ec;
    /*    background: #FFD200; */ }

.wan_traffic_graph, .web_cache_graph {
    height: 100px;
    position: relative;
    width: 100%; }

#wan_legend, #web_cache_legend {
    float: right;
    margin-right: 5px; }

#concentrator_endpoints table {
    max-width: 800px; }

#concentrator_endpoints .error {
    color: #DD0000; }

/* Begin rules for manage/organization/edit.rthml */
#organization_force_password_change_days {
    margin: 0 4px; }

#organization_num_forbidden_passwords {
    margin: 0 4px; }

#organization_account_lockout_attempts {
    margin: 0 4px; }

#organization_idle_timeout_minutes {
    margin: 0 4px; }

div.security_option_container div.config_explanation {
    display: inline; }

div.security_option_container div.config_explanation div {
    padding: 0.2em 0 0.4em 2.1em; }

div.security_option_container div#toggle_login_ip_ranges_help div {
    padding: 0; }

div.security_option_container div.config_explanation a.link_text {
    margin-left: 1em; }

#org_logo_div #org_logo_container {
    margin: 0 0 .5em; }

.org_upload_img_box.empty {
    border: 1px solid #e1e1e1;
    color: #979797;
    text-align: center; }

#org_logo_container.empty {
    width: 200px;
    height: 100px;
    line-height: 100px; }

ul.org_upload_img_actions li {
    float: left;
    list-style: none;
    padding: 0 .5em;
    margin: 0;
    border-left: 1px solid #979797; }

ul.org_upload_img_actions li:first-child {
    padding-left: 0;
    border-left: none; }

/* End rules for manage/organization/edit.rhtml */
/* Begin rules for manage/users */
.edit_remove_container {
    padding-left: 20px; }

.sms_auth_header {
    margin-top: 30px; }

.sms_auth_done {
    height: 1.1em; }

.sms_auth_done label.error {
    color: red; }

.phone_field_container {
    margin-bottom: 5px; }

.send_code_container {
    margin: 15px 0 18px; }

.send_code_spinner {
    position: relative;
    bottom: -3px;
    border: none;
    display: none; }

.verify_code_container {
    margin: 15px 0 5px; }

.phone_test_container {
    border: solid #CCC 1px;
    width: 450px;
    padding: 12px 10px 8px;
    margin-top: 10px; }

.sms_auth_button_container {
    margin-top: 20px; }

.sms_auth_cancel_container {
    margin-left: 20px; }

#meter {
    display: inline-block;
    vertical-align: middle; }

#meter_img {
    display: inline-block; }

#pwConf img {
    display: none;
    position: relative;
    height: 16px;
    vertical-align: middle;
    margin-left: 6px; }

#pwNote {
    display: block;
    float: left;
    margin-left: 6px;
    height: 14px; }

#pwContain {
    display: none;
    position: relative;
    float: left;
    height: 12px;
    margin-left: 6px; }

#pwContainer {
    display: block;
    position: relative;
    float: left;
    height: 12px;
    margin-left: 6px; }

#pwSpinner {
    display: none;
    margin-left: 6px; }

/* End rules for manage/users */
.styled_form_simple .field {
    margin: 10px 0; }

.styled_form_simple .field label {
    display: inline-block;
    width: 10em; }

.styled_form_simple input.error {
    border: 1px solid red; }

.styled_form_simple label.error {
    margin-left: 10em;
    color: red;
    width: auto; }

tr .deauth_link {
    margin-left: 5px;
    visibility: hidden; }

tr:hover .deauth_link {
    visibility: visible; }

table.vpn_participants_list {
    font-size: 11px;
    line-height: 20px;
    width: 100%; }

table.vpn_participants_list .error {
    color: #D00; }

#assign_msg .error {
    color: #D00; }

#status_table .live_status {
    display: none; }

.firewall .counter.disabled {
    color: darkgrey; }

.firewall .counter .dashhelp {
    display: none; }

/* .firewall .counter.disabled .dashhelp { display: inline; } */
/* .firewall .counter.disabled .data { display: none; } */
table.filter.compact td.ft.actions {
    padding: 0; }

#groups_query #groups_spinner {
    display: none; }

#groups_query.loading #groups_spinner {
    display: inline; }

/* Browser Reset
 * chrome's and firefox's default user-agent stylesheet includes this, but IE
 * does not. */
table {
    border-spacing: 2px;
    border-collapse: separate; }

form {
    margin: 0px; }

/* End Browser Reset */
#wired_vlans, #template_wired_vlans {
    margin-top: 1.3em; }

/* Begin rules for 1:1 NAT (on both usage/show4.rhtml and manage/configure/firewall.rhtml) */
td.a_1to1_firewall_container_cfgq, td.a_1to1_firewall_container_cfgo {
    padding-top: 0.5em; }

div.a_1to1_firewall_container {
    width: 400px; }

/* End rules for manage/configure/firewall.rhtml */
input.hint_text {
    color: #777; }

/* Begin rules usage/list listed_device details */
#group_policy_action_dialogue #add_client_details {
    display: none; }

#group_policy_action_dialogue.no_client_details .add_client_details {
    display: none; }

#group_policy_action_dialogue .modal-header h3 {
    display: none; }

#group_policy_action_dialogue #add_client_details p {
    margin-top: 0; }

#group_policy_action_dialogue.add_client_details .modal-header h3.append,
#group_policy_action_dialogue.no_client_details .modal-header h3.edit {
    display: block; }

#group_policy_action_dialogue.add_client_details #add_client_details {
    display: block; }

#group_policy_action_dialogue .spinner {
    display: none; }

#group_policy_action_dialogue.add_spinner .spinner {
    display: block; }

#group_policy_action_dialogue.add_spinner .spinner:before {
    content: "Saving... "; }

#group_policy_action_dialogue .modal-body #add_client_details table tr.base {
    vertical-align: top; }

#group_policy_action_dialogue .modal-body td {
    padding: .5ex 0; }

#group_policy_action_dialogue .context.group_policy {
    display: inline-block; }

#group_policy_action_dialogue .ellipsis {
    color: darkgray;
    background-color: white;
    padding-right: 1ex; }

#group_policy_action_dialogue .context label:hover .ellipsis {
    color: black;
    background-color: white; }

#group_policy_action_dialogue .context.selected .ellipsis {
    color: black;
    background-color: white;
    display: none; }

.hidden.skeleton {
    display: none; }

#group_ssid_map_c .vlans_id, #group_ssid_map_c .group_id {
    /* */ }

div.chosen_wrapper, div.chosen_wrapper div {
    position: relative;
    display: block; }

.hide {
    display: none; }

#group_ssid_map_c .warning.flex_editor_row_tr td {
    border: 1px solid yellow; }

#group_policy_action_dialogue .warn_no_groups {
    display: none; }

#group_policy_action_dialogue .no_groups label {
    color: silver; }

#group_policy_action_dialogue .no_groups SELECT {
    display: none; }

#group_policy_action_dialogue .no_groups .warn_no_groups {
    display: block; }

/* End rules usage/list listed_device details */
/* Begin rules for nodes/show4   */
.status_table {
    white-space: nowrap; }

.status_table tr.allow_wrap td.s3x {
    white-space: normal; }

.status_table td.s3l {
    padding-left: 2em; }

.status_table div.s3x_l {
    float: left;
    padding-left: .5em; }

.status_table div.s3x_r {
    float: left;
    padding-left: .9em; }

#group_policy_action_dialogue .selected.context .addendum {
    display: block; }

#group_policy_action_dialogue .context .addendum {
    display: none; }

#ssid_detail_control .less {
    display: none; }

.show_details#ssid_detail_control .less {
    display: inline; }

.show_details#ssid_detail_control .more {
    display: none; }

#ssid_broadcast_details {
    display: none; }

.show_details#ssid_broadcast_details {
    display: block; }

#air_marshal_notification {
    margin-bottom: 8px; }

#air_marshal_notification .config_explanation {
    display: inline;
    font-size: 80%;
    margin-left: 10px; }

.status_alerts a.more, .status_alerts a.less {
    margin-left: 4px;
    font-weight: normal; }

ul.status_alerts {
    padding-left: 0;
    padding-bottom: 8px;
    margin: 0;
    color: #D00; }

.status_alerts_container {
    display: none; }

.status_alerts > li, .status_alerts .alerts > li {
    list-style: none;
    margin-bottom: 2px;
    font-weight: bold;
    margin-bottom: 4px; }

.status_alerts li.adminhighlight {
    color: #CB7213; }

.status_alerts .alert_details {
    font-weight: normal; }

.switch_stats_error {
    color: red; }

a.mps_control {
    cursor: pointer;
    text-decoration: underline; }

/* End rules for nodes/show4   */
/* Begin rules for Change log */
div.hidden_values {
    display: none; }

span.value_column_toggle_link {
    color: #1D770B;
    text-decoration: underline; }

/* End rules for Change log */
#split_tunnel_epilogue table tr {
    height: 1.5em; }

/* Begin rules for PCI report */
td.confirm_text {
    width: 520px; }

td.confirm {
    text-align: center; }

span.confirm_text {
    width: 520px;
    display: inline-block; }

span.confirm {
    width: 80px;
    display: inline-block;
    text-align: center; }

td.pci.results {
    padding: 8px; }

td.pci.results.indent {
    padding-bottom: 20px;
    padding-left: 30px; }

.pci.pass {
    color: green; }

.pci.fail {
    color: red; }

td.pci.number {
    vertical-align: top; }

td.pci.description {
    vertical-align: top; }

td.pci.result {
    vertical-align: middle; }

h4.pci.report_header {
    margin-bottom: 0px; }

h4.pci.report_question {
    margin: 0px; }

.pci.action {
    float: left; }

.additional_actions .pci.action {
    margin: 12px 2px 0px 0px; }

.pci.inline {
    display: inline-block; }

.pci.version {
    margin: 0 0 3px 10px;
    vertical-align: middle; }

/* End rules for PCI report */
/* cable test rules */
span.cable_test_status_ok {
    font-weight: bold;
    color: green; }

span.cable_test_status_fail {
    font-weight: bold;
    color: red; }

/* end cable test rules */
/* begin access policy rules */
.access_policy_block {
    margin-top: 1em;
    border-bottom: 1px solid #DDD; }

#no_access_policies_message {
    padding: 2em;
    text-align: center;
    background-color: #DDD;
    display: none; }

#add_access_policy_link {
    display: none; }

#master_access_policy_block {
    display: none; }

/* end access policy rules */
#new_feature_notification_text a {
    color: #8B2323; }

div.feature_post {
    max-width: 600px;
    margin-bottom: 10px; }

span.feature_post_name {
    font-size: 140%; }

span.feature_post_subtitle {
    color: gray;
    white-space: nowrap; }

div.feature_post_body {
    margin-bottom: 50px;
    margin-left: 27px; }

div.feature_post_title_text {
    margin-left: 26px; }

.collapse_arrow {
    cursor: pointer; }

.feature_post_metadata {
    margin-top: 15px;
    color: gray;
    font-size: 11px; }

.feature_post_category {
    margin-top: 2px;
    margin-bottom: 8px;
    color: gray;
    font-size: 11px; }

.relevant_node_groups_list {
    margin-left: 8px;
    margin-top: 4px; }

.relevant_node_groups_list div {
    padding: 0px 2px;
    float: left; }

.relevant_node_groups_list_item {
    border-radius: 3px;
    moz-border-radius: 3px;
    margin-right: 8px;
    margin-bottom: 3px; }

.relevant_node_groups_list_item:hover {
    background-color: lightgreen; }

.relevant_node_groups_list a {
    text-decoration: none; }

.relevant_node_groups_list_item.show_all_link:hover {
    background-color: lightblue; }

.no_text_selection {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none; }

/* modal centering for react layout */
.react-modal {
    top: -50%;
    left: 0%;
    height: 100%;
    width: 100%;
    margin: auto; }

.ft_add_col .pull-right {
    left: auto;
    right: 0;
    -moz-top-right-border-radius: 0 !important;
    -webkit-top-right-border-radius: 0 !important;
    border-top-right-radius: 0 !important; }

th.ft.add_col {
    box-sizing: border-box;
    min-width: 30px;
    border-left: 2px solid white;
    padding: 0;
    border-radius: 0; }

td.ft.add_col {
    min-width: 30px; }

th.ft.add_col {
    width: 40px; }

.float_add_col_btn.btn-group {
    position: absolute;
    top: 0;
    right: 0;
    height: 24px;
    width: 40px;
    background-color: #ccc;
    color: black;
    z-index: 2;
    border-left: 2px solid white;
    font-size: 11px; }

.float_add_col_btn .btn {
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    float: none;
    border: 0 none;
    box-shadow: none;
    background-image: none;
    background-color: transparent !important;
    width: 40px;
    height: inherit;
    padding: 0; }

.float_add_col_btn:hover {
    background-color: #7AC142; }

.float_add_col_btn:hover .btn {
    color: white; }

.float_add_col_btn.snap_to_margin {
    right: -20px; }

.ft_add_col .checkboxes {
    white-space: nowrap; }

.ft_add_col .group_name {
    margin-bottom: 0;
    text-align: left; }

.ft_add_col .single-column, .ft_add_col .double-column {
    padding: 4px; }

.ft_add_col .single-column div:first-child h3, .ft_add_col .right div:first-child h3, .ft_add_col .left div:first-child h3 {
    margin-top: 0; }

.ft_add_col ul {
    list-style: none;
    text-align: left;
    padding: 4px;
    margin: 0;
    font-weight: normal; }

.ft_add_col ul li {
    padding: 0; }

.ft_add_col .left, .ft_add_col .right {
    vertical-align: top; }

.ft_add_col .left, .ft_add_col .right {
    bottom: auto;
    top: auto;
    position: static; }

.ft_add_col .left {
    padding-right: 12px; }

.ft_add_col .right {
    padding-left: 12px; }

.ft_add_col .details_heading {
    margin-top: 5px;
    margin-bottom: 0;
    text-align: left;
    margin: 0 0 0 5px; }

.ft_add_col .drag_heading {
    font-weight: normal;
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 1px solid #CECECE;
    margin: 0 0 5px 5px; }

.lt_options {
    margin-bottom: 10px;
    width: 821px; }

#nc_options {
    width: 860px; }

#tc_options {
    width: 1020px; }

#curl_options {
    width: 1087px; }

#fe_flag_select {
    width: 95px;
    height: 14px; }

#fe_flag_select, #tc_flag_select {
    width: 90px;
    height: 14px; }

.lt_tool_select {
    width: 125px; }

#tc_tool_select {
    width: 140px; }

.lt_file_explore_input .lt_nc_input {
    margin: 0 3px 10px 0; }

.lt_contents {
    margin: 8px 0 0 0;
    height: 334px; }

.lt_textarea {
    margin: 0;
    overflow: auto;
    width: 100%;
    height: 100%;
    border: 1px solid #cccccc;
    padding: 10px 0px 5px 10px;
    font-size: 12px;
    font-family: Courier;
    line-height: normal;
    resize: none; }

#popout_file_explore_contents {
    padding-left: 5px; }

#popout_file_explore_params {
    padding: 8px 4px 8px 4px; }

#popout_file_explore_params label {
    font-weight: bold; }

#popout_file_explore_params span {
    margin-right: 10px; }

#fe_num_lines, #text_ping_size, #text_ping_count {
    width: 50px; }

#tc_debug_level {
    width: 30px; }

#gmap .gmnoprint {
    z-index: 1 !important; }

#drag_helper {
    font-size: 11px; }

#add_aps_name {
    width: 300px; }

.dropdown-subtle-container a.selected {
    text-decoration: none;
    font-weight: bold;
    color: black; }

.dropdown-subtle-container a.selected:hover {
    background-color: inherit;
    color: inherit; }

.dropdown-subtle-container li {
    padding: 2px 0; }

#client_list_filter.dropdown-subtle-container ul.dropdown-menu {
    max-height: 270px;
    overflow-y: auto; }

#account_main > a {
    display: inline-block;
    padding: 6px 0px 0px; }

#account_main {
    text-align: right; }

.admin-dropdown-menu > a .caret {
    margin-left: 4px; }

.admin-dropdown-menu > a {
    border: none !important;
    padding: 0 !important; }

.admin-dropdown-menu.open > a.dropdown-toggle.dropdown-subtle {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important; }

.admin-dropdown-menu {
    display: inline-block; }

.admin-dropdown-menu > a,
.admin-dropdown-menu ul.dropdown-menu li a {
    color: #1D770B;
    text-decoration: underline !important; }

.admin-dropdown-menu .dropdown-menu {
    left: auto;
    right: 0;
    padding: 5px 15px;
    text-align: right; }

.admin-dropdown-menu li {
    padding: 3px 0px;
    white-space: nowrap; }

.admin-dropdown-menu li a {
    padding: 0px 0px;
    display: inline; }

.admin-dropdown-menu li a:hover {
    background-color: inherit;
    color: inherit; }

.client_header {
    padding-bottom: 4px; }

.client_header > h1 {
    margin-top: 2px;
    margin-right: 5px;
    float: left; }

.client_header > div {
    float: left;
    margin-right: 3px; }

#channel_planning .power_reduction select {
    min-width: 75px; }

#create_user_modal .field {
    margin-bottom: 5px; }

var {
    font-style: normal; }

/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
    font-family: 'FontAwesome';
    src: url("../../../fonts/font-awesome/fontawesome-webfont.eot?v=4.6.3");
    src: url("../../../fonts/font-awesome/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../../../fonts/font-awesome/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../../../fonts/font-awesome/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../../../fonts/font-awesome/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../../../fonts/font-awesome/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal; }

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -15%; }

.fa-2x {
    font-size: 2em; }

.fa-3x {
    font-size: 3em; }

.fa-4x {
    font-size: 4em; }

.fa-5x {
    font-size: 5em; }

.fa-fw {
    width: 1.28571em;
    text-align: center; }

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none; }
.fa-ul > li {
    position: relative; }

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: 0.14286em;
    text-align: center; }
.fa-li.fa-lg {
    left: -1.85714em; }

.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eee;
    border-radius: .1em; }

.fa-pull-left {
    float: left; }

.fa-pull-right {
    float: right; }

.fa.fa-pull-left {
    margin-right: .3em; }

.fa.fa-pull-right {
    margin-left: .3em; }

/* Deprecated as of 4.4.0 */
.pull-right {
    float: right; }

.pull-left {
    float: left; }

.fa.pull-left {
    margin-right: .3em; }

.fa.pull-right {
    margin-left: .3em; }

.fa-spin {
    animation: fa-spin 2s infinite linear; }

.fa-pulse {
    animation: fa-spin 1s infinite steps(8); }

@keyframes fa-spin {
    0% {
        transform: rotate(0deg); }
    100% {
        transform: rotate(359deg); } }

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg); }

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg); }

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg); }

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scale(-1, 1); }

.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none; }

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle; }

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center; }

.fa-stack-1x {
    line-height: inherit; }

.fa-stack-2x {
    font-size: 2em; }

.fa-inverse {
    color: #fff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
    content: ""; }

.fa-music:before {
    content: ""; }

.fa-search:before {
    content: ""; }

.fa-envelope-o:before {
    content: ""; }

.fa-heart:before {
    content: ""; }

.fa-star:before {
    content: ""; }

.fa-star-o:before {
    content: ""; }

.fa-user:before {
    content: ""; }

.fa-film:before {
    content: ""; }

.fa-th-large:before {
    content: ""; }

.fa-th:before {
    content: ""; }

.fa-th-list:before {
    content: ""; }

.fa-check:before {
    content: ""; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: ""; }

.fa-search-plus:before {
    content: ""; }

.fa-search-minus:before {
    content: ""; }

.fa-power-off:before {
    content: ""; }

.fa-signal:before {
    content: ""; }

.fa-gear:before,
.fa-cog:before {
    content: ""; }

.fa-trash-o:before {
    content: ""; }

.fa-home:before {
    content: ""; }

.fa-file-o:before {
    content: ""; }

.fa-clock-o:before {
    content: ""; }

.fa-road:before {
    content: ""; }

.fa-download:before {
    content: ""; }

.fa-arrow-circle-o-down:before {
    content: ""; }

.fa-arrow-circle-o-up:before {
    content: ""; }

.fa-inbox:before {
    content: ""; }

.fa-play-circle-o:before {
    content: ""; }

.fa-rotate-right:before,
.fa-repeat:before {
    content: ""; }

.fa-refresh:before {
    content: ""; }

.fa-list-alt:before {
    content: ""; }

.fa-lock:before {
    content: ""; }

.fa-flag:before {
    content: ""; }

.fa-headphones:before {
    content: ""; }

.fa-volume-off:before {
    content: ""; }

.fa-volume-down:before {
    content: ""; }

.fa-volume-up:before {
    content: ""; }

.fa-qrcode:before {
    content: ""; }

.fa-barcode:before {
    content: ""; }

.fa-tag:before {
    content: ""; }

.fa-tags:before {
    content: ""; }

.fa-book:before {
    content: ""; }

.fa-bookmark:before {
    content: ""; }

.fa-print:before {
    content: ""; }

.fa-camera:before {
    content: ""; }

.fa-font:before {
    content: ""; }

.fa-bold:before {
    content: ""; }

.fa-italic:before {
    content: ""; }

.fa-text-height:before {
    content: ""; }

.fa-text-width:before {
    content: ""; }

.fa-align-left:before {
    content: ""; }

.fa-align-center:before {
    content: ""; }

.fa-align-right:before {
    content: ""; }

.fa-align-justify:before {
    content: ""; }

.fa-list:before {
    content: ""; }

.fa-dedent:before,
.fa-outdent:before {
    content: ""; }

.fa-indent:before {
    content: ""; }

.fa-video-camera:before {
    content: ""; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: ""; }

.fa-pencil:before {
    content: ""; }

.fa-map-marker:before {
    content: ""; }

.fa-adjust:before {
    content: ""; }

.fa-tint:before {
    content: ""; }

.fa-edit:before,
.fa-pencil-square-o:before {
    content: ""; }

.fa-share-square-o:before {
    content: ""; }

.fa-check-square-o:before {
    content: ""; }

.fa-arrows:before {
    content: ""; }

.fa-step-backward:before {
    content: ""; }

.fa-fast-backward:before {
    content: ""; }

.fa-backward:before {
    content: ""; }

.fa-play:before {
    content: ""; }

.fa-pause:before {
    content: ""; }

.fa-stop:before {
    content: ""; }

.fa-forward:before {
    content: ""; }

.fa-fast-forward:before {
    content: ""; }

.fa-step-forward:before {
    content: ""; }

.fa-eject:before {
    content: ""; }

.fa-chevron-left:before {
    content: ""; }

.fa-chevron-right:before {
    content: ""; }

.fa-plus-circle:before {
    content: ""; }

.fa-minus-circle:before {
    content: ""; }

.fa-times-circle:before {
    content: ""; }

.fa-check-circle:before {
    content: ""; }

.fa-question-circle:before {
    content: ""; }

.fa-info-circle:before {
    content: ""; }

.fa-crosshairs:before {
    content: ""; }

.fa-times-circle-o:before {
    content: ""; }

.fa-check-circle-o:before {
    content: ""; }

.fa-ban:before {
    content: ""; }

.fa-arrow-left:before {
    content: ""; }

.fa-arrow-right:before {
    content: ""; }

.fa-arrow-up:before {
    content: ""; }

.fa-arrow-down:before {
    content: ""; }

.fa-mail-forward:before,
.fa-share:before {
    content: ""; }

.fa-expand:before {
    content: ""; }

.fa-compress:before {
    content: ""; }

.fa-plus:before {
    content: ""; }

.fa-minus:before {
    content: ""; }

.fa-asterisk:before {
    content: ""; }

.fa-exclamation-circle:before {
    content: ""; }

.fa-gift:before {
    content: ""; }

.fa-leaf:before {
    content: ""; }

.fa-fire:before {
    content: ""; }

.fa-eye:before {
    content: ""; }

.fa-eye-slash:before {
    content: ""; }

.fa-warning:before,
.fa-exclamation-triangle:before {
    content: ""; }

.fa-plane:before {
    content: ""; }

.fa-calendar:before {
    content: ""; }

.fa-random:before {
    content: ""; }

.fa-comment:before {
    content: ""; }

.fa-magnet:before {
    content: ""; }

.fa-chevron-up:before {
    content: ""; }

.fa-chevron-down:before {
    content: ""; }

.fa-retweet:before {
    content: ""; }

.fa-shopping-cart:before {
    content: ""; }

.fa-folder:before {
    content: ""; }

.fa-folder-open:before {
    content: ""; }

.fa-arrows-v:before {
    content: ""; }

.fa-arrows-h:before {
    content: ""; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: ""; }

.fa-twitter-square:before {
    content: ""; }

.fa-facebook-square:before {
    content: ""; }

.fa-camera-retro:before {
    content: ""; }

.fa-key:before {
    content: ""; }

.fa-gears:before,
.fa-cogs:before {
    content: ""; }

.fa-comments:before {
    content: ""; }

.fa-thumbs-o-up:before {
    content: ""; }

.fa-thumbs-o-down:before {
    content: ""; }

.fa-star-half:before {
    content: ""; }

.fa-heart-o:before {
    content: ""; }

.fa-sign-out:before {
    content: ""; }

.fa-linkedin-square:before {
    content: ""; }

.fa-thumb-tack:before {
    content: ""; }

.fa-external-link:before {
    content: ""; }

.fa-sign-in:before {
    content: ""; }

.fa-trophy:before {
    content: ""; }

.fa-github-square:before {
    content: ""; }

.fa-upload:before {
    content: ""; }

.fa-lemon-o:before {
    content: ""; }

.fa-phone:before {
    content: ""; }

.fa-square-o:before {
    content: ""; }

.fa-bookmark-o:before {
    content: ""; }

.fa-phone-square:before {
    content: ""; }

.fa-twitter:before {
    content: ""; }

.fa-facebook-f:before,
.fa-facebook:before {
    content: ""; }

.fa-github:before {
    content: ""; }

.fa-unlock:before {
    content: ""; }

.fa-credit-card:before {
    content: ""; }

.fa-feed:before,
.fa-rss:before {
    content: ""; }

.fa-hdd-o:before {
    content: ""; }

.fa-bullhorn:before {
    content: ""; }

.fa-bell:before {
    content: ""; }

.fa-certificate:before {
    content: ""; }

.fa-hand-o-right:before {
    content: ""; }

.fa-hand-o-left:before {
    content: ""; }

.fa-hand-o-up:before {
    content: ""; }

.fa-hand-o-down:before {
    content: ""; }

.fa-arrow-circle-left:before {
    content: ""; }

.fa-arrow-circle-right:before {
    content: ""; }

.fa-arrow-circle-up:before {
    content: ""; }

.fa-arrow-circle-down:before {
    content: ""; }

.fa-globe:before {
    content: ""; }

.fa-wrench:before {
    content: ""; }

.fa-tasks:before {
    content: ""; }

.fa-filter:before {
    content: ""; }

.fa-briefcase:before {
    content: ""; }

.fa-arrows-alt:before {
    content: ""; }

.fa-group:before,
.fa-users:before {
    content: ""; }

.fa-chain:before,
.fa-link:before {
    content: ""; }

.fa-cloud:before {
    content: ""; }

.fa-flask:before {
    content: ""; }

.fa-cut:before,
.fa-scissors:before {
    content: ""; }

.fa-copy:before,
.fa-files-o:before {
    content: ""; }

.fa-paperclip:before {
    content: ""; }

.fa-save:before,
.fa-floppy-o:before {
    content: ""; }

.fa-square:before {
    content: ""; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: ""; }

.fa-list-ul:before {
    content: ""; }

.fa-list-ol:before {
    content: ""; }

.fa-strikethrough:before {
    content: ""; }

.fa-underline:before {
    content: ""; }

.fa-table:before {
    content: ""; }

.fa-magic:before {
    content: ""; }

.fa-truck:before {
    content: ""; }

.fa-pinterest:before {
    content: ""; }

.fa-pinterest-square:before {
    content: ""; }

.fa-google-plus-square:before {
    content: ""; }

.fa-google-plus:before {
    content: ""; }

.fa-money:before {
    content: ""; }

.fa-caret-down:before {
    content: ""; }

.fa-caret-up:before {
    content: ""; }

.fa-caret-left:before {
    content: ""; }

.fa-caret-right:before {
    content: ""; }

.fa-columns:before {
    content: ""; }

.fa-unsorted:before,
.fa-sort:before {
    content: ""; }

.fa-sort-down:before,
.fa-sort-desc:before {
    content: ""; }

.fa-sort-up:before,
.fa-sort-asc:before {
    content: ""; }

.fa-envelope:before {
    content: ""; }

.fa-linkedin:before {
    content: ""; }

.fa-rotate-left:before,
.fa-undo:before {
    content: ""; }

.fa-legal:before,
.fa-gavel:before {
    content: ""; }

.fa-dashboard:before,
.fa-tachometer:before {
    content: ""; }

.fa-comment-o:before {
    content: ""; }

.fa-comments-o:before {
    content: ""; }

.fa-flash:before,
.fa-bolt:before {
    content: ""; }

.fa-sitemap:before {
    content: ""; }

.fa-umbrella:before {
    content: ""; }

.fa-paste:before,
.fa-clipboard:before {
    content: ""; }

.fa-lightbulb-o:before {
    content: ""; }

.fa-exchange:before {
    content: ""; }

.fa-cloud-download:before {
    content: ""; }

.fa-cloud-upload:before {
    content: ""; }

.fa-user-md:before {
    content: ""; }

.fa-stethoscope:before {
    content: ""; }

.fa-suitcase:before {
    content: ""; }

.fa-bell-o:before {
    content: ""; }

.fa-coffee:before {
    content: ""; }

.fa-cutlery:before {
    content: ""; }

.fa-file-text-o:before {
    content: ""; }

.fa-building-o:before {
    content: ""; }

.fa-hospital-o:before {
    content: ""; }

.fa-ambulance:before {
    content: ""; }

.fa-medkit:before {
    content: ""; }

.fa-fighter-jet:before {
    content: ""; }

.fa-beer:before {
    content: ""; }

.fa-h-square:before {
    content: ""; }

.fa-plus-square:before {
    content: ""; }

.fa-angle-double-left:before {
    content: ""; }

.fa-angle-double-right:before {
    content: ""; }

.fa-angle-double-up:before {
    content: ""; }

.fa-angle-double-down:before {
    content: ""; }

.fa-angle-left:before {
    content: ""; }

.fa-angle-right:before {
    content: ""; }

.fa-angle-up:before {
    content: ""; }

.fa-angle-down:before {
    content: ""; }

.fa-desktop:before {
    content: ""; }

.fa-laptop:before {
    content: ""; }

.fa-tablet:before {
    content: ""; }

.fa-mobile-phone:before,
.fa-mobile:before {
    content: ""; }

.fa-circle-o:before {
    content: ""; }

.fa-quote-left:before {
    content: ""; }

.fa-quote-right:before {
    content: ""; }

.fa-spinner:before {
    content: ""; }

.fa-circle:before {
    content: ""; }

.fa-mail-reply:before,
.fa-reply:before {
    content: ""; }

.fa-github-alt:before {
    content: ""; }

.fa-folder-o:before {
    content: ""; }

.fa-folder-open-o:before {
    content: ""; }

.fa-smile-o:before {
    content: ""; }

.fa-frown-o:before {
    content: ""; }

.fa-meh-o:before {
    content: ""; }

.fa-gamepad:before {
    content: ""; }

.fa-keyboard-o:before {
    content: ""; }

.fa-flag-o:before {
    content: ""; }

.fa-flag-checkered:before {
    content: ""; }

.fa-terminal:before {
    content: ""; }

.fa-code:before {
    content: ""; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: ""; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: ""; }

.fa-location-arrow:before {
    content: ""; }

.fa-crop:before {
    content: ""; }

.fa-code-fork:before {
    content: ""; }

.fa-unlink:before,
.fa-chain-broken:before {
    content: ""; }

.fa-question:before {
    content: ""; }

.fa-info:before {
    content: ""; }

.fa-exclamation:before {
    content: ""; }

.fa-superscript:before {
    content: ""; }

.fa-subscript:before {
    content: ""; }

.fa-eraser:before {
    content: ""; }

.fa-puzzle-piece:before {
    content: ""; }

.fa-microphone:before {
    content: ""; }

.fa-microphone-slash:before {
    content: ""; }

.fa-shield:before {
    content: ""; }

.fa-calendar-o:before {
    content: ""; }

.fa-fire-extinguisher:before {
    content: ""; }

.fa-rocket:before {
    content: ""; }

.fa-maxcdn:before {
    content: ""; }

.fa-chevron-circle-left:before {
    content: ""; }

.fa-chevron-circle-right:before {
    content: ""; }

.fa-chevron-circle-up:before {
    content: ""; }

.fa-chevron-circle-down:before {
    content: ""; }

.fa-html5:before {
    content: ""; }

.fa-css3:before {
    content: ""; }

.fa-anchor:before {
    content: ""; }

.fa-unlock-alt:before {
    content: ""; }

.fa-bullseye:before {
    content: ""; }

.fa-ellipsis-h:before {
    content: ""; }

.fa-ellipsis-v:before {
    content: ""; }

.fa-rss-square:before {
    content: ""; }

.fa-play-circle:before {
    content: ""; }

.fa-ticket:before {
    content: ""; }

.fa-minus-square:before {
    content: ""; }

.fa-minus-square-o:before {
    content: ""; }

.fa-level-up:before {
    content: ""; }

.fa-level-down:before {
    content: ""; }

.fa-check-square:before {
    content: ""; }

.fa-pencil-square:before {
    content: ""; }

.fa-external-link-square:before {
    content: ""; }

.fa-share-square:before {
    content: ""; }

.fa-compass:before {
    content: ""; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: ""; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: ""; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: ""; }

.fa-euro:before,
.fa-eur:before {
    content: ""; }

.fa-gbp:before {
    content: ""; }

.fa-dollar:before,
.fa-usd:before {
    content: ""; }

.fa-rupee:before,
.fa-inr:before {
    content: ""; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: ""; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: ""; }

.fa-won:before,
.fa-krw:before {
    content: ""; }

.fa-bitcoin:before,
.fa-btc:before {
    content: ""; }

.fa-file:before {
    content: ""; }

.fa-file-text:before {
    content: ""; }

.fa-sort-alpha-asc:before {
    content: ""; }

.fa-sort-alpha-desc:before {
    content: ""; }

.fa-sort-amount-asc:before {
    content: ""; }

.fa-sort-amount-desc:before {
    content: ""; }

.fa-sort-numeric-asc:before {
    content: ""; }

.fa-sort-numeric-desc:before {
    content: ""; }

.fa-thumbs-up:before {
    content: ""; }

.fa-thumbs-down:before {
    content: ""; }

.fa-youtube-square:before {
    content: ""; }

.fa-youtube:before {
    content: ""; }

.fa-xing:before {
    content: ""; }

.fa-xing-square:before {
    content: ""; }

.fa-youtube-play:before {
    content: ""; }

.fa-dropbox:before {
    content: ""; }

.fa-stack-overflow:before {
    content: ""; }

.fa-instagram:before {
    content: ""; }

.fa-flickr:before {
    content: ""; }

.fa-adn:before {
    content: ""; }

.fa-bitbucket:before {
    content: ""; }

.fa-bitbucket-square:before {
    content: ""; }

.fa-tumblr:before {
    content: ""; }

.fa-tumblr-square:before {
    content: ""; }

.fa-long-arrow-down:before {
    content: ""; }

.fa-long-arrow-up:before {
    content: ""; }

.fa-long-arrow-left:before {
    content: ""; }

.fa-long-arrow-right:before {
    content: ""; }

.fa-apple:before {
    content: ""; }

.fa-windows:before {
    content: ""; }

.fa-android:before {
    content: ""; }

.fa-linux:before {
    content: ""; }

.fa-dribbble:before {
    content: ""; }

.fa-skype:before {
    content: ""; }

.fa-foursquare:before {
    content: ""; }

.fa-trello:before {
    content: ""; }

.fa-female:before {
    content: ""; }

.fa-male:before {
    content: ""; }

.fa-gittip:before,
.fa-gratipay:before {
    content: ""; }

.fa-sun-o:before {
    content: ""; }

.fa-moon-o:before {
    content: ""; }

.fa-archive:before {
    content: ""; }

.fa-bug:before {
    content: ""; }

.fa-vk:before {
    content: ""; }

.fa-weibo:before {
    content: ""; }

.fa-renren:before {
    content: ""; }

.fa-pagelines:before {
    content: ""; }

.fa-stack-exchange:before {
    content: ""; }

.fa-arrow-circle-o-right:before {
    content: ""; }

.fa-arrow-circle-o-left:before {
    content: ""; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: ""; }

.fa-dot-circle-o:before {
    content: ""; }

.fa-wheelchair:before {
    content: ""; }

.fa-vimeo-square:before {
    content: ""; }

.fa-turkish-lira:before,
.fa-try:before {
    content: ""; }

.fa-plus-square-o:before {
    content: ""; }

.fa-space-shuttle:before {
    content: ""; }

.fa-slack:before {
    content: ""; }

.fa-envelope-square:before {
    content: ""; }

.fa-wordpress:before {
    content: ""; }

.fa-openid:before {
    content: ""; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: ""; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: ""; }

.fa-yahoo:before {
    content: ""; }

.fa-google:before {
    content: ""; }

.fa-reddit:before {
    content: ""; }

.fa-reddit-square:before {
    content: ""; }

.fa-stumbleupon-circle:before {
    content: ""; }

.fa-stumbleupon:before {
    content: ""; }

.fa-delicious:before {
    content: ""; }

.fa-digg:before {
    content: ""; }

.fa-pied-piper-pp:before {
    content: ""; }

.fa-pied-piper-alt:before {
    content: ""; }

.fa-drupal:before {
    content: ""; }

.fa-joomla:before {
    content: ""; }

.fa-language:before {
    content: ""; }

.fa-fax:before {
    content: ""; }

.fa-building:before {
    content: ""; }

.fa-child:before {
    content: ""; }

.fa-paw:before {
    content: ""; }

.fa-spoon:before {
    content: ""; }

.fa-cube:before {
    content: ""; }

.fa-cubes:before {
    content: ""; }

.fa-behance:before {
    content: ""; }

.fa-behance-square:before {
    content: ""; }

.fa-steam:before {
    content: ""; }

.fa-steam-square:before {
    content: ""; }

.fa-recycle:before {
    content: ""; }

.fa-automobile:before,
.fa-car:before {
    content: ""; }

.fa-cab:before,
.fa-taxi:before {
    content: ""; }

.fa-tree:before {
    content: ""; }

.fa-spotify:before {
    content: ""; }

.fa-deviantart:before {
    content: ""; }

.fa-soundcloud:before {
    content: ""; }

.fa-database:before {
    content: ""; }

.fa-file-pdf-o:before {
    content: ""; }

.fa-file-word-o:before {
    content: ""; }

.fa-file-excel-o:before {
    content: ""; }

.fa-file-powerpoint-o:before {
    content: ""; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: ""; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: ""; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: ""; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: ""; }

.fa-file-code-o:before {
    content: ""; }

.fa-vine:before {
    content: ""; }

.fa-codepen:before {
    content: ""; }

.fa-jsfiddle:before {
    content: ""; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: ""; }

.fa-circle-o-notch:before {
    content: ""; }

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: ""; }

.fa-ge:before,
.fa-empire:before {
    content: ""; }

.fa-git-square:before {
    content: ""; }

.fa-git:before {
    content: ""; }

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: ""; }

.fa-tencent-weibo:before {
    content: ""; }

.fa-qq:before {
    content: ""; }

.fa-wechat:before,
.fa-weixin:before {
    content: ""; }

.fa-send:before,
.fa-paper-plane:before {
    content: ""; }

.fa-send-o:before,
.fa-paper-plane-o:before {
    content: ""; }

.fa-history:before {
    content: ""; }

.fa-circle-thin:before {
    content: ""; }

.fa-header:before {
    content: ""; }

.fa-paragraph:before {
    content: ""; }

.fa-sliders:before {
    content: ""; }

.fa-share-alt:before {
    content: ""; }

.fa-share-alt-square:before {
    content: ""; }

.fa-bomb:before {
    content: ""; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: ""; }

.fa-tty:before {
    content: ""; }

.fa-binoculars:before {
    content: ""; }

.fa-plug:before {
    content: ""; }

.fa-slideshare:before {
    content: ""; }

.fa-twitch:before {
    content: ""; }

.fa-yelp:before {
    content: ""; }

.fa-newspaper-o:before {
    content: ""; }

.fa-wifi:before {
    content: ""; }

.fa-calculator:before {
    content: ""; }

.fa-paypal:before {
    content: ""; }

.fa-google-wallet:before {
    content: ""; }

.fa-cc-visa:before {
    content: ""; }

.fa-cc-mastercard:before {
    content: ""; }

.fa-cc-discover:before {
    content: ""; }

.fa-cc-amex:before {
    content: ""; }

.fa-cc-paypal:before {
    content: ""; }

.fa-cc-stripe:before {
    content: ""; }

.fa-bell-slash:before {
    content: ""; }

.fa-bell-slash-o:before {
    content: ""; }

.fa-trash:before {
    content: ""; }

.fa-copyright:before {
    content: ""; }

.fa-at:before {
    content: ""; }

.fa-eyedropper:before {
    content: ""; }

.fa-paint-brush:before {
    content: ""; }

.fa-birthday-cake:before {
    content: ""; }

.fa-area-chart:before {
    content: ""; }

.fa-pie-chart:before {
    content: ""; }

.fa-line-chart:before {
    content: ""; }

.fa-lastfm:before {
    content: ""; }

.fa-lastfm-square:before {
    content: ""; }

.fa-toggle-off:before {
    content: ""; }

.fa-toggle-on:before {
    content: ""; }

.fa-bicycle:before {
    content: ""; }

.fa-bus:before {
    content: ""; }

.fa-ioxhost:before {
    content: ""; }

.fa-angellist:before {
    content: ""; }

.fa-cc:before {
    content: ""; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: ""; }

.fa-meanpath:before {
    content: ""; }

.fa-buysellads:before {
    content: ""; }

.fa-connectdevelop:before {
    content: ""; }

.fa-dashcube:before {
    content: ""; }

.fa-forumbee:before {
    content: ""; }

.fa-leanpub:before {
    content: ""; }

.fa-sellsy:before {
    content: ""; }

.fa-shirtsinbulk:before {
    content: ""; }

.fa-simplybuilt:before {
    content: ""; }

.fa-skyatlas:before {
    content: ""; }

.fa-cart-plus:before {
    content: ""; }

.fa-cart-arrow-down:before {
    content: ""; }

.fa-diamond:before {
    content: ""; }

.fa-ship:before {
    content: ""; }

.fa-user-secret:before {
    content: ""; }

.fa-motorcycle:before {
    content: ""; }

.fa-street-view:before {
    content: ""; }

.fa-heartbeat:before {
    content: ""; }

.fa-venus:before {
    content: ""; }

.fa-mars:before {
    content: ""; }

.fa-mercury:before {
    content: ""; }

.fa-intersex:before,
.fa-transgender:before {
    content: ""; }

.fa-transgender-alt:before {
    content: ""; }

.fa-venus-double:before {
    content: ""; }

.fa-mars-double:before {
    content: ""; }

.fa-venus-mars:before {
    content: ""; }

.fa-mars-stroke:before {
    content: ""; }

.fa-mars-stroke-v:before {
    content: ""; }

.fa-mars-stroke-h:before {
    content: ""; }

.fa-neuter:before {
    content: ""; }

.fa-genderless:before {
    content: ""; }

.fa-facebook-official:before {
    content: ""; }

.fa-pinterest-p:before {
    content: ""; }

.fa-whatsapp:before {
    content: ""; }

.fa-server:before {
    content: ""; }

.fa-user-plus:before {
    content: ""; }

.fa-user-times:before {
    content: ""; }

.fa-hotel:before,
.fa-bed:before {
    content: ""; }

.fa-viacoin:before {
    content: ""; }

.fa-train:before {
    content: ""; }

.fa-subway:before {
    content: ""; }

.fa-medium:before {
    content: ""; }

.fa-yc:before,
.fa-y-combinator:before {
    content: ""; }

.fa-optin-monster:before {
    content: ""; }

.fa-opencart:before {
    content: ""; }

.fa-expeditedssl:before {
    content: ""; }

.fa-battery-4:before,
.fa-battery-full:before {
    content: ""; }

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: ""; }

.fa-battery-2:before,
.fa-battery-half:before {
    content: ""; }

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: ""; }

.fa-battery-0:before,
.fa-battery-empty:before {
    content: ""; }

.fa-mouse-pointer:before {
    content: ""; }

.fa-i-cursor:before {
    content: ""; }

.fa-object-group:before {
    content: ""; }

.fa-object-ungroup:before {
    content: ""; }

.fa-sticky-note:before {
    content: ""; }

.fa-sticky-note-o:before {
    content: ""; }

.fa-cc-jcb:before {
    content: ""; }

.fa-cc-diners-club:before {
    content: ""; }

.fa-clone:before {
    content: ""; }

.fa-balance-scale:before {
    content: ""; }

.fa-hourglass-o:before {
    content: ""; }

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: ""; }

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: ""; }

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: ""; }

.fa-hourglass:before {
    content: ""; }

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: ""; }

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: ""; }

.fa-hand-scissors-o:before {
    content: ""; }

.fa-hand-lizard-o:before {
    content: ""; }

.fa-hand-spock-o:before {
    content: ""; }

.fa-hand-pointer-o:before {
    content: ""; }

.fa-hand-peace-o:before {
    content: ""; }

.fa-trademark:before {
    content: ""; }

.fa-registered:before {
    content: ""; }

.fa-creative-commons:before {
    content: ""; }

.fa-gg:before {
    content: ""; }

.fa-gg-circle:before {
    content: ""; }

.fa-tripadvisor:before {
    content: ""; }

.fa-odnoklassniki:before {
    content: ""; }

.fa-odnoklassniki-square:before {
    content: ""; }

.fa-get-pocket:before {
    content: ""; }

.fa-wikipedia-w:before {
    content: ""; }

.fa-safari:before {
    content: ""; }

.fa-chrome:before {
    content: ""; }

.fa-firefox:before {
    content: ""; }

.fa-opera:before {
    content: ""; }

.fa-internet-explorer:before {
    content: ""; }

.fa-tv:before,
.fa-television:before {
    content: ""; }

.fa-contao:before {
    content: ""; }

.fa-500px:before {
    content: ""; }

.fa-amazon:before {
    content: ""; }

.fa-calendar-plus-o:before {
    content: ""; }

.fa-calendar-minus-o:before {
    content: ""; }

.fa-calendar-times-o:before {
    content: ""; }

.fa-calendar-check-o:before {
    content: ""; }

.fa-industry:before {
    content: ""; }

.fa-map-pin:before {
    content: ""; }

.fa-map-signs:before {
    content: ""; }

.fa-map-o:before {
    content: ""; }

.fa-map:before {
    content: ""; }

.fa-commenting:before {
    content: ""; }

.fa-commenting-o:before {
    content: ""; }

.fa-houzz:before {
    content: ""; }

.fa-vimeo:before {
    content: ""; }

.fa-black-tie:before {
    content: ""; }

.fa-fonticons:before {
    content: ""; }

.fa-reddit-alien:before {
    content: ""; }

.fa-edge:before {
    content: ""; }

.fa-credit-card-alt:before {
    content: ""; }

.fa-codiepie:before {
    content: ""; }

.fa-modx:before {
    content: ""; }

.fa-fort-awesome:before {
    content: ""; }

.fa-usb:before {
    content: ""; }

.fa-product-hunt:before {
    content: ""; }

.fa-mixcloud:before {
    content: ""; }

.fa-scribd:before {
    content: ""; }

.fa-pause-circle:before {
    content: ""; }

.fa-pause-circle-o:before {
    content: ""; }

.fa-stop-circle:before {
    content: ""; }

.fa-stop-circle-o:before {
    content: ""; }

.fa-shopping-bag:before {
    content: ""; }

.fa-shopping-basket:before {
    content: ""; }

.fa-hashtag:before {
    content: ""; }

.fa-bluetooth:before {
    content: ""; }

.fa-bluetooth-b:before {
    content: ""; }

.fa-percent:before {
    content: ""; }

.fa-gitlab:before {
    content: ""; }

.fa-wpbeginner:before {
    content: ""; }

.fa-wpforms:before {
    content: ""; }

.fa-envira:before {
    content: ""; }

.fa-universal-access:before {
    content: ""; }

.fa-wheelchair-alt:before {
    content: ""; }

.fa-question-circle-o:before {
    content: ""; }

.fa-blind:before {
    content: ""; }

.fa-audio-description:before {
    content: ""; }

.fa-volume-control-phone:before {
    content: ""; }

.fa-braille:before {
    content: ""; }

.fa-assistive-listening-systems:before {
    content: ""; }

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: ""; }

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: ""; }

.fa-glide:before {
    content: ""; }

.fa-glide-g:before {
    content: ""; }

.fa-signing:before,
.fa-sign-language:before {
    content: ""; }

.fa-low-vision:before {
    content: ""; }

.fa-viadeo:before {
    content: ""; }

.fa-viadeo-square:before {
    content: ""; }

.fa-snapchat:before {
    content: ""; }

.fa-snapchat-ghost:before {
    content: ""; }

.fa-snapchat-square:before {
    content: ""; }

.fa-pied-piper:before {
    content: ""; }

.fa-first-order:before {
    content: ""; }

.fa-yoast:before {
    content: ""; }

.fa-themeisle:before {
    content: ""; }

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: ""; }

.fa-fa:before,
.fa-font-awesome:before {
    content: ""; }

.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; }

.mks-cli-wired-off {
    background-image: url("/images/mks/cli-wired-off.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-cli-wired-on {
    background-image: url("/images/mks/cli-wired-on.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-cli-client-vpn-off {
    background-image: url("/images/mks/cli-client-vpn-off.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-cli-client-vpn-on {
    background-image: url("/images/mks/cli-client-vpn-on.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-cli-wireless-off {
    background-image: url("/images/mks/cli-wireless-off.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-cli-wireless-on {
    background-image: url("/images/mks/cli-wireless-on.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-node-am-active {
    background-image: url("/images/mks/node-am-active.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-node-am-alerting {
    background-image: url("/images/mks/node-am-alerting.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-node-am-dormant {
    background-image: url("/images/mks/node-am-dormant.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-node-am-unreachable {
    background-image: url("/images/mks/node-am-unreachable.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-wips-full {
    background-image: url("/images/mks/wips-full.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-wips-other {
    background-image: url("/images/mks/wips-other.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-wips-partial {
    background-image: url("/images/mks/wips-partial.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-wips-rogue {
    background-image: url("/images/mks/wips-rogue.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.mks-wips-whitelist {
    background-image: url("/images/mks/wips-whitelist.svg");
    background-repeat: no-repeat;
    height: 14px;
    width: 14px;
    display: inline-block; }

.sprite_frame {
    position: relative;
    overflow: hidden; }
.sprite_frame img {
    position: absolute; }

/*************************
 * Meraki Flex Editor    *
 * ~2012 New Flex Editor *
 * ~Stephen              *
 *************************/
.flex-editor {
    border-collapse: collapse;
    margin-bottom: 7px; }
.flex-editor table.divider > tbody > tr > td {
    border-top: 1px solid #CCC; }
.flex-editor td.hidden, .flex-editor th.hidden {
    padding: 0; }
.flex-editor td {
    padding: 3px 5px; }
.flex-editor thead {
    background-color: #EEE;
    border: 1px solid #DDD;
    border-left: 0;
    border-right: 0;
    text-align: left; }
.flex-editor th {
    padding: 5px 10px 5px 5px; }
.flex-editor .move_row_link, .flex-editor .remove_row_link {
    border: 0;
    position: relative;
    top: 4px;
    padding: 4px; }
.flex-editor .move_row_link img, .flex-editor .remove_row_link img {
    background: url("/images/ui_sprites.gif") no-repeat;
    width: 16px;
    height: 16px;
    border: 0;
    outline: 0; }
.flex-editor .move_row_link img {
    background-position: -1px -1px; }
.flex-editor .move_row_link:hover img {
    background-position: -19px -1px;
    cursor: move; }
.flex-editor .remove_row_link {
    cursor: pointer; }
.flex-editor .remove_row_link img {
    background-position: 0 -17px; }
.flex-editor .remove_row_link:hover img {
    background-position: -18px -17px; }
.flex-editor td.actions {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    padding: 0; }
.flex-editor td.actions i {
    font-size: 16px;
    padding-right: 8px; }
.flex-editor td.actions i:before {
    display: inline; }
.flex-editor td.actions > a {
    color: #a8a8a8;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    padding: 0 3px; }
.flex-editor td.actions > a:hover {
    color: #000; }
.flex-editor td.actions > a.delete_link, .flex-editor td.actions > a.remove_row_link {
    cursor: pointer; }
.flex-editor td.actions > a.reorder_link, .flex-editor td.actions > a.move_row_link {
    cursor: move; }
.flex-editor input:disabled {
    opacity: 0.75; }

.no_entries_message, .add_row_link, .csv_import {
    margin-left: 6px; }

#list_header > * {
    display: inline-block;
    margin: 0 10px 0 0; }

#node_show_timespanner {
    margin-bottom: -9px; }

.action_bar {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 6px; }
.action_bar .actions {
    float: left;
    margin-right: 8px; }
.action_bar .l3search {
    float: left; }
.action_bar .additional_actions {
    float: right; }
.action_bar .btn-group > .btn {
    padding: 3px 5px; }
.action_bar .dropdown-widget table button {
    margin-left: 10px !important; }
.action_bar .dropdown.open .dropdown-toggle {
    color: black !important; }
.action_bar > * > .btn-group {
    float: left; }
.action_bar > * > .btn-group.open > .btn {
    border-radius: 2px 2px 0 0;
    box-shadow: none;
    background-color: white;
    border-bottom: white;
    z-index: 1001; }
.action_bar input[type='text'], .action_bar input[type='search'], .action_bar input[type='password'], .action_bar textarea {
    border-radius: 0;
    padding: 3px;
    border: 1px solid #AAA; }
.action_bar input[type='text']:focus, .action_bar input[type='search']:focus, .action_bar input[type='password']:focus, .action_bar textarea:focus {
    box-shadow: none;
    border: 1px solid #5897FB;
    outline: none; }
.action_bar input[type='text'].input_warning, .action_bar input[type='search'].input_warning, .action_bar input[type='password'].input_warning, .action_bar textarea.input_warning {
    background-image: none;
    border-color: #b94a48;
    background-color: #f2dede; }
.action_bar input[type='text'], .action_bar input[type='search'] {
    height: 24px;
    width: 202px; }
.action_bar .selector {
    width: 202px; }
.action_bar .dropdown-menu {
    box-shadow: rgba(0, 0, 0, 0.3) 0 7px 5px -3px;
    border-radius: 0 5px 5px 5px;
    margin-top: -1px !important; }
.action_bar .dropdown-menu.pull-right {
    border-radius: 5px 0 5px 5px;
    left: auto;
    right: 0; }
.action_bar td .btn {
    margin-left: 10px; }
.action_bar .field {
    margin-bottom: 10px; }
.action_bar .ui-menu {
    display: inline-block;
    border: 1px solid #AAA;
    border-top: 0;
    border-radius: 0;
    font-size: 13px;
    margin-top: -1px;
    padding: 0; }
.action_bar .ui-menu a {
    border-radius: 0;
    box-shadow: none;
    background-image: none;
    background: inherit;
    color: inherit;
    font: inherit;
    border: 0;
    margin: 0;
    padding: 0;
    padding: 7px 7px 8px 7px;
    height: 10px; }
.action_bar .ui-menu a.ui-state-hover {
    background-color: #3875D7;
    color: white;
    background-image: none;
    margin: 0; }
.action_bar h5 {
    margin: 3px 0 5px 0; }
.action_bar select.chosen-select {
    border-radius: 0;
    width: 208px;
    height: 24px; }
.action_bar .search-choice > a {
    padding: 0; }
.action_bar .alert-heading {
    margin: 0 0 5px 0; }
.action_bar .chosen-container-multi .chosen-choices {
    background-image: none !important; }

.pci_reports_actions .btn-group .btn {
    border-radius: 2px;
    padding: 4px 10px;
    margin-right: 8px; }

.sticky_action_bar {
    z-index: 4;
    /* the motivation behind this specific number is to force the sticky
               * div to be above the add column button, which has z-index 3 */
    margin: 0px;
    position: fixed;
    top: 0px;
    background-color: white;
    width: auto;
    box-shadow: 0px 2px 3px 0px #bbb;
    padding-left: 5px;
    padding-top: 5px;
    padding-bottom: 5px; }

.search_count, .search_help {
    float: left;
    margin-left: 10px;
    margin-top: 6px; }

#usage_plot_holder {
    width: 100%; }

#apply_policy_dropdown {
    padding: 20px; }
#apply_policy_dropdown .s3access tr > td {
    padding: 5px 0; }
#apply_policy_dropdown .context {
    margin-left: 20px; }
#apply_policy_dropdown .small_print {
    min-width: 210px;
    max-width: 260px;
    white-space: normal; }
#apply_policy_dropdown select {
    width: auto !important; }
#apply_policy_dropdown td {
    white-space: nowrap; }
#apply_policy_dropdown a {
    line-height: inherit;
    padding: 0;
    margin: 0; }
#apply_policy_dropdown .group_policy_settings {
    margin: 12px; }
#apply_policy_dropdown .group_policy_settings h4 {
    margin-bottom: 3px; }

/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
.smart_search {
    border-radius: 2px;
    width: 198px;
    height: 26px;
    border: 1px solid #ccc;
    border-radius: 2px; }

input.smart_search:focus {
    border-color: rgba(82, 168, 236, 0.8) !important;
    box-shadow: 0 0 8px rgba(82, 168, 236, 0.6) !important;
    outline: 0 !important; }

div.smart_search {
    position: relative; }
div.smart_search.open {
    border-radius: 2px 2px 0 0; }
div.smart_search.open > a.btn {
    background-color: transparent !important; }
div.smart_search.focused {
    border-color: rgba(82, 168, 236, 0.8);
    box-shadow: 0 0 8px rgba(82, 168, 236, 0.6);
    outline: 0; }
div.smart_search input[type='search'] {
    -webkit-appearance: textfield; }
div.smart_search input[type='search']::-webkit-search-decoration {
    display: none; }
div.smart_search input.smart_search {
    position: absolute;
    left: 0;
    right: 30px;
    width: 90% !important;
    border-radius: 2px 0 0 2px;
    height: 23px !important;
    background-color: transparent;
    padding: 2px 0 0 5px !important;
    border: 0 none !important; }
div.smart_search input.smart_search:focus {
    outline: none;
    border: 0 none;
    box-shadow: none !important; }
div.smart_search input.smart_search::-webkit-search-cancel-button {
    display: none; }
div.smart_search > a.btn {
    float: right;
    border: 0 none !important;
    padding: 1px !important;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    height: 24px;
    width: 30px;
    border-radius: 0px; }
div.smart_search > a.btn > .caret {
    position: relative;
    top: 2px; }
div.smart_search > .dropdown-widget.pull-right {
    width: 100%;
    top: 25px;
    padding: 3px 10px 0px 10px;
    border-top-left-radius: 0;
    margin-top: 1px; }
div.smart_search .advanced_search select, div.smart_search .advanced_search input[type='search'], div.smart_search .advanced_search input[type='text'] {
    border-radius: 0;
    display: block;
    height: 34px;
    width: 100%;
    padding: 3px 3px 3px 5px;
    box-sizing: border-box; }
div.smart_search .advanced_search .field > .chosen-container {
    width: 100%; }
div.smart_search .advanced_search .checkboxes label {
    margin-right: 10px; }
div.smart_search .page_api_search {
    margin-top: 0.25em; }

.ui-timepicker-list {
    overflow-y: auto;
    height: 150px;
    width: 6.5em;
    background: #fff;
    border: 1px solid #ddd;
    margin: 0;
    padding: 0;
    list-style: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    outline: none;
    z-index: 10001; }

.ui-timepicker-list.ui-timepicker-with-duration {
    width: 11em; }

.ui-timepicker-duration {
    margin-left: 5px;
    color: #888; }

.ui-timepicker-list:hover .ui-timepicker-duration {
    color: #888; }

.ui-timepicker-list li {
    padding: 3px 0 3px 5px;
    cursor: pointer;
    white-space: nowrap;
    color: #000;
    list-style: none;
    margin: 0; }

.ui-timepicker-list:hover .ui-timepicker-selected {
    background: #fff;
    color: #000; }

li.ui-timepicker-selected,
.ui-timepicker-list li:hover,
.ui-timepicker-list:hover .ui-timepicker-selected:hover {
    background: #1980EC;
    color: #fff; }

li.ui-timepicker-selected .ui-timepicker-duration,
.ui-timepicker-list li:hover .ui-timepicker-duration {
    color: #ccc; }

/* Calendar container div */
.calendar {
    font-weight: bold;
    cursor: pointer; }
.calendar table {
    border-spacing: 1px;
    border-collapse: inherit; }
.calendar tr {
    line-height: 28px; }
.calendar tr.dow {
    background-color: #7AC142;
    color: #fff;
    font-size: 0.8em !important; }
.calendar td, .calendar th {
    margin: 0;
    padding: 0;
    width: 33px;
    text-align: center;
    cursor: pointer; }
.calendar td {
    border: 1px solid #FFF;
    background-color: #fff;
    color: #222; }
.calendar td:hover {
    border: 1px solid #7AC142; }
.calendar td.selected {
    background-color: #cbe7b5;
    border: solid 1px #7AC142; }
.calendar td.prev, .calendar td.next {
    background-color: #EEE;
    color: #666; }
.calendar td.noday {
    color: #CCC;
    background-color: #FFF; }
.calendar td.noday:hover {
    border: 1px solid #FFF; }
.calendar th {
    color: #222; }
.calendar th.monyear {
    font-size: 0.9em !important; }

#set_ip_modal > .alert {
    margin: 20px; }

#set_ip_modal .bootstrap.label {
    margin-left: 10px; }

#set_ip_modal .close {
    position: static;
    text-decoration: none; }

#date_selection_dropdown table td {
    padding: 3px 0px; }

#date_selection_dropdown table td:first-child {
    padding-right: 10px; }

#date_selection_dropdown table td input {
    margin: 4px; }

#scheduled_report_form .logo_manager {
    margin-bottom: 15px; }
#scheduled_report_form .logo_manager #report_logo_image {
    float: right;
    display: block; }
#scheduled_report_form .logo_manager ul {
    list-style-type: none;
    float: left; }
#scheduled_report_form .logo_manager ul li {
    margin: 10px 0 10px 15px; }

#send_email_reports #send_now_report_logo_image {
    padding: 5px;
    display: block;
    float: right; }

#send_email_reports form > table td {
    vertical-align: top;
    padding: 3px; }
#send_email_reports form > table td:first-child {
    text-align: right; }

#send_email_reports form > table tr:first-child td:first-child {
    padding-top: 4px; }

.email_report_controls {
    float: right; }
.email_report_controls a.btn {
    font-size: smaller;
    margin-right: 5px; }

#network_summary_list {
    list-style-type: none;
    margin: 5px 0; }

.above_map {
    position: relative;
    margin-bottom: 5px; }
.above_map .left_buttons {
    float: left; }
.above_map .left_buttons > .btn-group {
    float: left; }
.above_map .right_buttons {
    float: right; }
.above_map .right_buttons > .btn-group {
    float: left; }

.map_legend {
    margin-top: 6px; }
.map_legend > span {
    margin-right: 1em; }
.map_legend > span img {
    vertical-align: baseline; }
.map_legend > span img.node_img {
    vertical-align: -20%;
    width: 12px; }

.network_map_div {
    height: 100%; }

.network_map {
    position: relative; }

canvas.overlay {
    position: absolute; }

.network_map.placement_open {
    margin-left: 290px; }

.image_preview.inactive {
    cursor: default; }

.overlay_toolbar #set_position {
    margin-right: 3px; }

.overlay_toolbar .close_alert {
    position: absolute;
    top: -22%;
    right: -4%;
    opacity: 0.7; }

.overlay_toolbar .close_alert:hover {
    opacity: 1; }

.overlay_toolbar .close_alert img {
    width: 75%; }

.undo_controls {
    position: absolute;
    top: 5px;
    left: 50%;
    z-index: 1000; }
.undo_controls > div {
    position: relative;
    left: -50%;
    padding: 5px 10px;
    background-color: white;
    border: 1px solid lightgray;
    box-shadow: rgba(0, 0, 0, 0.3) 0 7px 5px -3px;
    border-radius: 5px; }
.undo_controls > div a.btn {
    margin-left: 5px;
    vertical-align: inherit; }
.undo_controls.all_undone a.btn.undo {
    display: none; }

.undo_controls .close_alert {
    position: absolute;
    top: -20%;
    right: 44%; }

.undo_controls .close_alert img {
    width: 75%;
    opacity: 0.7; }

.undo_controls .close_alert img:hover {
    width: 75%;
    opacity: 1; }

.undo_controls .affected_floorplans {
    margin: 5px 0px 0px 5px; }

.undo_controls .affected_floorplans.removed {
    color: #d43f3a; }

.undo_controls .affected_floorplans.no_info {
    display: none; }

.info_box {
    position: relative;
    left: -50%;
    border: 1px solid #a88f2a;
    background-color: #fff0b4;
    display: block;
    -webkit-transform: translateZ(0px);
    white-space: nowrap;
    font-size: 11px;
    width: 100%;
    margin-top: 6px; }
.info_box.cluster {
    background-color: white;
    border-color: #565656; }
.info_box:before {
    position: absolute;
    width: 0;
    height: 0;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #a88f2a;
    content: ''; }
.info_box.cluster:before {
    border-bottom: 6px solid #565656; }
.info_box table {
    border-spacing: 0;
    margin-left: 1px;
    display: block; }
.info_box.cluster .inner {
    margin-bottom: 2px; }
.info_box.cluster .inner .device_count {
    padding: 3px;
    text-align: center;
    font-size: 13px;
    font-weight: bold; }
.info_box.cluster .inner:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    height: 5px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00FFFFFF', endColorstr='#FFFFFFFF', GradientType=0); }
.info_box.cluster table {
    display: inline-block;
    height: auto;
    max-height: 103px;
    overflow: auto;
    padding: 0 2px 2px 2px;
    vertical-align: top; }
.info_box.cluster table td {
    max-width: 130px;
    overflow-x: hidden;
    text-overflow: ellipsis;
    font-size: 10px; }
.info_box.cluster table td.offset_info {
    text-align: center;
    cursor: pointer;
    text-decoration: underline;
    padding: 3px 5px;
    color: #1D770B;
    background-color: whitesmoke; }
.info_box.cluster table td.offset_info:hover {
    text-decoration: none; }
.info_box.cluster table td.heading {
    font-size: 12px;
    white-space: nowrap;
    text-align: center; }
.info_box.cluster table a {
    padding: 0 0 0 3px; }
.info_box a, .info_box span {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    padding: 3px;
    cursor: pointer; }
.info_box a {
    text-decoration: underline; }
.info_box a:hover {
    text-decoration: none; }
.info_box a .alerting_node {
    color: red;
    white-space: nowrap;
    padding-top: 5px; }
.info_box .pcni, .info_box .pcni_sm, .info_box .sprite_frame {
    margin: 1px 0; }

#place_container.two {
    margin-right: 10px; }

.custom_map_position_control_wrapper {
    width: 69px;
    margin: 10px 0 0 8px;
    text-align: center; }

.custom_map_legend {
    padding: 10px; }

.custom_map_extra_controls_wrapper {
    margin: 5px 5px 0px -5px;
    padding: 0px 2px 0px 2px;
    white-space: nowrap;
    display: -webkit-box; }

.network_map.small .custom_map_position_control_wrapper {
    width: 28px;
    margin: 7px 0 0 7px; }

.network_map.small .custom_map_legend {
    padding: 7px; }

.custom_map_control {
    background-color: white;
    border: 1px solid #949494;
    color: #949494;
    box-shadow: #7E7D7D 0 2px 6px -1px;
    border-radius: 3px; }
.custom_map_control label {
    white-space: nowrap; }
.custom_map_control ul {
    margin: 0;
    padding: 0; }

.custom_map_legend_inner {
    padding: 3px;
    background-color: white;
    border: 1px solid #949494;
    box-shadow: #7E7D7D 0 2px 6px -1px;
    border-radius: 3px; }

.custom_map_control.custom_map_position {
    display: inline-block;
    text-align: center;
    padding: 1px 3px;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap; }
.custom_map_control.custom_map_position > span {
    display: inline-block;
    padding: 3px; }
.custom_map_control.custom_map_position > span#map_search_box {
    padding: 0px 3px;
    vertical-align: 10%; }
.custom_map_control.custom_map_position > span:nth-child(n+2) {
    margin-left: 3px; }
.custom_map_control.custom_map_position > span:hover {
    color: #616161; }
.custom_map_control.custom_map_position input[type='text'] {
    line-height: inherit;
    height: inherit;
    font-size: 80%; }

.custom_map_control.custom_map_options {
    position: relative;
    margin-right: 5px;
    margin-left: 3px;
    margin-top: 5px;
    cursor: pointer;
    font-size: 15px;
    padding: 0 3px; }
.custom_map_control.custom_map_options .dropdown_button:hover {
    color: #616161; }
.custom_map_control.custom_map_options .dropdown_container {
    color: #444;
    font-size: 12px;
    display: none;
    position: absolute;
    top: 18px;
    right: 0px;
    z-index: 500;
    background-color: white;
    border: 1px solid #949494;
    padding: 3px; }
.custom_map_control.custom_map_options .dropdown_container .heading {
    font-weight: bold;
    padding: 2px; }
.custom_map_control.custom_map_options .dropdown_container li {
    white-space: nowrap;
    list-style-type: none;
    font-weight: normal;
    padding: 0 0 1px 5px;
    font-size: 11px; }
.custom_map_control.custom_map_options .dropdown_container li label {
    display: inline-block;
    padding: 1px 8px 3px 5px;
    min-width: 60px; }
.custom_map_control.custom_map_options.open > .dropdown_container {
    display: block; }
.custom_map_control.custom_map_options.open .dropdown_button {
    color: #616161; }

.custom_map_control.heatmap_filter {
    margin-top: 0px;
    padding: 3px 3px 3px 3px;
    font-size: 11px;
    color: #000000; }

.custom_map_control.custom_map_type {
    border-radius: inherit;
    position: relative;
    margin-top: 5px;
    margin-right: 5px;
    margin-left: -5px;
    color: black; }
.custom_map_control.custom_map_type .header {
    cursor: pointer;
    padding: 1px 12px 1px 5px;
    height: 15px;
    font-weight: bold;
    margin: 0; }
.custom_map_control.custom_map_type .header i {
    position: absolute;
    right: 4px; }
.custom_map_control.custom_map_type .header:hover {
    background-color: #ededed;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); }
.custom_map_control.custom_map_type span {
    visibility: hidden;
    display: inline-block;
    max-width: 150px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
.custom_map_control.custom_map_type.custom span {
    margin-right: 5px; }
.custom_map_control.custom_map_type.list_hidden span {
    visibility: visible; }
.custom_map_control.custom_map_type ul {
    padding-top: 3px;
    border-top: 1px solid gray; }
.custom_map_control.custom_map_type.list_hidden ul {
    display: none;
    padding-top: 0;
    border: none; }
.custom_map_control.custom_map_type ul {
    max-height: 300px;
    overflow: auto; }
.custom_map_control.custom_map_type li {
    margin: 0;
    cursor: pointer;
    font-size: 12px;
    padding: 1px 14px 0 5px;
    list-style-type: none; }
.custom_map_control.custom_map_type li.selected {
    font-weight: bold; }
.custom_map_control.custom_map_type li:not(.selected):hover {
    background-color: #ededed;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); }

.map-point {
    font-size: 11px;
    position: absolute;
    cursor: pointer;
    height: 41.43333px;
    width: 31.33333px;
    margin-left: -15.66667px;
    margin-top: -41.43333px;
    z-index: 2;
    color: white; }
.map-point.current, .map-point.selected {
    z-index: 99; }
.map-point:hover {
    z-index: 100; }
.map-point.selected {
    box-shadow: 0 0 8px 4px orange;
    border-radius: 20px;
    background-color: orange;
    color: black; }
.map-point > img {
    position: absolute;
    bottom: 0;
    width: 31.33333px;
    height: 41.43333px; }
.map-point.transparent > img {
    opacity: 0.4; }
.map-point.transparent.current > img,
.map-point.transparent.hover > img {
    opacity: 1; }
.map-point.tiny {
    height: 20.71667px;
    width: 15.66667px;
    margin-left: -7.83333px;
    margin-top: -20.71667px;
    z-index: 1; }
.map-point.tiny > img {
    width: 15.66667px;
    height: 20.71667px; }
.map-point > span {
    display: block;
    position: absolute;
    top: 6px;
    left: 5px;
    width: 22.38095px;
    text-align: center; }
.map-point > span.ap_type {
    background-color: gray;
    border-radius: 3px; }
.map-point.with_1_digits {
    height: 24.86px;
    width: 18.8px;
    margin-left: -9.4px;
    margin-top: -24.86px; }
.map-point.with_1_digits > span {
    width: 12.42857px;
    top: 3px;
    left: 4px; }
.map-point.with_1_digits > img {
    width: 18.8px;
    height: 24.86px; }
.map-point.with_2_digits {
    height: 31.075px;
    width: 23.5px;
    margin-left: -11.75px;
    margin-top: -31.075px; }
.map-point.with_2_digits > span {
    width: 15.78571px;
    top: 5px;
    left: 5px; }
.map-point.with_2_digits > img {
    width: 23.5px;
    height: 31.075px; }
.map-point.with_3_digits, .map-point.with_4_digits {
    height: 41.43333px;
    width: 31.33333px;
    margin-left: -15.66667px;
    margin-top: -41.43333px;
    font-size: 10px; }
.map-point.with_3_digits > span, .map-point.with_4_digits > span {
    width: 21.38095px;
    top: 8px;
    left: 6px; }
.map-point.with_3_digits > img, .map-point.with_4_digits > img {
    width: 31.33333px;
    height: 41.43333px; }
.map-point.cluster {
    color: #EEE;
    height: 31.33333px;
    margin-top: -15.66667px; }
.map-point.cluster > img {
    height: 31.33333px; }
.map-point.cluster.tiny {
    height: 18.8px;
    width: 18.8px;
    margin-left: -9.4px;
    margin-top: -9.4px;
    z-index: 1; }
.map-point.cluster.tiny > img {
    width: 18.8px;
    height: 18.8px; }
.map-point.cluster.with_1_digits {
    height: 18.8px;
    margin-top: -9.4px; }
.map-point.cluster.with_1_digits > img {
    height: 18.8px; }
.map-point.cluster.with_2_digits {
    height: 23.5px;
    margin-top: -11.75px; }
.map-point.cluster.with_2_digits > img {
    height: 23.5px; }
.map-point.cluster.with_3_digits, .map-point.cluster.with_4_digits {
    height: 31.33333px;
    margin-top: -15.66667px; }
.map-point.cluster.with_3_digits > img, .map-point.cluster.with_4_digits > img {
    height: 31.33333px; }

/* styles for AP Map page, moved from manage_common */
#place_container {
    float: left;
    width: 280px;
    height: 100%;
    overflow: hidden;
    display: none; }

#floorplan_container {
    float: left;
    width: 360px;
    overflow-x: hidden;
    overflow-y: auto;
    display: none;
    padding-top: 15px;
    padding-right: 10px;
    margin-right: 2px; }

#floorplan_container #floorplans {
    overflow-x: hidden; }

#floorplans .floorplan_name {
    margin: 0 0 5px 0; }

#floorplans hr {
    margin: 10px 0px; }

#place_list tr.placerow {
    cursor: move; }

#place_list .ft.marker .placement_marker {
    margin-left: 4px; }

.placement_marker.two {
    width: 16px; }

#place_list .ft.name {
    max-width: 165px;
    text-overflow: ellipsis;
    overflow: hidden; }

#place_list .ft.remove {
    width: 18px;
    cursor: default; }

#place_list .ft.remove img {
    width: 15px;
    height: 15px;
    -moz-opacity: .30;
    -ms-filter: ”alpha(opacity=30) ”;
    filter: alpha(opacity=30);
    opacity: .30; }

#place_list .ft.remove img:hover {
    -moz-opacity: 1;
    -ms-filter: ”alpha(opacity=100) ”;
    filter: alpha(opacity=100);
    opacity: 1; }

.placement_marker.placed {
    -moz-opacity: .30;
    -ms-filter: ”alpha(opacity=30) ”;
    filter: alpha(opacity=30);
    opacity: .30; }

.place_show {
    display: none; }

#place_status {
    margin-top: 7px; }

#place_status a {
    margin-left: 5px;
    vertical-align: top; }

/* making the AP map page print better */
@media print {
    .above_map {
        display: none; } }

#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

/* Magic that prevents elements below a top_status from being blocked
 * Inspired by https://www.w3schools.com/howto/howto_js_snackbar.asp
 */
div.status_message {
    position: fixed;
    height: 1.2em;
    bottom: 0;
    right: 0;
    display: block;
    z-index: 100;
    font-weight: bold;
    padding: 0.8em 24px; }
div.status_message.notice {
    background: #f7f9b3; }
div.status_message.error {
    background: #FFA0A0; }

div.top_status_wrapper {
    position: relative;
    z-index: 100; }

div.top_status_inner_wrapper {
    position: absolute;
    top: -25px;
    text-align: center;
    left: calc(50% - 215px + 1.25rem + 10px);
    right: calc(50% - 215px + 1.25rem + 10px); }

div.top_status {
    padding: 5px 10px;
    display: inline-block;
    z-index: 100;
    border-radius: 4px;
    moz-border-radius: 4px;
    box-shadow: 0px 2px 16px -4px gray;
    moz-box-shadow: 0px 2px 16px -4px gray;
    white-space: nowrap; }
div.top_status a.close-btn {
    text-decoration: none;
    color: #777;
    margin-right: -4px;
    margin-left: 6px;
    font-size: 10px;
    padding-top: 2px;
    float: right; }
div.top_status.good {
    background: #E2F9E3;
    border: 1px solid #99CC99;
    color: #468847; }
div.top_status.working {
    border: 1px solid #D7D6D6;
    background-color: #F7F6F6; }
div.top_status.bad {
    border: 1px solid #EED3D7;
    background-color: #F2DEDE;
    color: #B94A48; }

.react-layout div.top_status {
    margin-top: 20px; }

.top_status_list {
    list-style: none; }

.traffic-light {
    height: 20px;
    width: 20px;
    background-size: 20px 20px;
    background-image: url(/images/bubble-shadow-white.png); }
.traffic-light.red {
    background-image: url(/images/bubble-shadow-red.png); }
.traffic-light.yellow {
    background-image: url(/images/bubble-shadow-yellow.png); }
.traffic-light.green {
    background-image: url(/images/bubble-shadow-1.png); }
.traffic-light.gray {
    background-image: url(/images/bubble-shadow-gray.png); }

.color_blind_red_green i[class^='mks-cli-'][class$='-on'] {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img[src*='map-'][src*='green'] {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img[src*='bubble-green'] {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img[src*='bubble-shadow-1'] {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img[src*='bubble-shadow-2'] {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img[src*='bubble-shadow-3'] {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img[src*='bubble-shadow-4'] {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .map_legend img.node_img {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img.ni_active {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img.ni_active_gw {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img.pni_sm_active {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img.pni_sm_active_gw {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img.pni_active {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img.pni_active_gw {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green img.in_use {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .StatusCircle.statusGood {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .route_table .status.connected {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .switchport.on {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .SwitchPort.on {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .lldp_icon {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .stat_legend.online {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .traffic-light.green {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .status_green {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .health_green {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .has_carrier {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .MkiDeviceIcon {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .LocalLan .VideoViewerStreamSource i {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .SwitchPort.optimal section {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .AnalyticsIcon__check {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .AnalyticsIcon__circle_check {
    filter: hue-rotate(120deg) brightness(90%); }

.color_blind_red_green .label-success {
    filter: hue-rotate(100deg) brightness(120%); }

.color_blind_red_green .SwitchPort.suboptimal section {
    filter: hue-rotate(100deg) brightness(120%); }

.color_blind_red_green .success_m {
    filter: hue-rotate(120deg); }

table.cb_mode td {
    padding: 5px 10px; }

#config_item_dialog .field {
    margin: 10px 0; }

#config_item_dialog label {
    display: inline-block;
    width: 120px; }

#config_item_dialog input:not([type=checkbox]), #config_item_dialog textarea {
    width: 375px; }

#config_item_dialog input[type=checkbox] {
    margin: 0; }

a {
    color: #1D770B; }

a.btn {
    text-decoration: none; }

a .fa-external-link {
    font-size: 0.6em; }

input[type="radio"] {
    padding: 0; }

select {
    font-size: 11px; }

input[type="text"], input[type="password"],
input[type="email"], input[type="number"], input[type="tel"], textarea {
    color: #555555;
    border: 1px solid #ccc;
    border-radius: 1px; }
input[type="text"].disabled, input[type="password"].disabled,
input[type="email"].disabled, input[type="number"].disabled, input[type="tel"].disabled, textarea.disabled {
    color: #eeeeee; }

textarea {
    padding: 4px;
    line-height: 1.42857; }

input[type="password"], input[type="text"],
input[type="email"], input[type="number"], input[type="tel"] {
    line-height: 1.90476em;
    height: 28px;
    padding: 0px 4px; }

/* styling for disabled inputs, color variable is from bootstrap */
input[disabled] {
    background-color: #eeeeee;
    cursor: not-allowed; }

input.required, input.has_pass {
    margin-right: 4px; }

input[type="checkbox"] {
    vertical-align: baseline;
    margin: 3px 0.5ex; }

ul {
    margin: 0;
    padding: 0; }

var {
    font-style: normal; }

a.show_key_link {
    white-space: nowrap;
    cursor: pointer;
    font-size: 0.9em; }

#revert_to_template_override {
    padding: 4px 5px;
    margin-left: 10px; }

#resend_confirm_email {
    margin: 5px 0 1px 0;
    display: inline-block; }

div#saml_not_enabled_msg {
    color: #888888;
    font-size: 16px;
    text-align: center;
    margin: 11px 0 -7px 0; }

.config-notice {
    background-color: #EEE;
    margin: 1em 0;
    padding: 0.7em;
    font-size: 0.8em;
    line-height: 1.4em; }

span.unknown-group {
    color: #B94A48; }

#saml_options.flex-editor td {
    padding: 4px 0; }
#saml_options.flex-editor td > * {
    vertical-align: baseline; }
#saml_options.flex-editor td.cfgq {
    width: 16em; }
#saml_options.flex-editor td.cfgo > * {
    line-height: 22px; }

#saml_options.flex-editor span.consumer_url {
    font-weight: bold; }

#saml_options.flex-editor span.consumer_url_placeholder {
    font-weight: normal;
    color: #666; }

/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
/* Style for container of pill and any additional
 * controls it may have
 * Used by
 * - (React) Pill.scss
 * - _chosen_overrides.scss
 * - _pill.scss
 * - (React) MkiPillListInput.scss,
 * - (React) NodeColumns.scss
 * - _pillbox.scss
 */
/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
.pill {
    color: #999;
    background-color: #f5f5f5;
    border-radius: 2px;
    border: 1px solid #ddd; }

.pillbox .token, .pillbox .actions, .pill {
    display: inline-block;
    margin: 1.5px 5px 1.5px 0px;
    padding: 1.5px 5px 1.75px 5px;
    white-space: nowrap; }

.pillbox .token .content .small_print, .pill .dimtext {
    font-size: 0.9em;
    margin-left: 0.33em;
    opacity: 0.8; }

.pillbox .token .content, .pillbox .token .tail i, .chosen-container-multi .chosen-choices li.search-choice {
    background-color: #e8effe;
    border: 1px solid #c6d9fc;
    border-radius: 3px;
    color: #6d94ed; }

.pillbox .token .tail i:hover, .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
    background-color: #6d94ed;
    color: #c6d9fc;
    border-color: #6d94ed; }

.pillbox .token .content {
    border-radius: 3px 0 0 3px;
    border-right: none; }

.pillbox .token .tail i, .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    border-left: 1px solid #c6d9fc;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    display: inline-block;
    transition: color 0.5s, background-color 0.5s, border-color 0.5s; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:after {
    content: 'x'; }

.pill-green, .pill-good, .privilege-pill-org {
    border: none;
    background-color: #D1F0D2;
    color: #1d770b; }

.pill-yellow, .privilege-pill-tag {
    border: none;
    background-color: #EBE8C3;
    color: #8e7b0b; }

.pill-red, .pill-bad, .privilege-pill-network {
    border: none;
    background-color: #f2dede;
    color: #b94a48; }

.privilege-pill-camera-network {
    border: none;
    background-color: #f5e5c7;
    color: #f9a500; }

.pill-purple, .privilege-pill-camera {
    border: none;
    background-color: white;
    color: #637FFB; }

.pillbox {
    border: 1px solid #ddd;
    padding: 3px 5px; }
.pillbox .token, .pillbox .actions {
    padding: 0px; }
.pillbox .token {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
.pillbox .actions .btn {
    border-radius: 3px;
    color: #6d94ed;
    margin: 1.5px 5px 1.5px 0px;
    padding: 2px 6px;
    vertical-align: inherit; }
.pillbox .token .content, .pillbox .token .tail {
    display: -ms-flexbox;
    display: flex; }
.pillbox .token .content {
    padding: 2px 6px; }
.pillbox .token .tail i {
    padding: 4px; }

/* these are all label type pills and should
 * not have a border */
.privilege-pill-org,
.privilege-pill-network,
.privilege-pill-tag {
    border: none; }

/* would rather have this selector be .pill-dimtext
 * but can't find where it's created in admin_table.js
 */
/*
 * Fixes the positioning and cursor appearance
 * of the 'remove' icon in single selection widgets.
 */
.chosen-single abbr {
    border-bottom: none;
    cursor: pointer; }

/*
 * Fix the width and positioning of chosen within inline forms.
 */
.form-inline .chosen-container {
    vertical-align: middle; }

.chosen-vertical .chosen-container-multi .chosen-choices li.search-choice {
    float: none; }

.chosen-small .chosen-container {
    font-size: 11px;
    line-height: 17px; }
.chosen-small .chosen-container .chosen-single,
.chosen-small .chosen-container.chosen-container-active .chosen-single-with-drop {
    height: 17px;
    line-height: 17px; }
.chosen-small .chosen-container .chosen-single > div,
.chosen-small .chosen-container.chosen-container-active .chosen-single-with-drop > div {
    border-radius: 0 3px 3px 0; }
.chosen-small .chosen-container .chosen-single > div > b {
    background-position: 0 -3px; }
.chosen-small .chosen-container.chosen-container-active .chosen-single.chosen-single-with-drop {
    border-radius: 3px 3px 0 0; }
.chosen-small .chosen-container.chosen-container-active .chosen-single.chosen-single-with-drop > div > b {
    background-position: -18px -3px; }
.chosen-small .chosen-container .chosen-drop {
    border-radius: 0 0 3px 3px; }
.chosen-small .chosen-container .chosen-drop .chosen-search input[type='text'] {
    padding: 0 20px 0 3px;
    margin: 0;
    line-height: 17px; }
.chosen-small .chosen-container .chosen-drop .chosen-results {
    max-height: 400px; }
.chosen-small .chosen-container .chosen-drop .chosen-results li {
    padding: 5px 4px 5px; }

.chosen-container .chosen-results li.active-result.auto-tag {
    color: #1d770b;
    font-style: italic; }
.chosen-container .chosen-results li.active-result.auto-tag.highlighted {
    background-color: #3875d7;
    background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
    color: #fff; }

.chosen-container .chosen-results .custom-column {
    float: left;
    width: 100%; }
.chosen-container .chosen-results .custom-column li {
    display: list-item; }
.chosen-container .chosen-results .custom-column li:hover {
    cursor: auto;
    background: #eeeeee;
    color: #444; }
.chosen-container .chosen-results .custom-column li:hover.any {
    cursor: pointer;
    background-color: #3875d7;
    background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
    color: #fff; }
.chosen-container .chosen-results .custom-column .flex-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    cursor: auto; }
.chosen-container .chosen-results .custom-column .flex-container:hover {
    cursor: auto;
    background: white; }
.chosen-container .chosen-results .custom-column .flex-item {
    text-align: left;
    margin: auto 2px; }
.chosen-container .chosen-results .custom-column .flex-item .custom_input {
    max-width: 50px; }
.chosen-container .chosen-results .custom-column select.flex-item {
    max-width: 73px; }

.search-choice.auto-tag:before,
.profileTag.auto-tag:before {
    content: "\f0d0";
    font-family: FontAwesome;
    margin-right: 4px; }

.chosen-container-multi .chosen-choices {
    padding: 3px 5px; }
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
    height: 25px; }
.chosen-container-multi .chosen-choices li.search-choice {
    padding: 2px 6px;
    padding-right: 25px;
    background-image: none;
    box-shadow: none;
    margin: 1.5px 5px 1.5px 0px;
    line-height: inherit;
    overflow: hidden; }
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    background-image: none !important;
    color: #6d94ed;
    display: inline-block;
    font-size: inherit;
    height: 100%;
    margin-right: 0;
    padding: 2.1px 12px 0px 5px;
    position: absolute;
    right: 0px;
    top: 0; }
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:after {
    position: absolute;
    top: 2px; }

.mki-chosen-invisible-dropdown.chosen-container .chosen-drop {
    display: none; }

.mki-chosen-invisible-dropdown.chosen-container.chosen-with-drop .chosen-drop {
    display: block; }

/* shared styles that can be extended in
 * alert CSS rules. used by
 * - alerts.scss
 * - React StatusBlock component
 * - React Callout component
 */
/* importing variables and reusable layout stuff
  * here so that React scss files can include _alertsBase without
  * explicitly including variables */
/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

.alert.config_template_alert {
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-left: none; }

.alert.config_template_alert {
    margin-top: -1.25rem;
    margin-bottom: 1.25rem; }

/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
/* shared styles that can be extended in
 * alert CSS rules. used by
 * - alerts.scss
 * - React StatusBlock component
 * - React Callout component
 */
/* importing variables and reusable layout stuff
  * here so that React scss files can include _alertsBase without
  * explicitly including variables */
/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

.alert.config_template_alert {
    border-radius: 0;
    border-top: none;
    border-right: none;
    border-left: none; }

.alert.config_template_alert {
    margin-top: -1.25rem;
    margin-bottom: 1.25rem; }

/* Legacy styles for notice_explanation
 * These are the original styles for the flashes
 * .notice_explanation is deprecated. We don't want to use it for
 * flashes, but there are many places where we set in html.
 */
.notice_explanation_container {
    margin: 0px auto 12px auto;
    position: relative; }

#notice_explanation,
.notice_explanation {
    text-align: left;
    border: 1px solid #ddd;
    padding: 1em 1em;
    margin-bottom: 0.5em; }
#notice_explanation.good,
.notice_explanation.good {
    background-color: #e2f9e3;
    border-color: #9c9;
    color: #060; }
#notice_explanation.bad,
.notice_explanation.bad {
    background-color: #e00;
    border-color: #c99;
    color: #fff; }
#notice_explanation.bad a,
.notice_explanation.bad a {
    color: #fff; }
#notice_explanation.helpful,
.notice_explanation.helpful {
    background-color: #F7F6F6; }
#notice_explanation.confirm,
.notice_explanation.confirm {
    background-color: #f7f9b3; }
#notice_explanation.confirm li,
.notice_explanation.confirm li {
    padding-top: 0.5em;
    padding-bottom: 0.5em; }

.login #notice_explanation {
    margin-top: 12px; }

.notice_close_button {
    float: right;
    margin: -3px 0;
    cursor: pointer; }

.notice_explanation_container .notice_close_button {
    position: absolute;
    top: 3px;
    right: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer; }
.notice_explanation_container .notice_close_button img {
    cursor: pointer; }

/* Generic alert styles */
.alert {
    padding: 0.75em 1.25rem 0.75em 1.25rem; }

.alert > p {
    max-width: initial; }
.alert > p:last-child {
    margin-bottom: 1em; }

.alert-info a {
    color: #1470CC; }

/* When there's another alert above the config template alert,
 * add space above it. This is a quick fix, not a great style. */
.alert + .alert.config_template_alert {
    margin-top: 1em; }

/* 1-off alert styles */
.sms-error {
    display: none; }

.alerts label {
    display: block;
    padding-bottom: 0.4em; }

.input_sms {
    width: 100px;
    margin-right: 10px; }

.search-choice-disabled {
    opacity: .5; }

.chosen-container {
    margin-right: 15px; }

.input_carrier {
    margin-right: 10px; }

div.alert_form_block {
    margin-bottom: 20px;
    padding: 0px; }

#page_container {
    margin-bottom: 10px; }

td.pad {
    width: 550px; }

.padding_btwn {
    padding-bottom: 40px; }

.text_box_view_emails {
    position: relative;
    top: -12px;
    left: 20px;
    display: inline; }

.email_list_text {
    margin-bottom: 40px; }

.highlighted_text {
    font-weight: bold;
    font-size: 15px; }

.sections, .sections_show {
    padding-left: 10px;
    width: 100%; }

.edit_button {
    position: relative;
    top: -5px;
    left: 20px; }

.sections_show {
    display: block; }

.section_header {
    border-bottom: black solid 1px; }

.full_width {
    min-width: 209px; }

.inline_elem {
    display: inline; }

.test_event_container {
    position: relative;
    left: 200px;
    padding: 10px; }

.test_event {
    background-image: none; }

#pcc_security_reports_fe {
    display: inline-table; }

#alert_settings_pcc_sw_found {
    display: none; }

.alert_form_block > input[type='checkbox'] {
    margin-bottom: 10px; }

.open_tool_btn {
    position: fixed;
    display: none;
    left: 935px;
    z-index: 10; }

.select_tool_modal_body {
    min-height: 100px; }

.modal-body {
    overflow-y: visible; }

.left_label {
    padding-top: 5px;
    min-width: 200px; }

.btn_recip {
    min-width: 75px; }

.special_security {
    position: absolute;
    top: 980px;
    left: 985px; }

/* ##minify-IE6## removes child selectors */
/* generic flex_table rules */
/* override style from google maps stylesheet */
/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
/* Shared styles for FlexTable, ReactFlextTable, SimpleTable, and TableEditor */
/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

/* Color styles */
/* temporary assignment until we update the color palette */
/* Modern color styles */
/* temporary assignment until we update the color palette */
/* Text alignment helpers */
.Table__text--alignLeft {
    text-align: left; }

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

.Table__text--alignRight {
    text-align: right; }

/* TODO: abstract out more shared styles for the tables and include them here
 * using a similar strategy as _pillBase.scss
 */
table.filter {
    border-collapse: separate;
    border-spacing: 0;
    text-align: left; }
table.filter.fill {
    width: 100%; }
table.filter.compact {
    font-size: 11px; }
table.filter.compact td.ft {
    padding: 3px 5px; }
table.filter.compact th.ft.checkbox, table.filter.compact td.ft.checkbox {
    padding: 3px 2px; }
table.filter.compact th.ft.checknum, table.filter.compact td.ft.checknum {
    white-space: nowrap;
    padding-right: 8px; }
table.filter td.checkbox {
    padding: 2px 0 1px; }
table.filter th.checkbox {
    padding: 3px 0; }
table.filter td.table_message {
    text-align: center;
    padding: 20px 0; }
table.filter th h3 {
    line-height: normal; }

table.nodes_filter,
table.neighbors_filter,
table.routes_filter,
table.event_log {
    font-size: 11px;
    width: 100%; }

table.nodes_filter {
    white-space: nowrap; }

table.user_logins_profile {
    font-size: 11px;
    width: 465px; }

table.user_sessions_profile {
    font-size: 11px; }

tr.ft_foot,
tr.ft_foot select {
    min-width: 59px; }

tr.ft_foot select.num_results {
    font-size: 11px; }

table.event_log {
    line-height: 15px; }

tr.ftp0, tr.ftp1 {
    cursor: pointer; }

tr.ft1, tr.ftp1, tr.fth1 {
    background-color: #f8f8f8; }

tr.ft.errorhighlight,
tr.ft0.errorhighlight, tr.ft1.errorhighlight,
tr.fth0.errorhighlight, tr.fth1.errorhighlight,
tr.ftp0.errorhighlight, tr.ftp1.errorhighlight {
    background-color: #fff0f0; }

tr.group1 td.config_group_col {
    background-color: #9af6e6; }

tr.group2 td.config_group_col {
    background-color: #73c349; }

tr.group3 td.config_group_col {
    background-color: #fa958a; }

tr.fth0:hover, tr.fth1:hover,
tr.fth0.errorhighlight:hover, tr.fth1.errorhighlight:hover,
tr.fth0.adminhighlight:hover, tr.fth1.adminhighlight:hover,
tr.ftp0:hover, tr.ftp1:hover,
tr.ftp0.errorhighlight:hover, tr.ftp1.errorhighlight:hover,
tr.ftp0.adminhighlight:hover, tr.ftp1.adminhighlight:hover {
    background-color: #ffe8b4; }

tr.ft.lowlight,
tr.ft0.lowlight, tr.ft1.lowlight,
tr.fth0.lowlight, tr.fth1.lowlight,
tr.ftp0.lowlight, tr.ftp1.lowlight {
    color: #bbb; }

tr.pci.ft0 {
    background-color: #ffffff; }

th.ft,
th.ssid_name {
    background-color: #EEEEEE;
    padding: 3px 5px;
    font-weight: bold;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    vertical-align: bottom; }

th.ft:first-child,
td.ft:first-child {
    border-left: 1px solid #dddddd; }

th.ft:first-child {
    border-top-left-radius: 4px; }

th.ft:last-child,
td.ft:last-child {
    border-right: 1px solid #dddddd; }

th.ft:last-child {
    border-top-right-radius: 4px; }

th.ssid_name H3 {
    text-align: left; }

th.ft.ftsortable {
    cursor: pointer;
    cursor: hand; }
th.ft.ftsortable.ftl {
    padding: 4px 2px 4px 5px; }
th.ft.ftsortable:hover {
    background-color: #ddd; }

th.ft.highlight_failed_col {
    background-color: #f2dede; }

td.ft,
td.ssid_prop,
td.ssid_val {
    padding: 0 5px; }

td.ft.ip,
td.ft.pci {
    padding: 4px 5px; }

td.ft.pci.ssid {
    padding: 2px 5px; }

td.ft.pci_result {
    padding: 5px; }

td.ft.row_num,
td.ft.count,
td.ft.count_p,
td.ft.mac,
td.ft.ft_pad {
    padding: 3px 5px; }

/* column-specific flex_table rules */
tr.ssid_row {
    vertical-align: baseline; }

table.nodes_filter th.ft.name {
    width: auto;
    min-width: 11em; }

table.neighbors_filter th.ft.name,
table.routes_filter th.ft.to_gw_route {
    width: auto;
    min-width: 10em; }

td.ft.outage_graph {
    padding: 0 7px; }

td.ft.to_gw_route {
    padding: 2px 5px; }

td.ft.status {
    padding: 1px 5px; }
td.ft.status .sprite_frame {
    margin: 2px auto; }

.ft.icon {
    padding: 1px 0; }

td.ft.checknum, th.ft.checknum {
    white-space: nowrap;
    padding: 2px 8px 1px 0px; }

td.ft.checkbox, th.ft.checkbox {
    padding: 2px 0 1px; }

td.ft.el_time,
td.ft.el_node,
td.ft.el_client,
td.ft.el_type,
td.ft.el_details,
td.ssid_prop,
td.ssid_val {
    padding: 2px 5px; }

.ftr {
    text-align: right; }

.ftc {
    text-align: center; }

.ft.signals,
.ft.internet_address,
.ft.tunnel_ip,
.ft.ip,
.ft.policy,
.ft.status,
.ft.row_num,
.ft.amt_rcvd,
.ft.amt_sent,
.ft.amt_xfrd,
.ft.usage,
.ft.clients,
td.ft.nass,
.ft.dl_speed,
.ft.ping_latency,
.ft.clients_probing,
.ft.gwhops,
.ft.distance,
.ft.signals,
.ft.avg_mbps,
.ft.avg_to_gwm,
.ft.avg_metric,
.ft.el_time,
td.ftnowrap {
    white-space: nowrap; }

td.ssid_hdr {
    padding: 4px 5px 2px 0;
    font-weight: bold; }

td.ssid_prop {
    padding: 2px 5px 2px 1.5em;
    color: #777; }
td.ssid_prop.ssid_enabled {
    padding: 2px 5px 2px 0; }

td.ssid_disabled {
    background-color: #f0f0f0; }

tr.ft1 > td.ssid_disabled {
    background-color: #e8e8ee; }

th.ssid_disabled,
td.ssid_disabled {
    color: #888; }

td.app_name {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-align: center;
    align-items: center; }

/* custom column selector */
img.custcol_add, img.custcol_rm, img.custcol_up, img.custcol_down {
    width: 20px;
    height: 20px;
    background-image: url(/images/custcol_arrows_all.gif); }

img.custcol_up {
    background-position: -20px 0px; }

img.custcol_up.custcol_active {
    background-position: 0px 0px; }

img.custcol_add {
    background-position: -20px -20px; }

img.custcol_add.custcol_active {
    background-position: 0px -20px; }

img.custcol_down {
    background-position: -20px -40px; }

img.custcol_down.custcol_active {
    background-position: 0px -40px; }

img.custcol_rm {
    background-position: -20px -60px; }

img.custcol_rm.custcol_active {
    background-position: 0px -60px; }

tbody > tr:last-child > td.ft {
    border-bottom: 1px solid #dddddd; }

td.ft_foot {
    border: 0 none;
    border-spacing: 0;
    border-collapse: collapse;
    padding: 3px 15px;
    background-color: #EEEEEE;
    border: 1px solid #dddddd;
    border-top: none;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
td.ft_foot table {
    border: 0 none;
    border-spacing: 0;
    border-collapse: collapse;
    width: 100%; }

table.filter > tfoot td.pgsel {
    padding: 0px;
    text-align: left; }

table.filter > tfoot td.pgnum {
    padding: 0px;
    text-align: right; }

.page_list a:link {
    text-decoration: none; }

/* XXX not the right way to do things (maxp.20080724) */
.spinner .ui-dialog, .spinner.ui-dialog {
    background-color: red;
    border-width: 0px; }

a.filter_link {
    padding: 3px;
    vertical-align: bottom;
    visibility: hidden;
    color: #777;
    text-decoration: none; }
a.filter_link:hover {
    color: #444; }

td:hover a.filter_link {
    visibility: visible; }

.page_link {
    text-decoration: none; }

.page_link,
.pgnum > .page_link__pagerIcon {
    padding: 0 0.33em; }

.page-link:not(.page_link--current) {
    cursor: pointer; }

.ft_add_col.btn-group {
    position: absolute;
    top: 0;
    right: 0;
    height: 24px;
    width: 40px;
    background-color: #ccc;
    color: black;
    z-index: 3;
    border-left: 2px solid white;
    font-size: 11px; }
.ft_add_col.btn-group .btn {
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
    font-weight: bold;
    line-height: 18px;
    float: none;
    border: 0 none;
    box-shadow: none;
    background-image: none;
    background-color: transparent !important;
    width: 40px;
    height: inherit;
    padding: 0; }
.ft_add_col.btn-group:hover {
    background-color: #7AC142; }
.ft_add_col.btn-group:hover .btn {
    color: white; }
.ft_add_col.btn-group .snap_to_margin {
    right: -20px; }
.ft_add_col.btn-group .checkboxes {
    white-space: nowrap; }
.ft_add_col.btn-group .group_name {
    margin-bottom: 0;
    text-align: left; }
.ft_add_col.btn-group .single-column, .ft_add_col.btn-group .double-column {
    padding: 4px; }
.ft_add_col.btn-group .single-column div:first-child h3, .ft_add_col.btn-group .right div:first-child h3, .ft_add_col.btn-group .left div:first-child h3 {
    margin-top: 0; }
.ft_add_col.btn-group ul {
    list-style: none;
    text-align: left;
    padding: 4px;
    margin: 0;
    font-weight: normal; }
.ft_add_col.btn-group ul li {
    padding: 0; }
.ft_add_col.btn-group .left, .ft_add_col.btn-group .right {
    vertical-align: top;
    bottom: auto;
    top: auto;
    position: static; }
.ft_add_col.btn-group .left {
    padding-right: 12px; }
.ft_add_col.btn-group .right {
    padding-left: 12px; }
.ft_add_col.btn-group .details_heading {
    margin-top: 5px;
    margin-bottom: 0;
    text-align: left;
    margin: 0 0 0 5px; }
.ft_add_col.btn-group .drag_heading {
    font-weight: normal;
    text-align: left;
    padding-bottom: 8px;
    border-bottom: 1px solid #CECECE;
    margin: 0 0 5px 5px; }

.add_col > table.filter > * > tr > th:last-child {
    padding-right: 45px; }

/* styles for printing */
@media print {
    /* hide the border around the whole table, and around the footer
   * this is just to make things look cleaner
   */
    td.ft_foot {
        border: none; }
    th.ft:first-child, td.ft:first-child {
        border-left: none; }
    th.ft:last-child, td.ft:last-child {
        border-right: none; }
    tbody > tr:last-child > td.ft {
        border-bottom: none; } }

/* Shared styles for FlexTable, ReactFlextTable, SimpleTable, and TableEditor */
/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

/* Color styles */
/* temporary assignment until we update the color palette */
/* Modern color styles */
/* temporary assignment until we update the color palette */
/* Text alignment helpers */
.Table__text--alignLeft {
    text-align: left; }

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

.Table__text--alignRight {
    text-align: right; }

/* TODO: abstract out more shared styles for the tables and include them here
 * using a similar strategy as _pillBase.scss
 */
#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
/* React nav variables
 * These variables define the light and dark themes
 * Used in:
 * _layout.scss
 * (React) NavSelector.scss
 * (React) TabMenu.scss
 */
/* Common variables */
/* was #FAFAFA; */
/* Start dark theme */
/* was #323334; */
/* was #28292A; */
/* was #4B4D4E; */
/* Safari renders text incorrectly when the color is defined with an opacity,
 * so we replaced some of the opacity colors with hex values
 */
/* was #C9C9CA; This color is the computed value of rgba(255,255,255,.7) over #4B4D4E which is the background of the submenu */
/* was #939494; This color is the computed value of rgba(255,255,255,.4) over #4B4D4E which is the background of the submenu */
/* was #444444; */
/* was #585A5A; */
/* was rgba(255,255,255,0.15); */
/* End dark theme */
/* Start light theme */
/* The light theme needs a shadow on the right side to
 * separate it from the main content
 */
/* Start underdog theme */
/* Better box-sizing
 * Make border-box the default sizing for all elements, but allow for
 * overrides. Doing so fixed the grid gutter issues, so we can revert to
 * using the default settings for gutter.
 */
html {
    box-sizing: border-box; }

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

/* Basic layout styles */
html, body {
    height: 100%; }

body {
    margin: 0;
    padding: 0;
    background-color: white;
    min-width: 900px;
    /* fix for weird way safari handles font weights */
    -webkit-font-smoothing: subpixel-antialiased; }

#sidetabs_container {
    background-color: white;
    border-bottom: 1px solid #F2F2F2; }

#content {
    margin-left: 215px;
    background: white;
    z-index: -1; }
#content.no_tabs {
    margin-left: 0px;
    z-index: 0; }

/* Legacy layout styles
 * ------------------------------------------------
 * These styles are used on some pages in dashboard
 * that do not have the left navigation.
 */
#masthead {
    position: relative;
    border-bottom: 1px solid #eeeeee;
    padding: 30px 30px 20px 15px;
    background: #fff; }

#logo {
    margin-right: 29px;
    text-decoration: none; }
#logo img {
    vertical-align: baseline; }

/* React layout styles
 * ------------------------------------------------
 * These styles are used on some pages in dashboard
 * that have the react left navigation.
 * We want to define theses styles here rather than
 * in React because manage.css is loaded sooner than
 * the React css, so it avoids the UI looking weird
 * while the page is still loading.
 */
#sidetabs_body_container {
    max-width: 100%;
    min-height: 600px;
    overflow-x: auto; }
#sidetabs_body_container.no_tabs {
    margin-left: 0px; }

#masthead-react {
    z-index: 1010;
    border-bottom: 1px solid #D7D7D9;
    background-color: white;
    position: relative;
    padding: 0.5rem 1rem;
    height: 3rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center; }

#magic-search-react {
    -ms-flex-positive: 1;
    flex-grow: 1; }

#main-nav {
    width: 215px;
    height: 100%;
    position: fixed;
    background: #3D3E40;
    z-index: 1011;
    border-right: none; }

#logo_react, #nav-controls > * {
    margin-top: 15px; }

#nav-controls > :not(:first-child) > * {
    margin-top: 10px; }

#logoContainer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 0 15px 0;
    padding: 0 10px 0 15px; }
#logoContainer.branded {
    margin: 0; }

#logoImg {
    width: 130px;
    height: 30px; }

/* Custom logo overrides */
#logo_react.custom-logo {
    margin-top: 0;
    /* Since this is an <a> we have to zero out the line-height to get the logo to center */
    /* More flexible width and height to accomodate square or rectangular logos */ }
#logo_react.custom-logo #logoContainer {
    padding: 0.5em 3em 0.5em 1em; }
#logo_react.custom-logo .logo-link {
    line-height: 0; }
#logo_react.custom-logo #logoImg {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 3rem; }

#trailer_react {
    position: relative;
    background-color: white; }

/* Light theme overrides */
.react-layout.light-theme #main-nav {
    background: #F2F2F2;
    box-shadow: inset -1px 0px 1px rgba(0, 0, 0, 0.05); }

.react-layout.light-theme #logo_react.custom-logo {
    background: white;
    box-shadow: inset -1px 0px 1px rgba(0, 0, 0, 0.05); }

/* Localize language switcher overrides
 * All other configuration for the selector is done through a UI that Localize provides
 * We just need to adjust the left position so that it lines up with the items in the nav
 */
#localize-widget #localize-current.localize-left,
#localize-widget #localize-langs.localize-left {
    left: 1rem; }

#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

/* phone onboarding alert */
.phone-onboarding-alert {
    margin-bottom: 1rem;
    border-radius: 0;
    position: relative;
    border-bottom: 1px solid #d9edf7;
    list-style-type: none; }

#sidetabs_container .phone-onboarding-alert {
    margin-top: -1.25rem; }

.AlertList.phone-onboarding-alert .Alert {
    border-radius: 0;
    border: 0;
    padding: 0;
    margin: 0; }

.phone-onboarding-alert .alert-list-alert-header {
    text-align: left;
    padding: 1rem; }

.phone-onboarding-alert .alert-list-alert-body {
    display: none; }

.phone-onboarding-alert .alert-expanded .alert-list-alert-body {
    display: block;
    background-color: #fbfdfe;
    padding: 0;
    color: #222; }

.phone-onboarding-alert .alert-list-alert-icons {
    position: absolute;
    top: 1rem;
    right: 1rem; }
.phone-onboarding-alert .alert-list-alert-icons .alert-list-alert-expander {
    margin-right: 1rem; }

.phone-onboarding-alert .alert-list-alert-expander:before {
    content: 'See steps ';
    padding-right: 0.5em; }

.phone-onboarding-alert .alert-expanded .alert-list-alert-expander:before {
    content: 'Hide steps '; }

.phone-onboarding-alert .alert-list-alert-remover:before {
    content: 'Remove ';
    padding-right: 0.5em; }

/* phone onboarding steps  - graphic with caption*/
.graphics-with-captions-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-align: baseline;
    align-items: baseline;
    padding: 0 0.25rem 0 0.25rem; }

.graphic-with-caption-wrapper {
    max-width: 20em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.5rem 1.25rem 1rem 1.25rem; }

.graphic-with-caption-graphic,
.graphic-with-caption-graphic svg {
    height: 7em; }

.graphic-with-caption-title {
    margin-top: 1em;
    display: block;
    text-align: center; }

/* caption on right */
.graphic-with-caption-wrapper-caption-right {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    max-width: 38em;
    -ms-flex-align: center;
    align-items: center; }

.graphic-with-caption-graphic-caption-right {
    margin-right: 1rem;
    width: 14em; }

.graphic-with-caption-title-caption-right {
    text-align: left; }

.graphic-with-caption-text-caption-right {
    margin-top: 0.5em; }

.graphic-with-caption-text-disabled {
    pointer-events: none;
    cursor: default;
    color: black;
    text-decoration: none; }

/* Styles for the save changes, SaveNotice component
 * Used by
 * - (React) SaveChanges.scss
 * - _saveChanges.scss
 */
#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
.save_button_container {
    position: relative;
    margin-top: 1em;
    padding: 1rem 0;
    text-align: center; }

.save_button_container.unsaved, .save_button_container.unsaved_changes {
    background-color: #FFF5E0;
    border-top: 1px solid #cbb013;
    border-bottom: 1px solid #cbb013; }

.status_message.notice.unsaved, .status_message.notice.unsaved_changes {
    position: fixed;
    right: 0;
    margin: 0;
    padding: 0 1em 1.25em 1em;
    text-align: center;
    z-index: 100; }

.status_message.notice.unsaved, .status_message.notice.unsaved_changes {
    bottom: 0;
    border-top: 1px solid #cbb013;
    border-left: 1px solid #cbb013;
    border-bottom: none;
    border-right: none; }

.status_message.notice.unsaved, .status_message.notice.unsaved_changes {
    background-color: #FFF5E0;
    height: auto;
    padding-top: 1em; }
.status_message.notice.unsaved div:first-child, .status_message.notice.unsaved_changes div:first-child {
    margin-bottom: 0.5em; }
.status_message.notice.unsaved div:not(:first-child), .status_message.notice.unsaved_changes div:not(:first-child) {
    font-weight: 400; }
.status_message.notice.unsaved #floating_cancel_changes, .status_message.notice.unsaved_changes #floating_cancel_changes {
    cursor: pointer; }

.traffic_shaping .modal-dialog {
    min-width: 700px; }

.traffic_shaping #template_objects .template_select, .traffic_shaping #template_objects .vlan_select {
    max-width: 80px; }

.traffic_shaping #template_objects .host-bit {
    max-width: 60px; }

.traffic_shaper .pillbox {
    min-width: 650px; }
.traffic_shaper .pillbox .token.custom.editing {
    border: 1px solid yellow; }

.traffic_shaper .dropdown .dropdown-widget .custom_pane {
    padding-left: 2ex;
    margin-right: -2ex; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane LABEL {
    padding-left: 0; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane .custom .alternate {
    display: none; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane H3 {
    margin-bottom: 0; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane.iwan_l7 .descriptor {
    padding-top: 2ex; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane.iwan_l7 .descriptor .flex-container .flex-item.custom_label:hover {
    background-color: white; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane .flex-container {
    list-style: none;
    display: -ms-flexbox;
    display: flex; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane .flex-item, .traffic_shaper .dropdown .dropdown-widget .custom_pane .flex-item:hover {
    text-align: left; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane .flex-item.cidr, .traffic_shaper .dropdown .dropdown-widget .custom_pane .flex-item:hover.cidr {
    width: 75%; }
.traffic_shaper .dropdown .dropdown-widget .custom_pane .flex-item.port, .traffic_shaper .dropdown .dropdown-widget .custom_pane .flex-item:hover.port {
    margin-left: 1ex; }

.traffic_shaper .dropdown .custom_pane_help H4 {
    margin-bottom: 3px; }

.traffic_shaper .dropdown .custom_pane_help UL {
    list-style: none; }

.traffic_shaper .dropdown .custom_pane BUTTON .editing {
    display: none; }

.traffic_shaper .dropdown.editing .custom_pane BUTTON .add {
    display: none; }

.traffic_shaper .dropdown.editing .custom_pane BUTTON .editing {
    display: inline; }

.traffic_shaper .dropdown .dropdown-widget {
    top: 0;
    min-width: 450px;
    padding: 0;
    max-height: 450px; }
.traffic_shaper .dropdown .dropdown-widget.iwan_l7 {
    min-width: 650px; }

.traffic_shaper .dropdown .category {
    border-left: 1px solid #EEE;
    margin-left: -1px;
    overflow-y: auto;
    max-height: inherit; }

.traffic_shaper .dropdown .cats {
    overflow-y: auto;
    max-height: 450px;
    float: left;
    width: 49%;
    border-right: 1px solid #EEE;
    list-style: none; }
.traffic_shaper .dropdown .cats.iwan_l7 {
    width: 39%; }

.traffic_shaper .dropdown .cats LI,
.traffic_shaper .dropdown .sub LABEL {
    padding: 1ex 2ex;
    padding-right: 0;
    margin: 0;
    text-align: left; }

.traffic_shaper .dropdown .cats li:hover,
.traffic_shaper .dropdown .sub li:hover,
.traffic_shaper .dropdown .cats li.showing {
    cursor: pointer;
    background: #EEEEEE;
    color: #444; }

.traffic_shaper .dropdown .sub {
    display: none;
    float: left;
    width: 50%;
    list-style: none; }
.traffic_shaper .dropdown .sub.iwan_l7 {
    width: 60%; }
.traffic_shaper .dropdown .sub LI, .traffic_shaper .dropdown .sub LABEL {
    cursor: pointer; }
.traffic_shaper .dropdown .sub LI.flex-item, .traffic_shaper .dropdown .sub LABEL.flex-item {
    cursor: auto; }
.traffic_shaper .dropdown .sub LABEL {
    display: block;
    background-color: none; }
.traffic_shaper .dropdown .sub LABEL.active:hover {
    background-color: inherit; }
.traffic_shaper .dropdown .sub LABEL.active {
    background-color: #E6E6E6; }
.traffic_shaper .dropdown .sub LABEL.active I.active {
    display: block;
    float: right;
    font-size: 85%;
    padding: .25ex;
    margin-right: 1ex; }
.traffic_shaper .dropdown .sub LABEL I.active {
    display: none; }
.traffic_shaper .dropdown .sub LABEL .expression {
    display: block;
    width: 94%; }
.traffic_shaper .dropdown .sub.selected LABEL.all.active I.active {
    display: block; }
.traffic_shaper .dropdown .sub.selected LABEL.active I.active {
    display: none; }

.traffic_shaper .pillbox-dropdown {
    color: #555;
    border: 1px solid #ccc; }

.default, .action {
    text-align: center; }

#sidetabs_body_container {
    padding: 1.25rem 1.25rem 1rem 1.25rem; }

/* full bleed means that the content on the page will go all
 * the way to the edge and "bleed" off the page
 * this is useful when, on a page that has normal padding, you want
 * one element to go all the way to the edge (e.g., a map, a line
 * dividing sections) */
.horizontalFullBleed, .alert.config_template_alert, #sidetabs_container .phone-onboarding-alert, .save_button_container, h2.cfg, .config_sep {
    margin-left: -1.25rem;
    margin-right: -1.25rem; }

.horizontalFullBleedPopover {
    margin-left: -14px;
    margin-right: -14px; }

/* Old Colors
 * Use of variables from the above import files is preferred.
*/
/* Legacy blue styles
 * $blue: #00a9e0; remapped to $blue
 * $backgroundLightBlue: lighten($blue, 53%); use $blue--lightest instead
 * $blueLightest: #dcebfa; use $blue--lightest instead
 */
/* Rationalized blue styles */
/* Blues variables imported from mkiColorVariables
 * $blue
 * $blue--lighter
 * $blue--lightest
 * $blue--darker
 * $blue--darkest
 */
/* Underdog */
/* Typography Helpers
 * -----------------------------------------------------------
 * This partial defines common type styles that can be
 * extended / applied to elements using classes you define.
 * It includes:
 * - Type size and color variables
 * - @extend-only styles for headings, body, allcaps, etc.
 *
 * Import this file into your component or page scss to
 * use the type variables without adding additional CSS bloat.
 *
 * To use the helpers, simply add them to the selector you'd
 * like to style using @extend:
 * .MyHeading {
 *   @extend %h3Styles;
 *   color: $textColor;
 * }
 */
/* Reusable base body styles */
body {
    font-size: 0.8125rem;
    font-family: cisco-sans, Helvetica, Arial, sans-serif;
    color: #222;
    line-height: 1.45; }

/* Reusable base-styles shared across all headings */
h1, h2, h3, h4, h5 {
    font-weight: 200;
    margin: 1.414em 0 0.5em; }

/* Styles for page titles */
h1 {
    font-size: 1.728em; }

/* Styles for page sections */
h2 {
    font-size: 1.44em; }

/* Styles for subsections and cards */
h3 {
    font-size: 1.2em;
    font-weight: 300; }

/* Styles for titles on components */
h4, h5 {
    font-size: 1em;
    font-weight: 700; }

/* Styles for headings with horizontal line on top
 * that goes edge-to-edge (e.g. full-bleed)
 */
h2.cfg {
    border-top: 1px solid #EBEBEB;
    padding-top: 1rem;
    margin-top: 1.414em;
    padding-left: 1.25rem;
    padding-right: 1.25rem; }

/* Style for blocks of text on a page */
p {
    max-width: 50em; }

/* Style with make text all caps */
/* Typography Base
 * -----------------------------------------------------------
 * This partial applies common type variables as default styles
 * for html elements / classes in the app.
 *
 * DO NOT IMPORT THIS FILE INTO REACT SCSS
 * USE _typographyHelpers.scss INSTEAD
 * _typographyHelpers defines common type styles that can be
 * extended / applied to elements using classes you define.
 */
h1 {
    margin-top: 0; }

h1 .HoverHelp, h2 .HoverHelp, h3 .HoverHelp, h4 .HoverHelp, h5 .HoverHelp {
    font-size: 0.833em; }

/* remove margin-top on headings in modals because
 * they have their own spacing */
.modal-header h1, .modal-header h2, .modal-header h3, .modal-header h4, .modal-header h5 {
    margin-top: 0; }

small {
    font-size: 0.694em; }

/* use border to add a divider between form sections
 * with the .cfg class */
#sidetabs_body_container h1 + h2.cfg {
    margin-top: 0;
    border-top: transparent; }

/* make legacy separators extend to edge of page */
#destroy-ng-alert-container {
    max-height: 300px;
    overflow: auto;
    margin-bottom: 10px; }
#destroy-ng-alert-container .alert {
    word-wrap: break-word; }

/* hotspot 2.0 styles */
#hs20_nai_realms_container {
    width: 70%; }
#hs20_nai_realms_container .action_bark {
    margin-top: 0; }
#hs20_nai_realms_container #hs20_nai_realms_table {
    width: 100%;
    margin: 5px 0; }

#create_nai_realm_modal .field.cf {
    margin: 10px 0 20px; }
#create_nai_realm_modal .field.cf label {
    width: 5em;
    display: inline-block; }

#create_nai_realm_modal .chosen-container {
    margin: 0; }

.temporary_permission_status {
    font-size: 10px;
    display: inline-block;
    letter-spacing: initial;
    font-weight: normal;
    margin-left: 10px; }
.temporary_permission_status .active {
    color: white; }
.temporary_permission_status .inactive {
    color: gray; }

.missing-asset-warning i {
    color: #d00; }

.splash.missing-asset-warning {
    margin-left: 5px;
    margin-right: 5px; }

#api_keys_table {
    table-layout: fixed; }

.key_last_digits {
    width: 25em; }

.key_created_at, .key_last_used {
    width: 12em; }

@media print {
    /* get rid of the space reserved for the nav sidebar */
    #content {
        margin-left: 0;
        border: none; }
    /* hide navigation when people print dashboard
   * pages
  */
    #main-nav,
    #magic_search_container,
    #trailer,
    #header-right {
        display: none; }
    /* Hide action bar on tables. There is also
   * a style to accomplish this in the ActionBar.scss
   * component
  */
    #action_bar {
        display: none; }
    /* remove backgrounds, gradients, and borders from
   * native select elements and chosen select elements
  */
    select, .chosen-container-single .chosen-single {
        background: white;
        border: none; }
    select {
        /* use appearance attribute to override/remove
     * browser default styling
    */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        font-size: inherit; }
    .chosen-container-single .chosen-single {
        box-shadow: none;
        padding-left: 1px;
        /* don't need padding because it's not a click target */
        font-weight: bold;
        /* make the selected value stand out */ }
    #select_network_chosen .chosen-single {
        font-size: 13px;
        /* make network selector value text same size as label text */
        /* margin to align value text with label text in chosen version of network selector */
        margin-top: -2px; }
    /* hide the dropdown triangle */
    .chosen-container-single .chosen-single div {
        display: none; } }