@charset "UTF-8";
/*!
 *  Font Awesome 4.6.0 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("../../lib/fontawesome/fonts/fontawesome-webfont.eot?v=4.6.0");
    src: url("../../lib/fontawesome/fonts/fontawesome-webfont.eot?#iefix&v=4.6.0") format("embedded-opentype"), url("../../lib/fontawesome/fonts/fontawesome-webfont.woff2?v=4.6.0") format("woff2"), url("../../lib/fontawesome/fonts/fontawesome-webfont.woff?v=4.6.0") format("woff"), url("../../lib/fontawesome/fonts/fontawesome-webfont.ttf?v=4.6.0") format("truetype"), url("../../lib/fontawesome/fonts/fontawesome-webfont.svg?v=4.6.0#fontawesomeregular") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* line 4, bower_components/fontawesome/scss/_core.scss */
.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 */
/* line 5, bower_components/fontawesome/scss/_larger.scss */
.fa-lg {
    font-size: 1.33333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

/* line 10, bower_components/fontawesome/scss/_larger.scss */
.fa-2x {
    font-size: 2em;
}

/* line 11, bower_components/fontawesome/scss/_larger.scss */
.fa-3x {
    font-size: 3em;
}

/* line 12, bower_components/fontawesome/scss/_larger.scss */
.fa-4x {
    font-size: 4em;
}

/* line 13, bower_components/fontawesome/scss/_larger.scss */
.fa-5x {
    font-size: 5em;
}

/* line 3, bower_components/fontawesome/scss/_fixed-width.scss */
.fa-fw {
    width: 1.28571em;
    text-align: center;
}

/* line 4, bower_components/fontawesome/scss/_list.scss */
.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none;
}
    /* line 8, bower_components/fontawesome/scss/_list.scss */
    .fa-ul > li {
        position: relative;
    }

/* line 10, bower_components/fontawesome/scss/_list.scss */
.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: 0.14286em;
    text-align: center;
}
    /* line 16, bower_components/fontawesome/scss/_list.scss */
    .fa-li.fa-lg {
        left: -1.85714em;
    }

/* line 4, bower_components/fontawesome/scss/_bordered-pulled.scss */
.fa-border {
    padding: .2em .25em .15em;
    border: solid 0.08em #eee;
    border-radius: .1em;
}

/* line 10, bower_components/fontawesome/scss/_bordered-pulled.scss */
.fa-pull-left {
    float: left;
}

/* line 11, bower_components/fontawesome/scss/_bordered-pulled.scss */
.fa-pull-right {
    float: right;
}

/* line 14, bower_components/fontawesome/scss/_bordered-pulled.scss */
.fa.fa-pull-left {
    margin-right: .3em;
}

/* line 15, bower_components/fontawesome/scss/_bordered-pulled.scss */
.fa.fa-pull-right {
    margin-left: .3em;
}

/* Deprecated as of 4.4.0 */
/* line 19, bower_components/fontawesome/scss/_bordered-pulled.scss */
.pull-right {
    float: right;
}

/* line 20, bower_components/fontawesome/scss/_bordered-pulled.scss */
.pull-left {
    float: left;
}

/* line 23, bower_components/fontawesome/scss/_bordered-pulled.scss */
.fa.pull-left {
    margin-right: .3em;
}

/* line 24, bower_components/fontawesome/scss/_bordered-pulled.scss */
.fa.pull-right {
    margin-left: .3em;
}

/* line 4, bower_components/fontawesome/scss/_animated.scss */
.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

/* line 9, bower_components/fontawesome/scss/_animated.scss */
.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* line 4, bower_components/fontawesome/scss/_rotated-flipped.scss */
.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

/* line 5, bower_components/fontawesome/scss/_rotated-flipped.scss */
.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

/* line 6, bower_components/fontawesome/scss/_rotated-flipped.scss */
.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

/* line 8, bower_components/fontawesome/scss/_rotated-flipped.scss */
.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

/* line 9, bower_components/fontawesome/scss/_rotated-flipped.scss */
.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    transform: scale(1, -1);
}

/* line 14, bower_components/fontawesome/scss/_rotated-flipped.scss */
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    -webkit-filter: none;
    filter: none;
}

/* line 4, bower_components/fontawesome/scss/_stacked.scss */
.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

/* line 12, bower_components/fontawesome/scss/_stacked.scss */
.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

/* line 18, bower_components/fontawesome/scss/_stacked.scss */
.fa-stack-1x {
    line-height: inherit;
}

/* line 19, bower_components/fontawesome/scss/_stacked.scss */
.fa-stack-2x {
    font-size: 2em;
}

/* line 20, bower_components/fontawesome/scss/_stacked.scss */
.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 */
/* line 4, bower_components/fontawesome/scss/_icons.scss */
.fa-glass:before {
    content: "";
}

/* line 5, bower_components/fontawesome/scss/_icons.scss */
.fa-music:before {
    content: "";
}

/* line 6, bower_components/fontawesome/scss/_icons.scss */
.fa-search:before {
    content: "";
}

/* line 7, bower_components/fontawesome/scss/_icons.scss */
.fa-envelope-o:before {
    content: "";
}

/* line 8, bower_components/fontawesome/scss/_icons.scss */
.fa-heart:before {
    content: "";
}

/* line 9, bower_components/fontawesome/scss/_icons.scss */
.fa-star:before {
    content: "";
}

/* line 10, bower_components/fontawesome/scss/_icons.scss */
.fa-star-o:before {
    content: "";
}

/* line 11, bower_components/fontawesome/scss/_icons.scss */
.fa-user:before {
    content: "";
}

/* line 12, bower_components/fontawesome/scss/_icons.scss */
.fa-film:before {
    content: "";
}

/* line 13, bower_components/fontawesome/scss/_icons.scss */
.fa-th-large:before {
    content: "";
}

/* line 14, bower_components/fontawesome/scss/_icons.scss */
.fa-th:before {
    content: "";
}

/* line 15, bower_components/fontawesome/scss/_icons.scss */
.fa-th-list:before {
    content: "";
}

/* line 16, bower_components/fontawesome/scss/_icons.scss */
.fa-check:before {
    content: "";
}

/* line 17, bower_components/fontawesome/scss/_icons.scss */
.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "";
}

/* line 20, bower_components/fontawesome/scss/_icons.scss */
.fa-search-plus:before {
    content: "";
}

/* line 21, bower_components/fontawesome/scss/_icons.scss */
.fa-search-minus:before {
    content: "";
}

/* line 22, bower_components/fontawesome/scss/_icons.scss */
.fa-power-off:before {
    content: "";
}

/* line 23, bower_components/fontawesome/scss/_icons.scss */
.fa-signal:before {
    content: "";
}

/* line 24, bower_components/fontawesome/scss/_icons.scss */
.fa-gear:before,
.fa-cog:before {
    content: "";
}

/* line 26, bower_components/fontawesome/scss/_icons.scss */
.fa-trash-o:before {
    content: "";
}

/* line 27, bower_components/fontawesome/scss/_icons.scss */
.fa-home:before {
    content: "";
}

/* line 28, bower_components/fontawesome/scss/_icons.scss */
.fa-file-o:before {
    content: "";
}

/* line 29, bower_components/fontawesome/scss/_icons.scss */
.fa-clock-o:before {
    content: "";
}

/* line 30, bower_components/fontawesome/scss/_icons.scss */
.fa-road:before {
    content: "";
}

/* line 31, bower_components/fontawesome/scss/_icons.scss */
.fa-download:before {
    content: "";
}

/* line 32, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-down:before {
    content: "";
}

/* line 33, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-up:before {
    content: "";
}

/* line 34, bower_components/fontawesome/scss/_icons.scss */
.fa-inbox:before {
    content: "";
}

/* line 35, bower_components/fontawesome/scss/_icons.scss */
.fa-play-circle-o:before {
    content: "";
}

/* line 36, bower_components/fontawesome/scss/_icons.scss */
.fa-rotate-right:before,
.fa-repeat:before {
    content: "";
}

/* line 38, bower_components/fontawesome/scss/_icons.scss */
.fa-refresh:before {
    content: "";
}

/* line 39, bower_components/fontawesome/scss/_icons.scss */
.fa-list-alt:before {
    content: "";
}

/* line 40, bower_components/fontawesome/scss/_icons.scss */
.fa-lock:before {
    content: "";
}

/* line 41, bower_components/fontawesome/scss/_icons.scss */
.fa-flag:before {
    content: "";
}

/* line 42, bower_components/fontawesome/scss/_icons.scss */
.fa-headphones:before {
    content: "";
}

/* line 43, bower_components/fontawesome/scss/_icons.scss */
.fa-volume-off:before {
    content: "";
}

/* line 44, bower_components/fontawesome/scss/_icons.scss */
.fa-volume-down:before {
    content: "";
}

/* line 45, bower_components/fontawesome/scss/_icons.scss */
.fa-volume-up:before {
    content: "";
}

/* line 46, bower_components/fontawesome/scss/_icons.scss */
.fa-qrcode:before {
    content: "";
}

/* line 47, bower_components/fontawesome/scss/_icons.scss */
.fa-barcode:before {
    content: "";
}

/* line 48, bower_components/fontawesome/scss/_icons.scss */
.fa-tag:before {
    content: "";
}

/* line 49, bower_components/fontawesome/scss/_icons.scss */
.fa-tags:before {
    content: "";
}

/* line 50, bower_components/fontawesome/scss/_icons.scss */
.fa-book:before {
    content: "";
}

/* line 51, bower_components/fontawesome/scss/_icons.scss */
.fa-bookmark:before {
    content: "";
}

/* line 52, bower_components/fontawesome/scss/_icons.scss */
.fa-print:before {
    content: "";
}

/* line 53, bower_components/fontawesome/scss/_icons.scss */
.fa-camera:before {
    content: "";
}

/* line 54, bower_components/fontawesome/scss/_icons.scss */
.fa-font:before {
    content: "";
}

/* line 55, bower_components/fontawesome/scss/_icons.scss */
.fa-bold:before {
    content: "";
}

/* line 56, bower_components/fontawesome/scss/_icons.scss */
.fa-italic:before {
    content: "";
}

/* line 57, bower_components/fontawesome/scss/_icons.scss */
.fa-text-height:before {
    content: "";
}

/* line 58, bower_components/fontawesome/scss/_icons.scss */
.fa-text-width:before {
    content: "";
}

/* line 59, bower_components/fontawesome/scss/_icons.scss */
.fa-align-left:before {
    content: "";
}

/* line 60, bower_components/fontawesome/scss/_icons.scss */
.fa-align-center:before {
    content: "";
}

/* line 61, bower_components/fontawesome/scss/_icons.scss */
.fa-align-right:before {
    content: "";
}

/* line 62, bower_components/fontawesome/scss/_icons.scss */
.fa-align-justify:before {
    content: "";
}

/* line 63, bower_components/fontawesome/scss/_icons.scss */
.fa-list:before {
    content: "";
}

/* line 64, bower_components/fontawesome/scss/_icons.scss */
.fa-dedent:before,
.fa-outdent:before {
    content: "";
}

/* line 66, bower_components/fontawesome/scss/_icons.scss */
.fa-indent:before {
    content: "";
}

/* line 67, bower_components/fontawesome/scss/_icons.scss */
.fa-video-camera:before {
    content: "";
}

/* line 68, bower_components/fontawesome/scss/_icons.scss */
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "";
}

/* line 71, bower_components/fontawesome/scss/_icons.scss */
.fa-pencil:before {
    content: "";
}

/* line 72, bower_components/fontawesome/scss/_icons.scss */
.fa-map-marker:before {
    content: "";
}

/* line 73, bower_components/fontawesome/scss/_icons.scss */
.fa-adjust:before {
    content: "";
}

/* line 74, bower_components/fontawesome/scss/_icons.scss */
.fa-tint:before {
    content: "";
}

/* line 75, bower_components/fontawesome/scss/_icons.scss */
.fa-edit:before,
.fa-pencil-square-o:before {
    content: "";
}

/* line 77, bower_components/fontawesome/scss/_icons.scss */
.fa-share-square-o:before {
    content: "";
}

/* line 78, bower_components/fontawesome/scss/_icons.scss */
.fa-check-square-o:before {
    content: "";
}

/* line 79, bower_components/fontawesome/scss/_icons.scss */
.fa-arrows:before {
    content: "";
}

/* line 80, bower_components/fontawesome/scss/_icons.scss */
.fa-step-backward:before {
    content: "";
}

/* line 81, bower_components/fontawesome/scss/_icons.scss */
.fa-fast-backward:before {
    content: "";
}

/* line 82, bower_components/fontawesome/scss/_icons.scss */
.fa-backward:before {
    content: "";
}

/* line 83, bower_components/fontawesome/scss/_icons.scss */
.fa-play:before {
    content: "";
}

/* line 84, bower_components/fontawesome/scss/_icons.scss */
.fa-pause:before {
    content: "";
}

/* line 85, bower_components/fontawesome/scss/_icons.scss */
.fa-stop:before {
    content: "";
}

/* line 86, bower_components/fontawesome/scss/_icons.scss */
.fa-forward:before {
    content: "";
}

/* line 87, bower_components/fontawesome/scss/_icons.scss */
.fa-fast-forward:before {
    content: "";
}

/* line 88, bower_components/fontawesome/scss/_icons.scss */
.fa-step-forward:before {
    content: "";
}

/* line 89, bower_components/fontawesome/scss/_icons.scss */
.fa-eject:before {
    content: "";
}

/* line 90, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-left:before {
    content: "";
}

/* line 91, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-right:before {
    content: "";
}

/* line 92, bower_components/fontawesome/scss/_icons.scss */
.fa-plus-circle:before {
    content: "";
}

/* line 93, bower_components/fontawesome/scss/_icons.scss */
.fa-minus-circle:before {
    content: "";
}

/* line 94, bower_components/fontawesome/scss/_icons.scss */
.fa-times-circle:before {
    content: "";
}

/* line 95, bower_components/fontawesome/scss/_icons.scss */
.fa-check-circle:before {
    content: "";
}

/* line 96, bower_components/fontawesome/scss/_icons.scss */
.fa-question-circle:before {
    content: "";
}

/* line 97, bower_components/fontawesome/scss/_icons.scss */
.fa-info-circle:before {
    content: "";
}

/* line 98, bower_components/fontawesome/scss/_icons.scss */
.fa-crosshairs:before {
    content: "";
}

/* line 99, bower_components/fontawesome/scss/_icons.scss */
.fa-times-circle-o:before {
    content: "";
}

/* line 100, bower_components/fontawesome/scss/_icons.scss */
.fa-check-circle-o:before {
    content: "";
}

/* line 101, bower_components/fontawesome/scss/_icons.scss */
.fa-ban:before {
    content: "";
}

/* line 102, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-left:before {
    content: "";
}

/* line 103, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-right:before {
    content: "";
}

/* line 104, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-up:before {
    content: "";
}

/* line 105, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-down:before {
    content: "";
}

/* line 106, bower_components/fontawesome/scss/_icons.scss */
.fa-mail-forward:before,
.fa-share:before {
    content: "";
}

/* line 108, bower_components/fontawesome/scss/_icons.scss */
.fa-expand:before {
    content: "";
}

/* line 109, bower_components/fontawesome/scss/_icons.scss */
.fa-compress:before {
    content: "";
}

/* line 110, bower_components/fontawesome/scss/_icons.scss */
.fa-plus:before {
    content: "";
}

/* line 111, bower_components/fontawesome/scss/_icons.scss */
.fa-minus:before {
    content: "";
}

/* line 112, bower_components/fontawesome/scss/_icons.scss */
.fa-asterisk:before {
    content: "";
}

/* line 113, bower_components/fontawesome/scss/_icons.scss */
.fa-exclamation-circle:before {
    content: "";
}

/* line 114, bower_components/fontawesome/scss/_icons.scss */
.fa-gift:before {
    content: "";
}

/* line 115, bower_components/fontawesome/scss/_icons.scss */
.fa-leaf:before {
    content: "";
}

/* line 116, bower_components/fontawesome/scss/_icons.scss */
.fa-fire:before {
    content: "";
}

/* line 117, bower_components/fontawesome/scss/_icons.scss */
.fa-eye:before {
    content: "";
}

/* line 118, bower_components/fontawesome/scss/_icons.scss */
.fa-eye-slash:before {
    content: "";
}

/* line 119, bower_components/fontawesome/scss/_icons.scss */
.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "";
}

/* line 121, bower_components/fontawesome/scss/_icons.scss */
.fa-plane:before {
    content: "";
}

/* line 122, bower_components/fontawesome/scss/_icons.scss */
.fa-calendar:before {
    content: "";
}

/* line 123, bower_components/fontawesome/scss/_icons.scss */
.fa-random:before {
    content: "";
}

/* line 124, bower_components/fontawesome/scss/_icons.scss */
.fa-comment:before {
    content: "";
}

/* line 125, bower_components/fontawesome/scss/_icons.scss */
.fa-magnet:before {
    content: "";
}

/* line 126, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-up:before {
    content: "";
}

/* line 127, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-down:before {
    content: "";
}

/* line 128, bower_components/fontawesome/scss/_icons.scss */
.fa-retweet:before {
    content: "";
}

/* line 129, bower_components/fontawesome/scss/_icons.scss */
.fa-shopping-cart:before {
    content: "";
}

/* line 130, bower_components/fontawesome/scss/_icons.scss */
.fa-folder:before {
    content: "";
}

/* line 131, bower_components/fontawesome/scss/_icons.scss */
.fa-folder-open:before {
    content: "";
}

/* line 132, bower_components/fontawesome/scss/_icons.scss */
.fa-arrows-v:before {
    content: "";
}

/* line 133, bower_components/fontawesome/scss/_icons.scss */
.fa-arrows-h:before {
    content: "";
}

/* line 134, bower_components/fontawesome/scss/_icons.scss */
.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "";
}

/* line 136, bower_components/fontawesome/scss/_icons.scss */
.fa-twitter-square:before {
    content: "";
}

/* line 137, bower_components/fontawesome/scss/_icons.scss */
.fa-facebook-square:before {
    content: "";
}

/* line 138, bower_components/fontawesome/scss/_icons.scss */
.fa-camera-retro:before {
    content: "";
}

/* line 139, bower_components/fontawesome/scss/_icons.scss */
.fa-key:before {
    content: "";
}

/* line 140, bower_components/fontawesome/scss/_icons.scss */
.fa-gears:before,
.fa-cogs:before {
    content: "";
}

/* line 142, bower_components/fontawesome/scss/_icons.scss */
.fa-comments:before {
    content: "";
}

/* line 143, bower_components/fontawesome/scss/_icons.scss */
.fa-thumbs-o-up:before {
    content: "";
}

/* line 144, bower_components/fontawesome/scss/_icons.scss */
.fa-thumbs-o-down:before {
    content: "";
}

/* line 145, bower_components/fontawesome/scss/_icons.scss */
.fa-star-half:before {
    content: "";
}

/* line 146, bower_components/fontawesome/scss/_icons.scss */
.fa-heart-o:before {
    content: "";
}

/* line 147, bower_components/fontawesome/scss/_icons.scss */
.fa-sign-out:before {
    content: "";
}

/* line 148, bower_components/fontawesome/scss/_icons.scss */
.fa-linkedin-square:before {
    content: "";
}

/* line 149, bower_components/fontawesome/scss/_icons.scss */
.fa-thumb-tack:before {
    content: "";
}

/* line 150, bower_components/fontawesome/scss/_icons.scss */
.fa-external-link:before {
    content: "";
}

/* line 151, bower_components/fontawesome/scss/_icons.scss */
.fa-sign-in:before {
    content: "";
}

/* line 152, bower_components/fontawesome/scss/_icons.scss */
.fa-trophy:before {
    content: "";
}

/* line 153, bower_components/fontawesome/scss/_icons.scss */
.fa-github-square:before {
    content: "";
}

/* line 154, bower_components/fontawesome/scss/_icons.scss */
.fa-upload:before {
    content: "";
}

/* line 155, bower_components/fontawesome/scss/_icons.scss */
.fa-lemon-o:before {
    content: "";
}

/* line 156, bower_components/fontawesome/scss/_icons.scss */
.fa-phone:before {
    content: "";
}

/* line 157, bower_components/fontawesome/scss/_icons.scss */
.fa-square-o:before {
    content: "";
}

/* line 158, bower_components/fontawesome/scss/_icons.scss */
.fa-bookmark-o:before {
    content: "";
}

/* line 159, bower_components/fontawesome/scss/_icons.scss */
.fa-phone-square:before {
    content: "";
}

/* line 160, bower_components/fontawesome/scss/_icons.scss */
.fa-twitter:before {
    content: "";
}

/* line 161, bower_components/fontawesome/scss/_icons.scss */
.fa-facebook-f:before,
.fa-facebook:before {
    content: "";
}

/* line 163, bower_components/fontawesome/scss/_icons.scss */
.fa-github:before {
    content: "";
}

/* line 164, bower_components/fontawesome/scss/_icons.scss */
.fa-unlock:before {
    content: "";
}

/* line 165, bower_components/fontawesome/scss/_icons.scss */
.fa-credit-card:before {
    content: "";
}

/* line 166, bower_components/fontawesome/scss/_icons.scss */
.fa-feed:before,
.fa-rss:before {
    content: "";
}

/* line 168, bower_components/fontawesome/scss/_icons.scss */
.fa-hdd-o:before {
    content: "";
}

/* line 169, bower_components/fontawesome/scss/_icons.scss */
.fa-bullhorn:before {
    content: "";
}

/* line 170, bower_components/fontawesome/scss/_icons.scss */
.fa-bell:before {
    content: "";
}

/* line 171, bower_components/fontawesome/scss/_icons.scss */
.fa-certificate:before {
    content: "";
}

/* line 172, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-o-right:before {
    content: "";
}

/* line 173, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-o-left:before {
    content: "";
}

/* line 174, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-o-up:before {
    content: "";
}

/* line 175, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-o-down:before {
    content: "";
}

/* line 176, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-left:before {
    content: "";
}

/* line 177, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-right:before {
    content: "";
}

/* line 178, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-up:before {
    content: "";
}

/* line 179, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-down:before {
    content: "";
}

/* line 180, bower_components/fontawesome/scss/_icons.scss */
.fa-globe:before {
    content: "";
}

/* line 181, bower_components/fontawesome/scss/_icons.scss */
.fa-wrench:before {
    content: "";
}

/* line 182, bower_components/fontawesome/scss/_icons.scss */
.fa-tasks:before {
    content: "";
}

/* line 183, bower_components/fontawesome/scss/_icons.scss */
.fa-filter:before {
    content: "";
}

/* line 184, bower_components/fontawesome/scss/_icons.scss */
.fa-briefcase:before {
    content: "";
}

/* line 185, bower_components/fontawesome/scss/_icons.scss */
.fa-arrows-alt:before {
    content: "";
}

/* line 186, bower_components/fontawesome/scss/_icons.scss */
.fa-group:before,
.fa-users:before {
    content: "";
}

/* line 188, bower_components/fontawesome/scss/_icons.scss */
.fa-chain:before,
.fa-link:before {
    content: "";
}

/* line 190, bower_components/fontawesome/scss/_icons.scss */
.fa-cloud:before {
    content: "";
}

/* line 191, bower_components/fontawesome/scss/_icons.scss */
.fa-flask:before {
    content: "";
}

/* line 192, bower_components/fontawesome/scss/_icons.scss */
.fa-cut:before,
.fa-scissors:before {
    content: "";
}

/* line 194, bower_components/fontawesome/scss/_icons.scss */
.fa-copy:before,
.fa-files-o:before {
    content: "";
}

/* line 196, bower_components/fontawesome/scss/_icons.scss */
.fa-paperclip:before {
    content: "";
}

/* line 197, bower_components/fontawesome/scss/_icons.scss */
.fa-save:before,
.fa-floppy-o:before {
    content: "";
}

/* line 199, bower_components/fontawesome/scss/_icons.scss */
.fa-square:before {
    content: "";
}

/* line 200, bower_components/fontawesome/scss/_icons.scss */
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "";
}

/* line 203, bower_components/fontawesome/scss/_icons.scss */
.fa-list-ul:before {
    content: "";
}

/* line 204, bower_components/fontawesome/scss/_icons.scss */
.fa-list-ol:before {
    content: "";
}

/* line 205, bower_components/fontawesome/scss/_icons.scss */
.fa-strikethrough:before {
    content: "";
}

/* line 206, bower_components/fontawesome/scss/_icons.scss */
.fa-underline:before {
    content: "";
}

/* line 207, bower_components/fontawesome/scss/_icons.scss */
.fa-table:before {
    content: "";
}

/* line 208, bower_components/fontawesome/scss/_icons.scss */
.fa-magic:before {
    content: "";
}

/* line 209, bower_components/fontawesome/scss/_icons.scss */
.fa-truck:before {
    content: "";
}

/* line 210, bower_components/fontawesome/scss/_icons.scss */
.fa-pinterest:before {
    content: "";
}

/* line 211, bower_components/fontawesome/scss/_icons.scss */
.fa-pinterest-square:before {
    content: "";
}

/* line 212, bower_components/fontawesome/scss/_icons.scss */
.fa-google-plus-square:before {
    content: "";
}

/* line 213, bower_components/fontawesome/scss/_icons.scss */
.fa-google-plus:before {
    content: "";
}

/* line 214, bower_components/fontawesome/scss/_icons.scss */
.fa-money:before {
    content: "";
}

/* line 215, bower_components/fontawesome/scss/_icons.scss */
.fa-caret-down:before {
    content: "";
}

/* line 216, bower_components/fontawesome/scss/_icons.scss */
.fa-caret-up:before {
    content: "";
}

/* line 217, bower_components/fontawesome/scss/_icons.scss */
.fa-caret-left:before {
    content: "";
}

/* line 218, bower_components/fontawesome/scss/_icons.scss */
.fa-caret-right:before {
    content: "";
}

/* line 219, bower_components/fontawesome/scss/_icons.scss */
.fa-columns:before {
    content: "";
}

/* line 220, bower_components/fontawesome/scss/_icons.scss */
.fa-unsorted:before,
.fa-sort:before {
    content: "";
}

/* line 222, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-down:before,
.fa-sort-desc:before {
    content: "";
}

/* line 224, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-up:before,
.fa-sort-asc:before {
    content: "";
}

/* line 226, bower_components/fontawesome/scss/_icons.scss */
.fa-envelope:before {
    content: "";
}

/* line 227, bower_components/fontawesome/scss/_icons.scss */
.fa-linkedin:before {
    content: "";
}

/* line 228, bower_components/fontawesome/scss/_icons.scss */
.fa-rotate-left:before,
.fa-undo:before {
    content: "";
}

/* line 230, bower_components/fontawesome/scss/_icons.scss */
.fa-legal:before,
.fa-gavel:before {
    content: "";
}

/* line 232, bower_components/fontawesome/scss/_icons.scss */
.fa-dashboard:before,
.fa-tachometer:before {
    content: "";
}

/* line 234, bower_components/fontawesome/scss/_icons.scss */
.fa-comment-o:before {
    content: "";
}

/* line 235, bower_components/fontawesome/scss/_icons.scss */
.fa-comments-o:before {
    content: "";
}

/* line 236, bower_components/fontawesome/scss/_icons.scss */
.fa-flash:before,
.fa-bolt:before {
    content: "";
}

/* line 238, bower_components/fontawesome/scss/_icons.scss */
.fa-sitemap:before {
    content: "";
}

/* line 239, bower_components/fontawesome/scss/_icons.scss */
.fa-umbrella:before {
    content: "";
}

/* line 240, bower_components/fontawesome/scss/_icons.scss */
.fa-paste:before,
.fa-clipboard:before {
    content: "";
}

/* line 242, bower_components/fontawesome/scss/_icons.scss */
.fa-lightbulb-o:before {
    content: "";
}

/* line 243, bower_components/fontawesome/scss/_icons.scss */
.fa-exchange:before {
    content: "";
}

/* line 244, bower_components/fontawesome/scss/_icons.scss */
.fa-cloud-download:before {
    content: "";
}

/* line 245, bower_components/fontawesome/scss/_icons.scss */
.fa-cloud-upload:before {
    content: "";
}

/* line 246, bower_components/fontawesome/scss/_icons.scss */
.fa-user-md:before {
    content: "";
}

/* line 247, bower_components/fontawesome/scss/_icons.scss */
.fa-stethoscope:before {
    content: "";
}

/* line 248, bower_components/fontawesome/scss/_icons.scss */
.fa-suitcase:before {
    content: "";
}

/* line 249, bower_components/fontawesome/scss/_icons.scss */
.fa-bell-o:before {
    content: "";
}

/* line 250, bower_components/fontawesome/scss/_icons.scss */
.fa-coffee:before {
    content: "";
}

/* line 251, bower_components/fontawesome/scss/_icons.scss */
.fa-cutlery:before {
    content: "";
}

/* line 252, bower_components/fontawesome/scss/_icons.scss */
.fa-file-text-o:before {
    content: "";
}

/* line 253, bower_components/fontawesome/scss/_icons.scss */
.fa-building-o:before {
    content: "";
}

/* line 254, bower_components/fontawesome/scss/_icons.scss */
.fa-hospital-o:before {
    content: "";
}

/* line 255, bower_components/fontawesome/scss/_icons.scss */
.fa-ambulance:before {
    content: "";
}

/* line 256, bower_components/fontawesome/scss/_icons.scss */
.fa-medkit:before {
    content: "";
}

/* line 257, bower_components/fontawesome/scss/_icons.scss */
.fa-fighter-jet:before {
    content: "";
}

/* line 258, bower_components/fontawesome/scss/_icons.scss */
.fa-beer:before {
    content: "";
}

/* line 259, bower_components/fontawesome/scss/_icons.scss */
.fa-h-square:before {
    content: "";
}

/* line 260, bower_components/fontawesome/scss/_icons.scss */
.fa-plus-square:before {
    content: "";
}

/* line 261, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-double-left:before {
    content: "";
}

/* line 262, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-double-right:before {
    content: "";
}

/* line 263, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-double-up:before {
    content: "";
}

/* line 264, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-double-down:before {
    content: "";
}

/* line 265, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-left:before {
    content: "";
}

/* line 266, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-right:before {
    content: "";
}

/* line 267, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-up:before {
    content: "";
}

/* line 268, bower_components/fontawesome/scss/_icons.scss */
.fa-angle-down:before {
    content: "";
}

/* line 269, bower_components/fontawesome/scss/_icons.scss */
.fa-desktop:before {
    content: "";
}

/* line 270, bower_components/fontawesome/scss/_icons.scss */
.fa-laptop:before {
    content: "";
}

/* line 271, bower_components/fontawesome/scss/_icons.scss */
.fa-tablet:before {
    content: "";
}

/* line 272, bower_components/fontawesome/scss/_icons.scss */
.fa-mobile-phone:before,
.fa-mobile:before {
    content: "";
}

/* line 274, bower_components/fontawesome/scss/_icons.scss */
.fa-circle-o:before {
    content: "";
}

/* line 275, bower_components/fontawesome/scss/_icons.scss */
.fa-quote-left:before {
    content: "";
}

/* line 276, bower_components/fontawesome/scss/_icons.scss */
.fa-quote-right:before {
    content: "";
}

/* line 277, bower_components/fontawesome/scss/_icons.scss */
.fa-spinner:before {
    content: "";
}

/* line 278, bower_components/fontawesome/scss/_icons.scss */
.fa-circle:before {
    content: "";
}

/* line 279, bower_components/fontawesome/scss/_icons.scss */
.fa-mail-reply:before,
.fa-reply:before {
    content: "";
}

/* line 281, bower_components/fontawesome/scss/_icons.scss */
.fa-github-alt:before {
    content: "";
}

/* line 282, bower_components/fontawesome/scss/_icons.scss */
.fa-folder-o:before {
    content: "";
}

/* line 283, bower_components/fontawesome/scss/_icons.scss */
.fa-folder-open-o:before {
    content: "";
}

/* line 284, bower_components/fontawesome/scss/_icons.scss */
.fa-smile-o:before {
    content: "";
}

/* line 285, bower_components/fontawesome/scss/_icons.scss */
.fa-frown-o:before {
    content: "";
}

/* line 286, bower_components/fontawesome/scss/_icons.scss */
.fa-meh-o:before {
    content: "";
}

/* line 287, bower_components/fontawesome/scss/_icons.scss */
.fa-gamepad:before {
    content: "";
}

/* line 288, bower_components/fontawesome/scss/_icons.scss */
.fa-keyboard-o:before {
    content: "";
}

/* line 289, bower_components/fontawesome/scss/_icons.scss */
.fa-flag-o:before {
    content: "";
}

/* line 290, bower_components/fontawesome/scss/_icons.scss */
.fa-flag-checkered:before {
    content: "";
}

/* line 291, bower_components/fontawesome/scss/_icons.scss */
.fa-terminal:before {
    content: "";
}

/* line 292, bower_components/fontawesome/scss/_icons.scss */
.fa-code:before {
    content: "";
}

/* line 293, bower_components/fontawesome/scss/_icons.scss */
.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "";
}

/* line 295, bower_components/fontawesome/scss/_icons.scss */
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "";
}

/* line 298, bower_components/fontawesome/scss/_icons.scss */
.fa-location-arrow:before {
    content: "";
}

/* line 299, bower_components/fontawesome/scss/_icons.scss */
.fa-crop:before {
    content: "";
}

/* line 300, bower_components/fontawesome/scss/_icons.scss */
.fa-code-fork:before {
    content: "";
}

/* line 301, bower_components/fontawesome/scss/_icons.scss */
.fa-unlink:before,
.fa-chain-broken:before {
    content: "";
}

/* line 303, bower_components/fontawesome/scss/_icons.scss */
.fa-question:before {
    content: "";
}

/* line 304, bower_components/fontawesome/scss/_icons.scss */
.fa-info:before {
    content: "";
}

/* line 305, bower_components/fontawesome/scss/_icons.scss */
.fa-exclamation:before {
    content: "";
}

/* line 306, bower_components/fontawesome/scss/_icons.scss */
.fa-superscript:before {
    content: "";
}

/* line 307, bower_components/fontawesome/scss/_icons.scss */
.fa-subscript:before {
    content: "";
}

/* line 308, bower_components/fontawesome/scss/_icons.scss */
.fa-eraser:before {
    content: "";
}

/* line 309, bower_components/fontawesome/scss/_icons.scss */
.fa-puzzle-piece:before {
    content: "";
}

/* line 310, bower_components/fontawesome/scss/_icons.scss */
.fa-microphone:before {
    content: "";
}

/* line 311, bower_components/fontawesome/scss/_icons.scss */
.fa-microphone-slash:before {
    content: "";
}

/* line 312, bower_components/fontawesome/scss/_icons.scss */
.fa-shield:before {
    content: "";
}

/* line 313, bower_components/fontawesome/scss/_icons.scss */
.fa-calendar-o:before {
    content: "";
}

/* line 314, bower_components/fontawesome/scss/_icons.scss */
.fa-fire-extinguisher:before {
    content: "";
}

/* line 315, bower_components/fontawesome/scss/_icons.scss */
.fa-rocket:before {
    content: "";
}

/* line 316, bower_components/fontawesome/scss/_icons.scss */
.fa-maxcdn:before {
    content: "";
}

/* line 317, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-circle-left:before {
    content: "";
}

/* line 318, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-circle-right:before {
    content: "";
}

/* line 319, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-circle-up:before {
    content: "";
}

/* line 320, bower_components/fontawesome/scss/_icons.scss */
.fa-chevron-circle-down:before {
    content: "";
}

/* line 321, bower_components/fontawesome/scss/_icons.scss */
.fa-html5:before {
    content: "";
}

/* line 322, bower_components/fontawesome/scss/_icons.scss */
.fa-css3:before {
    content: "";
}

/* line 323, bower_components/fontawesome/scss/_icons.scss */
.fa-anchor:before {
    content: "";
}

/* line 324, bower_components/fontawesome/scss/_icons.scss */
.fa-unlock-alt:before {
    content: "";
}

/* line 325, bower_components/fontawesome/scss/_icons.scss */
.fa-bullseye:before {
    content: "";
}

/* line 326, bower_components/fontawesome/scss/_icons.scss */
.fa-ellipsis-h:before {
    content: "";
}

/* line 327, bower_components/fontawesome/scss/_icons.scss */
.fa-ellipsis-v:before {
    content: "";
}

/* line 328, bower_components/fontawesome/scss/_icons.scss */
.fa-rss-square:before {
    content: "";
}

/* line 329, bower_components/fontawesome/scss/_icons.scss */
.fa-play-circle:before {
    content: "";
}

/* line 330, bower_components/fontawesome/scss/_icons.scss */
.fa-ticket:before {
    content: "";
}

/* line 331, bower_components/fontawesome/scss/_icons.scss */
.fa-minus-square:before {
    content: "";
}

/* line 332, bower_components/fontawesome/scss/_icons.scss */
.fa-minus-square-o:before {
    content: "";
}

/* line 333, bower_components/fontawesome/scss/_icons.scss */
.fa-level-up:before {
    content: "";
}

/* line 334, bower_components/fontawesome/scss/_icons.scss */
.fa-level-down:before {
    content: "";
}

/* line 335, bower_components/fontawesome/scss/_icons.scss */
.fa-check-square:before {
    content: "";
}

/* line 336, bower_components/fontawesome/scss/_icons.scss */
.fa-pencil-square:before {
    content: "";
}

/* line 337, bower_components/fontawesome/scss/_icons.scss */
.fa-external-link-square:before {
    content: "";
}

/* line 338, bower_components/fontawesome/scss/_icons.scss */
.fa-share-square:before {
    content: "";
}

/* line 339, bower_components/fontawesome/scss/_icons.scss */
.fa-compass:before {
    content: "";
}

/* line 340, bower_components/fontawesome/scss/_icons.scss */
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "";
}

/* line 342, bower_components/fontawesome/scss/_icons.scss */
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "";
}

/* line 344, bower_components/fontawesome/scss/_icons.scss */
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "";
}

/* line 346, bower_components/fontawesome/scss/_icons.scss */
.fa-euro:before,
.fa-eur:before {
    content: "";
}

/* line 348, bower_components/fontawesome/scss/_icons.scss */
.fa-gbp:before {
    content: "";
}

/* line 349, bower_components/fontawesome/scss/_icons.scss */
.fa-dollar:before,
.fa-usd:before {
    content: "";
}

/* line 351, bower_components/fontawesome/scss/_icons.scss */
.fa-rupee:before,
.fa-inr:before {
    content: "";
}

/* line 353, bower_components/fontawesome/scss/_icons.scss */
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "";
}

/* line 357, bower_components/fontawesome/scss/_icons.scss */
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "";
}

/* line 360, bower_components/fontawesome/scss/_icons.scss */
.fa-won:before,
.fa-krw:before {
    content: "";
}

/* line 362, bower_components/fontawesome/scss/_icons.scss */
.fa-bitcoin:before,
.fa-btc:before {
    content: "";
}

/* line 364, bower_components/fontawesome/scss/_icons.scss */
.fa-file:before {
    content: "";
}

/* line 365, bower_components/fontawesome/scss/_icons.scss */
.fa-file-text:before {
    content: "";
}

/* line 366, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-alpha-asc:before {
    content: "";
}

/* line 367, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-alpha-desc:before {
    content: "";
}

/* line 368, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-amount-asc:before {
    content: "";
}

/* line 369, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-amount-desc:before {
    content: "";
}

/* line 370, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-numeric-asc:before {
    content: "";
}

/* line 371, bower_components/fontawesome/scss/_icons.scss */
.fa-sort-numeric-desc:before {
    content: "";
}

/* line 372, bower_components/fontawesome/scss/_icons.scss */
.fa-thumbs-up:before {
    content: "";
}

/* line 373, bower_components/fontawesome/scss/_icons.scss */
.fa-thumbs-down:before {
    content: "";
}

/* line 374, bower_components/fontawesome/scss/_icons.scss */
.fa-youtube-square:before {
    content: "";
}

/* line 375, bower_components/fontawesome/scss/_icons.scss */
.fa-youtube:before {
    content: "";
}

/* line 376, bower_components/fontawesome/scss/_icons.scss */
.fa-xing:before {
    content: "";
}

/* line 377, bower_components/fontawesome/scss/_icons.scss */
.fa-xing-square:before {
    content: "";
}

/* line 378, bower_components/fontawesome/scss/_icons.scss */
.fa-youtube-play:before {
    content: "";
}

/* line 379, bower_components/fontawesome/scss/_icons.scss */
.fa-dropbox:before {
    content: "";
}

/* line 380, bower_components/fontawesome/scss/_icons.scss */
.fa-stack-overflow:before {
    content: "";
}

/* line 381, bower_components/fontawesome/scss/_icons.scss */
.fa-instagram:before {
    content: "";
}

/* line 382, bower_components/fontawesome/scss/_icons.scss */
.fa-flickr:before {
    content: "";
}

/* line 383, bower_components/fontawesome/scss/_icons.scss */
.fa-adn:before {
    content: "";
}

/* line 384, bower_components/fontawesome/scss/_icons.scss */
.fa-bitbucket:before {
    content: "";
}

/* line 385, bower_components/fontawesome/scss/_icons.scss */
.fa-bitbucket-square:before {
    content: "";
}

/* line 386, bower_components/fontawesome/scss/_icons.scss */
.fa-tumblr:before {
    content: "";
}

/* line 387, bower_components/fontawesome/scss/_icons.scss */
.fa-tumblr-square:before {
    content: "";
}

/* line 388, bower_components/fontawesome/scss/_icons.scss */
.fa-long-arrow-down:before {
    content: "";
}

/* line 389, bower_components/fontawesome/scss/_icons.scss */
.fa-long-arrow-up:before {
    content: "";
}

/* line 390, bower_components/fontawesome/scss/_icons.scss */
.fa-long-arrow-left:before {
    content: "";
}

/* line 391, bower_components/fontawesome/scss/_icons.scss */
.fa-long-arrow-right:before {
    content: "";
}

/* line 392, bower_components/fontawesome/scss/_icons.scss */
.fa-apple:before {
    content: "";
}

/* line 393, bower_components/fontawesome/scss/_icons.scss */
.fa-windows:before {
    content: "";
}

/* line 394, bower_components/fontawesome/scss/_icons.scss */
.fa-android:before {
    content: "";
}

/* line 395, bower_components/fontawesome/scss/_icons.scss */
.fa-linux:before {
    content: "";
}

/* line 396, bower_components/fontawesome/scss/_icons.scss */
.fa-dribbble:before {
    content: "";
}

/* line 397, bower_components/fontawesome/scss/_icons.scss */
.fa-skype:before {
    content: "";
}

/* line 398, bower_components/fontawesome/scss/_icons.scss */
.fa-foursquare:before {
    content: "";
}

/* line 399, bower_components/fontawesome/scss/_icons.scss */
.fa-trello:before {
    content: "";
}

/* line 400, bower_components/fontawesome/scss/_icons.scss */
.fa-female:before {
    content: "";
}

/* line 401, bower_components/fontawesome/scss/_icons.scss */
.fa-male:before {
    content: "";
}

/* line 402, bower_components/fontawesome/scss/_icons.scss */
.fa-gittip:before,
.fa-gratipay:before {
    content: "";
}

/* line 404, bower_components/fontawesome/scss/_icons.scss */
.fa-sun-o:before {
    content: "";
}

/* line 405, bower_components/fontawesome/scss/_icons.scss */
.fa-moon-o:before {
    content: "";
}

/* line 406, bower_components/fontawesome/scss/_icons.scss */
.fa-archive:before {
    content: "";
}

/* line 407, bower_components/fontawesome/scss/_icons.scss */
.fa-bug:before {
    content: "";
}

/* line 408, bower_components/fontawesome/scss/_icons.scss */
.fa-vk:before {
    content: "";
}

/* line 409, bower_components/fontawesome/scss/_icons.scss */
.fa-weibo:before {
    content: "";
}

/* line 410, bower_components/fontawesome/scss/_icons.scss */
.fa-renren:before {
    content: "";
}

/* line 411, bower_components/fontawesome/scss/_icons.scss */
.fa-pagelines:before {
    content: "";
}

/* line 412, bower_components/fontawesome/scss/_icons.scss */
.fa-stack-exchange:before {
    content: "";
}

/* line 413, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-right:before {
    content: "";
}

/* line 414, bower_components/fontawesome/scss/_icons.scss */
.fa-arrow-circle-o-left:before {
    content: "";
}

/* line 415, bower_components/fontawesome/scss/_icons.scss */
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "";
}

/* line 417, bower_components/fontawesome/scss/_icons.scss */
.fa-dot-circle-o:before {
    content: "";
}

/* line 418, bower_components/fontawesome/scss/_icons.scss */
.fa-wheelchair:before {
    content: "";
}

/* line 419, bower_components/fontawesome/scss/_icons.scss */
.fa-vimeo-square:before {
    content: "";
}

/* line 420, bower_components/fontawesome/scss/_icons.scss */
.fa-turkish-lira:before,
.fa-try:before {
    content: "";
}

/* line 422, bower_components/fontawesome/scss/_icons.scss */
.fa-plus-square-o:before {
    content: "";
}

/* line 423, bower_components/fontawesome/scss/_icons.scss */
.fa-space-shuttle:before {
    content: "";
}

/* line 424, bower_components/fontawesome/scss/_icons.scss */
.fa-slack:before {
    content: "";
}

/* line 425, bower_components/fontawesome/scss/_icons.scss */
.fa-envelope-square:before {
    content: "";
}

/* line 426, bower_components/fontawesome/scss/_icons.scss */
.fa-wordpress:before {
    content: "";
}

/* line 427, bower_components/fontawesome/scss/_icons.scss */
.fa-openid:before {
    content: "";
}

/* line 428, bower_components/fontawesome/scss/_icons.scss */
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "";
}

/* line 431, bower_components/fontawesome/scss/_icons.scss */
.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "";
}

/* line 433, bower_components/fontawesome/scss/_icons.scss */
.fa-yahoo:before {
    content: "";
}

/* line 434, bower_components/fontawesome/scss/_icons.scss */
.fa-google:before {
    content: "";
}

/* line 435, bower_components/fontawesome/scss/_icons.scss */
.fa-reddit:before {
    content: "";
}

/* line 436, bower_components/fontawesome/scss/_icons.scss */
.fa-reddit-square:before {
    content: "";
}

/* line 437, bower_components/fontawesome/scss/_icons.scss */
.fa-stumbleupon-circle:before {
    content: "";
}

/* line 438, bower_components/fontawesome/scss/_icons.scss */
.fa-stumbleupon:before {
    content: "";
}

/* line 439, bower_components/fontawesome/scss/_icons.scss */
.fa-delicious:before {
    content: "";
}

/* line 440, bower_components/fontawesome/scss/_icons.scss */
.fa-digg:before {
    content: "";
}

/* line 441, bower_components/fontawesome/scss/_icons.scss */
.fa-pied-piper:before {
    content: "";
}

/* line 442, bower_components/fontawesome/scss/_icons.scss */
.fa-pied-piper-alt:before {
    content: "";
}

/* line 443, bower_components/fontawesome/scss/_icons.scss */
.fa-drupal:before {
    content: "";
}

/* line 444, bower_components/fontawesome/scss/_icons.scss */
.fa-joomla:before {
    content: "";
}

/* line 445, bower_components/fontawesome/scss/_icons.scss */
.fa-language:before {
    content: "";
}

/* line 446, bower_components/fontawesome/scss/_icons.scss */
.fa-fax:before {
    content: "";
}

/* line 447, bower_components/fontawesome/scss/_icons.scss */
.fa-building:before {
    content: "";
}

/* line 448, bower_components/fontawesome/scss/_icons.scss */
.fa-child:before {
    content: "";
}

/* line 449, bower_components/fontawesome/scss/_icons.scss */
.fa-paw:before {
    content: "";
}

/* line 450, bower_components/fontawesome/scss/_icons.scss */
.fa-spoon:before {
    content: "";
}

/* line 451, bower_components/fontawesome/scss/_icons.scss */
.fa-cube:before {
    content: "";
}

/* line 452, bower_components/fontawesome/scss/_icons.scss */
.fa-cubes:before {
    content: "";
}

/* line 453, bower_components/fontawesome/scss/_icons.scss */
.fa-behance:before {
    content: "";
}

/* line 454, bower_components/fontawesome/scss/_icons.scss */
.fa-behance-square:before {
    content: "";
}

/* line 455, bower_components/fontawesome/scss/_icons.scss */
.fa-steam:before {
    content: "";
}

/* line 456, bower_components/fontawesome/scss/_icons.scss */
.fa-steam-square:before {
    content: "";
}

/* line 457, bower_components/fontawesome/scss/_icons.scss */
.fa-recycle:before {
    content: "";
}

/* line 458, bower_components/fontawesome/scss/_icons.scss */
.fa-automobile:before,
.fa-car:before {
    content: "";
}

/* line 460, bower_components/fontawesome/scss/_icons.scss */
.fa-cab:before,
.fa-taxi:before {
    content: "";
}

/* line 462, bower_components/fontawesome/scss/_icons.scss */
.fa-tree:before {
    content: "";
}

/* line 463, bower_components/fontawesome/scss/_icons.scss */
.fa-spotify:before {
    content: "";
}

/* line 464, bower_components/fontawesome/scss/_icons.scss */
.fa-deviantart:before {
    content: "";
}

/* line 465, bower_components/fontawesome/scss/_icons.scss */
.fa-soundcloud:before {
    content: "";
}

/* line 466, bower_components/fontawesome/scss/_icons.scss */
.fa-database:before {
    content: "";
}

/* line 467, bower_components/fontawesome/scss/_icons.scss */
.fa-file-pdf-o:before {
    content: "";
}

/* line 468, bower_components/fontawesome/scss/_icons.scss */
.fa-file-word-o:before {
    content: "";
}

/* line 469, bower_components/fontawesome/scss/_icons.scss */
.fa-file-excel-o:before {
    content: "";
}

/* line 470, bower_components/fontawesome/scss/_icons.scss */
.fa-file-powerpoint-o:before {
    content: "";
}

/* line 471, bower_components/fontawesome/scss/_icons.scss */
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "";
}

/* line 474, bower_components/fontawesome/scss/_icons.scss */
.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "";
}

/* line 476, bower_components/fontawesome/scss/_icons.scss */
.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "";
}

/* line 478, bower_components/fontawesome/scss/_icons.scss */
.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "";
}

/* line 480, bower_components/fontawesome/scss/_icons.scss */
.fa-file-code-o:before {
    content: "";
}

/* line 481, bower_components/fontawesome/scss/_icons.scss */
.fa-vine:before {
    content: "";
}

/* line 482, bower_components/fontawesome/scss/_icons.scss */
.fa-codepen:before {
    content: "";
}

/* line 483, bower_components/fontawesome/scss/_icons.scss */
.fa-jsfiddle:before {
    content: "";
}

/* line 484, bower_components/fontawesome/scss/_icons.scss */
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "";
}

/* line 489, bower_components/fontawesome/scss/_icons.scss */
.fa-circle-o-notch:before {
    content: "";
}

/* line 490, bower_components/fontawesome/scss/_icons.scss */
.fa-ra:before,
.fa-rebel:before {
    content: "";
}

/* line 492, bower_components/fontawesome/scss/_icons.scss */
.fa-ge:before,
.fa-empire:before {
    content: "";
}

/* line 494, bower_components/fontawesome/scss/_icons.scss */
.fa-git-square:before {
    content: "";
}

/* line 495, bower_components/fontawesome/scss/_icons.scss */
.fa-git:before {
    content: "";
}

/* line 496, bower_components/fontawesome/scss/_icons.scss */
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "";
}

/* line 499, bower_components/fontawesome/scss/_icons.scss */
.fa-tencent-weibo:before {
    content: "";
}

/* line 500, bower_components/fontawesome/scss/_icons.scss */
.fa-qq:before {
    content: "";
}

/* line 501, bower_components/fontawesome/scss/_icons.scss */
.fa-wechat:before,
.fa-weixin:before {
    content: "";
}

/* line 503, bower_components/fontawesome/scss/_icons.scss */
.fa-send:before,
.fa-paper-plane:before {
    content: "";
}

/* line 505, bower_components/fontawesome/scss/_icons.scss */
.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "";
}

/* line 507, bower_components/fontawesome/scss/_icons.scss */
.fa-history:before {
    content: "";
}

/* line 508, bower_components/fontawesome/scss/_icons.scss */
.fa-circle-thin:before {
    content: "";
}

/* line 509, bower_components/fontawesome/scss/_icons.scss */
.fa-header:before {
    content: "";
}

/* line 510, bower_components/fontawesome/scss/_icons.scss */
.fa-paragraph:before {
    content: "";
}

/* line 511, bower_components/fontawesome/scss/_icons.scss */
.fa-sliders:before {
    content: "";
}

/* line 512, bower_components/fontawesome/scss/_icons.scss */
.fa-share-alt:before {
    content: "";
}

/* line 513, bower_components/fontawesome/scss/_icons.scss */
.fa-share-alt-square:before {
    content: "";
}

/* line 514, bower_components/fontawesome/scss/_icons.scss */
.fa-bomb:before {
    content: "";
}

/* line 515, bower_components/fontawesome/scss/_icons.scss */
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "";
}

/* line 517, bower_components/fontawesome/scss/_icons.scss */
.fa-tty:before {
    content: "";
}

/* line 518, bower_components/fontawesome/scss/_icons.scss */
.fa-binoculars:before {
    content: "";
}

/* line 519, bower_components/fontawesome/scss/_icons.scss */
.fa-plug:before {
    content: "";
}

/* line 520, bower_components/fontawesome/scss/_icons.scss */
.fa-slideshare:before {
    content: "";
}

/* line 521, bower_components/fontawesome/scss/_icons.scss */
.fa-twitch:before {
    content: "";
}

/* line 522, bower_components/fontawesome/scss/_icons.scss */
.fa-yelp:before {
    content: "";
}

/* line 523, bower_components/fontawesome/scss/_icons.scss */
.fa-newspaper-o:before {
    content: "";
}

/* line 524, bower_components/fontawesome/scss/_icons.scss */
.fa-wifi:before {
    content: "";
}

/* line 525, bower_components/fontawesome/scss/_icons.scss */
.fa-calculator:before {
    content: "";
}

/* line 526, bower_components/fontawesome/scss/_icons.scss */
.fa-paypal:before {
    content: "";
}

/* line 527, bower_components/fontawesome/scss/_icons.scss */
.fa-google-wallet:before {
    content: "";
}

/* line 528, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-visa:before {
    content: "";
}

/* line 529, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-mastercard:before {
    content: "";
}

/* line 530, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-discover:before {
    content: "";
}

/* line 531, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-amex:before {
    content: "";
}

/* line 532, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-paypal:before {
    content: "";
}

/* line 533, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-stripe:before {
    content: "";
}

/* line 534, bower_components/fontawesome/scss/_icons.scss */
.fa-bell-slash:before {
    content: "";
}

/* line 535, bower_components/fontawesome/scss/_icons.scss */
.fa-bell-slash-o:before {
    content: "";
}

/* line 536, bower_components/fontawesome/scss/_icons.scss */
.fa-trash:before {
    content: "";
}

/* line 537, bower_components/fontawesome/scss/_icons.scss */
.fa-copyright:before {
    content: "";
}

/* line 538, bower_components/fontawesome/scss/_icons.scss */
.fa-at:before {
    content: "";
}

/* line 539, bower_components/fontawesome/scss/_icons.scss */
.fa-eyedropper:before {
    content: "";
}

/* line 540, bower_components/fontawesome/scss/_icons.scss */
.fa-paint-brush:before {
    content: "";
}

/* line 541, bower_components/fontawesome/scss/_icons.scss */
.fa-birthday-cake:before {
    content: "";
}

/* line 542, bower_components/fontawesome/scss/_icons.scss */
.fa-area-chart:before {
    content: "";
}

/* line 543, bower_components/fontawesome/scss/_icons.scss */
.fa-pie-chart:before {
    content: "";
}

/* line 544, bower_components/fontawesome/scss/_icons.scss */
.fa-line-chart:before {
    content: "";
}

/* line 545, bower_components/fontawesome/scss/_icons.scss */
.fa-lastfm:before {
    content: "";
}

/* line 546, bower_components/fontawesome/scss/_icons.scss */
.fa-lastfm-square:before {
    content: "";
}

/* line 547, bower_components/fontawesome/scss/_icons.scss */
.fa-toggle-off:before {
    content: "";
}

/* line 548, bower_components/fontawesome/scss/_icons.scss */
.fa-toggle-on:before {
    content: "";
}

/* line 549, bower_components/fontawesome/scss/_icons.scss */
.fa-bicycle:before {
    content: "";
}

/* line 550, bower_components/fontawesome/scss/_icons.scss */
.fa-bus:before {
    content: "";
}

/* line 551, bower_components/fontawesome/scss/_icons.scss */
.fa-ioxhost:before {
    content: "";
}

/* line 552, bower_components/fontawesome/scss/_icons.scss */
.fa-angellist:before {
    content: "";
}

/* line 553, bower_components/fontawesome/scss/_icons.scss */
.fa-cc:before {
    content: "";
}

/* line 554, bower_components/fontawesome/scss/_icons.scss */
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "";
}

/* line 557, bower_components/fontawesome/scss/_icons.scss */
.fa-meanpath:before {
    content: "";
}

/* line 558, bower_components/fontawesome/scss/_icons.scss */
.fa-buysellads:before {
    content: "";
}

/* line 559, bower_components/fontawesome/scss/_icons.scss */
.fa-connectdevelop:before {
    content: "";
}

/* line 560, bower_components/fontawesome/scss/_icons.scss */
.fa-dashcube:before {
    content: "";
}

/* line 561, bower_components/fontawesome/scss/_icons.scss */
.fa-forumbee:before {
    content: "";
}

/* line 562, bower_components/fontawesome/scss/_icons.scss */
.fa-leanpub:before {
    content: "";
}

/* line 563, bower_components/fontawesome/scss/_icons.scss */
.fa-sellsy:before {
    content: "";
}

/* line 564, bower_components/fontawesome/scss/_icons.scss */
.fa-shirtsinbulk:before {
    content: "";
}

/* line 565, bower_components/fontawesome/scss/_icons.scss */
.fa-simplybuilt:before {
    content: "";
}

/* line 566, bower_components/fontawesome/scss/_icons.scss */
.fa-skyatlas:before {
    content: "";
}

/* line 567, bower_components/fontawesome/scss/_icons.scss */
.fa-cart-plus:before {
    content: "";
}

/* line 568, bower_components/fontawesome/scss/_icons.scss */
.fa-cart-arrow-down:before {
    content: "";
}

/* line 569, bower_components/fontawesome/scss/_icons.scss */
.fa-diamond:before {
    content: "";
}

/* line 570, bower_components/fontawesome/scss/_icons.scss */
.fa-ship:before {
    content: "";
}

/* line 571, bower_components/fontawesome/scss/_icons.scss */
.fa-user-secret:before {
    content: "";
}

/* line 572, bower_components/fontawesome/scss/_icons.scss */
.fa-motorcycle:before {
    content: "";
}

/* line 573, bower_components/fontawesome/scss/_icons.scss */
.fa-street-view:before {
    content: "";
}

/* line 574, bower_components/fontawesome/scss/_icons.scss */
.fa-heartbeat:before {
    content: "";
}

/* line 575, bower_components/fontawesome/scss/_icons.scss */
.fa-venus:before {
    content: "";
}

/* line 576, bower_components/fontawesome/scss/_icons.scss */
.fa-mars:before {
    content: "";
}

/* line 577, bower_components/fontawesome/scss/_icons.scss */
.fa-mercury:before {
    content: "";
}

/* line 578, bower_components/fontawesome/scss/_icons.scss */
.fa-intersex:before,
.fa-transgender:before {
    content: "";
}

/* line 580, bower_components/fontawesome/scss/_icons.scss */
.fa-transgender-alt:before {
    content: "";
}

/* line 581, bower_components/fontawesome/scss/_icons.scss */
.fa-venus-double:before {
    content: "";
}

/* line 582, bower_components/fontawesome/scss/_icons.scss */
.fa-mars-double:before {
    content: "";
}

/* line 583, bower_components/fontawesome/scss/_icons.scss */
.fa-venus-mars:before {
    content: "";
}

/* line 584, bower_components/fontawesome/scss/_icons.scss */
.fa-mars-stroke:before {
    content: "";
}

/* line 585, bower_components/fontawesome/scss/_icons.scss */
.fa-mars-stroke-v:before {
    content: "";
}

/* line 586, bower_components/fontawesome/scss/_icons.scss */
.fa-mars-stroke-h:before {
    content: "";
}

/* line 587, bower_components/fontawesome/scss/_icons.scss */
.fa-neuter:before {
    content: "";
}

/* line 588, bower_components/fontawesome/scss/_icons.scss */
.fa-genderless:before {
    content: "";
}

/* line 589, bower_components/fontawesome/scss/_icons.scss */
.fa-facebook-official:before {
    content: "";
}

/* line 590, bower_components/fontawesome/scss/_icons.scss */
.fa-pinterest-p:before {
    content: "";
}

/* line 591, bower_components/fontawesome/scss/_icons.scss */
.fa-whatsapp:before {
    content: "";
}

/* line 592, bower_components/fontawesome/scss/_icons.scss */
.fa-server:before {
    content: "";
}

/* line 593, bower_components/fontawesome/scss/_icons.scss */
.fa-user-plus:before {
    content: "";
}

/* line 594, bower_components/fontawesome/scss/_icons.scss */
.fa-user-times:before {
    content: "";
}

/* line 595, bower_components/fontawesome/scss/_icons.scss */
.fa-hotel:before,
.fa-bed:before {
    content: "";
}

/* line 597, bower_components/fontawesome/scss/_icons.scss */
.fa-viacoin:before {
    content: "";
}

/* line 598, bower_components/fontawesome/scss/_icons.scss */
.fa-train:before {
    content: "";
}

/* line 599, bower_components/fontawesome/scss/_icons.scss */
.fa-subway:before {
    content: "";
}

/* line 600, bower_components/fontawesome/scss/_icons.scss */
.fa-medium:before {
    content: "";
}

/* line 601, bower_components/fontawesome/scss/_icons.scss */
.fa-yc:before,
.fa-y-combinator:before {
    content: "";
}

/* line 603, bower_components/fontawesome/scss/_icons.scss */
.fa-optin-monster:before {
    content: "";
}

/* line 604, bower_components/fontawesome/scss/_icons.scss */
.fa-opencart:before {
    content: "";
}

/* line 605, bower_components/fontawesome/scss/_icons.scss */
.fa-expeditedssl:before {
    content: "";
}

/* line 606, bower_components/fontawesome/scss/_icons.scss */
.fa-battery-4:before,
.fa-battery-full:before {
    content: "";
}

/* line 608, bower_components/fontawesome/scss/_icons.scss */
.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "";
}

/* line 610, bower_components/fontawesome/scss/_icons.scss */
.fa-battery-2:before,
.fa-battery-half:before {
    content: "";
}

/* line 612, bower_components/fontawesome/scss/_icons.scss */
.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "";
}

/* line 614, bower_components/fontawesome/scss/_icons.scss */
.fa-battery-0:before,
.fa-battery-empty:before {
    content: "";
}

/* line 616, bower_components/fontawesome/scss/_icons.scss */
.fa-mouse-pointer:before {
    content: "";
}

/* line 617, bower_components/fontawesome/scss/_icons.scss */
.fa-i-cursor:before {
    content: "";
}

/* line 618, bower_components/fontawesome/scss/_icons.scss */
.fa-object-group:before {
    content: "";
}

/* line 619, bower_components/fontawesome/scss/_icons.scss */
.fa-object-ungroup:before {
    content: "";
}

/* line 620, bower_components/fontawesome/scss/_icons.scss */
.fa-sticky-note:before {
    content: "";
}

/* line 621, bower_components/fontawesome/scss/_icons.scss */
.fa-sticky-note-o:before {
    content: "";
}

/* line 622, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-jcb:before {
    content: "";
}

/* line 623, bower_components/fontawesome/scss/_icons.scss */
.fa-cc-diners-club:before {
    content: "";
}

/* line 624, bower_components/fontawesome/scss/_icons.scss */
.fa-clone:before {
    content: "";
}

/* line 625, bower_components/fontawesome/scss/_icons.scss */
.fa-balance-scale:before {
    content: "";
}

/* line 626, bower_components/fontawesome/scss/_icons.scss */
.fa-hourglass-o:before {
    content: "";
}

/* line 627, bower_components/fontawesome/scss/_icons.scss */
.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "";
}

/* line 629, bower_components/fontawesome/scss/_icons.scss */
.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "";
}

/* line 631, bower_components/fontawesome/scss/_icons.scss */
.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "";
}

/* line 633, bower_components/fontawesome/scss/_icons.scss */
.fa-hourglass:before {
    content: "";
}

/* line 634, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "";
}

/* line 636, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "";
}

/* line 638, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-scissors-o:before {
    content: "";
}

/* line 639, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-lizard-o:before {
    content: "";
}

/* line 640, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-spock-o:before {
    content: "";
}

/* line 641, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-pointer-o:before {
    content: "";
}

/* line 642, bower_components/fontawesome/scss/_icons.scss */
.fa-hand-peace-o:before {
    content: "";
}

/* line 643, bower_components/fontawesome/scss/_icons.scss */
.fa-trademark:before {
    content: "";
}

/* line 644, bower_components/fontawesome/scss/_icons.scss */
.fa-registered:before {
    content: "";
}

/* line 645, bower_components/fontawesome/scss/_icons.scss */
.fa-creative-commons:before {
    content: "";
}

/* line 646, bower_components/fontawesome/scss/_icons.scss */
.fa-gg:before {
    content: "";
}

/* line 647, bower_components/fontawesome/scss/_icons.scss */
.fa-gg-circle:before {
    content: "";
}

/* line 648, bower_components/fontawesome/scss/_icons.scss */
.fa-tripadvisor:before {
    content: "";
}

/* line 649, bower_components/fontawesome/scss/_icons.scss */
.fa-odnoklassniki:before {
    content: "";
}

/* line 650, bower_components/fontawesome/scss/_icons.scss */
.fa-odnoklassniki-square:before {
    content: "";
}

/* line 651, bower_components/fontawesome/scss/_icons.scss */
.fa-get-pocket:before {
    content: "";
}

/* line 652, bower_components/fontawesome/scss/_icons.scss */
.fa-wikipedia-w:before {
    content: "";
}

/* line 653, bower_components/fontawesome/scss/_icons.scss */
.fa-safari:before {
    content: "";
}

/* line 654, bower_components/fontawesome/scss/_icons.scss */
.fa-chrome:before {
    content: "";
}

/* line 655, bower_components/fontawesome/scss/_icons.scss */
.fa-firefox:before {
    content: "";
}

/* line 656, bower_components/fontawesome/scss/_icons.scss */
.fa-opera:before {
    content: "";
}

/* line 657, bower_components/fontawesome/scss/_icons.scss */
.fa-internet-explorer:before {
    content: "";
}

/* line 658, bower_components/fontawesome/scss/_icons.scss */
.fa-tv:before,
.fa-television:before {
    content: "";
}

/* line 660, bower_components/fontawesome/scss/_icons.scss */
.fa-contao:before {
    content: "";
}

/* line 661, bower_components/fontawesome/scss/_icons.scss */
.fa-500px:before {
    content: "";
}

/* line 662, bower_components/fontawesome/scss/_icons.scss */
.fa-amazon:before {
    content: "";
}

/* line 663, bower_components/fontawesome/scss/_icons.scss */
.fa-calendar-plus-o:before {
    content: "";
}

/* line 664, bower_components/fontawesome/scss/_icons.scss */
.fa-calendar-minus-o:before {
    content: "";
}

/* line 665, bower_components/fontawesome/scss/_icons.scss */
.fa-calendar-times-o:before {
    content: "";
}

/* line 666, bower_components/fontawesome/scss/_icons.scss */
.fa-calendar-check-o:before {
    content: "";
}

/* line 667, bower_components/fontawesome/scss/_icons.scss */
.fa-industry:before {
    content: "";
}

/* line 668, bower_components/fontawesome/scss/_icons.scss */
.fa-map-pin:before {
    content: "";
}

/* line 669, bower_components/fontawesome/scss/_icons.scss */
.fa-map-signs:before {
    content: "";
}

/* line 670, bower_components/fontawesome/scss/_icons.scss */
.fa-map-o:before {
    content: "";
}

/* line 671, bower_components/fontawesome/scss/_icons.scss */
.fa-map:before {
    content: "";
}

/* line 672, bower_components/fontawesome/scss/_icons.scss */
.fa-commenting:before {
    content: "";
}

/* line 673, bower_components/fontawesome/scss/_icons.scss */
.fa-commenting-o:before {
    content: "";
}

/* line 674, bower_components/fontawesome/scss/_icons.scss */
.fa-houzz:before {
    content: "";
}

/* line 675, bower_components/fontawesome/scss/_icons.scss */
.fa-vimeo:before {
    content: "";
}

/* line 676, bower_components/fontawesome/scss/_icons.scss */
.fa-black-tie:before {
    content: "";
}

/* line 677, bower_components/fontawesome/scss/_icons.scss */
.fa-fonticons:before {
    content: "";
}

/* line 678, bower_components/fontawesome/scss/_icons.scss */
.fa-reddit-alien:before {
    content: "";
}

/* line 679, bower_components/fontawesome/scss/_icons.scss */
.fa-edge:before {
    content: "";
}

/* line 680, bower_components/fontawesome/scss/_icons.scss */
.fa-credit-card-alt:before {
    content: "";
}

/* line 681, bower_components/fontawesome/scss/_icons.scss */
.fa-codiepie:before {
    content: "";
}

/* line 682, bower_components/fontawesome/scss/_icons.scss */
.fa-modx:before {
    content: "";
}

/* line 683, bower_components/fontawesome/scss/_icons.scss */
.fa-fort-awesome:before {
    content: "";
}

/* line 684, bower_components/fontawesome/scss/_icons.scss */
.fa-usb:before {
    content: "";
}

/* line 685, bower_components/fontawesome/scss/_icons.scss */
.fa-product-hunt:before {
    content: "";
}

/* line 686, bower_components/fontawesome/scss/_icons.scss */
.fa-mixcloud:before {
    content: "";
}

/* line 687, bower_components/fontawesome/scss/_icons.scss */
.fa-scribd:before {
    content: "";
}

/* line 688, bower_components/fontawesome/scss/_icons.scss */
.fa-pause-circle:before {
    content: "";
}

/* line 689, bower_components/fontawesome/scss/_icons.scss */
.fa-pause-circle-o:before {
    content: "";
}

/* line 690, bower_components/fontawesome/scss/_icons.scss */
.fa-stop-circle:before {
    content: "";
}

/* line 691, bower_components/fontawesome/scss/_icons.scss */
.fa-stop-circle-o:before {
    content: "";
}

/* line 692, bower_components/fontawesome/scss/_icons.scss */
.fa-shopping-bag:before {
    content: "";
}

/* line 693, bower_components/fontawesome/scss/_icons.scss */
.fa-shopping-basket:before {
    content: "";
}

/* line 694, bower_components/fontawesome/scss/_icons.scss */
.fa-hashtag:before {
    content: "";
}

/* line 695, bower_components/fontawesome/scss/_icons.scss */
.fa-bluetooth:before {
    content: "";
}

/* line 696, bower_components/fontawesome/scss/_icons.scss */
.fa-bluetooth-b:before {
    content: "";
}

/* line 697, bower_components/fontawesome/scss/_icons.scss */
.fa-percent:before {
    content: "";
}

/* line 698, bower_components/fontawesome/scss/_icons.scss */
.fa-gitlab:before {
    content: "";
}

/* line 699, bower_components/fontawesome/scss/_icons.scss */
.fa-wpbeginner:before {
    content: "";
}

/* line 700, bower_components/fontawesome/scss/_icons.scss */
.fa-wpforms:before {
    content: "";
}

/* line 701, bower_components/fontawesome/scss/_icons.scss */
.fa-envira:before {
    content: "";
}

/* line 702, bower_components/fontawesome/scss/_icons.scss */
.fa-universal-access:before {
    content: "";
}

/* line 703, bower_components/fontawesome/scss/_icons.scss */
.fa-wheelchair-alt:before {
    content: "";
}

/* line 704, bower_components/fontawesome/scss/_icons.scss */
.fa-question-circle-o:before {
    content: "";
}

/* line 705, bower_components/fontawesome/scss/_icons.scss */
.fa-blind:before {
    content: "";
}

/* line 706, bower_components/fontawesome/scss/_icons.scss */
.fa-audio-description:before {
    content: "";
}

/* line 707, bower_components/fontawesome/scss/_icons.scss */
.fa-volume-control-phone:before {
    content: "";
}

/* line 708, bower_components/fontawesome/scss/_icons.scss */
.fa-braille:before {
    content: "";
}

/* line 709, bower_components/fontawesome/scss/_icons.scss */
.fa-assistive-listening-systems:before {
    content: "";
}

/* line 710, bower_components/fontawesome/scss/_icons.scss */
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "";
}

/* line 712, bower_components/fontawesome/scss/_icons.scss */
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "";
}

/* line 715, bower_components/fontawesome/scss/_icons.scss */
.fa-glide:before {
    content: "";
}

/* line 716, bower_components/fontawesome/scss/_icons.scss */
.fa-glide-g:before {
    content: "";
}

/* line 717, bower_components/fontawesome/scss/_icons.scss */
.fa-signing:before,
.fa-sign-language:before {
    content: "";
}

/* line 719, bower_components/fontawesome/scss/_icons.scss */
.fa-low-vision:before {
    content: "";
}

/* line 720, bower_components/fontawesome/scss/_icons.scss */
.fa-viadeo:before {
    content: "";
}

/* line 721, bower_components/fontawesome/scss/_icons.scss */
.fa-viadeo-square:before {
    content: "";
}

/* line 722, bower_components/fontawesome/scss/_icons.scss */
.fa-snapchat:before {
    content: "";
}

/* line 723, bower_components/fontawesome/scss/_icons.scss */
.fa-snapchat-ghost:before {
    content: "";
}

/* line 724, bower_components/fontawesome/scss/_icons.scss */
.fa-snapchat-square:before {
    content: "";
}

/* line 4, bower_components/fontawesome/scss/_screen-reader.scss */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* line 51, bower_components/fontawesome/scss/_mixins.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 7, bower_components/bootstrap/dist/css/bootstrap.css */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

/* line 12, bower_components/bootstrap/dist/css/bootstrap.css */
body {
    margin: 0;
}

/* line 15, bower_components/bootstrap/dist/css/bootstrap.css */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

/* line 30, bower_components/bootstrap/dist/css/bootstrap.css */
audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

    /* line 37, bower_components/bootstrap/dist/css/bootstrap.css */
    audio:not([controls]) {
        display: none;
        height: 0;
    }

/* line 41, bower_components/bootstrap/dist/css/bootstrap.css */
[hidden],
template {
    display: none;
}

/* line 45, bower_components/bootstrap/dist/css/bootstrap.css */
a {
    background-color: transparent;
}

    /* line 48, bower_components/bootstrap/dist/css/bootstrap.css */
    a:active,
    a:hover {
        outline: 0;
    }

/* line 52, bower_components/bootstrap/dist/css/bootstrap.css */
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

/* line 59, bower_components/bootstrap/dist/css/bootstrap.css */
b,
strong {
    font-weight: bold;
}

/* line 63, bower_components/bootstrap/dist/css/bootstrap.css */
dfn {
    font-style: italic;
}

/* line 66, bower_components/bootstrap/dist/css/bootstrap.css */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* line 70, bower_components/bootstrap/dist/css/bootstrap.css */
mark {
    background: #ff0;
    color: #000;
}

/* line 74, bower_components/bootstrap/dist/css/bootstrap.css */
small {
    font-size: 80%;
}

/* line 77, bower_components/bootstrap/dist/css/bootstrap.css */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

/* line 84, bower_components/bootstrap/dist/css/bootstrap.css */
sup {
    top: -0.5em;
}

/* line 87, bower_components/bootstrap/dist/css/bootstrap.css */
sub {
    bottom: -0.25em;
}

/* line 90, bower_components/bootstrap/dist/css/bootstrap.css */
img {
    border: 0;
}

/* line 93, bower_components/bootstrap/dist/css/bootstrap.css */
svg:not(:root) {
    overflow: hidden;
}

/* line 96, bower_components/bootstrap/dist/css/bootstrap.css */
figure {
    margin: 1em 40px;
}

/* line 99, bower_components/bootstrap/dist/css/bootstrap.css */
hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

/* line 105, bower_components/bootstrap/dist/css/bootstrap.css */
pre {
    overflow: auto;
}

/* line 108, bower_components/bootstrap/dist/css/bootstrap.css */
code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* line 115, bower_components/bootstrap/dist/css/bootstrap.css */
button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

/* line 124, bower_components/bootstrap/dist/css/bootstrap.css */
button {
    overflow: visible;
}

/* line 127, bower_components/bootstrap/dist/css/bootstrap.css */
button,
select {
    text-transform: none;
}

/* line 131, bower_components/bootstrap/dist/css/bootstrap.css */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

    /* line 138, bower_components/bootstrap/dist/css/bootstrap.css */
    button[disabled],
    html input[disabled] {
        cursor: default;
    }

    /* line 142, bower_components/bootstrap/dist/css/bootstrap.css */
    button::-moz-focus-inner,
    input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

/* line 147, bower_components/bootstrap/dist/css/bootstrap.css */
input {
    line-height: normal;
}

    /* line 150, bower_components/bootstrap/dist/css/bootstrap.css */
    input[type="checkbox"],
    input[type="radio"] {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        padding: 0;
    }

    /* line 157, bower_components/bootstrap/dist/css/bootstrap.css */
    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    /* line 161, bower_components/bootstrap/dist/css/bootstrap.css */
    input[type="search"] {
        -webkit-appearance: textfield;
        -webkit-box-sizing: content-box;
        box-sizing: content-box;
    }

        /* line 167, bower_components/bootstrap/dist/css/bootstrap.css */
        input[type="search"]::-webkit-search-cancel-button,
        input[type="search"]::-webkit-search-decoration {
            -webkit-appearance: none;
        }

/* line 171, bower_components/bootstrap/dist/css/bootstrap.css */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/* line 176, bower_components/bootstrap/dist/css/bootstrap.css */
legend {
    border: 0;
    padding: 0;
}

/* line 180, bower_components/bootstrap/dist/css/bootstrap.css */
textarea {
    overflow: auto;
}

/* line 183, bower_components/bootstrap/dist/css/bootstrap.css */
optgroup {
    font-weight: bold;
}

/* line 186, bower_components/bootstrap/dist/css/bootstrap.css */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* line 190, bower_components/bootstrap/dist/css/bootstrap.css */
td,
th {
    padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
@media print {
    /* line 196, bower_components/bootstrap/dist/css/bootstrap.css */
    *,
    *:before,
    *:after {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    /* line 205, bower_components/bootstrap/dist/css/bootstrap.css */
    a,
    a:visited {
        text-decoration: underline;
    }
        /* line 209, bower_components/bootstrap/dist/css/bootstrap.css */
        a[href]:after {
            content: " (" attr(href) ")";
        }
    /* line 212, bower_components/bootstrap/dist/css/bootstrap.css */
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    /* line 215, bower_components/bootstrap/dist/css/bootstrap.css */
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }
    /* line 219, bower_components/bootstrap/dist/css/bootstrap.css */
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    /* line 224, bower_components/bootstrap/dist/css/bootstrap.css */
    thead {
        display: table-header-group;
    }
    /* line 227, bower_components/bootstrap/dist/css/bootstrap.css */
    tr,
    img {
        page-break-inside: avoid;
    }
    /* line 231, bower_components/bootstrap/dist/css/bootstrap.css */
    img {
        max-width: 100% !important;
    }
    /* line 234, bower_components/bootstrap/dist/css/bootstrap.css */
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    /* line 240, bower_components/bootstrap/dist/css/bootstrap.css */
    h2,
    h3 {
        page-break-after: avoid;
    }
    /* line 244, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar {
        display: none;
    }
    /* line 247, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }
    /* line 251, bower_components/bootstrap/dist/css/bootstrap.css */
    .label {
        border: 1px solid #000;
    }
    /* line 254, bower_components/bootstrap/dist/css/bootstrap.css */
    .table {
        border-collapse: collapse !important;
    }
        /* line 257, bower_components/bootstrap/dist/css/bootstrap.css */
        .table td,
        .table th {
            background-color: #fff !important;
        }
    /* line 261, bower_components/bootstrap/dist/css/bootstrap.css */
    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

@font-face {
    font-family: "Glyphicons Halflings";
    src: url("../fonts/glyphicons-halflings-regular.eot");
    src: url("../fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../fonts/glyphicons-halflings-regular.woff") format("woff"), url("../fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

/* line 271, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: "Glyphicons Halflings";
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* line 282, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-asterisk:before {
    content: "\002a";
}

/* line 285, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-plus:before {
    content: "\002b";
}

/* line 288, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-euro:before,
.glyphicon-eur:before {
    content: "\20ac";
}

/* line 292, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-minus:before {
    content: "\2212";
}

/* line 295, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-cloud:before {
    content: "\2601";
}

/* line 298, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-envelope:before {
    content: "\2709";
}

/* line 301, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-pencil:before {
    content: "\270f";
}

/* line 304, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-glass:before {
    content: "\e001";
}

/* line 307, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-music:before {
    content: "\e002";
}

/* line 310, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-search:before {
    content: "\e003";
}

/* line 313, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-heart:before {
    content: "\e005";
}

/* line 316, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-star:before {
    content: "\e006";
}

/* line 319, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-star-empty:before {
    content: "\e007";
}

/* line 322, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-user:before {
    content: "\e008";
}

/* line 325, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-film:before {
    content: "\e009";
}

/* line 328, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-th-large:before {
    content: "\e010";
}

/* line 331, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-th:before {
    content: "\e011";
}

/* line 334, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-th-list:before {
    content: "\e012";
}

/* line 337, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-ok:before {
    content: "\e013";
}

/* line 340, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-remove:before {
    content: "\e014";
}

/* line 343, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-zoom-in:before {
    content: "\e015";
}

/* line 346, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-zoom-out:before {
    content: "\e016";
}

/* line 349, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-off:before {
    content: "\e017";
}

/* line 352, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-signal:before {
    content: "\e018";
}

/* line 355, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-cog:before {
    content: "\e019";
}

/* line 358, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-trash:before {
    content: "\e020";
}

/* line 361, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-home:before {
    content: "\e021";
}

/* line 364, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-file:before {
    content: "\e022";
}

/* line 367, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-time:before {
    content: "\e023";
}

/* line 370, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-road:before {
    content: "\e024";
}

/* line 373, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-download-alt:before {
    content: "\e025";
}

/* line 376, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-download:before {
    content: "\e026";
}

/* line 379, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-upload:before {
    content: "\e027";
}

/* line 382, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-inbox:before {
    content: "\e028";
}

/* line 385, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-play-circle:before {
    content: "\e029";
}

/* line 388, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-repeat:before {
    content: "\e030";
}

/* line 391, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-refresh:before {
    content: "\e031";
}

/* line 394, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-list-alt:before {
    content: "\e032";
}

/* line 397, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-lock:before {
    content: "\e033";
}

/* line 400, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-flag:before {
    content: "\e034";
}

/* line 403, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-headphones:before {
    content: "\e035";
}

/* line 406, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-volume-off:before {
    content: "\e036";
}

/* line 409, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-volume-down:before {
    content: "\e037";
}

/* line 412, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-volume-up:before {
    content: "\e038";
}

/* line 415, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-qrcode:before {
    content: "\e039";
}

/* line 418, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-barcode:before {
    content: "\e040";
}

/* line 421, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tag:before {
    content: "\e041";
}

/* line 424, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tags:before {
    content: "\e042";
}

/* line 427, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-book:before {
    content: "\e043";
}

/* line 430, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-bookmark:before {
    content: "\e044";
}

/* line 433, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-print:before {
    content: "\e045";
}

/* line 436, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-camera:before {
    content: "\e046";
}

/* line 439, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-font:before {
    content: "\e047";
}

/* line 442, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-bold:before {
    content: "\e048";
}

/* line 445, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-italic:before {
    content: "\e049";
}

/* line 448, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-text-height:before {
    content: "\e050";
}

/* line 451, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-text-width:before {
    content: "\e051";
}

/* line 454, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-align-left:before {
    content: "\e052";
}

/* line 457, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-align-center:before {
    content: "\e053";
}

/* line 460, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-align-right:before {
    content: "\e054";
}

/* line 463, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-align-justify:before {
    content: "\e055";
}

/* line 466, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-list:before {
    content: "\e056";
}

/* line 469, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-indent-left:before {
    content: "\e057";
}

/* line 472, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-indent-right:before {
    content: "\e058";
}

/* line 475, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-facetime-video:before {
    content: "\e059";
}

/* line 478, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-picture:before {
    content: "\e060";
}

/* line 481, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-map-marker:before {
    content: "\e062";
}

/* line 484, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-adjust:before {
    content: "\e063";
}

/* line 487, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tint:before {
    content: "\e064";
}

/* line 490, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-edit:before {
    content: "\e065";
}

/* line 493, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-share:before {
    content: "\e066";
}

/* line 496, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-check:before {
    content: "\e067";
}

/* line 499, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-move:before {
    content: "\e068";
}

/* line 502, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-step-backward:before {
    content: "\e069";
}

/* line 505, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-fast-backward:before {
    content: "\e070";
}

/* line 508, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-backward:before {
    content: "\e071";
}

/* line 511, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-play:before {
    content: "\e072";
}

/* line 514, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-pause:before {
    content: "\e073";
}

/* line 517, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-stop:before {
    content: "\e074";
}

/* line 520, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-forward:before {
    content: "\e075";
}

/* line 523, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-fast-forward:before {
    content: "\e076";
}

/* line 526, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-step-forward:before {
    content: "\e077";
}

/* line 529, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-eject:before {
    content: "\e078";
}

/* line 532, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-chevron-left:before {
    content: "\e079";
}

/* line 535, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-chevron-right:before {
    content: "\e080";
}

/* line 538, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-plus-sign:before {
    content: "\e081";
}

/* line 541, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-minus-sign:before {
    content: "\e082";
}

/* line 544, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-remove-sign:before {
    content: "\e083";
}

/* line 547, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-ok-sign:before {
    content: "\e084";
}

/* line 550, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-question-sign:before {
    content: "\e085";
}

/* line 553, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-info-sign:before {
    content: "\e086";
}

/* line 556, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-screenshot:before {
    content: "\e087";
}

/* line 559, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-remove-circle:before {
    content: "\e088";
}

/* line 562, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-ok-circle:before {
    content: "\e089";
}

/* line 565, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-ban-circle:before {
    content: "\e090";
}

/* line 568, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-arrow-left:before {
    content: "\e091";
}

/* line 571, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-arrow-right:before {
    content: "\e092";
}

/* line 574, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-arrow-up:before {
    content: "\e093";
}

/* line 577, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-arrow-down:before {
    content: "\e094";
}

/* line 580, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-share-alt:before {
    content: "\e095";
}

/* line 583, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-resize-full:before {
    content: "\e096";
}

/* line 586, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-resize-small:before {
    content: "\e097";
}

/* line 589, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-exclamation-sign:before {
    content: "\e101";
}

/* line 592, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-gift:before {
    content: "\e102";
}

/* line 595, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-leaf:before {
    content: "\e103";
}

/* line 598, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-fire:before {
    content: "\e104";
}

/* line 601, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-eye-open:before {
    content: "\e105";
}

/* line 604, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-eye-close:before {
    content: "\e106";
}

/* line 607, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-warning-sign:before {
    content: "\e107";
}

/* line 610, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-plane:before {
    content: "\e108";
}

/* line 613, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-calendar:before {
    content: "\e109";
}

/* line 616, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-random:before {
    content: "\e110";
}

/* line 619, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-comment:before {
    content: "\e111";
}

/* line 622, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-magnet:before {
    content: "\e112";
}

/* line 625, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-chevron-up:before {
    content: "\e113";
}

/* line 628, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-chevron-down:before {
    content: "\e114";
}

/* line 631, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-retweet:before {
    content: "\e115";
}

/* line 634, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-shopping-cart:before {
    content: "\e116";
}

/* line 637, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-folder-close:before {
    content: "\e117";
}

/* line 640, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-folder-open:before {
    content: "\e118";
}

/* line 643, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-resize-vertical:before {
    content: "\e119";
}

/* line 646, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-resize-horizontal:before {
    content: "\e120";
}

/* line 649, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-hdd:before {
    content: "\e121";
}

/* line 652, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-bullhorn:before {
    content: "\e122";
}

/* line 655, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-bell:before {
    content: "\e123";
}

/* line 658, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-certificate:before {
    content: "\e124";
}

/* line 661, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-thumbs-up:before {
    content: "\e125";
}

/* line 664, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-thumbs-down:before {
    content: "\e126";
}

/* line 667, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-hand-right:before {
    content: "\e127";
}

/* line 670, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-hand-left:before {
    content: "\e128";
}

/* line 673, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-hand-up:before {
    content: "\e129";
}

/* line 676, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-hand-down:before {
    content: "\e130";
}

/* line 679, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-circle-arrow-right:before {
    content: "\e131";
}

/* line 682, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-circle-arrow-left:before {
    content: "\e132";
}

/* line 685, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-circle-arrow-up:before {
    content: "\e133";
}

/* line 688, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-circle-arrow-down:before {
    content: "\e134";
}

/* line 691, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-globe:before {
    content: "\e135";
}

/* line 694, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-wrench:before {
    content: "\e136";
}

/* line 697, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tasks:before {
    content: "\e137";
}

/* line 700, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-filter:before {
    content: "\e138";
}

/* line 703, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-briefcase:before {
    content: "\e139";
}

/* line 706, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-fullscreen:before {
    content: "\e140";
}

/* line 709, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-dashboard:before {
    content: "\e141";
}

/* line 712, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-paperclip:before {
    content: "\e142";
}

/* line 715, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-heart-empty:before {
    content: "\e143";
}

/* line 718, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-link:before {
    content: "\e144";
}

/* line 721, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-phone:before {
    content: "\e145";
}

/* line 724, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-pushpin:before {
    content: "\e146";
}

/* line 727, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-usd:before {
    content: "\e148";
}

/* line 730, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-gbp:before {
    content: "\e149";
}

/* line 733, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sort:before {
    content: "\e150";
}

/* line 736, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sort-by-alphabet:before {
    content: "\e151";
}

/* line 739, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152";
}

/* line 742, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sort-by-order:before {
    content: "\e153";
}

/* line 745, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sort-by-order-alt:before {
    content: "\e154";
}

/* line 748, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sort-by-attributes:before {
    content: "\e155";
}

/* line 751, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sort-by-attributes-alt:before {
    content: "\e156";
}

/* line 754, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-unchecked:before {
    content: "\e157";
}

/* line 757, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-expand:before {
    content: "\e158";
}

/* line 760, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-collapse-down:before {
    content: "\e159";
}

/* line 763, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-collapse-up:before {
    content: "\e160";
}

/* line 766, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-log-in:before {
    content: "\e161";
}

/* line 769, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-flash:before {
    content: "\e162";
}

/* line 772, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-log-out:before {
    content: "\e163";
}

/* line 775, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-new-window:before {
    content: "\e164";
}

/* line 778, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-record:before {
    content: "\e165";
}

/* line 781, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-save:before {
    content: "\e166";
}

/* line 784, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-open:before {
    content: "\e167";
}

/* line 787, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-saved:before {
    content: "\e168";
}

/* line 790, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-import:before {
    content: "\e169";
}

/* line 793, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-export:before {
    content: "\e170";
}

/* line 796, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-send:before {
    content: "\e171";
}

/* line 799, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-floppy-disk:before {
    content: "\e172";
}

/* line 802, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-floppy-saved:before {
    content: "\e173";
}

/* line 805, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-floppy-remove:before {
    content: "\e174";
}

/* line 808, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-floppy-save:before {
    content: "\e175";
}

/* line 811, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-floppy-open:before {
    content: "\e176";
}

/* line 814, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-credit-card:before {
    content: "\e177";
}

/* line 817, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-transfer:before {
    content: "\e178";
}

/* line 820, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-cutlery:before {
    content: "\e179";
}

/* line 823, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-header:before {
    content: "\e180";
}

/* line 826, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-compressed:before {
    content: "\e181";
}

/* line 829, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-earphone:before {
    content: "\e182";
}

/* line 832, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-phone-alt:before {
    content: "\e183";
}

/* line 835, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tower:before {
    content: "\e184";
}

/* line 838, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-stats:before {
    content: "\e185";
}

/* line 841, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sd-video:before {
    content: "\e186";
}

/* line 844, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-hd-video:before {
    content: "\e187";
}

/* line 847, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-subtitles:before {
    content: "\e188";
}

/* line 850, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sound-stereo:before {
    content: "\e189";
}

/* line 853, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sound-dolby:before {
    content: "\e190";
}

/* line 856, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sound-5-1:before {
    content: "\e191";
}

/* line 859, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sound-6-1:before {
    content: "\e192";
}

/* line 862, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sound-7-1:before {
    content: "\e193";
}

/* line 865, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-copyright-mark:before {
    content: "\e194";
}

/* line 868, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-registration-mark:before {
    content: "\e195";
}

/* line 871, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-cloud-download:before {
    content: "\e197";
}

/* line 874, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-cloud-upload:before {
    content: "\e198";
}

/* line 877, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tree-conifer:before {
    content: "\e199";
}

/* line 880, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tree-deciduous:before {
    content: "\e200";
}

/* line 883, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-cd:before {
    content: "\e201";
}

/* line 886, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-save-file:before {
    content: "\e202";
}

/* line 889, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-open-file:before {
    content: "\e203";
}

/* line 892, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-level-up:before {
    content: "\e204";
}

/* line 895, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-copy:before {
    content: "\e205";
}

/* line 898, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-paste:before {
    content: "\e206";
}

/* line 901, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-alert:before {
    content: "\e209";
}

/* line 904, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-equalizer:before {
    content: "\e210";
}

/* line 907, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-king:before {
    content: "\e211";
}

/* line 910, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-queen:before {
    content: "\e212";
}

/* line 913, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-pawn:before {
    content: "\e213";
}

/* line 916, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-bishop:before {
    content: "\e214";
}

/* line 919, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-knight:before {
    content: "\e215";
}

/* line 922, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-baby-formula:before {
    content: "\e216";
}

/* line 925, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-tent:before {
    content: "\26fa";
}

/* line 928, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-blackboard:before {
    content: "\e218";
}

/* line 931, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-bed:before {
    content: "\e219";
}

/* line 934, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-apple:before {
    content: "\f8ff";
}

/* line 937, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-erase:before {
    content: "\e221";
}

/* line 940, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-hourglass:before {
    content: "\231b";
}

/* line 943, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-lamp:before {
    content: "\e223";
}

/* line 946, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-duplicate:before {
    content: "\e224";
}

/* line 949, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-piggy-bank:before {
    content: "\e225";
}

/* line 952, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-scissors:before {
    content: "\e226";
}

/* line 955, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-bitcoin:before {
    content: "\e227";
}

/* line 958, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-btc:before {
    content: "\e227";
}

/* line 961, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-xbt:before {
    content: "\e227";
}

/* line 964, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-yen:before {
    content: "\00a5";
}

/* line 967, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-jpy:before {
    content: "\00a5";
}

/* line 970, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-ruble:before {
    content: "\20bd";
}

/* line 973, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-rub:before {
    content: "\20bd";
}

/* line 976, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-scale:before {
    content: "\e230";
}

/* line 979, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-ice-lolly:before {
    content: "\e231";
}

/* line 982, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-ice-lolly-tasted:before {
    content: "\e232";
}

/* line 985, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-education:before {
    content: "\e233";
}

/* line 988, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-option-horizontal:before {
    content: "\e234";
}

/* line 991, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-option-vertical:before {
    content: "\e235";
}

/* line 994, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-menu-hamburger:before {
    content: "\e236";
}

/* line 997, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-modal-window:before {
    content: "\e237";
}

/* line 1000, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-oil:before {
    content: "\e238";
}

/* line 1003, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-grain:before {
    content: "\e239";
}

/* line 1006, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-sunglasses:before {
    content: "\e240";
}

/* line 1009, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-text-size:before {
    content: "\e241";
}

/* line 1012, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-text-color:before {
    content: "\e242";
}

/* line 1015, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-text-background:before {
    content: "\e243";
}

/* line 1018, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-object-align-top:before {
    content: "\e244";
}

/* line 1021, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-object-align-bottom:before {
    content: "\e245";
}

/* line 1024, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-object-align-horizontal:before {
    content: "\e246";
}

/* line 1027, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-object-align-left:before {
    content: "\e247";
}

/* line 1030, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-object-align-vertical:before {
    content: "\e248";
}

/* line 1033, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-object-align-right:before {
    content: "\e249";
}

/* line 1036, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-triangle-right:before {
    content: "\e250";
}

/* line 1039, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-triangle-left:before {
    content: "\e251";
}

/* line 1042, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-triangle-bottom:before {
    content: "\e252";
}

/* line 1045, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-triangle-top:before {
    content: "\e253";
}

/* line 1048, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-console:before {
    content: "\e254";
}

/* line 1051, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-superscript:before {
    content: "\e255";
}

/* line 1054, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-subscript:before {
    content: "\e256";
}

/* line 1057, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-menu-left:before {
    content: "\e257";
}

/* line 1060, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-menu-right:before {
    content: "\e258";
}

/* line 1063, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-menu-down:before {
    content: "\e259";
}

/* line 1066, bower_components/bootstrap/dist/css/bootstrap.css */
.glyphicon-menu-up:before {
    content: "\e260";
}

/* line 1069, bower_components/bootstrap/dist/css/bootstrap.css */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    /* line 1074, bower_components/bootstrap/dist/css/bootstrap.css */
    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

/* line 1080, bower_components/bootstrap/dist/css/bootstrap.css */
html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* line 1084, bower_components/bootstrap/dist/css/bootstrap.css */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333333;
    background-color: #fff;
}

/* line 1091, bower_components/bootstrap/dist/css/bootstrap.css */
input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* line 1099, bower_components/bootstrap/dist/css/bootstrap.css */
a {
    color: #337ab7;
    text-decoration: none;
}

    /* line 1103, bower_components/bootstrap/dist/css/bootstrap.css */
    a:hover,
    a:focus {
        color: #23527c;
        text-decoration: underline;
    }

    /* line 1108, bower_components/bootstrap/dist/css/bootstrap.css */
    a:focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

/* line 1112, bower_components/bootstrap/dist/css/bootstrap.css */
figure {
    margin: 0;
}

/* line 1115, bower_components/bootstrap/dist/css/bootstrap.css */
img {
    vertical-align: middle;
}

/* line 1118, bower_components/bootstrap/dist/css/bootstrap.css */
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* line 1127, bower_components/bootstrap/dist/css/bootstrap.css */
.img-rounded {
    border-radius: 6px;
}

/* line 1130, bower_components/bootstrap/dist/css/bootstrap.css */
.img-thumbnail {
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

/* line 1143, bower_components/bootstrap/dist/css/bootstrap.css */
.img-circle {
    border-radius: 50%;
}

/* line 1146, bower_components/bootstrap/dist/css/bootstrap.css */
hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

/* line 1152, bower_components/bootstrap/dist/css/bootstrap.css */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* line 1162, bower_components/bootstrap/dist/css/bootstrap.css */
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/* line 1171, bower_components/bootstrap/dist/css/bootstrap.css */
[role="button"] {
    cursor: pointer;
}

/* line 1174, bower_components/bootstrap/dist/css/bootstrap.css */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

    /* line 1191, bower_components/bootstrap/dist/css/bootstrap.css */
    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small,
    .h1 small,
    .h2 small,
    .h3 small,
    .h4 small,
    .h5 small,
    .h6 small,
    h1 .small,
    h2 .small,
    h3 .small,
    h4 .small,
    h5 .small,
    h6 .small,
    .h1 .small,
    .h2 .small,
    .h3 .small,
    .h4 .small,
    .h5 .small,
    .h6 .small {
        font-weight: 400;
        line-height: 1;
        color: #777777;
    }

/* line 1219, bower_components/bootstrap/dist/css/bootstrap.css */
h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

    /* line 1228, bower_components/bootstrap/dist/css/bootstrap.css */
    h1 small,
    .h1 small,
    h2 small,
    .h2 small,
    h3 small,
    .h3 small,
    h1 .small,
    .h1 .small,
    h2 .small,
    .h2 .small,
    h3 .small,
    .h3 .small {
        font-size: 65%;
    }

/* line 1242, bower_components/bootstrap/dist/css/bootstrap.css */
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

    /* line 1251, bower_components/bootstrap/dist/css/bootstrap.css */
    h4 small,
    .h4 small,
    h5 small,
    .h5 small,
    h6 small,
    .h6 small,
    h4 .small,
    .h4 .small,
    h5 .small,
    .h5 .small,
    h6 .small,
    .h6 .small {
        font-size: 75%;
    }

/* line 1265, bower_components/bootstrap/dist/css/bootstrap.css */
h1,
.h1 {
    font-size: 36px;
}

/* line 1269, bower_components/bootstrap/dist/css/bootstrap.css */
h2,
.h2 {
    font-size: 30px;
}

/* line 1273, bower_components/bootstrap/dist/css/bootstrap.css */
h3,
.h3 {
    font-size: 24px;
}

/* line 1277, bower_components/bootstrap/dist/css/bootstrap.css */
h4,
.h4 {
    font-size: 18px;
}

/* line 1281, bower_components/bootstrap/dist/css/bootstrap.css */
h5,
.h5 {
    font-size: 14px;
}

/* line 1285, bower_components/bootstrap/dist/css/bootstrap.css */
h6,
.h6 {
    font-size: 12px;
}

/* line 1289, bower_components/bootstrap/dist/css/bootstrap.css */
p {
    margin: 0 0 10px;
}

/* line 1292, bower_components/bootstrap/dist/css/bootstrap.css */
.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

@media (min-width: 768px) {
    /* line 1299, bower_components/bootstrap/dist/css/bootstrap.css */
    .lead {
        font-size: 21px;
    }
}

/* line 1303, bower_components/bootstrap/dist/css/bootstrap.css */
small,
.small {
    font-size: 85%;
}

/* line 1307, bower_components/bootstrap/dist/css/bootstrap.css */
mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

/* line 1312, bower_components/bootstrap/dist/css/bootstrap.css */
.text-left {
    text-align: left;
}

/* line 1315, bower_components/bootstrap/dist/css/bootstrap.css */
.text-right {
    text-align: right;
}

/* line 1318, bower_components/bootstrap/dist/css/bootstrap.css */
.text-center {
    text-align: center;
}

/* line 1321, bower_components/bootstrap/dist/css/bootstrap.css */
.text-justify {
    text-align: justify;
}

/* line 1324, bower_components/bootstrap/dist/css/bootstrap.css */
.text-nowrap {
    white-space: nowrap;
}

/* line 1327, bower_components/bootstrap/dist/css/bootstrap.css */
.text-lowercase {
    text-transform: lowercase;
}

/* line 1330, bower_components/bootstrap/dist/css/bootstrap.css */
.text-uppercase {
    text-transform: uppercase;
}

/* line 1333, bower_components/bootstrap/dist/css/bootstrap.css */
.text-capitalize {
    text-transform: capitalize;
}

/* line 1336, bower_components/bootstrap/dist/css/bootstrap.css */
.text-muted {
    color: #777777;
}

/* line 1339, bower_components/bootstrap/dist/css/bootstrap.css */
.text-primary {
    color: #337ab7;
}

/* line 1342, bower_components/bootstrap/dist/css/bootstrap.css */
a.text-primary:hover,
a.text-primary:focus {
    color: #286090;
}

/* line 1346, bower_components/bootstrap/dist/css/bootstrap.css */
.text-success {
    color: #3c763d;
}

/* line 1349, bower_components/bootstrap/dist/css/bootstrap.css */
a.text-success:hover,
a.text-success:focus {
    color: #2b542c;
}

/* line 1353, bower_components/bootstrap/dist/css/bootstrap.css */
.text-info {
    color: #31708f;
}

/* line 1356, bower_components/bootstrap/dist/css/bootstrap.css */
a.text-info:hover,
a.text-info:focus {
    color: #245269;
}

/* line 1360, bower_components/bootstrap/dist/css/bootstrap.css */
.text-warning {
    color: #8a6d3b;
}

/* line 1363, bower_components/bootstrap/dist/css/bootstrap.css */
a.text-warning:hover,
a.text-warning:focus {
    color: #66512c;
}

/* line 1367, bower_components/bootstrap/dist/css/bootstrap.css */
.text-danger {
    color: #a94442;
}

/* line 1370, bower_components/bootstrap/dist/css/bootstrap.css */
a.text-danger:hover,
a.text-danger:focus {
    color: #843534;
}

/* line 1374, bower_components/bootstrap/dist/css/bootstrap.css */
.bg-primary {
    color: #fff;
    background-color: #337ab7;
}

/* line 1378, bower_components/bootstrap/dist/css/bootstrap.css */
a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #286090;
}

/* line 1382, bower_components/bootstrap/dist/css/bootstrap.css */
.bg-success {
    background-color: #dff0d8;
}

/* line 1385, bower_components/bootstrap/dist/css/bootstrap.css */
a.bg-success:hover,
a.bg-success:focus {
    background-color: #c1e2b3;
}

/* line 1389, bower_components/bootstrap/dist/css/bootstrap.css */
.bg-info {
    background-color: #d9edf7;
}

/* line 1392, bower_components/bootstrap/dist/css/bootstrap.css */
a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee;
}

/* line 1396, bower_components/bootstrap/dist/css/bootstrap.css */
.bg-warning {
    background-color: #fcf8e3;
}

/* line 1399, bower_components/bootstrap/dist/css/bootstrap.css */
a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f7ecb5;
}

/* line 1403, bower_components/bootstrap/dist/css/bootstrap.css */
.bg-danger {
    background-color: #f2dede;
}

/* line 1406, bower_components/bootstrap/dist/css/bootstrap.css */
a.bg-danger:hover,
a.bg-danger:focus {
    background-color: #e4b9b9;
}

/* line 1410, bower_components/bootstrap/dist/css/bootstrap.css */
.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eeeeee;
}

/* line 1415, bower_components/bootstrap/dist/css/bootstrap.css */
ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}

    /* line 1420, bower_components/bootstrap/dist/css/bootstrap.css */
    ul ul,
    ol ul,
    ul ol,
    ol ol {
        margin-bottom: 0;
    }

/* line 1426, bower_components/bootstrap/dist/css/bootstrap.css */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* line 1430, bower_components/bootstrap/dist/css/bootstrap.css */
.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

    /* line 1435, bower_components/bootstrap/dist/css/bootstrap.css */
    .list-inline > li {
        display: inline-block;
        padding-right: 5px;
        padding-left: 5px;
    }

/* line 1440, bower_components/bootstrap/dist/css/bootstrap.css */
dl {
    margin-top: 0;
    margin-bottom: 20px;
}

/* line 1444, bower_components/bootstrap/dist/css/bootstrap.css */
dt,
dd {
    line-height: 1.42857143;
}

/* line 1448, bower_components/bootstrap/dist/css/bootstrap.css */
dt {
    font-weight: 700;
}

/* line 1451, bower_components/bootstrap/dist/css/bootstrap.css */
dd {
    margin-left: 0;
}

@media (min-width: 768px) {
    /* line 1455, bower_components/bootstrap/dist/css/bootstrap.css */
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    /* line 1464, bower_components/bootstrap/dist/css/bootstrap.css */
    .dl-horizontal dd {
        margin-left: 180px;
    }
}

/* line 1468, bower_components/bootstrap/dist/css/bootstrap.css */
abbr[title],
abbr[data-original-title] {
    cursor: help;
}

/* line 1472, bower_components/bootstrap/dist/css/bootstrap.css */
.initialism {
    font-size: 90%;
    text-transform: uppercase;
}

/* line 1476, bower_components/bootstrap/dist/css/bootstrap.css */
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eeeeee;
}

    /* line 1482, bower_components/bootstrap/dist/css/bootstrap.css */
    blockquote p:last-child,
    blockquote ul:last-child,
    blockquote ol:last-child {
        margin-bottom: 0;
    }

    /* line 1487, bower_components/bootstrap/dist/css/bootstrap.css */
    blockquote footer,
    blockquote small,
    blockquote .small {
        display: block;
        font-size: 80%;
        line-height: 1.42857143;
        color: #777777;
    }

        /* line 1495, bower_components/bootstrap/dist/css/bootstrap.css */
        blockquote footer:before,
        blockquote small:before,
        blockquote .small:before {
            content: "\2014 \00A0";
        }

    /* line 1500, bower_components/bootstrap/dist/css/bootstrap.css */
    .blockquote-reverse,
    blockquote.pull-right {
        padding-right: 15px;
        padding-left: 0;
        text-align: right;
        border-right: 5px solid #eeeeee;
        border-left: 0;
    }

        /* line 1508, bower_components/bootstrap/dist/css/bootstrap.css */
        .blockquote-reverse footer:before,
        blockquote.pull-right footer:before,
        .blockquote-reverse small:before,
        blockquote.pull-right small:before,
        .blockquote-reverse .small:before,
        blockquote.pull-right .small:before {
            content: "";
        }

        /* line 1516, bower_components/bootstrap/dist/css/bootstrap.css */
        .blockquote-reverse footer:after,
        blockquote.pull-right footer:after,
        .blockquote-reverse small:after,
        blockquote.pull-right small:after,
        .blockquote-reverse .small:after,
        blockquote.pull-right .small:after {
            content: "\00A0 \2014";
        }

/* line 1524, bower_components/bootstrap/dist/css/bootstrap.css */
address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857143;
}

/* line 1529, bower_components/bootstrap/dist/css/bootstrap.css */
code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

/* line 1535, bower_components/bootstrap/dist/css/bootstrap.css */
code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

/* line 1542, bower_components/bootstrap/dist/css/bootstrap.css */
kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

    /* line 1551, bower_components/bootstrap/dist/css/bootstrap.css */
    kbd kbd {
        padding: 0;
        font-size: 100%;
        font-weight: 700;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

/* line 1558, bower_components/bootstrap/dist/css/bootstrap.css */
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    /* line 1571, bower_components/bootstrap/dist/css/bootstrap.css */
    pre code {
        padding: 0;
        font-size: inherit;
        color: inherit;
        white-space: pre-wrap;
        background-color: transparent;
        border-radius: 0;
    }

/* line 1579, bower_components/bootstrap/dist/css/bootstrap.css */
.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

/* line 1583, bower_components/bootstrap/dist/css/bootstrap.css */
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 768px) {
    /* line 1590, bower_components/bootstrap/dist/css/bootstrap.css */
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    /* line 1595, bower_components/bootstrap/dist/css/bootstrap.css */
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    /* line 1600, bower_components/bootstrap/dist/css/bootstrap.css */
    .container {
        width: 1170px;
    }
}

/* line 1604, bower_components/bootstrap/dist/css/bootstrap.css */
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* line 1610, bower_components/bootstrap/dist/css/bootstrap.css */
.row {
    margin-right: -15px;
    margin-left: -15px;
}

/* line 1614, bower_components/bootstrap/dist/css/bootstrap.css */
.row-no-gutters {
    margin-right: 0;
    margin-left: 0;
}

    /* line 1618, bower_components/bootstrap/dist/css/bootstrap.css */
    .row-no-gutters [class*="col-"] {
        padding-right: 0;
        padding-left: 0;
    }

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

/* line 1675, bower_components/bootstrap/dist/css/bootstrap.css */
.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;
}

/* line 1689, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-12 {
    width: 100%;
}

/* line 1692, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-11 {
    width: 91.66666667%;
}

/* line 1695, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-10 {
    width: 83.33333333%;
}

/* line 1698, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-9 {
    width: 75%;
}

/* line 1701, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-8 {
    width: 66.66666667%;
}

/* line 1704, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-7 {
    width: 58.33333333%;
}

/* line 1707, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-6 {
    width: 50%;
}

/* line 1710, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-5 {
    width: 41.66666667%;
}

/* line 1713, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-4 {
    width: 33.33333333%;
}

/* line 1716, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-3 {
    width: 25%;
}

/* line 1719, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-2 {
    width: 16.66666667%;
}

/* line 1722, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-1 {
    width: 8.33333333%;
}

/* line 1725, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-12 {
    right: 100%;
}

/* line 1728, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-11 {
    right: 91.66666667%;
}

/* line 1731, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-10 {
    right: 83.33333333%;
}

/* line 1734, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-9 {
    right: 75%;
}

/* line 1737, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-8 {
    right: 66.66666667%;
}

/* line 1740, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-7 {
    right: 58.33333333%;
}

/* line 1743, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-6 {
    right: 50%;
}

/* line 1746, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-5 {
    right: 41.66666667%;
}

/* line 1749, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-4 {
    right: 33.33333333%;
}

/* line 1752, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-3 {
    right: 25%;
}

/* line 1755, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-2 {
    right: 16.66666667%;
}

/* line 1758, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-1 {
    right: 8.33333333%;
}

/* line 1761, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-pull-0 {
    right: auto;
}

/* line 1764, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-12 {
    left: 100%;
}

/* line 1767, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-11 {
    left: 91.66666667%;
}

/* line 1770, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-10 {
    left: 83.33333333%;
}

/* line 1773, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-9 {
    left: 75%;
}

/* line 1776, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-8 {
    left: 66.66666667%;
}

/* line 1779, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-7 {
    left: 58.33333333%;
}

/* line 1782, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-6 {
    left: 50%;
}

/* line 1785, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-5 {
    left: 41.66666667%;
}

/* line 1788, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-4 {
    left: 33.33333333%;
}

/* line 1791, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-3 {
    left: 25%;
}

/* line 1794, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-2 {
    left: 16.66666667%;
}

/* line 1797, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-1 {
    left: 8.33333333%;
}

/* line 1800, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-push-0 {
    left: auto;
}

/* line 1803, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-12 {
    margin-left: 100%;
}

/* line 1806, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

/* line 1809, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

/* line 1812, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-9 {
    margin-left: 75%;
}

/* line 1815, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

/* line 1818, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

/* line 1821, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-6 {
    margin-left: 50%;
}

/* line 1824, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

/* line 1827, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

/* line 1830, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-3 {
    margin-left: 25%;
}

/* line 1833, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

/* line 1836, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

/* line 1839, bower_components/bootstrap/dist/css/bootstrap.css */
.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {
    /* line 1843, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }
    /* line 1857, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-12 {
        width: 100%;
    }
    /* line 1860, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-11 {
        width: 91.66666667%;
    }
    /* line 1863, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-10 {
        width: 83.33333333%;
    }
    /* line 1866, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-9 {
        width: 75%;
    }
    /* line 1869, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-8 {
        width: 66.66666667%;
    }
    /* line 1872, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-7 {
        width: 58.33333333%;
    }
    /* line 1875, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-6 {
        width: 50%;
    }
    /* line 1878, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-5 {
        width: 41.66666667%;
    }
    /* line 1881, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-4 {
        width: 33.33333333%;
    }
    /* line 1884, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-3 {
        width: 25%;
    }
    /* line 1887, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-2 {
        width: 16.66666667%;
    }
    /* line 1890, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-1 {
        width: 8.33333333%;
    }
    /* line 1893, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-12 {
        right: 100%;
    }
    /* line 1896, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-11 {
        right: 91.66666667%;
    }
    /* line 1899, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-10 {
        right: 83.33333333%;
    }
    /* line 1902, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-9 {
        right: 75%;
    }
    /* line 1905, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-8 {
        right: 66.66666667%;
    }
    /* line 1908, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-7 {
        right: 58.33333333%;
    }
    /* line 1911, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-6 {
        right: 50%;
    }
    /* line 1914, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-5 {
        right: 41.66666667%;
    }
    /* line 1917, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-4 {
        right: 33.33333333%;
    }
    /* line 1920, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-3 {
        right: 25%;
    }
    /* line 1923, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-2 {
        right: 16.66666667%;
    }
    /* line 1926, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-1 {
        right: 8.33333333%;
    }
    /* line 1929, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-pull-0 {
        right: auto;
    }
    /* line 1932, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-12 {
        left: 100%;
    }
    /* line 1935, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-11 {
        left: 91.66666667%;
    }
    /* line 1938, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-10 {
        left: 83.33333333%;
    }
    /* line 1941, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-9 {
        left: 75%;
    }
    /* line 1944, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-8 {
        left: 66.66666667%;
    }
    /* line 1947, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-7 {
        left: 58.33333333%;
    }
    /* line 1950, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-6 {
        left: 50%;
    }
    /* line 1953, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-5 {
        left: 41.66666667%;
    }
    /* line 1956, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-4 {
        left: 33.33333333%;
    }
    /* line 1959, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-3 {
        left: 25%;
    }
    /* line 1962, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-2 {
        left: 16.66666667%;
    }
    /* line 1965, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-1 {
        left: 8.33333333%;
    }
    /* line 1968, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-push-0 {
        left: auto;
    }
    /* line 1971, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    /* line 1974, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    /* line 1977, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    /* line 1980, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    /* line 1983, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    /* line 1986, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    /* line 1989, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    /* line 1992, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    /* line 1995, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    /* line 1998, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    /* line 2001, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    /* line 2004, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    /* line 2007, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {
    /* line 2012, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }
    /* line 2026, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-12 {
        width: 100%;
    }
    /* line 2029, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-11 {
        width: 91.66666667%;
    }
    /* line 2032, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-10 {
        width: 83.33333333%;
    }
    /* line 2035, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-9 {
        width: 90%;
    }
    /* line 2038, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-8 {
        width: 66.66666667%;
    }
    /* line 2041, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-7 {
        width: 58.33333333%;
    }
    /* line 2044, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-6 {
        width: 50%;
    }
    /* line 2047, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-5 {
        width: 41.66666667%;
    }
    /* line 2050, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-4 {
        width: 33.33333333%;
    }
    /* line 2053, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-3 {
        width: 25%;
    }
    /* line 2056, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-2 {
        width: 16.66666667%;
    }
    /* line 2059, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-1 {
        width: 8.33333333%;
    }
    /* line 2062, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-12 {
        right: 100%;
    }
    /* line 2065, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-11 {
        right: 91.66666667%;
    }
    /* line 2068, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-10 {
        right: 83.33333333%;
    }
    /* line 2071, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-9 {
        right: 75%;
    }
    /* line 2074, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-8 {
        right: 66.66666667%;
    }
    /* line 2077, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-7 {
        right: 58.33333333%;
    }
    /* line 2080, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-6 {
        right: 50%;
    }
    /* line 2083, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-5 {
        right: 41.66666667%;
    }
    /* line 2086, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-4 {
        right: 33.33333333%;
    }
    /* line 2089, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-3 {
        right: 25%;
    }
    /* line 2092, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-2 {
        right: 16.66666667%;
    }
    /* line 2095, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-1 {
        right: 8.33333333%;
    }
    /* line 2098, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-pull-0 {
        right: auto;
    }
    /* line 2101, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-12 {
        left: 100%;
    }
    /* line 2104, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-11 {
        left: 91.66666667%;
    }
    /* line 2107, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-10 {
        left: 83.33333333%;
    }
    /* line 2110, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-9 {
        left: 75%;
    }
    /* line 2113, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-8 {
        left: 66.66666667%;
    }
    /* line 2116, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-7 {
        left: 58.33333333%;
    }
    /* line 2119, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-6 {
        left: 50%;
    }
    /* line 2122, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-5 {
        left: 41.66666667%;
    }
    /* line 2125, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-4 {
        left: 33.33333333%;
    }
    /* line 2128, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-3 {
        left: 25%;
    }
    /* line 2131, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-2 {
        left: 16.66666667%;
    }
    /* line 2134, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-1 {
        left: 8.33333333%;
    }
    /* line 2137, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-push-0 {
        left: auto;
    }
    /* line 2140, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-12 {
        margin-left: 100%;
    }
    /* line 2143, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    /* line 2146, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    /* line 2149, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-9 {
        margin-left: 75%;
    }
    /* line 2152, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    /* line 2155, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    /* line 2158, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-6 {
        margin-left: 50%;
    }
    /* line 2161, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    /* line 2164, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    /* line 2167, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-3 {
        margin-left: 25%;
    }
    /* line 2170, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    /* line 2173, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    /* line 2176, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {
    /* line 2181, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }
    /* line 2195, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-12 {
        width: 100%;
    }
    /* line 2198, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-11 {
        width: 91.66666667%;
    }
    /* line 2201, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-10 {
        width: 83.33333333%;
    }
    /* line 2204, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-9 {
        width: 75%;
    }
    /* line 2207, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-8 {
        width: 66.66666667%;
    }
    /* line 2210, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-7 {
        width: 58.33333333%;
    }
    /* line 2213, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-6 {
        width: 50%;
    }
    /* line 2216, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-5 {
        width: 41.66666667%;
    }
    /* line 2219, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-4 {
        width: 33.33333333%;
    }
    /* line 2222, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-3 {
        width: 25%;
    }
    /* line 2225, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-2 {
        width: 16.66666667%;
    }
    /* line 2228, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-1 {
        width: 8.33333333%;
    }
    /* line 2231, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-12 {
        right: 100%;
    }
    /* line 2234, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-11 {
        right: 91.66666667%;
    }
    /* line 2237, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-10 {
        right: 83.33333333%;
    }
    /* line 2240, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-9 {
        right: 75%;
    }
    /* line 2243, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-8 {
        right: 66.66666667%;
    }
    /* line 2246, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-7 {
        right: 58.33333333%;
    }
    /* line 2249, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-6 {
        right: 50%;
    }
    /* line 2252, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-5 {
        right: 41.66666667%;
    }
    /* line 2255, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-4 {
        right: 33.33333333%;
    }
    /* line 2258, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-3 {
        right: 25%;
    }
    /* line 2261, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-2 {
        right: 16.66666667%;
    }
    /* line 2264, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-1 {
        right: 8.33333333%;
    }
    /* line 2267, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-pull-0 {
        right: auto;
    }
    /* line 2270, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-12 {
        left: 100%;
    }
    /* line 2273, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-11 {
        left: 91.66666667%;
    }
    /* line 2276, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-10 {
        left: 83.33333333%;
    }
    /* line 2279, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-9 {
        left: 75%;
    }
    /* line 2282, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-8 {
        left: 66.66666667%;
    }
    /* line 2285, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-7 {
        left: 58.33333333%;
    }
    /* line 2288, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-6 {
        left: 50%;
    }
    /* line 2291, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-5 {
        left: 41.66666667%;
    }
    /* line 2294, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-4 {
        left: 33.33333333%;
    }
    /* line 2297, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-3 {
        left: 25%;
    }
    /* line 2300, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-2 {
        left: 16.66666667%;
    }
    /* line 2303, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-1 {
        left: 8.33333333%;
    }
    /* line 2306, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-push-0 {
        left: auto;
    }
    /* line 2309, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    /* line 2312, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    /* line 2315, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    /* line 2318, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    /* line 2321, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    /* line 2324, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    /* line 2327, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    /* line 2330, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    /* line 2333, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    /* line 2336, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    /* line 2339, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    /* line 2342, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    /* line 2345, bower_components/bootstrap/dist/css/bootstrap.css */
    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

/* line 2349, bower_components/bootstrap/dist/css/bootstrap.css */
table {
    background-color: transparent;
}

    /* line 2352, bower_components/bootstrap/dist/css/bootstrap.css */
    table col[class*="col-"] {
        position: static;
        display: table-column;
        float: none;
    }

    /* line 2357, bower_components/bootstrap/dist/css/bootstrap.css */
    table td[class*="col-"],
    table th[class*="col-"] {
        position: static;
        display: table-cell;
        float: none;
    }

/* line 2363, bower_components/bootstrap/dist/css/bootstrap.css */
caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777777;
    text-align: left;
}

/* line 2369, bower_components/bootstrap/dist/css/bootstrap.css */
th {
    text-align: left;
}

/* line 2372, bower_components/bootstrap/dist/css/bootstrap.css */
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

    /* line 2377, bower_components/bootstrap/dist/css/bootstrap.css */
    .table > thead > tr > th,
    .table > tbody > tr > th,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > tbody > tr > td,
    .table > tfoot > tr > td {
        padding: 8px;
        line-height: 1.42857143;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    /* line 2388, bower_components/bootstrap/dist/css/bootstrap.css */
    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    /* line 2392, bower_components/bootstrap/dist/css/bootstrap.css */
    .table > caption + thead > tr:first-child > th,
    .table > colgroup + thead > tr:first-child > th,
    .table > thead:first-child > tr:first-child > th,
    .table > caption + thead > tr:first-child > td,
    .table > colgroup + thead > tr:first-child > td,
    .table > thead:first-child > tr:first-child > td {
        border-top: 0;
    }

    /* line 2400, bower_components/bootstrap/dist/css/bootstrap.css */
    .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    /* line 2403, bower_components/bootstrap/dist/css/bootstrap.css */
    .table .table {
        background-color: #fff;
    }

/* line 2406, bower_components/bootstrap/dist/css/bootstrap.css */
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

/* line 2414, bower_components/bootstrap/dist/css/bootstrap.css */
.table-bordered {
    border: 1px solid #ddd;
}

    /* line 2417, bower_components/bootstrap/dist/css/bootstrap.css */
    .table-bordered > thead > tr > th,
    .table-bordered > tbody > tr > th,
    .table-bordered > tfoot > tr > th,
    .table-bordered > thead > tr > td,
    .table-bordered > tbody > tr > td,
    .table-bordered > tfoot > tr > td {
        border: 1px solid #ddd;
    }

    /* line 2425, bower_components/bootstrap/dist/css/bootstrap.css */
    .table-bordered > thead > tr > th,
    .table-bordered > thead > tr > td {
        border-bottom-width: 2px;
    }

/* line 2429, bower_components/bootstrap/dist/css/bootstrap.css */
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

/* line 2432, bower_components/bootstrap/dist/css/bootstrap.css */
.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

/* line 2435, bower_components/bootstrap/dist/css/bootstrap.css */
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

/* line 2449, bower_components/bootstrap/dist/css/bootstrap.css */
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

/* line 2456, bower_components/bootstrap/dist/css/bootstrap.css */
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

/* line 2470, bower_components/bootstrap/dist/css/bootstrap.css */
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

/* line 2477, bower_components/bootstrap/dist/css/bootstrap.css */
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

/* line 2491, bower_components/bootstrap/dist/css/bootstrap.css */
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

/* line 2498, bower_components/bootstrap/dist/css/bootstrap.css */
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

/* line 2512, bower_components/bootstrap/dist/css/bootstrap.css */
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

/* line 2519, bower_components/bootstrap/dist/css/bootstrap.css */
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

/* line 2533, bower_components/bootstrap/dist/css/bootstrap.css */
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

/* line 2540, bower_components/bootstrap/dist/css/bootstrap.css */
.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}

@media screen and (max-width: 767px) {
    /* line 2545, bower_components/bootstrap/dist/css/bootstrap.css */
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }
        /* line 2552, bower_components/bootstrap/dist/css/bootstrap.css */
        .table-responsive > .table {
            margin-bottom: 0;
        }
            /* line 2555, bower_components/bootstrap/dist/css/bootstrap.css */
            .table-responsive > .table > thead > tr > th,
            .table-responsive > .table > tbody > tr > th,
            .table-responsive > .table > tfoot > tr > th,
            .table-responsive > .table > thead > tr > td,
            .table-responsive > .table > tbody > tr > td,
            .table-responsive > .table > tfoot > tr > td {
                white-space: nowrap;
            }
        /* line 2563, bower_components/bootstrap/dist/css/bootstrap.css */
        .table-responsive > .table-bordered {
            border: 0;
        }
            /* line 2566, bower_components/bootstrap/dist/css/bootstrap.css */
            .table-responsive > .table-bordered > thead > tr > th:first-child,
            .table-responsive > .table-bordered > tbody > tr > th:first-child,
            .table-responsive > .table-bordered > tfoot > tr > th:first-child,
            .table-responsive > .table-bordered > thead > tr > td:first-child,
            .table-responsive > .table-bordered > tbody > tr > td:first-child,
            .table-responsive > .table-bordered > tfoot > tr > td:first-child {
                border-left: 0;
            }
            /* line 2574, bower_components/bootstrap/dist/css/bootstrap.css */
            .table-responsive > .table-bordered > thead > tr > th:last-child,
            .table-responsive > .table-bordered > tbody > tr > th:last-child,
            .table-responsive > .table-bordered > tfoot > tr > th:last-child,
            .table-responsive > .table-bordered > thead > tr > td:last-child,
            .table-responsive > .table-bordered > tbody > tr > td:last-child,
            .table-responsive > .table-bordered > tfoot > tr > td:last-child {
                border-right: 0;
            }
            /* line 2582, bower_components/bootstrap/dist/css/bootstrap.css */
            .table-responsive > .table-bordered > tbody > tr:last-child > th,
            .table-responsive > .table-bordered > tfoot > tr:last-child > th,
            .table-responsive > .table-bordered > tbody > tr:last-child > td,
            .table-responsive > .table-bordered > tfoot > tr:last-child > td {
                border-bottom: 0;
            }
}

/* line 2589, bower_components/bootstrap/dist/css/bootstrap.css */
fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

/* line 2595, bower_components/bootstrap/dist/css/bootstrap.css */
legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

/* line 2606, bower_components/bootstrap/dist/css/bootstrap.css */
label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

/* line 2612, bower_components/bootstrap/dist/css/bootstrap.css */
input[type="search"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* line 2620, bower_components/bootstrap/dist/css/bootstrap.css */
input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

    /* line 2626, bower_components/bootstrap/dist/css/bootstrap.css */
    input[type="radio"][disabled],
    input[type="checkbox"][disabled],
    input[type="radio"].disabled,
    input[type="checkbox"].disabled,
    fieldset[disabled] input[type="radio"],
    fieldset[disabled] input[type="checkbox"] {
        cursor: not-allowed;
    }

/* line 2634, bower_components/bootstrap/dist/css/bootstrap.css */
input[type="file"] {
    display: block;
}

/* line 2637, bower_components/bootstrap/dist/css/bootstrap.css */
input[type="range"] {
    display: block;
    width: 100%;
}

/* line 2641, bower_components/bootstrap/dist/css/bootstrap.css */
select[multiple],
select[size] {
    height: auto;
}

/* line 2645, bower_components/bootstrap/dist/css/bootstrap.css */
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

/* line 2651, bower_components/bootstrap/dist/css/bootstrap.css */
output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
}

/* line 2658, bower_components/bootstrap/dist/css/bootstrap.css */
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
}

    /* line 2679, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control:focus {
        border-color: #66afe9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
    }

    /* line 2685, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    /* line 2689, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control:-ms-input-placeholder {
        color: #999;
    }

    /* line 2692, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control::-webkit-input-placeholder {
        color: #999;
    }

    /* line 2695, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control::-ms-expand {
        background-color: transparent;
        border: 0;
    }

    /* line 2699, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control[disabled],
    .form-control[readonly],
    fieldset[disabled] .form-control {
        background-color: #eeeeee;
        opacity: 1;
    }

    /* line 2705, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control[disabled],
    fieldset[disabled] .form-control {
        cursor: not-allowed;
    }

/* line 2709, bower_components/bootstrap/dist/css/bootstrap.css */
textarea.form-control {
    height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    /* line 2713, bower_components/bootstrap/dist/css/bootstrap.css */
    input[type="date"].form-control,
    input[type="time"].form-control,
    input[type="datetime-local"].form-control,
    input[type="month"].form-control {
        line-height: 34px;
    }
    /* line 2719, bower_components/bootstrap/dist/css/bootstrap.css */
    input[type="date"].input-sm,
    input[type="time"].input-sm,
    input[type="datetime-local"].input-sm,
    input[type="month"].input-sm,
    .input-group-sm input[type="date"],
    .input-group-sm input[type="time"],
    .input-group-sm input[type="datetime-local"],
    .input-group-sm input[type="month"] {
        line-height: 30px;
    }
    /* line 2729, bower_components/bootstrap/dist/css/bootstrap.css */
    input[type="date"].input-lg,
    input[type="time"].input-lg,
    input[type="datetime-local"].input-lg,
    input[type="month"].input-lg,
    .input-group-lg input[type="date"],
    .input-group-lg input[type="time"],
    .input-group-lg input[type="datetime-local"],
    .input-group-lg input[type="month"] {
        line-height: 46px;
    }
}

/* line 2740, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group {
    margin-bottom: 15px;
}

/* line 2743, bower_components/bootstrap/dist/css/bootstrap.css */
.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

    /* line 2750, bower_components/bootstrap/dist/css/bootstrap.css */
    .radio.disabled label,
    .checkbox.disabled label,
    fieldset[disabled] .radio label,
    fieldset[disabled] .checkbox label {
        cursor: not-allowed;
    }

    /* line 2756, bower_components/bootstrap/dist/css/bootstrap.css */
    .radio label,
    .checkbox label {
        min-height: 20px;
        padding-left: 20px;
        margin-bottom: 0;
        font-weight: 400;
        cursor: pointer;
    }

    /* line 2764, bower_components/bootstrap/dist/css/bootstrap.css */
    .radio input[type="radio"],
    .radio-inline input[type="radio"],
    .checkbox input[type="checkbox"],
    .checkbox-inline input[type="checkbox"] {
        position: absolute;
        margin-top: 4px \9;
        margin-left: -20px;
    }

    /* line 2772, bower_components/bootstrap/dist/css/bootstrap.css */
    .radio + .radio,
    .checkbox + .checkbox {
        margin-top: -5px;
    }

/* line 2776, bower_components/bootstrap/dist/css/bootstrap.css */
.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}

    /* line 2786, bower_components/bootstrap/dist/css/bootstrap.css */
    .radio-inline.disabled,
    .checkbox-inline.disabled,
    fieldset[disabled] .radio-inline,
    fieldset[disabled] .checkbox-inline {
        cursor: not-allowed;
    }

    /* line 2792, bower_components/bootstrap/dist/css/bootstrap.css */
    .radio-inline + .radio-inline,
    .checkbox-inline + .checkbox-inline {
        margin-top: 0;
        margin-left: 10px;
    }

/* line 2797, bower_components/bootstrap/dist/css/bootstrap.css */
.form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
}

    /* line 2803, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-control-static.input-lg,
    .form-control-static.input-sm {
        padding-right: 0;
        padding-left: 0;
    }

/* line 2808, bower_components/bootstrap/dist/css/bootstrap.css */
.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

/* line 2815, bower_components/bootstrap/dist/css/bootstrap.css */
select.input-sm {
    height: 30px;
    line-height: 30px;
}

/* line 2819, bower_components/bootstrap/dist/css/bootstrap.css */
textarea.input-sm,
select[multiple].input-sm {
    height: auto;
}

/* line 2823, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

/* line 2830, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}

/* line 2834, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}

/* line 2838, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}

/* line 2845, bower_components/bootstrap/dist/css/bootstrap.css */
.input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

/* line 2852, bower_components/bootstrap/dist/css/bootstrap.css */
select.input-lg {
    height: 46px;
    line-height: 46px;
}

/* line 2856, bower_components/bootstrap/dist/css/bootstrap.css */
textarea.input-lg,
select[multiple].input-lg {
    height: auto;
}

/* line 2860, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

/* line 2867, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px;
}

/* line 2871, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}

/* line 2875, bower_components/bootstrap/dist/css/bootstrap.css */
.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

/* line 2882, bower_components/bootstrap/dist/css/bootstrap.css */
.has-feedback {
    position: relative;
}

    /* line 2885, bower_components/bootstrap/dist/css/bootstrap.css */
    .has-feedback .form-control {
        padding-right: 42.5px;
    }

/* line 2888, bower_components/bootstrap/dist/css/bootstrap.css */
.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none;
}

/* line 2900, bower_components/bootstrap/dist/css/bootstrap.css */
.input-lg + .form-control-feedback,
.input-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

/* line 2907, bower_components/bootstrap/dist/css/bootstrap.css */
.input-sm + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

/* line 2914, bower_components/bootstrap/dist/css/bootstrap.css */
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #3c763d;
}

/* line 2926, bower_components/bootstrap/dist/css/bootstrap.css */
.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    /* line 2931, bower_components/bootstrap/dist/css/bootstrap.css */
    .has-success .form-control:focus {
        border-color: #2b542c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
    }

/* line 2936, bower_components/bootstrap/dist/css/bootstrap.css */
.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d;
}

/* line 2941, bower_components/bootstrap/dist/css/bootstrap.css */
.has-success .form-control-feedback {
    color: #3c763d;
}

/* line 2944, bower_components/bootstrap/dist/css/bootstrap.css */
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #8a6d3b;
}

/* line 2956, bower_components/bootstrap/dist/css/bootstrap.css */
.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    /* line 2961, bower_components/bootstrap/dist/css/bootstrap.css */
    .has-warning .form-control:focus {
        border-color: #66512c;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
    }

/* line 2966, bower_components/bootstrap/dist/css/bootstrap.css */
.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b;
}

/* line 2971, bower_components/bootstrap/dist/css/bootstrap.css */
.has-warning .form-control-feedback {
    color: #8a6d3b;
}

/* line 2974, bower_components/bootstrap/dist/css/bootstrap.css */
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #a94442;
}

/* line 2986, bower_components/bootstrap/dist/css/bootstrap.css */
.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

    /* line 2991, bower_components/bootstrap/dist/css/bootstrap.css */
    .has-error .form-control:focus {
        border-color: #843534;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
    }

/* line 2996, bower_components/bootstrap/dist/css/bootstrap.css */
.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442;
}

/* line 3001, bower_components/bootstrap/dist/css/bootstrap.css */
.has-error .form-control-feedback {
    color: #a94442;
}

/* line 3004, bower_components/bootstrap/dist/css/bootstrap.css */
.has-feedback label ~ .form-control-feedback {
    top: 25px;
}

/* line 3007, bower_components/bootstrap/dist/css/bootstrap.css */
.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

/* line 3010, bower_components/bootstrap/dist/css/bootstrap.css */
.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

@media (min-width: 768px) {
    /* line 3017, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    /* line 3022, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    /* line 3027, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-inline .form-control-static {
        display: inline-block;
    }
    /* line 3030, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }
        /* line 3034, bower_components/bootstrap/dist/css/bootstrap.css */
        .form-inline .input-group .input-group-addon,
        .form-inline .input-group .input-group-btn,
        .form-inline .input-group .form-control {
            width: auto;
        }
        /* line 3039, bower_components/bootstrap/dist/css/bootstrap.css */
        .form-inline .input-group > .form-control {
            width: 100%;
        }
    /* line 3042, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }
    /* line 3046, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }
        /* line 3053, bower_components/bootstrap/dist/css/bootstrap.css */
        .form-inline .radio label,
        .form-inline .checkbox label {
            padding-left: 0;
        }
        /* line 3057, bower_components/bootstrap/dist/css/bootstrap.css */
        .form-inline .radio input[type="radio"],
        .form-inline .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0;
        }
    /* line 3062, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

/* line 3066, bower_components/bootstrap/dist/css/bootstrap.css */
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0;
}

/* line 3074, bower_components/bootstrap/dist/css/bootstrap.css */
.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

/* line 3078, bower_components/bootstrap/dist/css/bootstrap.css */
.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    /* line 3083, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right;
    }
}

/* line 3089, bower_components/bootstrap/dist/css/bootstrap.css */
.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width: 768px) {
    /* line 3093, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    /* line 3099, bower_components/bootstrap/dist/css/bootstrap.css */
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}

/* line 3104, bower_components/bootstrap/dist/css/bootstrap.css */
.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* line 3125, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn:focus,
    .btn:active:focus,
    .btn.active:focus,
    .btn.focus,
    .btn:active.focus,
    .btn.active.focus {
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px;
    }

    /* line 3134, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn:hover,
    .btn:focus,
    .btn.focus {
        color: #333;
        text-decoration: none;
    }

    /* line 3140, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn:active,
    .btn.active {
        background-image: none;
        outline: 0;
        -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
        box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    }

    /* line 3147, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn.disabled,
    .btn[disabled],
    fieldset[disabled] .btn {
        cursor: not-allowed;
        filter: alpha(opacity=65);
        opacity: 0.65;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

/* line 3156, bower_components/bootstrap/dist/css/bootstrap.css */
a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none;
}

/* line 3160, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

    /* line 3165, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-default:focus,
    .btn-default.focus {
        color: #333;
        background-color: #e6e6e6;
        border-color: #8c8c8c;
    }

    /* line 3171, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-default:hover {
        color: #333;
        background-color: #e6e6e6;
        border-color: #adadad;
    }

    /* line 3176, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-default:active,
    .btn-default.active,
    .open > .dropdown-toggle.btn-default {
        color: #333;
        background-color: #e6e6e6;
        background-image: none;
        border-color: #adadad;
    }

        /* line 3184, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-default:active:hover,
        .btn-default.active:hover,
        .open > .dropdown-toggle.btn-default:hover,
        .btn-default:active:focus,
        .btn-default.active:focus,
        .open > .dropdown-toggle.btn-default:focus,
        .btn-default:active.focus,
        .btn-default.active.focus,
        .open > .dropdown-toggle.btn-default.focus {
            color: #333;
            background-color: #d4d4d4;
            border-color: #8c8c8c;
        }

    /* line 3197, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-default.disabled:hover,
    .btn-default[disabled]:hover,
    fieldset[disabled] .btn-default:hover,
    .btn-default.disabled:focus,
    .btn-default[disabled]:focus,
    fieldset[disabled] .btn-default:focus,
    .btn-default.disabled.focus,
    .btn-default[disabled].focus,
    fieldset[disabled] .btn-default.focus {
        background-color: #fff;
        border-color: #ccc;
    }

    /* line 3209, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-default .badge {
        color: #fff;
        background-color: #333;
    }

/* line 3213, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

    /* line 3218, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-primary:focus,
    .btn-primary.focus {
        color: #fff;
        background-color: #286090;
        border-color: #122b40;
    }

    /* line 3224, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-primary:hover {
        color: #fff;
        background-color: #286090;
        border-color: #204d74;
    }

    /* line 3229, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-primary:active,
    .btn-primary.active,
    .open > .dropdown-toggle.btn-primary {
        color: #fff;
        background-color: #286090;
        background-image: none;
        border-color: #204d74;
    }

        /* line 3237, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-primary:active:hover,
        .btn-primary.active:hover,
        .open > .dropdown-toggle.btn-primary:hover,
        .btn-primary:active:focus,
        .btn-primary.active:focus,
        .open > .dropdown-toggle.btn-primary:focus,
        .btn-primary:active.focus,
        .btn-primary.active.focus,
        .open > .dropdown-toggle.btn-primary.focus {
            color: #fff;
            background-color: #204d74;
            border-color: #122b40;
        }

    /* line 3250, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-primary.disabled:hover,
    .btn-primary[disabled]:hover,
    fieldset[disabled] .btn-primary:hover,
    .btn-primary.disabled:focus,
    .btn-primary[disabled]:focus,
    fieldset[disabled] .btn-primary:focus,
    .btn-primary.disabled.focus,
    .btn-primary[disabled].focus,
    fieldset[disabled] .btn-primary.focus {
        background-color: #337ab7;
        border-color: #2e6da4;
    }

    /* line 3262, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-primary .badge {
        color: #337ab7;
        background-color: #fff;
    }

/* line 3266, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

    /* line 3271, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-success:focus,
    .btn-success.focus {
        color: #fff;
        background-color: #449d44;
        border-color: #255625;
    }

    /* line 3277, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-success:hover {
        color: #fff;
        background-color: #449d44;
        border-color: #398439;
    }

    /* line 3282, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-success:active,
    .btn-success.active,
    .open > .dropdown-toggle.btn-success {
        color: #fff;
        background-color: #449d44;
        background-image: none;
        border-color: #398439;
    }

        /* line 3290, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-success:active:hover,
        .btn-success.active:hover,
        .open > .dropdown-toggle.btn-success:hover,
        .btn-success:active:focus,
        .btn-success.active:focus,
        .open > .dropdown-toggle.btn-success:focus,
        .btn-success:active.focus,
        .btn-success.active.focus,
        .open > .dropdown-toggle.btn-success.focus {
            color: #fff;
            background-color: #398439;
            border-color: #255625;
        }

    /* line 3303, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-success.disabled:hover,
    .btn-success[disabled]:hover,
    fieldset[disabled] .btn-success:hover,
    .btn-success.disabled:focus,
    .btn-success[disabled]:focus,
    fieldset[disabled] .btn-success:focus,
    .btn-success.disabled.focus,
    .btn-success[disabled].focus,
    fieldset[disabled] .btn-success.focus {
        background-color: #5cb85c;
        border-color: #4cae4c;
    }

    /* line 3315, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-success .badge {
        color: #5cb85c;
        background-color: #fff;
    }

/* line 3319, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

    /* line 3324, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-info:focus,
    .btn-info.focus {
        color: #fff;
        background-color: #31b0d5;
        border-color: #1b6d85;
    }

    /* line 3330, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-info:hover {
        color: #fff;
        background-color: #31b0d5;
        border-color: #269abc;
    }

    /* line 3335, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-info:active,
    .btn-info.active,
    .open > .dropdown-toggle.btn-info {
        color: #fff;
        background-color: #31b0d5;
        background-image: none;
        border-color: #269abc;
    }

        /* line 3343, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-info:active:hover,
        .btn-info.active:hover,
        .open > .dropdown-toggle.btn-info:hover,
        .btn-info:active:focus,
        .btn-info.active:focus,
        .open > .dropdown-toggle.btn-info:focus,
        .btn-info:active.focus,
        .btn-info.active.focus,
        .open > .dropdown-toggle.btn-info.focus {
            color: #fff;
            background-color: #269abc;
            border-color: #1b6d85;
        }

    /* line 3356, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-info.disabled:hover,
    .btn-info[disabled]:hover,
    fieldset[disabled] .btn-info:hover,
    .btn-info.disabled:focus,
    .btn-info[disabled]:focus,
    fieldset[disabled] .btn-info:focus,
    .btn-info.disabled.focus,
    .btn-info[disabled].focus,
    fieldset[disabled] .btn-info.focus {
        background-color: #5bc0de;
        border-color: #46b8da;
    }

    /* line 3368, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-info .badge {
        color: #5bc0de;
        background-color: #fff;
    }

/* line 3372, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

    /* line 3377, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-warning:focus,
    .btn-warning.focus {
        color: #fff;
        background-color: #ec971f;
        border-color: #985f0d;
    }

    /* line 3383, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-warning:hover {
        color: #fff;
        background-color: #ec971f;
        border-color: #d58512;
    }

    /* line 3388, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-warning:active,
    .btn-warning.active,
    .open > .dropdown-toggle.btn-warning {
        color: #fff;
        background-color: #ec971f;
        background-image: none;
        border-color: #d58512;
    }

        /* line 3396, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-warning:active:hover,
        .btn-warning.active:hover,
        .open > .dropdown-toggle.btn-warning:hover,
        .btn-warning:active:focus,
        .btn-warning.active:focus,
        .open > .dropdown-toggle.btn-warning:focus,
        .btn-warning:active.focus,
        .btn-warning.active.focus,
        .open > .dropdown-toggle.btn-warning.focus {
            color: #fff;
            background-color: #d58512;
            border-color: #985f0d;
        }

    /* line 3409, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-warning.disabled:hover,
    .btn-warning[disabled]:hover,
    fieldset[disabled] .btn-warning:hover,
    .btn-warning.disabled:focus,
    .btn-warning[disabled]:focus,
    fieldset[disabled] .btn-warning:focus,
    .btn-warning.disabled.focus,
    .btn-warning[disabled].focus,
    fieldset[disabled] .btn-warning.focus {
        background-color: #f0ad4e;
        border-color: #eea236;
    }

    /* line 3421, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-warning .badge {
        color: #f0ad4e;
        background-color: #fff;
    }

/* line 3425, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

    /* line 3430, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-danger:focus,
    .btn-danger.focus {
        color: #fff;
        background-color: #c9302c;
        border-color: #761c19;
    }

    /* line 3436, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-danger:hover {
        color: #fff;
        background-color: #c9302c;
        border-color: #ac2925;
    }

    /* line 3441, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-danger:active,
    .btn-danger.active,
    .open > .dropdown-toggle.btn-danger {
        color: #fff;
        background-color: #c9302c;
        background-image: none;
        border-color: #ac2925;
    }

        /* line 3449, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-danger:active:hover,
        .btn-danger.active:hover,
        .open > .dropdown-toggle.btn-danger:hover,
        .btn-danger:active:focus,
        .btn-danger.active:focus,
        .open > .dropdown-toggle.btn-danger:focus,
        .btn-danger:active.focus,
        .btn-danger.active.focus,
        .open > .dropdown-toggle.btn-danger.focus {
            color: #fff;
            background-color: #ac2925;
            border-color: #761c19;
        }

    /* line 3462, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-danger.disabled:hover,
    .btn-danger[disabled]:hover,
    fieldset[disabled] .btn-danger:hover,
    .btn-danger.disabled:focus,
    .btn-danger[disabled]:focus,
    fieldset[disabled] .btn-danger:focus,
    .btn-danger.disabled.focus,
    .btn-danger[disabled].focus,
    fieldset[disabled] .btn-danger.focus {
        background-color: #d9534f;
        border-color: #d43f3a;
    }

    /* line 3474, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-danger .badge {
        color: #d9534f;
        background-color: #fff;
    }

/* line 3478, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0;
}

    /* line 3483, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-link,
    .btn-link:active,
    .btn-link.active,
    .btn-link[disabled],
    fieldset[disabled] .btn-link {
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        /* line 3492, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-link,
        .btn-link:hover,
        .btn-link:focus,
        .btn-link:active {
            border-color: transparent;
        }

            /* line 3498, bower_components/bootstrap/dist/css/bootstrap.css */
            .btn-link:hover,
            .btn-link:focus {
                color: #23527c;
                text-decoration: underline;
                background-color: transparent;
            }

            /* line 3504, bower_components/bootstrap/dist/css/bootstrap.css */
            .btn-link[disabled]:hover,
            fieldset[disabled] .btn-link:hover,
            .btn-link[disabled]:focus,
            fieldset[disabled] .btn-link:focus {
                color: #777777;
                text-decoration: none;
            }

/* line 3511, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

/* line 3518, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

/* line 3525, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-xs,
.btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

/* line 3532, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-block {
    display: block;
    width: 100%;
}

    /* line 3536, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-block + .btn-block {
        margin-top: 5px;
    }

/* line 3539, bower_components/bootstrap/dist/css/bootstrap.css */
input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

/* line 3544, bower_components/bootstrap/dist/css/bootstrap.css */
.fade {
    opacity: 0;
    -webkit-transition: opacity 0.15s linear;
    transition: opacity 0.15s linear;
}

    /* line 3550, bower_components/bootstrap/dist/css/bootstrap.css */
    .fade.in {
        opacity: 1;
    }

/* line 3553, bower_components/bootstrap/dist/css/bootstrap.css */
.collapse {
    display: none;
}

    /* line 3556, bower_components/bootstrap/dist/css/bootstrap.css */
    .collapse.in {
        display: block;
    }

/* line 3559, bower_components/bootstrap/dist/css/bootstrap.css */
tr.collapse.in {
    display: table-row;
}

/* line 3562, bower_components/bootstrap/dist/css/bootstrap.css */
tbody.collapse.in {
    display: table-row-group;
}

/* line 3565, bower_components/bootstrap/dist/css/bootstrap.css */
.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
}

/* line 3579, bower_components/bootstrap/dist/css/bootstrap.css */
.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;
}

/* line 3590, bower_components/bootstrap/dist/css/bootstrap.css */
.dropup,
.dropdown {
    position: relative;
}

/* line 3594, bower_components/bootstrap/dist/css/bootstrap.css */
.dropdown-toggle:focus {
    outline: 0;
}

/* line 3597, bower_components/bootstrap/dist/css/bootstrap.css */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

    /* line 3618, bower_components/bootstrap/dist/css/bootstrap.css */
    .dropdown-menu.pull-right {
        right: 0;
        left: auto;
    }

    /* line 3622, bower_components/bootstrap/dist/css/bootstrap.css */
    .dropdown-menu .divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    /* line 3628, bower_components/bootstrap/dist/css/bootstrap.css */
    .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        clear: both;
        font-weight: 400;
        line-height: 1.42857143;
        color: #333333;
        white-space: nowrap;
    }

        /* line 3637, bower_components/bootstrap/dist/css/bootstrap.css */
        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > a:focus {
            color: #262626;
            text-decoration: none;
            background-color: #f5f5f5;
        }

    /* line 3643, bower_components/bootstrap/dist/css/bootstrap.css */
    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
        color: #fff;
        text-decoration: none;
        background-color: #337ab7;
        outline: 0;
    }

    /* line 3651, bower_components/bootstrap/dist/css/bootstrap.css */
    .dropdown-menu > .disabled > a,
    .dropdown-menu > .disabled > a:hover,
    .dropdown-menu > .disabled > a:focus {
        color: #777777;
    }

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

/* line 3664, bower_components/bootstrap/dist/css/bootstrap.css */
.open > .dropdown-menu {
    display: block;
}

/* line 3667, bower_components/bootstrap/dist/css/bootstrap.css */
.open > a {
    outline: 0;
}

/* line 3670, bower_components/bootstrap/dist/css/bootstrap.css */
.dropdown-menu-right {
    right: 0;
    left: auto;
}

/* line 3674, bower_components/bootstrap/dist/css/bootstrap.css */
.dropdown-menu-left {
    right: auto;
    left: 0;
}

/* line 3678, bower_components/bootstrap/dist/css/bootstrap.css */
.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777777;
    white-space: nowrap;
}

/* line 3686, bower_components/bootstrap/dist/css/bootstrap.css */
.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
}

/* line 3694, bower_components/bootstrap/dist/css/bootstrap.css */
.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

/* line 3698, bower_components/bootstrap/dist/css/bootstrap.css */
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
}

/* line 3705, bower_components/bootstrap/dist/css/bootstrap.css */
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    /* line 3712, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }
    /* line 3716, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0;
    }
}

/* line 3721, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    /* line 3727, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group > .btn,
    .btn-group-vertical > .btn {
        position: relative;
        float: left;
    }

        /* line 3732, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-group > .btn:hover,
        .btn-group-vertical > .btn:hover,
        .btn-group > .btn:focus,
        .btn-group-vertical > .btn:focus,
        .btn-group > .btn:active,
        .btn-group-vertical > .btn:active,
        .btn-group > .btn.active,
        .btn-group-vertical > .btn.active {
            z-index: 2;
        }

    /* line 3742, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group .btn + .btn,
    .btn-group .btn + .btn-group,
    .btn-group .btn-group + .btn,
    .btn-group .btn-group + .btn-group {
        margin-left: -1px;
    }

/* line 3748, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-toolbar {
    margin-left: -5px;
}

    /* line 3751, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-toolbar .btn,
    .btn-toolbar .btn-group,
    .btn-toolbar .input-group {
        float: left;
    }

    /* line 3756, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-toolbar > .btn,
    .btn-toolbar > .btn-group,
    .btn-toolbar > .input-group {
        margin-left: 5px;
    }

/* line 3761, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

/* line 3764, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group > .btn:first-child {
    margin-left: 0;
}

    /* line 3767, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

/* line 3771, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* line 3776, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group > .btn-group {
    float: left;
}

    /* line 3779, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    /* line 3782, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
    .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    /* line 3787, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

/* line 3791, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
    outline: 0;
}

/* line 3795, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group > .btn + .dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px;
}

/* line 3799, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group > .btn-lg + .dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px;
}

/* line 3803, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

    /* line 3807, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group.open .dropdown-toggle.btn-link {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

/* line 3811, bower_components/bootstrap/dist/css/bootstrap.css */
.btn .caret {
    margin-left: 0;
}

/* line 3814, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0;
}

/* line 3818, bower_components/bootstrap/dist/css/bootstrap.css */
.dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

/* line 3821, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

    /* line 3829, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group-vertical > .btn-group > .btn {
        float: none;
    }

    /* line 3832, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }

    /* line 3839, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    /* line 3842, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    /* line 3848, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    /* line 3854, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
        border-radius: 0;
    }

    /* line 3857, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }

    /* line 3862, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

/* line 3866, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

    /* line 3872, bower_components/bootstrap/dist/css/bootstrap.css */
    .btn-group-justified > .btn,
    .btn-group-justified > .btn-group {
        display: table-cell;
        float: none;
        width: 1%;
    }

        /* line 3878, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-group-justified > .btn-group .btn {
            width: 100%;
        }

        /* line 3881, bower_components/bootstrap/dist/css/bootstrap.css */
        .btn-group-justified > .btn-group .dropdown-menu {
            left: auto;
        }

/* line 3884, bower_components/bootstrap/dist/css/bootstrap.css */
[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

/* line 3892, bower_components/bootstrap/dist/css/bootstrap.css */
.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

    /* line 3897, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group[class*="col-"] {
        float: none;
        padding-right: 0;
        padding-left: 0;
    }

    /* line 3902, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

        /* line 3909, bower_components/bootstrap/dist/css/bootstrap.css */
        .input-group .form-control:focus {
            z-index: 3;
        }

/* line 3912, bower_components/bootstrap/dist/css/bootstrap.css */
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

/* line 3921, bower_components/bootstrap/dist/css/bootstrap.css */
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px;
}

/* line 3927, bower_components/bootstrap/dist/css/bootstrap.css */
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
    height: auto;
}

/* line 3935, bower_components/bootstrap/dist/css/bootstrap.css */
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

/* line 3944, bower_components/bootstrap/dist/css/bootstrap.css */
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px;
}

/* line 3950, bower_components/bootstrap/dist/css/bootstrap.css */
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
    height: auto;
}

/* line 3958, bower_components/bootstrap/dist/css/bootstrap.css */
.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

    /* line 3963, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-addon:not(:first-child):not(:last-child),
    .input-group-btn:not(:first-child):not(:last-child),
    .input-group .form-control:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

/* line 3968, bower_components/bootstrap/dist/css/bootstrap.css */
.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

/* line 3974, bower_components/bootstrap/dist/css/bootstrap.css */
.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555555;
    text-align: center;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

    /* line 3985, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-addon.input-sm {
        padding: 5px 10px;
        font-size: 12px;
        border-radius: 3px;
    }

    /* line 3990, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-addon.input-lg {
        padding: 10px 16px;
        font-size: 18px;
        border-radius: 6px;
    }

    /* line 3995, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-addon input[type="radio"],
    .input-group-addon input[type="checkbox"] {
        margin-top: 0;
    }

    /* line 3999, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group .form-control:first-child,
    .input-group-addon:first-child,
    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group > .btn,
    .input-group-btn:first-child > .dropdown-toggle,
    .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
    .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    /* line 4009, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-addon:first-child {
        border-right: 0;
    }

    /* line 4012, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group .form-control:last-child,
    .input-group-addon:last-child,
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group > .btn,
    .input-group-btn:last-child > .dropdown-toggle,
    .input-group-btn:first-child > .btn:not(:first-child),
    .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    /* line 4022, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-addon:last-child {
        border-left: 0;
    }

/* line 4025, bower_components/bootstrap/dist/css/bootstrap.css */
.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

    /* line 4030, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-btn > .btn {
        position: relative;
    }

        /* line 4033, bower_components/bootstrap/dist/css/bootstrap.css */
        .input-group-btn > .btn + .btn {
            margin-left: -1px;
        }

        /* line 4036, bower_components/bootstrap/dist/css/bootstrap.css */
        .input-group-btn > .btn:hover,
        .input-group-btn > .btn:focus,
        .input-group-btn > .btn:active {
            z-index: 2;
        }

    /* line 4041, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-btn:first-child > .btn,
    .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }

    /* line 4045, bower_components/bootstrap/dist/css/bootstrap.css */
    .input-group-btn:last-child > .btn,
    .input-group-btn:last-child > .btn-group {
        z-index: 2;
        margin-left: -1px;
    }

/* line 4050, bower_components/bootstrap/dist/css/bootstrap.css */
.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    /* line 4055, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav > li {
        position: relative;
        display: block;
    }

        /* line 4059, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav > li > a {
            position: relative;
            display: block;
            padding: 10px 15px;
        }

            /* line 4064, bower_components/bootstrap/dist/css/bootstrap.css */
            .nav > li > a:hover,
            .nav > li > a:focus {
                text-decoration: none;
                background-color: #eeeeee;
            }

        /* line 4069, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav > li.disabled > a {
            color: #777777;
        }

            /* line 4072, bower_components/bootstrap/dist/css/bootstrap.css */
            .nav > li.disabled > a:hover,
            .nav > li.disabled > a:focus {
                color: #777777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent;
            }

    /* line 4079, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav .open > a,
    .nav .open > a:hover,
    .nav .open > a:focus {
        background-color: #eeeeee;
        border-color: #337ab7;
    }

    /* line 4085, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav .nav-divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5;
    }

    /* line 4091, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav > li > a > img {
        max-width: none;
    }

/* line 4094, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    /* line 4097, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        /* line 4101, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid transparent;
            border-radius: 4px 4px 0 0;
        }

            /* line 4107, bower_components/bootstrap/dist/css/bootstrap.css */
            .nav-tabs > li > a:hover {
                border-color: #eeeeee #eeeeee #ddd;
            }

        /* line 4110, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav-tabs > li.active > a,
        .nav-tabs > li.active > a:hover,
        .nav-tabs > li.active > a:focus {
            color: #555555;
            cursor: default;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent;
        }

    /* line 4119, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs.nav-justified {
        width: 100%;
        border-bottom: 0;
    }

        /* line 4123, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav-tabs.nav-justified > li {
            float: none;
        }

            /* line 4126, bower_components/bootstrap/dist/css/bootstrap.css */
            .nav-tabs.nav-justified > li > a {
                margin-bottom: 5px;
                text-align: center;
            }

        /* line 4130, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav-tabs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto;
        }

@media (min-width: 768px) {
    /* line 4135, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }
        /* line 4139, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }
}

/* line 4143, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

/* line 4147, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-tabs.nav-justified > .active > a,
.nav-tabs.nav-justified > .active > a:hover,
.nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd;
}

@media (min-width: 768px) {
    /* line 4153, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }
    /* line 4157, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs.nav-justified > .active > a,
    .nav-tabs.nav-justified > .active > a:hover,
    .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

/* line 4163, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-pills > li {
    float: left;
}

    /* line 4166, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-pills > li > a {
        border-radius: 4px;
    }

    /* line 4169, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-pills > li + li {
        margin-left: 2px;
    }

    /* line 4172, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-pills > li.active > a,
    .nav-pills > li.active > a:hover,
    .nav-pills > li.active > a:focus {
        color: #fff;
        background-color: #337ab7;
    }

/* line 4178, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-stacked > li {
    float: none;
}

    /* line 4181, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-stacked > li + li {
        margin-top: 2px;
        margin-left: 0;
    }

/* line 4185, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-justified {
    width: 100%;
}

    /* line 4188, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-justified > li {
        float: none;
    }

        /* line 4191, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav-justified > li > a {
            margin-bottom: 5px;
            text-align: center;
        }

    /* line 4195, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

@media (min-width: 768px) {
    /* line 4200, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-justified > li {
        display: table-cell;
        width: 1%;
    }
        /* line 4204, bower_components/bootstrap/dist/css/bootstrap.css */
        .nav-justified > li > a {
            margin-bottom: 0;
        }
}

/* line 4208, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-tabs-justified {
    border-bottom: 0;
}

    /* line 4211, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 4px;
    }

    /* line 4215, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border: 1px solid #ddd;
    }

@media (min-width: 768px) {
    /* line 4221, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }
    /* line 4225, bower_components/bootstrap/dist/css/bootstrap.css */
    .nav-tabs-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

/* line 4231, bower_components/bootstrap/dist/css/bootstrap.css */
.tab-content > .tab-pane {
    display: none;
}

/* line 4234, bower_components/bootstrap/dist/css/bootstrap.css */
.tab-content > .active {
    display: block;
}

/* line 4237, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* line 4242, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    /* line 4249, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar {
        border-radius: 4px;
    }
}

@media (min-width: 768px) {
    /* line 4254, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-header {
        float: left;
    }
}

/* line 4258, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

    /* line 4267, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-collapse.in {
        overflow-y: auto;
    }

@media (min-width: 768px) {
    /* line 4271, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
        /* line 4277, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-collapse.collapse {
            display: block !important;
            height: auto !important;
            padding-bottom: 0;
            overflow: visible !important;
        }
        /* line 4283, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-collapse.in {
            overflow-y: visible;
        }
    /* line 4286, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}

/* line 4293, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

    /* line 4300, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 340px;
    }

@media (max-device-width: 480px) and (orientation: landscape) {
    /* line 4305, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-fixed-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        max-height: 200px;
    }
}

@media (min-width: 768px) {
    /* line 4311, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}

/* line 4316, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

/* line 4320, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

/* line 4325, bower_components/bootstrap/dist/css/bootstrap.css */
.container > .navbar-header,
.container-fluid > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    /* line 4333, bower_components/bootstrap/dist/css/bootstrap.css */
    .container > .navbar-header,
    .container-fluid > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

/* line 4341, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width: 768px) {
    /* line 4346, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-static-top {
        border-radius: 0;
    }
}

/* line 4350, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

    /* line 4357, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-brand:hover,
    .navbar-brand:focus {
        text-decoration: none;
    }

    /* line 4361, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-brand > img {
        display: block;
    }

@media (min-width: 768px) {
    /* line 4365, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

/* line 4370, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

    /* line 4382, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-toggle:focus {
        outline: 0;
    }

    /* line 4385, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
    }

        /* line 4391, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-toggle .icon-bar + .icon-bar {
            margin-top: 4px;
        }

@media (min-width: 768px) {
    /* line 4395, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-toggle {
        display: none;
    }
}

/* line 4399, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-nav {
    margin: 7.5px -15px;
}

    /* line 4402, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
        line-height: 20px;
    }

@media (max-width: 767px) {
    /* line 4408, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
        /* line 4418, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-nav .open .dropdown-menu > li > a,
        .navbar-nav .open .dropdown-menu .dropdown-header {
            padding: 5px 15px 5px 25px;
        }
        /* line 4422, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-nav .open .dropdown-menu > li > a {
            line-height: 20px;
        }
            /* line 4425, bower_components/bootstrap/dist/css/bootstrap.css */
            .navbar-nav .open .dropdown-menu > li > a:hover,
            .navbar-nav .open .dropdown-menu > li > a:focus {
                background-image: none;
            }
}

@media (min-width: 768px) {
    /* line 4431, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-nav {
        float: left;
        margin: 0;
    }
        /* line 4435, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-nav > li {
            float: left;
        }
            /* line 4438, bower_components/bootstrap/dist/css/bootstrap.css */
            .navbar-nav > li > a {
                padding-top: 15px;
                padding-bottom: 15px;
            }
}

/* line 4443, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-form {
    padding: 10px 15px;
    margin-right: -15px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    /* line 4455, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }
    /* line 4460, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }
    /* line 4465, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .form-control-static {
        display: inline-block;
    }
    /* line 4468, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }
        /* line 4472, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-form .input-group .input-group-addon,
        .navbar-form .input-group .input-group-btn,
        .navbar-form .input-group .form-control {
            width: auto;
        }
        /* line 4477, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-form .input-group > .form-control {
            width: 100%;
        }
    /* line 4480, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }
    /* line 4484, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }
        /* line 4491, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-form .radio label,
        .navbar-form .checkbox label {
            padding-left: 0;
        }
        /* line 4495, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-form .radio input[type="radio"],
        .navbar-form .checkbox input[type="checkbox"] {
            position: relative;
            margin-left: 0;
        }
    /* line 4500, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width: 767px) {
    /* line 4505, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form .form-group {
        margin-bottom: 5px;
    }
        /* line 4508, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-form .form-group:last-child {
            margin-bottom: 0;
        }
}

@media (min-width: 768px) {
    /* line 4513, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

/* line 4524, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* line 4529, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

/* line 4536, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

    /* line 4540, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-btn.btn-sm {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    /* line 4544, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-btn.btn-xs {
        margin-top: 14px;
        margin-bottom: 14px;
    }

/* line 4548, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    /* line 4553, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }
}

@media (min-width: 768px) {
    /* line 4560, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-left {
        float: left !important;
    }
    /* line 4563, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }
        /* line 4567, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-right ~ .navbar-right {
            margin-right: 0;
        }
}

/* line 4571, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

    /* line 4575, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-brand {
        color: #777;
    }

        /* line 4578, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-default .navbar-brand:hover,
        .navbar-default .navbar-brand:focus {
            color: #5e5e5e;
            background-color: transparent;
        }

    /* line 4583, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-text {
        color: #777;
    }

    /* line 4586, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-nav > li > a {
        color: #777;
    }

        /* line 4589, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-default .navbar-nav > li > a:hover,
        .navbar-default .navbar-nav > li > a:focus {
            color: #333;
            background-color: transparent;
        }

    /* line 4594, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }

    /* line 4600, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }

    /* line 4606, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-nav > .open > a,
    .navbar-default .navbar-nav > .open > a:hover,
    .navbar-default .navbar-nav > .open > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

@media (max-width: 767px) {
    /* line 4613, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }
        /* line 4616, bower_components/bootstrap/dist/css/bootstrap.css */
        .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;
        }
    /* line 4621, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }
    /* line 4627, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }
}

/* line 4634, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-default .navbar-toggle {
    border-color: #ddd;
}

    /* line 4637, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-toggle:hover,
    .navbar-default .navbar-toggle:focus {
        background-color: #ddd;
    }

    /* line 4641, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-toggle .icon-bar {
        background-color: #888;
    }

/* line 4644, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}

/* line 4648, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-default .navbar-link {
    color: #777;
}

    /* line 4651, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .navbar-link:hover {
        color: #333;
    }

/* line 4654, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-default .btn-link {
    color: #777;
}

    /* line 4657, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .btn-link:hover,
    .navbar-default .btn-link:focus {
        color: #333;
    }

    /* line 4661, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-default .btn-link[disabled]:hover,
    fieldset[disabled] .navbar-default .btn-link:hover,
    .navbar-default .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-default .btn-link:focus {
        color: #ccc;
    }

/* line 4667, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-inverse {
    background-color: #222;
    border-color: #080808;
}

    /* line 4671, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-brand {
        color: #9d9d9d;
    }

        /* line 4674, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-inverse .navbar-brand:hover,
        .navbar-inverse .navbar-brand:focus {
            color: #fff;
            background-color: transparent;
        }

    /* line 4679, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-text {
        color: #9d9d9d;
    }

    /* line 4682, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-nav > li > a {
        color: #9d9d9d;
    }

        /* line 4685, bower_components/bootstrap/dist/css/bootstrap.css */
        .navbar-inverse .navbar-nav > li > a:hover,
        .navbar-inverse .navbar-nav > li > a:focus {
            color: #fff;
            background-color: transparent;
        }

    /* line 4690, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-nav > .active > a,
    .navbar-inverse .navbar-nav > .active > a:hover,
    .navbar-inverse .navbar-nav > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }

    /* line 4696, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }

    /* line 4702, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-nav > .open > a,
    .navbar-inverse .navbar-nav > .open > a:hover,
    .navbar-inverse .navbar-nav > .open > a:focus {
        color: #fff;
        background-color: #080808;
    }

@media (max-width: 767px) {
    /* line 4709, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808;
    }
    /* line 4712, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808;
    }
    /* line 4715, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d;
    }
        /* line 4718, bower_components/bootstrap/dist/css/bootstrap.css */
        .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;
        }
    /* line 4723, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #080808;
    }
    /* line 4729, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }
}

/* line 4736, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-inverse .navbar-toggle {
    border-color: #333;
}

    /* line 4739, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-toggle:hover,
    .navbar-inverse .navbar-toggle:focus {
        background-color: #333;
    }

    /* line 4743, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-toggle .icon-bar {
        background-color: #fff;
    }

/* line 4746, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}

/* line 4750, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-inverse .navbar-link {
    color: #9d9d9d;
}

    /* line 4753, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .navbar-link:hover {
        color: #fff;
    }

/* line 4756, bower_components/bootstrap/dist/css/bootstrap.css */
.navbar-inverse .btn-link {
    color: #9d9d9d;
}

    /* line 4759, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .btn-link:hover,
    .navbar-inverse .btn-link:focus {
        color: #fff;
    }

    /* line 4763, bower_components/bootstrap/dist/css/bootstrap.css */
    .navbar-inverse .btn-link[disabled]:hover,
    fieldset[disabled] .navbar-inverse .btn-link:hover,
    .navbar-inverse .btn-link[disabled]:focus,
    fieldset[disabled] .navbar-inverse .btn-link:focus {
        color: #444;
    }

/* line 4769, bower_components/bootstrap/dist/css/bootstrap.css */
.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

    /* line 4776, bower_components/bootstrap/dist/css/bootstrap.css */
    .breadcrumb > li {
        display: inline-block;
    }

        /* line 4779, bower_components/bootstrap/dist/css/bootstrap.css */
        .breadcrumb > li + li:before {
            padding: 0 5px;
            color: #ccc;
            content: "/\00a0";
        }

    /* line 4784, bower_components/bootstrap/dist/css/bootstrap.css */
    .breadcrumb > .active {
        color: #777777;
    }

/* line 4787, bower_components/bootstrap/dist/css/bootstrap.css */
.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

    /* line 4793, bower_components/bootstrap/dist/css/bootstrap.css */
    .pagination > li {
        display: inline;
    }

        /* line 4796, bower_components/bootstrap/dist/css/bootstrap.css */
        .pagination > li > a,
        .pagination > li > span {
            position: relative;
            float: left;
            padding: 6px 12px;
            margin-left: -1px;
            line-height: 1.42857143;
            color: #337ab7;
            text-decoration: none;
            background-color: #fff;
            border: 1px solid #ddd;
        }

            /* line 4808, bower_components/bootstrap/dist/css/bootstrap.css */
            .pagination > li > a:hover,
            .pagination > li > span:hover,
            .pagination > li > a:focus,
            .pagination > li > span:focus {
                z-index: 2;
                color: #23527c;
                background-color: #eeeeee;
                border-color: #ddd;
            }

        /* line 4817, bower_components/bootstrap/dist/css/bootstrap.css */
        .pagination > li:first-child > a,
        .pagination > li:first-child > span {
            margin-left: 0;
            border-top-left-radius: 4px;
            border-bottom-left-radius: 4px;
        }

        /* line 4823, bower_components/bootstrap/dist/css/bootstrap.css */
        .pagination > li:last-child > a,
        .pagination > li:last-child > span {
            border-top-right-radius: 4px;
            border-bottom-right-radius: 4px;
        }

    /* line 4828, bower_components/bootstrap/dist/css/bootstrap.css */
    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        z-index: 3;
        color: #fff;
        cursor: default;
        background-color: #337ab7;
        border-color: #337ab7;
    }

    /* line 4840, bower_components/bootstrap/dist/css/bootstrap.css */
    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #777777;
        cursor: not-allowed;
        background-color: #fff;
        border-color: #ddd;
    }

/* line 4851, bower_components/bootstrap/dist/css/bootstrap.css */
.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

/* line 4857, bower_components/bootstrap/dist/css/bootstrap.css */
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

/* line 4862, bower_components/bootstrap/dist/css/bootstrap.css */
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

/* line 4867, bower_components/bootstrap/dist/css/bootstrap.css */
.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

/* line 4873, bower_components/bootstrap/dist/css/bootstrap.css */
.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

/* line 4878, bower_components/bootstrap/dist/css/bootstrap.css */
.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

/* line 4883, bower_components/bootstrap/dist/css/bootstrap.css */
.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

    /* line 4889, bower_components/bootstrap/dist/css/bootstrap.css */
    .pager li {
        display: inline;
    }

        /* line 4892, bower_components/bootstrap/dist/css/bootstrap.css */
        .pager li > a,
        .pager li > span {
            display: inline-block;
            padding: 5px 14px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 15px;
        }

            /* line 4900, bower_components/bootstrap/dist/css/bootstrap.css */
            .pager li > a:hover,
            .pager li > a:focus {
                text-decoration: none;
                background-color: #eeeeee;
            }

    /* line 4905, bower_components/bootstrap/dist/css/bootstrap.css */
    .pager .next > a,
    .pager .next > span {
        float: right;
    }

    /* line 4909, bower_components/bootstrap/dist/css/bootstrap.css */
    .pager .previous > a,
    .pager .previous > span {
        float: left;
    }

    /* line 4913, bower_components/bootstrap/dist/css/bootstrap.css */
    .pager .disabled > a,
    .pager .disabled > a:hover,
    .pager .disabled > a:focus,
    .pager .disabled > span {
        color: #777777;
        cursor: not-allowed;
        background-color: #fff;
    }

/* line 4921, bower_components/bootstrap/dist/css/bootstrap.css */
.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}

/* line 4933, bower_components/bootstrap/dist/css/bootstrap.css */
a.label:hover,
a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* line 4939, bower_components/bootstrap/dist/css/bootstrap.css */
.label:empty {
    display: none;
}

/* line 4942, bower_components/bootstrap/dist/css/bootstrap.css */
.btn .label {
    position: relative;
    top: -1px;
}

/* line 4946, bower_components/bootstrap/dist/css/bootstrap.css */
.label-default {
    background-color: #777777;
}

    /* line 4949, bower_components/bootstrap/dist/css/bootstrap.css */
    .label-default[href]:hover,
    .label-default[href]:focus {
        background-color: #5e5e5e;
    }

/* line 4953, bower_components/bootstrap/dist/css/bootstrap.css */
.label-primary {
    background-color: #337ab7;
}

    /* line 4956, bower_components/bootstrap/dist/css/bootstrap.css */
    .label-primary[href]:hover,
    .label-primary[href]:focus {
        background-color: #286090;
    }

/* line 4960, bower_components/bootstrap/dist/css/bootstrap.css */
.label-success {
    background-color: #5cb85c;
}

    /* line 4963, bower_components/bootstrap/dist/css/bootstrap.css */
    .label-success[href]:hover,
    .label-success[href]:focus {
        background-color: #449d44;
    }

/* line 4967, bower_components/bootstrap/dist/css/bootstrap.css */
.label-info {
    background-color: #5bc0de;
}

    /* line 4970, bower_components/bootstrap/dist/css/bootstrap.css */
    .label-info[href]:hover,
    .label-info[href]:focus {
        background-color: #31b0d5;
    }

/* line 4974, bower_components/bootstrap/dist/css/bootstrap.css */
.label-warning {
    background-color: #f0ad4e;
}

    /* line 4977, bower_components/bootstrap/dist/css/bootstrap.css */
    .label-warning[href]:hover,
    .label-warning[href]:focus {
        background-color: #ec971f;
    }

/* line 4981, bower_components/bootstrap/dist/css/bootstrap.css */
.label-danger {
    background-color: #d9534f;
}

    /* line 4984, bower_components/bootstrap/dist/css/bootstrap.css */
    .label-danger[href]:hover,
    .label-danger[href]:focus {
        background-color: #c9302c;
    }

/* line 4988, bower_components/bootstrap/dist/css/bootstrap.css */
.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777777;
    border-radius: 10px;
}

    /* line 5002, bower_components/bootstrap/dist/css/bootstrap.css */
    .badge:empty {
        display: none;
    }

/* line 5005, bower_components/bootstrap/dist/css/bootstrap.css */
.btn .badge {
    position: relative;
    top: -1px;
}

/* line 5009, bower_components/bootstrap/dist/css/bootstrap.css */
.btn-xs .badge,
.btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px;
}

/* line 5014, bower_components/bootstrap/dist/css/bootstrap.css */
a.badge:hover,
a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* line 5020, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff;
}

/* line 5025, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item > .badge {
    float: right;
}

    /* line 5028, bower_components/bootstrap/dist/css/bootstrap.css */
    .list-group-item > .badge + .badge {
        margin-right: 5px;
    }

/* line 5031, bower_components/bootstrap/dist/css/bootstrap.css */
.nav-pills > li > a > .badge {
    margin-left: 3px;
}

/* line 5034, bower_components/bootstrap/dist/css/bootstrap.css */
.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eeeeee;
}

    /* line 5041, bower_components/bootstrap/dist/css/bootstrap.css */
    .jumbotron h1,
    .jumbotron .h1 {
        color: inherit;
    }

    /* line 5045, bower_components/bootstrap/dist/css/bootstrap.css */
    .jumbotron p {
        margin-bottom: 15px;
        font-size: 21px;
        font-weight: 200;
    }

    /* line 5050, bower_components/bootstrap/dist/css/bootstrap.css */
    .jumbotron > hr {
        border-top-color: #d5d5d5;
    }

/* line 5053, bower_components/bootstrap/dist/css/bootstrap.css */
.container .jumbotron,
.container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px;
}

/* line 5059, bower_components/bootstrap/dist/css/bootstrap.css */
.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    /* line 5063, bower_components/bootstrap/dist/css/bootstrap.css */
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }
    /* line 5067, bower_components/bootstrap/dist/css/bootstrap.css */
    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px;
    }
    /* line 5072, bower_components/bootstrap/dist/css/bootstrap.css */
    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px;
    }
}

/* line 5077, bower_components/bootstrap/dist/css/bootstrap.css */
.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border 0.2s ease-in-out;
    transition: border 0.2s ease-in-out;
}

    /* line 5089, bower_components/bootstrap/dist/css/bootstrap.css */
    .thumbnail > img,
    .thumbnail a > img {
        margin-right: auto;
        margin-left: auto;
    }

/* line 5094, bower_components/bootstrap/dist/css/bootstrap.css */
a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #337ab7;
}

/* line 5099, bower_components/bootstrap/dist/css/bootstrap.css */
.thumbnail .caption {
    padding: 9px;
    color: #333333;
}

/* line 5103, bower_components/bootstrap/dist/css/bootstrap.css */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

    /* line 5109, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    /* line 5113, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert .alert-link {
        font-weight: bold;
    }

    /* line 5116, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert > p,
    .alert > ul {
        margin-bottom: 0;
    }

        /* line 5120, bower_components/bootstrap/dist/css/bootstrap.css */
        .alert > p + p {
            margin-top: 5px;
        }

/* line 5123, bower_components/bootstrap/dist/css/bootstrap.css */
.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

    /* line 5127, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-dismissable .close,
    .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

/* line 5134, bower_components/bootstrap/dist/css/bootstrap.css */
.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

    /* line 5139, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    /* line 5142, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-success .alert-link {
        color: #2b542c;
    }

/* line 5145, bower_components/bootstrap/dist/css/bootstrap.css */
.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

    /* line 5150, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    /* line 5153, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-info .alert-link {
        color: #245269;
    }

/* line 5156, bower_components/bootstrap/dist/css/bootstrap.css */
.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

    /* line 5161, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    /* line 5164, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-warning .alert-link {
        color: #66512c;
    }

/* line 5167, bower_components/bootstrap/dist/css/bootstrap.css */
.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

    /* line 5172, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    /* line 5175, bower_components/bootstrap/dist/css/bootstrap.css */
    .alert-danger .alert-link {
        color: #843534;
    }

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

    to {
        background-position: 0 0;
    }
}

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

    to {
        background-position: 0 0;
    }
}

/* line 5202, bower_components/bootstrap/dist/css/bootstrap.css */
.progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

/* line 5226, bower_components/bootstrap/dist/css/bootstrap.css */
.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;
}

/* line 5234, bower_components/bootstrap/dist/css/bootstrap.css */
.progress.active .progress-bar,
.progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

/* line 5240, bower_components/bootstrap/dist/css/bootstrap.css */
.progress-bar-success {
    background-color: #5cb85c;
}

/* line 5243, bower_components/bootstrap/dist/css/bootstrap.css */
.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);
}

/* line 5248, bower_components/bootstrap/dist/css/bootstrap.css */
.progress-bar-info {
    background-color: #5bc0de;
}

/* line 5251, bower_components/bootstrap/dist/css/bootstrap.css */
.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);
}

/* line 5256, bower_components/bootstrap/dist/css/bootstrap.css */
.progress-bar-warning {
    background-color: #f0ad4e;
}

/* line 5259, bower_components/bootstrap/dist/css/bootstrap.css */
.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);
}

/* line 5264, bower_components/bootstrap/dist/css/bootstrap.css */
.progress-bar-danger {
    background-color: #d9534f;
}

/* line 5267, bower_components/bootstrap/dist/css/bootstrap.css */
.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);
}

/* line 5272, bower_components/bootstrap/dist/css/bootstrap.css */
.media {
    margin-top: 15px;
}

    /* line 5275, bower_components/bootstrap/dist/css/bootstrap.css */
    .media:first-child {
        margin-top: 0;
    }

/* line 5278, bower_components/bootstrap/dist/css/bootstrap.css */
.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}

/* line 5283, bower_components/bootstrap/dist/css/bootstrap.css */
.media-body {
    width: 10000px;
}

/* line 5286, bower_components/bootstrap/dist/css/bootstrap.css */
.media-object {
    display: block;
}

    /* line 5289, bower_components/bootstrap/dist/css/bootstrap.css */
    .media-object.img-thumbnail {
        max-width: none;
    }

/* line 5292, bower_components/bootstrap/dist/css/bootstrap.css */
.media-right,
.media > .pull-right {
    padding-left: 10px;
}

/* line 5296, bower_components/bootstrap/dist/css/bootstrap.css */
.media-left,
.media > .pull-left {
    padding-right: 10px;
}

/* line 5300, bower_components/bootstrap/dist/css/bootstrap.css */
.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top;
}

/* line 5306, bower_components/bootstrap/dist/css/bootstrap.css */
.media-middle {
    vertical-align: middle;
}

/* line 5309, bower_components/bootstrap/dist/css/bootstrap.css */
.media-bottom {
    vertical-align: bottom;
}

/* line 5312, bower_components/bootstrap/dist/css/bootstrap.css */
.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

/* line 5316, bower_components/bootstrap/dist/css/bootstrap.css */
.media-list {
    padding-left: 0;
    list-style: none;
}

/* line 5320, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group {
    padding-left: 0;
    margin-bottom: 20px;
}

/* line 5324, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

    /* line 5332, bower_components/bootstrap/dist/css/bootstrap.css */
    .list-group-item:first-child {
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
    }

    /* line 5336, bower_components/bootstrap/dist/css/bootstrap.css */
    .list-group-item:last-child {
        margin-bottom: 0;
        border-bottom-right-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    /* line 5341, bower_components/bootstrap/dist/css/bootstrap.css */
    .list-group-item.disabled,
    .list-group-item.disabled:hover,
    .list-group-item.disabled:focus {
        color: #777777;
        cursor: not-allowed;
        background-color: #eeeeee;
    }

        /* line 5348, bower_components/bootstrap/dist/css/bootstrap.css */
        .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;
        }

        /* line 5353, bower_components/bootstrap/dist/css/bootstrap.css */
        .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;
        }

    /* line 5358, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }

        /* line 5366, bower_components/bootstrap/dist/css/bootstrap.css */
        .list-group-item.active .list-group-item-heading,
        .list-group-item.active:hover .list-group-item-heading,
        .list-group-item.active:focus .list-group-item-heading,
        .list-group-item.active .list-group-item-heading > small,
        .list-group-item.active:hover .list-group-item-heading > small,
        .list-group-item.active:focus .list-group-item-heading > small,
        .list-group-item.active .list-group-item-heading > .small,
        .list-group-item.active:hover .list-group-item-heading > .small,
        .list-group-item.active:focus .list-group-item-heading > .small {
            color: inherit;
        }

        /* line 5377, bower_components/bootstrap/dist/css/bootstrap.css */
        .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;
        }

/* line 5382, bower_components/bootstrap/dist/css/bootstrap.css */
a.list-group-item,
button.list-group-item {
    color: #555;
}

    /* line 5386, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item .list-group-item-heading,
    button.list-group-item .list-group-item-heading {
        color: #333;
    }

    /* line 5390, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item:hover,
    button.list-group-item:hover,
    a.list-group-item:focus,
    button.list-group-item:focus {
        color: #555;
        text-decoration: none;
        background-color: #f5f5f5;
    }

/* line 5398, bower_components/bootstrap/dist/css/bootstrap.css */
button.list-group-item {
    width: 100%;
    text-align: left;
}

/* line 5402, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

/* line 5406, bower_components/bootstrap/dist/css/bootstrap.css */
a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d;
}

    /* line 5410, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-success .list-group-item-heading,
    button.list-group-item-success .list-group-item-heading {
        color: inherit;
    }

    /* line 5414, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-success:hover,
    button.list-group-item-success:hover,
    a.list-group-item-success:focus,
    button.list-group-item-success:focus {
        color: #3c763d;
        background-color: #d0e9c6;
    }

    /* line 5421, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-success.active,
    button.list-group-item-success.active,
    a.list-group-item-success.active:hover,
    button.list-group-item-success.active:hover,
    a.list-group-item-success.active:focus,
    button.list-group-item-success.active:focus {
        color: #fff;
        background-color: #3c763d;
        border-color: #3c763d;
    }

/* line 5431, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

/* line 5435, bower_components/bootstrap/dist/css/bootstrap.css */
a.list-group-item-info,
button.list-group-item-info {
    color: #31708f;
}

    /* line 5439, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-info .list-group-item-heading,
    button.list-group-item-info .list-group-item-heading {
        color: inherit;
    }

    /* line 5443, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-info:hover,
    button.list-group-item-info:hover,
    a.list-group-item-info:focus,
    button.list-group-item-info:focus {
        color: #31708f;
        background-color: #c4e3f3;
    }

    /* line 5450, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-info.active,
    button.list-group-item-info.active,
    a.list-group-item-info.active:hover,
    button.list-group-item-info.active:hover,
    a.list-group-item-info.active:focus,
    button.list-group-item-info.active:focus {
        color: #fff;
        background-color: #31708f;
        border-color: #31708f;
    }

/* line 5460, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

/* line 5464, bower_components/bootstrap/dist/css/bootstrap.css */
a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b;
}

    /* line 5468, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-warning .list-group-item-heading,
    button.list-group-item-warning .list-group-item-heading {
        color: inherit;
    }

    /* line 5472, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-warning:hover,
    button.list-group-item-warning:hover,
    a.list-group-item-warning:focus,
    button.list-group-item-warning:focus {
        color: #8a6d3b;
        background-color: #faf2cc;
    }

    /* line 5479, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-warning.active,
    button.list-group-item-warning.active,
    a.list-group-item-warning.active:hover,
    button.list-group-item-warning.active:hover,
    a.list-group-item-warning.active:focus,
    button.list-group-item-warning.active:focus {
        color: #fff;
        background-color: #8a6d3b;
        border-color: #8a6d3b;
    }

/* line 5489, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede;
}

/* line 5493, bower_components/bootstrap/dist/css/bootstrap.css */
a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442;
}

    /* line 5497, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-danger .list-group-item-heading,
    button.list-group-item-danger .list-group-item-heading {
        color: inherit;
    }

    /* line 5501, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-danger:hover,
    button.list-group-item-danger:hover,
    a.list-group-item-danger:focus,
    button.list-group-item-danger:focus {
        color: #a94442;
        background-color: #ebcccc;
    }

    /* line 5508, bower_components/bootstrap/dist/css/bootstrap.css */
    a.list-group-item-danger.active,
    button.list-group-item-danger.active,
    a.list-group-item-danger.active:hover,
    button.list-group-item-danger.active:hover,
    a.list-group-item-danger.active:focus,
    button.list-group-item-danger.active:focus {
        color: #fff;
        background-color: #a94442;
        border-color: #a94442;
    }

/* line 5518, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

/* line 5522, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3;
}

/* line 5526, bower_components/bootstrap/dist/css/bootstrap.css */
.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* line 5534, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-body {
    padding: 15px;
}

/* line 5537, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

    /* line 5543, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-heading > .dropdown .dropdown-toggle {
        color: inherit;
    }

/* line 5546, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

    /* line 5552, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-title > a,
    .panel-title > small,
    .panel-title > .small,
    .panel-title > small > a,
    .panel-title > .small > a {
        color: inherit;
    }

/* line 5559, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

/* line 5566, bower_components/bootstrap/dist/css/bootstrap.css */
.panel > .list-group,
.panel > .panel-collapse > .list-group {
    margin-bottom: 0;
}

    /* line 5570, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .list-group .list-group-item,
    .panel > .panel-collapse > .list-group .list-group-item {
        border-width: 1px 0;
        border-radius: 0;
    }

    /* line 5575, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .list-group:first-child .list-group-item:first-child,
    .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
        border-top: 0;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

    /* line 5581, bower_components/bootstrap/dist/css/bootstrap.css */
    .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;
    }

/* line 5587, bower_components/bootstrap/dist/css/bootstrap.css */
.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* line 5591, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

/* line 5594, bower_components/bootstrap/dist/css/bootstrap.css */
.list-group + .panel-footer {
    border-top-width: 0;
}

/* line 5597, bower_components/bootstrap/dist/css/bootstrap.css */
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
    margin-bottom: 0;
}

    /* line 5602, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table caption,
    .panel > .table-responsive > .table caption,
    .panel > .panel-collapse > .table caption {
        padding-right: 15px;
        padding-left: 15px;
    }

    /* line 5608, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table:first-child,
    .panel > .table-responsive:first-child > .table:first-child {
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }

        /* line 5613, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel > .table:first-child > thead:first-child > tr:first-child,
        .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
        .panel > .table:first-child > tbody:first-child > tr:first-child,
        .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
            border-top-left-radius: 3px;
            border-top-right-radius: 3px;
        }

            /* line 5620, bower_components/bootstrap/dist/css/bootstrap.css */
            .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
            .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
                border-top-left-radius: 3px;
            }

            /* line 5630, bower_components/bootstrap/dist/css/bootstrap.css */
            .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
            .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
            .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
            .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
            .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
                border-top-right-radius: 3px;
            }

    /* line 5640, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table:last-child,
    .panel > .table-responsive:last-child > .table:last-child {
        border-bottom-right-radius: 3px;
        border-bottom-left-radius: 3px;
    }

        /* line 5645, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel > .table:last-child > tbody:last-child > tr:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
        .panel > .table:last-child > tfoot:last-child > tr:last-child,
        .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
            border-bottom-right-radius: 3px;
            border-bottom-left-radius: 3px;
        }

            /* line 5652, bower_components/bootstrap/dist/css/bootstrap.css */
            .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
            .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
                border-bottom-left-radius: 3px;
            }

            /* line 5662, bower_components/bootstrap/dist/css/bootstrap.css */
            .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
            .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
            .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
            .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
                border-bottom-right-radius: 3px;
            }

    /* line 5672, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .panel-body + .table,
    .panel > .panel-body + .table-responsive,
    .panel > .table + .panel-body,
    .panel > .table-responsive + .panel-body {
        border-top: 1px solid #ddd;
    }

    /* line 5678, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table > tbody:first-child > tr:first-child th,
    .panel > .table > tbody:first-child > tr:first-child td {
        border-top: 0;
    }

/* line 5682, bower_components/bootstrap/dist/css/bootstrap.css */
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}

    /* line 5686, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table-bordered > thead > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
    .panel > .table-bordered > tbody > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .panel > .table-bordered > tfoot > tr > th:first-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .panel > .table-bordered > thead > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
    .panel > .table-bordered > tbody > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .panel > .table-bordered > tfoot > tr > td:first-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    /* line 5700, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table-bordered > thead > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
    .panel > .table-bordered > tbody > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .panel > .table-bordered > tfoot > tr > th:last-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .panel > .table-bordered > thead > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
    .panel > .table-bordered > tbody > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .panel > .table-bordered > tfoot > tr > td:last-child,
    .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    /* line 5714, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table-bordered > thead > tr:first-child > td,
    .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
    .panel > .table-bordered > tbody > tr:first-child > td,
    .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
    .panel > .table-bordered > thead > tr:first-child > th,
    .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
    .panel > .table-bordered > tbody > tr:first-child > th,
    .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
        border-bottom: 0;
    }

    /* line 5724, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel > .table-bordered > tbody > tr:last-child > td,
    .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .panel > .table-bordered > tfoot > tr:last-child > td,
    .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
    .panel > .table-bordered > tbody > tr:last-child > th,
    .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .panel > .table-bordered > tfoot > tr:last-child > th,
    .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
        border-bottom: 0;
    }

/* line 5734, bower_components/bootstrap/dist/css/bootstrap.css */
.panel > .table-responsive {
    margin-bottom: 0;
    border: 0;
}

/* line 5738, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-group {
    margin-bottom: 20px;
}

    /* line 5741, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-group .panel {
        margin-bottom: 0;
        border-radius: 4px;
    }

        /* line 5745, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-group .panel + .panel {
            margin-top: 5px;
        }

    /* line 5748, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-group .panel-heading {
        border-bottom: 0;
    }

        /* line 5751, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-group .panel-heading + .panel-collapse > .panel-body,
        .panel-group .panel-heading + .panel-collapse > .list-group {
            border-top: 1px solid #ddd;
        }

    /* line 5755, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-group .panel-footer {
        border-top: 0;
    }

        /* line 5758, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-group .panel-footer + .panel-collapse .panel-body {
            border-bottom: 1px solid #ddd;
        }

/* line 5761, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-default {
    border-color: #ddd;
}

    /* line 5764, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-default > .panel-heading {
        color: #333333;
        background-color: #f5f5f5;
        border-color: #ddd;
    }

        /* line 5769, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-default > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ddd;
        }

        /* line 5772, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-default > .panel-heading .badge {
            color: #f5f5f5;
            background-color: #333333;
        }

    /* line 5776, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-default > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ddd;
    }

/* line 5779, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-primary {
    border-color: #337ab7;
}

    /* line 5782, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-primary > .panel-heading {
        color: #fff;
        background-color: #337ab7;
        border-color: #337ab7;
    }

        /* line 5787, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-primary > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #337ab7;
        }

        /* line 5790, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-primary > .panel-heading .badge {
            color: #337ab7;
            background-color: #fff;
        }

    /* line 5794, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-primary > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #337ab7;
    }

/* line 5797, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-success {
    border-color: #d6e9c6;
}

    /* line 5800, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-success > .panel-heading {
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

        /* line 5805, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-success > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #d6e9c6;
        }

        /* line 5808, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-success > .panel-heading .badge {
            color: #dff0d8;
            background-color: #3c763d;
        }

    /* line 5812, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-success > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #d6e9c6;
    }

/* line 5815, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-info {
    border-color: #bce8f1;
}

    /* line 5818, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-info > .panel-heading {
        color: #31708f;
        background-color: #d9edf7;
        border-color: #bce8f1;
    }

        /* line 5823, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-info > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #bce8f1;
        }

        /* line 5826, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-info > .panel-heading .badge {
            color: #d9edf7;
            background-color: #31708f;
        }

    /* line 5830, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-info > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #bce8f1;
    }

/* line 5833, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-warning {
    border-color: #faebcc;
}

    /* line 5836, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-warning > .panel-heading {
        color: #8a6d3b;
        background-color: #fcf8e3;
        border-color: #faebcc;
    }

        /* line 5841, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-warning > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #faebcc;
        }

        /* line 5844, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-warning > .panel-heading .badge {
            color: #fcf8e3;
            background-color: #8a6d3b;
        }

    /* line 5848, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-warning > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #faebcc;
    }

/* line 5851, bower_components/bootstrap/dist/css/bootstrap.css */
.panel-danger {
    border-color: #ebccd1;
}

    /* line 5854, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-danger > .panel-heading {
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
    }

        /* line 5859, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-danger > .panel-heading + .panel-collapse > .panel-body {
            border-top-color: #ebccd1;
        }

        /* line 5862, bower_components/bootstrap/dist/css/bootstrap.css */
        .panel-danger > .panel-heading .badge {
            color: #f2dede;
            background-color: #a94442;
        }

    /* line 5866, bower_components/bootstrap/dist/css/bootstrap.css */
    .panel-danger > .panel-footer + .panel-collapse > .panel-body {
        border-bottom-color: #ebccd1;
    }

/* line 5869, bower_components/bootstrap/dist/css/bootstrap.css */
.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

    /* line 5876, bower_components/bootstrap/dist/css/bootstrap.css */
    .embed-responsive .embed-responsive-item,
    .embed-responsive iframe,
    .embed-responsive embed,
    .embed-responsive object,
    .embed-responsive video {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* line 5889, bower_components/bootstrap/dist/css/bootstrap.css */
.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

/* line 5892, bower_components/bootstrap/dist/css/bootstrap.css */
.embed-responsive-4by3 {
    padding-bottom: 75%;
}

/* line 5895, bower_components/bootstrap/dist/css/bootstrap.css */
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

    /* line 5905, bower_components/bootstrap/dist/css/bootstrap.css */
    .well blockquote {
        border-color: #ddd;
        border-color: rgba(0, 0, 0, 0.15);
    }

/* line 5909, bower_components/bootstrap/dist/css/bootstrap.css */
.well-lg {
    padding: 24px;
    border-radius: 6px;
}

/* line 5913, bower_components/bootstrap/dist/css/bootstrap.css */
.well-sm {
    padding: 9px;
    border-radius: 3px;
}

/* line 5917, bower_components/bootstrap/dist/css/bootstrap.css */
.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: 0.2;
}

    /* line 5927, bower_components/bootstrap/dist/css/bootstrap.css */
    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: 0.5;
    }

/* line 5935, bower_components/bootstrap/dist/css/bootstrap.css */
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* line 5944, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-open {
    overflow: hidden;
}

/* line 5947, bower_components/bootstrap/dist/css/bootstrap.css */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

    /* line 5959, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal.fade .modal-dialog {
        -webkit-transform: translate(0, -25%);
        transform: translate(0, -25%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        transition: -webkit-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
        transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    }

    /* line 5970, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

/* line 5976, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

/* line 5980, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

/* line 5985, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

/* line 5996, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

    /* line 6005, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-backdrop.fade {
        filter: alpha(opacity=0);
        opacity: 0;
    }

    /* line 6009, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-backdrop.in {
        filter: alpha(opacity=50);
        opacity: 0.5;
    }

/* line 6013, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

    /* line 6017, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-header .close {
        margin-top: -2px;
    }

/* line 6020, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-title {
    margin: 0;
    line-height: 1.42857143;
}

/* line 6024, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-body {
    position: relative;
    padding: 15px;
}

/* line 6028, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    /* line 6033, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-footer .btn + .btn {
        margin-bottom: 0;
        margin-left: 5px;
    }

    /* line 6037, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    /* line 6040, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

/* line 6043, bower_components/bootstrap/dist/css/bootstrap.css */
.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

@media (min-width: 768px) {
    /* line 6051, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }
    /* line 6055, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }
    /* line 6059, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-sm {
        width: 300px;
    }
}

@media (min-width: 992px) {
    /* line 6064, bower_components/bootstrap/dist/css/bootstrap.css */
    .modal-lg {
        width: 900px;
    }
}

/* line 6068, bower_components/bootstrap/dist/css/bootstrap.css */
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 1.42857143;
    line-break: auto;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    font-size: 12px;
    filter: alpha(opacity=0);
    opacity: 0;
}

    /* line 6091, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.in {
        filter: alpha(opacity=90);
        opacity: 0.9;
    }

    /* line 6095, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.top {
        padding: 5px 0;
        margin-top: -3px;
    }

    /* line 6099, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.right {
        padding: 0 5px;
        margin-left: 3px;
    }

    /* line 6103, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.bottom {
        padding: 5px 0;
        margin-top: 3px;
    }

    /* line 6107, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.left {
        padding: 0 5px;
        margin-left: -3px;
    }

    /* line 6111, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.top .tooltip-arrow {
        bottom: 0;
        left: 50%;
        margin-left: -5px;
        border-width: 5px 5px 0;
        border-top-color: #000;
    }

    /* line 6118, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.top-left .tooltip-arrow {
        right: 5px;
        bottom: 0;
        margin-bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #000;
    }

    /* line 6125, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.top-right .tooltip-arrow {
        bottom: 0;
        left: 5px;
        margin-bottom: -5px;
        border-width: 5px 5px 0;
        border-top-color: #000;
    }

    /* line 6132, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.right .tooltip-arrow {
        top: 50%;
        left: 0;
        margin-top: -5px;
        border-width: 5px 5px 5px 0;
        border-right-color: #000;
    }

    /* line 6139, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.left .tooltip-arrow {
        top: 50%;
        right: 0;
        margin-top: -5px;
        border-width: 5px 0 5px 5px;
        border-left-color: #000;
    }

    /* line 6146, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.bottom .tooltip-arrow {
        top: 0;
        left: 50%;
        margin-left: -5px;
        border-width: 0 5px 5px;
        border-bottom-color: #000;
    }

    /* line 6153, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.bottom-left .tooltip-arrow {
        top: 0;
        right: 5px;
        margin-top: -5px;
        border-width: 0 5px 5px;
        border-bottom-color: #000;
    }

    /* line 6160, bower_components/bootstrap/dist/css/bootstrap.css */
    .tooltip.bottom-right .tooltip-arrow {
        top: 0;
        left: 5px;
        margin-top: -5px;
        border-width: 0 5px 5px;
        border-bottom-color: #000;
    }

/* line 6167, bower_components/bootstrap/dist/css/bootstrap.css */
.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}

/* line 6175, bower_components/bootstrap/dist/css/bootstrap.css */
.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

/* line 6182, bower_components/bootstrap/dist/css/bootstrap.css */
.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: 400;
    line-height: 1.42857143;
    line-break: auto;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    font-size: 14px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

    /* line 6214, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover.top {
        margin-top: -10px;
    }

    /* line 6217, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover.right {
        margin-left: 10px;
    }

    /* line 6220, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover.bottom {
        margin-top: 10px;
    }

    /* line 6223, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover.left {
        margin-left: -10px;
    }

    /* line 6226, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover > .arrow {
        border-width: 11px;
    }

        /* line 6229, bower_components/bootstrap/dist/css/bootstrap.css */
        .popover > .arrow,
        .popover > .arrow:after {
            position: absolute;
            display: block;
            width: 0;
            height: 0;
            border-color: transparent;
            border-style: solid;
        }

            /* line 6238, bower_components/bootstrap/dist/css/bootstrap.css */
            .popover > .arrow:after {
                content: "";
                border-width: 10px;
            }

    /* line 6242, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover.top > .arrow {
        bottom: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-color: #999999;
        border-top-color: rgba(0, 0, 0, 0.25);
        border-bottom-width: 0;
    }

        /* line 6250, bower_components/bootstrap/dist/css/bootstrap.css */
        .popover.top > .arrow:after {
            bottom: 1px;
            margin-left: -10px;
            content: " ";
            border-top-color: #fff;
            border-bottom-width: 0;
        }

    /* line 6257, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover.right > .arrow {
        top: 50%;
        left: -11px;
        margin-top: -11px;
        border-right-color: #999999;
        border-right-color: rgba(0, 0, 0, 0.25);
        border-left-width: 0;
    }

        /* line 6265, bower_components/bootstrap/dist/css/bootstrap.css */
        .popover.right > .arrow:after {
            bottom: -10px;
            left: 1px;
            content: " ";
            border-right-color: #fff;
            border-left-width: 0;
        }

    /* line 6272, bower_components/bootstrap/dist/css/bootstrap.css */
    .popover.bottom > .arrow {
        top: -11px;
        left: 50%;
        margin-left: -11px;
        border-top-width: 0;
        border-bottom-color: #999999;
        border-bottom-color: rgba(0, 0, 0, 0.25);
    }

        /* line 6280, bower_components/bootstrap/dist/css/bootstrap.css */
        .popover.bottom > .arrow:after {
            top: 1px;
            margin-left: -10px;
            content: " ";
            border-top-width: 0;
            border-bottom-color: #fff;
        }

    /* line 6287, bower_components/bootstrap/dist/css/bootstrap.css */
    .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);
    }

        /* line 6295, bower_components/bootstrap/dist/css/bootstrap.css */
        .popover.left > .arrow:after {
            right: 1px;
            bottom: -10px;
            content: " ";
            border-right-width: 0;
            border-left-color: #fff;
        }

/* line 6302, bower_components/bootstrap/dist/css/bootstrap.css */
.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

/* line 6310, bower_components/bootstrap/dist/css/bootstrap.css */
.popover-content {
    padding: 9px 14px;
}

/* line 6313, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel {
    position: relative;
}

/* line 6316, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

    /* line 6321, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-inner > .item {
        position: relative;
        display: none;
        -webkit-transition: 0.6s ease-in-out left;
        transition: 0.6s ease-in-out left;
    }

        /* line 6328, bower_components/bootstrap/dist/css/bootstrap.css */
        .carousel-inner > .item > img,
        .carousel-inner > .item > a > img {
            line-height: 1;
        }

@media all and (transform-3d), (-webkit-transform-3d) {
    /* line 6333, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform 0.6s ease-in-out;
        transition: -webkit-transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out;
        transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
        /* line 6344, bower_components/bootstrap/dist/css/bootstrap.css */
        .carousel-inner > .item.next,
        .carousel-inner > .item.active.right {
            -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
            left: 0;
        }
        /* line 6350, bower_components/bootstrap/dist/css/bootstrap.css */
        .carousel-inner > .item.prev,
        .carousel-inner > .item.active.left {
            -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
            left: 0;
        }
            /* line 6356, bower_components/bootstrap/dist/css/bootstrap.css */
            .carousel-inner > .item.next.left,
            .carousel-inner > .item.prev.right,
            .carousel-inner > .item.active {
                -webkit-transform: translate3d(0, 0, 0);
                transform: translate3d(0, 0, 0);
                left: 0;
            }
}

/* line 6364, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

/* line 6369, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner > .active {
    left: 0;
}

/* line 6372, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

/* line 6378, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner > .next {
    left: 100%;
}

/* line 6381, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner > .prev {
    left: -100%;
}

    /* line 6384, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-inner > .next.left,
    .carousel-inner > .prev.right {
        left: 0;
    }

/* line 6388, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner > .active.left {
    left: -100%;
}

/* line 6391, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-inner > .active.right {
    left: 100%;
}

/* line 6394, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 0.5;
}

    /* line 6408, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control.left {
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
        background-repeat: repeat-x;
    }

    /* line 6416, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control.right {
        right: 0;
        left: auto;
        background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
        background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
        background-repeat: repeat-x;
    }

    /* line 6426, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control:hover,
    .carousel-control:focus {
        color: #fff;
        text-decoration: none;
        outline: 0;
        filter: alpha(opacity=90);
        opacity: 0.9;
    }

    /* line 6434, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control .icon-prev,
    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right {
        position: absolute;
        top: 50%;
        z-index: 5;
        display: inline-block;
        margin-top: -10px;
    }

    /* line 6444, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control .icon-prev,
    .carousel-control .glyphicon-chevron-left {
        left: 50%;
        margin-left: -10px;
    }

    /* line 6449, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control .icon-next,
    .carousel-control .glyphicon-chevron-right {
        right: 50%;
        margin-right: -10px;
    }

    /* line 6454, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 20px;
        height: 20px;
        font-family: serif;
        line-height: 1;
    }

        /* line 6461, bower_components/bootstrap/dist/css/bootstrap.css */
        .carousel-control .icon-prev:before {
            content: "\2039";
        }

        /* line 6464, bower_components/bootstrap/dist/css/bootstrap.css */
        .carousel-control .icon-next:before {
            content: "\203a";
        }

/* line 6467, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

    /* line 6478, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-indicators li {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 1px;
        text-indent: -999px;
        cursor: pointer;
        background-color: #000 \9;
        background-color: rgba(0, 0, 0, 0);
        border: 1px solid #fff;
        border-radius: 10px;
    }

    /* line 6490, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-indicators .active {
        width: 12px;
        height: 12px;
        margin: 0;
        background-color: #fff;
    }

/* line 6496, bower_components/bootstrap/dist/css/bootstrap.css */
.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

    /* line 6508, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-caption .btn {
        text-shadow: none;
    }

@media screen and (min-width: 768px) {
    /* line 6512, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px;
    }
    /* line 6521, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px;
    }
    /* line 6525, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px;
    }
    /* line 6529, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }
    /* line 6534, bower_components/bootstrap/dist/css/bootstrap.css */
    .carousel-indicators {
        bottom: 20px;
    }
}

/* line 6538, bower_components/bootstrap/dist/css/bootstrap.css */
.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

/* line 6573, bower_components/bootstrap/dist/css/bootstrap.css */
.clearfix:after,
.dl-horizontal dd:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-header:after,
.modal-footer:after {
    clear: both;
}

/* line 6591, bower_components/bootstrap/dist/css/bootstrap.css */
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

/* line 6596, bower_components/bootstrap/dist/css/bootstrap.css */
.pull-right {
    float: right !important;
}

/* line 6599, bower_components/bootstrap/dist/css/bootstrap.css */
.pull-left {
    float: left !important;
}

/* line 6602, bower_components/bootstrap/dist/css/bootstrap.css */
.hide {
    display: none !important;
}

/* line 6605, bower_components/bootstrap/dist/css/bootstrap.css */
.show {
    display: block !important;
}

/* line 6608, bower_components/bootstrap/dist/css/bootstrap.css */
.invisible {
    visibility: hidden;
}

/* line 6611, bower_components/bootstrap/dist/css/bootstrap.css */
.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

/* line 6618, bower_components/bootstrap/dist/css/bootstrap.css */
.hidden {
    display: none !important;
}

/* line 6621, bower_components/bootstrap/dist/css/bootstrap.css */
.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

/* line 6627, bower_components/bootstrap/dist/css/bootstrap.css */
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

/* line 6633, bower_components/bootstrap/dist/css/bootstrap.css */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    /* line 6648, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-xs {
        display: block !important;
    }
    /* line 6651, bower_components/bootstrap/dist/css/bootstrap.css */
    table.visible-xs {
        display: table !important;
    }
    /* line 6654, bower_components/bootstrap/dist/css/bootstrap.css */
    tr.visible-xs {
        display: table-row !important;
    }
    /* line 6657, bower_components/bootstrap/dist/css/bootstrap.css */
    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width: 767px) {
    /* line 6663, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width: 767px) {
    /* line 6668, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width: 767px) {
    /* line 6673, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* line 6678, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-sm {
        display: block !important;
    }
    /* line 6681, bower_components/bootstrap/dist/css/bootstrap.css */
    table.visible-sm {
        display: table !important;
    }
    /* line 6684, bower_components/bootstrap/dist/css/bootstrap.css */
    tr.visible-sm {
        display: table-row !important;
    }
    /* line 6687, bower_components/bootstrap/dist/css/bootstrap.css */
    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* line 6693, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* line 6698, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* line 6703, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* line 6708, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-md {
        display: block !important;
    }
    /* line 6711, bower_components/bootstrap/dist/css/bootstrap.css */
    table.visible-md {
        display: table !important;
    }
    /* line 6714, bower_components/bootstrap/dist/css/bootstrap.css */
    tr.visible-md {
        display: table-row !important;
    }
    /* line 6717, bower_components/bootstrap/dist/css/bootstrap.css */
    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* line 6723, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* line 6728, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* line 6733, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    /* line 6738, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-lg {
        display: block !important;
    }
    /* line 6741, bower_components/bootstrap/dist/css/bootstrap.css */
    table.visible-lg {
        display: table !important;
    }
    /* line 6744, bower_components/bootstrap/dist/css/bootstrap.css */
    tr.visible-lg {
        display: table-row !important;
    }
    /* line 6747, bower_components/bootstrap/dist/css/bootstrap.css */
    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width: 1200px) {
    /* line 6753, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    /* line 6758, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
    /* line 6763, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width: 767px) {
    /* line 6768, bower_components/bootstrap/dist/css/bootstrap.css */
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    /* line 6773, bower_components/bootstrap/dist/css/bootstrap.css */
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    /* line 6778, bower_components/bootstrap/dist/css/bootstrap.css */
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    /* line 6783, bower_components/bootstrap/dist/css/bootstrap.css */
    .hidden-lg {
        display: none !important;
    }
}

/* line 6787, bower_components/bootstrap/dist/css/bootstrap.css */
.visible-print {
    display: none !important;
}

@media print {
    /* line 6791, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-print {
        display: block !important;
    }
    /* line 6794, bower_components/bootstrap/dist/css/bootstrap.css */
    table.visible-print {
        display: table !important;
    }
    /* line 6797, bower_components/bootstrap/dist/css/bootstrap.css */
    tr.visible-print {
        display: table-row !important;
    }
    /* line 6800, bower_components/bootstrap/dist/css/bootstrap.css */
    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

/* line 6805, bower_components/bootstrap/dist/css/bootstrap.css */
.visible-print-block {
    display: none !important;
}

@media print {
    /* line 6809, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-print-block {
        display: block !important;
    }
}

/* line 6813, bower_components/bootstrap/dist/css/bootstrap.css */
.visible-print-inline {
    display: none !important;
}

@media print {
    /* line 6817, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-print-inline {
        display: inline !important;
    }
}

/* line 6821, bower_components/bootstrap/dist/css/bootstrap.css */
.visible-print-inline-block {
    display: none !important;
}

@media print {
    /* line 6825, bower_components/bootstrap/dist/css/bootstrap.css */
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    /* line 6830, bower_components/bootstrap/dist/css/bootstrap.css */
    .hidden-print {
        display: none !important;
    }
}

@-webkit-keyframes ngdialog-fadeout {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes ngdialog-fadeout {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes ngdialog-fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes ngdialog-fadein {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* line 41, bower_components/ngDialog/css/ngDialog.css */
.ngdialog {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    /* line 45, bower_components/ngDialog/css/ngDialog.css */
    .ngdialog *,
    .ngdialog *:before,
    .ngdialog *:after {
        -webkit-box-sizing: inherit;
        box-sizing: inherit;
    }

/* line 51, bower_components/ngDialog/css/ngDialog.css */
.ngdialog {
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* fix for Scrollbars not clickable on overflow #552 */
    background: rgba(0, 0, 0, 0.4);
    -webkit-animation: ngdialog-fadein 0.5s;
    animation: ngdialog-fadein 0.5s;
    /* end fix for Scrollbars not clickable on overflow #552 */
}

    /* line 66, bower_components/ngDialog/css/ngDialog.css */
    .ngdialog.ngdialog-disabled-animation,
    .ngdialog.ngdialog-disabled-animation .ngdialog-overlay,
    .ngdialog.ngdialog-disabled-animation .ngdialog-content {
        -webkit-animation: none !important;
        animation: none !important;
    }

/* line 73, bower_components/ngDialog/css/ngDialog.css */
.ngdialog-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadein 0.5s;
    animation: ngdialog-fadein 0.5s;
    /* fix for Scrollbars not clickable on overflow #552 */
    margin-right: 15px;
    background: transparent;
    /* end fix for Scrollbars not clickable on overflow #552 */
}

/* line 88, bower_components/ngDialog/css/ngDialog.css */
.ngdialog-no-overlay {
    pointer-events: none;
}

/* line 92, bower_components/ngDialog/css/ngDialog.css */
.ngdialog.ngdialog-closing .ngdialog-overlay {
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadeout 0.5s;
    animation: ngdialog-fadeout 0.5s;
}

/* line 98, bower_components/ngDialog/css/ngDialog.css */
.ngdialog-content {
    background: white;
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadein 0.5s;
    animation: ngdialog-fadein 0.5s;
    pointer-events: all;
}

/* line 106, bower_components/ngDialog/css/ngDialog.css */
.ngdialog.ngdialog-closing .ngdialog-content {
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadeout 0.5s;
    animation: ngdialog-fadeout 0.5s;
}

/* line 112, bower_components/ngDialog/css/ngDialog.css */
.ngdialog-close:before {
    font-family: 'Helvetica', Arial, sans-serif;
    content: '\00D7';
    cursor: pointer;
}

/* line 118, bower_components/ngDialog/css/ngDialog.css */
html.ngdialog-open,
body.ngdialog-open {
    overflow: hidden;
}

@-webkit-keyframes ngdialog-flyin {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes ngdialog-flyin {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes ngdialog-flyout {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes ngdialog-flyout {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

/* line 57, bower_components/ngDialog/css/ngDialog-theme-default.css */
.ngdialog.ngdialog-theme-default {
    padding-bottom: 160px;
    padding-top: 160px;
}

    /* line 62, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
        -webkit-animation: ngdialog-flyout .5s;
        animation: ngdialog-flyout .5s;
    }

    /* line 67, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default .ngdialog-content {
        -webkit-animation: ngdialog-flyin .5s;
        animation: ngdialog-flyin .5s;
        background: #f0f0f0;
        border-radius: 5px;
        color: #444;
        font-family: 'Helvetica',sans-serif;
        font-size: 1.1em;
        line-height: 1.5em;
        margin: 0 auto;
        max-width: 100%;
        padding: 1em;
        position: relative;
        width: 450px;
    }

    /* line 83, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default .ngdialog-close {
        border: none;
        background: transparent;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
    }

        /* line 92, bower_components/ngDialog/css/ngDialog-theme-default.css */
        .ngdialog.ngdialog-theme-default .ngdialog-close:before {
            display: block;
            padding: 3px;
            background: transparent;
            color: #bbb;
            content: '\00D7';
            font-size: 26px;
            font-weight: 400;
            line-height: 26px;
            text-align: center;
        }

        /* line 104, bower_components/ngDialog/css/ngDialog-theme-default.css */
        .ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
        .ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
            color: #777;
        }

    /* line 109, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default .ngdialog-message {
        margin-bottom: .5em;
    }

    /* line 113, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default .ngdialog-input {
        margin-bottom: 1em;
    }

        /* line 117, bower_components/ngDialog/css/ngDialog-theme-default.css */
        .ngdialog.ngdialog-theme-default .ngdialog-input textarea,
        .ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],
        .ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],
        .ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],
        .ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
            background: #fff;
            border: 0;
            border-radius: 3px;
            font-family: inherit;
            font-size: inherit;
            font-weight: inherit;
            margin: 0 0 .25em;
            min-height: 2.5em;
            padding: .25em .67em;
            width: 100%;
        }

            /* line 134, bower_components/ngDialog/css/ngDialog-theme-default.css */
            .ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
            .ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,
            .ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,
            .ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,
            .ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
                -webkit-box-shadow: inset 0 0 0 2px #8dbdf1;
                box-shadow: inset 0 0 0 2px #8dbdf1;
                outline: none;
            }

    /* line 143, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default .ngdialog-buttons {
        *zoom: 1;
    }

        /* line 147, bower_components/ngDialog/css/ngDialog-theme-default.css */
        .ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
            content: '';
            display: table;
            clear: both;
        }

    /* line 153, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default .ngdialog-button {
        border: 0;
        border-radius: 3px;
        cursor: pointer;
        float: right;
        font-family: inherit;
        font-size: .8em;
        letter-spacing: .1em;
        line-height: 1em;
        margin: 0 0 0 .5em;
        padding: .75em 2em;
        text-transform: uppercase;
    }

        /* line 167, bower_components/ngDialog/css/ngDialog-theme-default.css */
        .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
            -webkit-animation: ngdialog-pulse 1.1s infinite;
            animation: ngdialog-pulse 1.1s infinite;
            outline: none;
        }

@media (max-width: 568px) {
    /* line 174, bower_components/ngDialog/css/ngDialog-theme-default.css */
    .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
        -webkit-animation: none;
        animation: none;
    }
}

/* line 180, bower_components/ngDialog/css/ngDialog-theme-default.css */
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
    background: #3288e6;
    color: #fff;
}

/* line 185, bower_components/ngDialog/css/ngDialog-theme-default.css */
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
    background: #e0e0e0;
    color: #777;
}

/*! 
 * angular-loading-bar v0.9.0
 * https://chieffancypants.github.io/angular-loading-bar
 * Copyright (c) 2016 Wes Cruver
 * License: MIT
 */
/* Make clicks pass-through */
/* line 9, bower_components/angular-loading-bar/build/loading-bar.css */
#loading-bar,
#loading-bar-spinner {
    pointer-events: none;
    -webkit-pointer-events: none;
    -webkit-transition: 350ms linear all;
    transition: 350ms linear all;
}

    /* line 19, bower_components/angular-loading-bar/build/loading-bar.css */
    #loading-bar.ng-enter,
    #loading-bar.ng-leave.ng-leave-active,
    #loading-bar-spinner.ng-enter,
    #loading-bar-spinner.ng-leave.ng-leave-active {
        opacity: 0;
    }

        /* line 26, bower_components/angular-loading-bar/build/loading-bar.css */
        #loading-bar.ng-enter.ng-enter-active,
        #loading-bar.ng-leave,
        #loading-bar-spinner.ng-enter.ng-enter-active,
        #loading-bar-spinner.ng-leave {
            opacity: 1;
        }

    /* line 33, bower_components/angular-loading-bar/build/loading-bar.css */
    #loading-bar .bar {
        -webkit-transition: width 350ms;
        transition: width 350ms;
        background: #29d;
        position: fixed;
        z-index: 10002;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        border-bottom-right-radius: 1px;
        border-top-right-radius: 1px;
    }

    /* Fancy blur effect */
    /* line 51, bower_components/angular-loading-bar/build/loading-bar.css */
    #loading-bar .peg {
        position: absolute;
        width: 70px;
        right: 0;
        top: 0;
        height: 2px;
        opacity: .45;
        -ms-box-shadow: #29d 1px 0 6px 1px;
        -webkit-box-shadow: #29d 1px 0 6px 1px;
        box-shadow: #29d 1px 0 6px 1px;
        border-radius: 100%;
    }

/* line 67, bower_components/angular-loading-bar/build/loading-bar.css */
#loading-bar-spinner {
    display: block;
    position: fixed;
    z-index: 10002;
    top: 10px;
    left: 10px;
}

    /* line 75, bower_components/angular-loading-bar/build/loading-bar.css */
    #loading-bar-spinner .spinner-icon {
        width: 14px;
        height: 14px;
        border: solid 2px transparent;
        border-top-color: #29d;
        border-left-color: #29d;
        border-radius: 50%;
        -webkit-animation: loading-bar-spinner 400ms linear infinite;
        animation: loading-bar-spinner 400ms linear infinite;
    }

@-webkit-keyframes loading-bar-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes loading-bar-spinner {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* line 1, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-title {
    font-weight: bold;
}

/* line 4, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-message {
    word-wrap: break-word;
}

    /* line 7, bower_components/angular-toastr/dist/angular-toastr.css */
    .toast-message a,
    .toast-message label {
        color: #FFFFFF;
    }

        /* line 11, bower_components/angular-toastr/dist/angular-toastr.css */
        .toast-message a:hover {
            color: #CCCCCC;
            text-decoration: none;
        }

/* line 15, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-close-button {
    position: relative;
    right: -0.3em;
    top: -0.3em;
    float: right;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    -webkit-text-shadow: 0 1px 0 #ffffff;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.8;
}

    /* line 27, bower_components/angular-toastr/dist/angular-toastr.css */
    .toast-close-button:hover,
    .toast-close-button:focus {
        color: #000000;
        text-decoration: none;
        cursor: pointer;
        opacity: 0.4;
    }

/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
/* line 37, bower_components/angular-toastr/dist/angular-toastr.css */
button.toast-close-button {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}

/* line 44, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-top-center {
    top: 0;
    right: 0;
    width: 100%;
}

/* line 49, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%;
}

/* line 54, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%;
}

/* line 59, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%;
}

/* line 64, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-top-left {
    top: 12px;
    left: 12px;
}

/* line 68, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-top-right {
    top: 12px;
    right: 12px;
}

/* line 72, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-bottom-right {
    right: 12px;
    bottom: 12px;
}

/* line 76, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-bottom-left {
    bottom: 12px;
    left: 12px;
}

/* line 80, bower_components/angular-toastr/dist/angular-toastr.css */
#toast-container {
    position: fixed;
    z-index: 999999;
    /*overrides*/
}

    /* line 85, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container * {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    /* line 90, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container .toast {
        position: relative;
        overflow: hidden;
        margin: 0 0 6px;
        padding: 15px 15px 15px 50px;
        width: 300px;
        border-radius: 3px 3px 3px 3px;
        background-position: 15px center;
        background-repeat: no-repeat;
        -webkit-box-shadow: 0 0 12px #999999;
        box-shadow: 0 0 12px #999999;
        color: #FFFFFF;
        opacity: 0.8;
    }

        /* line 107, bower_components/angular-toastr/dist/angular-toastr.css */
        #toast-container .toast:hover {
            -webkit-box-shadow: 0 0 12px #000000;
            box-shadow: 0 0 12px #000000;
            opacity: 1;
            cursor: pointer;
        }

        /* line 114, bower_components/angular-toastr/dist/angular-toastr.css */
        #toast-container .toast.toast-info {
            background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
        }

        /* line 117, bower_components/angular-toastr/dist/angular-toastr.css */
        #toast-container .toast.toast-error {
            background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
        }

        /* line 120, bower_components/angular-toastr/dist/angular-toastr.css */
        #toast-container .toast.toast-success {
            background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
        }

        /* line 123, bower_components/angular-toastr/dist/angular-toastr.css */
        #toast-container .toast.toast-warning {
            background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
        }

    /* line 126, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container.toast-top-center .toast,
    #toast-container.toast-bottom-center .toast {
        width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    /* line 132, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container.toast-top-full-width .toast,
    #toast-container.toast-bottom-full-width .toast {
        width: 96%;
        margin-left: auto;
        margin-right: auto;
    }

/* line 138, bower_components/angular-toastr/dist/angular-toastr.css */
.toast {
    background-color: #030303;
}

/* line 141, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-success {
    background-color: #51A351;
}

/* line 144, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-error {
    background-color: #BD362F;
}

/* line 147, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-info {
    background-color: #2F96B4;
}

/* line 150, bower_components/angular-toastr/dist/angular-toastr.css */
.toast-warning {
    background-color: #F89406;
}

/* line 153, bower_components/angular-toastr/dist/angular-toastr.css */
progress-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000000;
    opacity: 0.4;
}

/*Animations*/
/* line 162, bower_components/angular-toastr/dist/angular-toastr.css */
div[toast] {
    opacity: 1 !important;
}

    /* line 165, bower_components/angular-toastr/dist/angular-toastr.css */
    div[toast].ng-enter {
        opacity: 0 !important;
        -webkit-transition: opacity .3s linear;
        transition: opacity .3s linear;
    }

        /* line 169, bower_components/angular-toastr/dist/angular-toastr.css */
        div[toast].ng-enter.ng-enter-active {
            opacity: 1 !important;
        }

    /* line 172, bower_components/angular-toastr/dist/angular-toastr.css */
    div[toast].ng-leave {
        opacity: 1;
        -webkit-transition: opacity .3s linear;
        transition: opacity .3s linear;
    }

        /* line 176, bower_components/angular-toastr/dist/angular-toastr.css */
        div[toast].ng-leave.ng-leave-active {
            opacity: 0 !important;
        }

/*Responsive Design*/
@media all and (max-width: 240px) {
    /* line 181, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container .toast.div {
        padding: 8px 8px 8px 50px;
        width: 11em;
    }
    /* line 185, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 241px) and (max-width: 480px) {
    /* line 191, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container .toast.div {
        padding: 8px 8px 8px 50px;
        width: 18em;
    }
    /* line 195, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container .toast-close-button {
        right: -0.2em;
        top: -0.2em;
    }
}

@media all and (min-width: 481px) and (max-width: 768px) {
    /* line 201, bower_components/angular-toastr/dist/angular-toastr.css */
    #toast-container .toast.div {
        padding: 15px 15px 15px 50px;
        width: 25em;
    }
}

/*
 * angular-tooltips
 * 1.2.2
 * 
 * Angular.js tooltips module.
 * http://720kb.github.io/angular-tooltips
 * 
 * MIT license
 * Tue Jun 20 2017
 */
@-webkit-keyframes animate-tooltip {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    60% {
        opacity: .8;
    }

    70% {
        opacity: .9;
    }

    90% {
        opacity: 1;
    }
}

@keyframes animate-tooltip {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
    }

    60% {
        opacity: .8;
    }

    70% {
        opacity: .9;
    }

    90% {
        opacity: 1;
    }
}

/* line 59, bower_components/angular-tooltips/dist/angular-tooltips.css */
._exradicated-tooltip {
    display: block;
    opacity: 1;
    position: absolute;
    z-index: 999;
}

/* line 65, bower_components/angular-tooltips/dist/angular-tooltips.css */
tooltip {
    display: inline-block;
    position: relative;
}

    /* line 68, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._multiline {
        display: block;
    }

    /* line 70, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._slow._ready tip {
        -webkit-animation: animate-tooltip 0.65s;
        animation: animate-tooltip 0.65s;
    }

    /* line 72, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._fast._ready tip {
        -webkit-animation: animate-tooltip 0.15s;
        animation: animate-tooltip 0.15s;
    }

    /* line 74, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._steady._ready tip {
        -webkit-animation: animate-tooltip 0.35s;
        animation: animate-tooltip 0.35s;
    }

    /* line 76, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip tip {
        border-radius: 3px;
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
        display: none;
        line-height: normal;
        max-width: 500px;
        min-width: 100px;
        opacity: 0;
        padding: 8px 16px;
        position: absolute;
        text-align: center;
        width: auto;
        will-change: top, left, bottom, right;
    }

        /* line 90, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip tip._hidden {
            display: block;
            visibility: hidden;
        }

    /* line 93, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip.active:not(._force-hidden) tip {
        display: block;
        opacity: 1;
        z-index: 999;
    }

    /* line 97, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip tip-tip {
        font-size: 0.95em;
    }

        /* line 99, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip tip-tip._large {
            font-size: 1.1em;
        }

        /* line 101, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip tip-tip._small {
            font-size: 0.8em;
        }

    /* line 103, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._top:not(._left):not(._right) tip {
        left: 50%;
        top: -9px;
        -webkit-transform: translateX(-50%) translateY(-100%);
        transform: translateX(-50%) translateY(-100%);
    }

        /* line 108, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._top:not(._left):not(._right) tip tip-arrow {
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid rgba(0, 0, 0, 0.85);
            content: '';
            height: 0;
            left: 50%;
            margin-left: -6px;
            position: absolute;
            top: 100%;
            width: 0;
        }

    /* line 119, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._bottom:not(._left):not(._right) tip {
        right: 50%;
        top: 100%;
        -webkit-transform: translateX(50%) translateY(9px);
        transform: translateX(50%) translateY(9px);
    }

        /* line 124, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._bottom:not(._left):not(._right) tip tip-arrow {
            border-bottom: 6px solid rgba(0, 0, 0, 0.85);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            bottom: 100%;
            content: '';
            height: 0;
            left: 50%;
            margin-left: -6px;
            position: absolute;
            width: 0;
        }

    /* line 135, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._right:not(._top):not(._bottom) tip {
        left: 100%;
        top: 50%;
        -webkit-transform: translateX(9px) translateY(-50%);
        transform: translateX(9px) translateY(-50%);
    }

        /* line 140, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._right:not(._top):not(._bottom) tip tip-arrow {
            border-bottom: 6px solid transparent;
            border-right: 6px solid rgba(0, 0, 0, 0.85);
            border-top: 6px solid transparent;
            content: '';
            height: 0;
            margin-top: -6px;
            position: absolute;
            right: 100%;
            top: 50%;
            width: 0;
        }

    /* line 151, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._left:not(._top):not(._bottom) tip {
        left: -9px;
        top: 50%;
        -webkit-transform: translateX(-100%) translateY(-50%);
        transform: translateX(-100%) translateY(-50%);
    }

        /* line 156, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._left:not(._top):not(._bottom) tip tip-arrow {
            border-bottom: 6px solid transparent;
            border-left: 6px solid rgba(0, 0, 0, 0.85);
            border-top: 6px solid transparent;
            content: '';
            height: 0;
            left: 100%;
            margin-top: -6px;
            position: absolute;
            top: 50%;
            width: 0;
        }

    /* line 167, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._top._left tip {
        left: -9px;
        top: -9px;
        -webkit-transform: translateX(-100%) translateY(-100%);
        transform: translateX(-100%) translateY(-100%);
    }

        /* line 172, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._top._left tip tip-arrow {
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid rgba(0, 0, 0, 0.85);
            content: '';
            height: 0;
            left: 90%;
            margin-left: -6px;
            position: absolute;
            top: 100%;
            width: 0;
        }

    /* line 183, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._top._right tip {
        left: 100%;
        top: -9px;
        -webkit-transform: translateX(9px) translateY(-100%);
        transform: translateX(9px) translateY(-100%);
    }

        /* line 188, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._top._right tip tip-arrow {
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid rgba(0, 0, 0, 0.85);
            content: '';
            height: 0;
            left: 10%;
            margin-left: -6px;
            position: absolute;
            top: 100%;
            width: 0;
        }

    /* line 199, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._bottom._left tip {
        left: -9px;
        top: 100%;
        -webkit-transform: translateX(-100%) translateY(9px);
        transform: translateX(-100%) translateY(9px);
    }

        /* line 204, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._bottom._left tip tip-arrow {
            border-bottom: 6px solid rgba(0, 0, 0, 0.85);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            bottom: 100%;
            content: '';
            height: 0;
            left: 90%;
            margin-left: -6px;
            position: absolute;
            width: 0;
        }

    /* line 215, bower_components/angular-tooltips/dist/angular-tooltips.css */
    tooltip._bottom._right tip {
        left: 100%;
        top: 100%;
        -webkit-transform: translateX(9px) translateY(9px);
        transform: translateX(9px) translateY(9px);
    }

        /* line 220, bower_components/angular-tooltips/dist/angular-tooltips.css */
        tooltip._bottom._right tip tip-arrow {
            border-bottom: 6px solid rgba(0, 0, 0, 0.85);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            bottom: 100%;
            content: '';
            height: 0;
            left: 10%;
            margin-left: -6px;
            position: absolute;
            width: 0;
        }

/* line 232, bower_components/angular-tooltips/dist/angular-tooltips.css */
tip-tip .close-button {
    cursor: pointer;
    float: right;
    left: 8%;
    margin-top: -7%;
    padding: 3px;
    position: relative;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url("../../../static/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot");
    src: url("../../../static/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot?#iefix") format("embedded-opentype"), url("../../../static/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2") format("woff2"), url("../../../static/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff") format("woff"), url("../../../static/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf") format("truetype"), url("../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular") format("svg");
}

/* line 1, web/common/styles/global/_bootstrapreset.scss */
h1, .h1, h2, .h2, h3, .h3 {
    margin: auto;
}

/* line 5, web/common/styles/global/_bootstrapreset.scss */
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
    border-color: #e0e0e0;
}

/* line 9, web/common/styles/global/_bootstrapreset.scss */
.navbar {
    border: none;
}

/* line 1, web/common/styles/global/_animation.scss */
.is-rotating {
    -webkit-transform: inherit;
    transform: inherit;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* line 1, web/common/styles/global/_generic.scss */
[ng-cloak] {
    display: none !important;
}

/* line 5, web/common/styles/global/_generic.scss */
body, html {
    width: 100%;
    height: 100%;
    min-width: 1280px;
}

/* line 11, web/common/styles/global/_generic.scss */
body {
    font-family: Ubuntu;
    font-weight: normal;
    font-size: 14px;
    color: #424242;
}

/* line 18, web/common/styles/global/_generic.scss */
a {
    cursor: pointer;
}

/* line 22, web/common/styles/global/_generic.scss */
full-width {
    width: 100%;
}

/* line 26, web/common/styles/global/_generic.scss */
h1,
h2 {
    margin: 15px 0;
    font-size: 18px;
}

/* line 32, web/common/styles/global/_generic.scss */
hr {
    border-top: 1px solid #e0e0e0;
}

/* line 37, web/common/styles/global/_generic.scss */
section {
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    float: left;
    width: 100%;
}

    /* line 45, web/common/styles/global/_generic.scss */
    section.toptabs {
        margin-top: 41px;
    }
        /* line 48, web/common/styles/global/_generic.scss */
        section.toptabs .nav-tabs {
            margin-top: -41px;
        }

    /* line 53, web/common/styles/global/_generic.scss */
    section.top-part {
        margin-bottom: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* line 60, web/common/styles/global/_generic.scss */
    section.bottom-part {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        overflow-y: hidden;
    }

    /* line 67, web/common/styles/global/_generic.scss */
    section.top-part.top-only, section.top-part.bottom-only {
        border-radius: 5px;
        overflow: hidden;
    }

/* line 75, web/common/styles/global/_generic.scss */
.with-shadow {
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
}

    /* line 79, web/common/styles/global/_generic.scss */
    .with-shadow.top-part {
        -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* line 83, web/common/styles/global/_generic.scss */
    .with-shadow.bottom-part {
        -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    /* line 87, web/common/styles/global/_generic.scss */
    .with-shadow.top-part.top-only, .with-shadow.top-part.bottom-only {
        border-radius: 5px;
        overflow: hidden;
    }

/* line 94, web/common/styles/global/_generic.scss */
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px white inset;
}

/* line 98, web/common/styles/global/_generic.scss */
:focus {
    outline: 0;
}

/* line 102, web/common/styles/global/_generic.scss */
.singleline,
.no-wrap {
    white-space: nowrap;
}

/* line 107, web/common/styles/global/_generic.scss */
.break-all {
    word-break: break-all;
}

/* line 111, web/common/styles/global/_generic.scss */
.body-content {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
}
    /* line 117, web/common/styles/global/_generic.scss */
    .body-content main {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 216px;
        overflow: auto;
        padding: 20px 50px;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        -webkit-transition: left 0.4s;
        transition: left 0.4s;
    }

/* line 132, web/common/styles/global/_generic.scss */
.main-menu-is-closed .body-content main {
    left: 48px;
}

/* line 136, web/common/styles/global/_generic.scss */
.padding {
    padding: 15px 15px;
}

/* line 140, web/common/styles/global/_generic.scss */
.padding-top {
    padding-top: 15px;
}

/* line 144, web/common/styles/global/_generic.scss */
.padding-bottom {
    padding-bottom: 15px;
}

/* line 148, web/common/styles/global/_generic.scss */
.newlinefix {
    white-space: pre-line;
}

/* line 152, web/common/styles/global/_generic.scss */
.no-padding {
    padding: 0 !important;
}

/* line 156, web/common/styles/global/_generic.scss */
.no-padding-right {
    padding-right: 0 !important;
}

/* line 160, web/common/styles/global/_generic.scss */
.no-margin-bottom {
    margin-bottom: 0 !important;
}

/* line 164, web/common/styles/global/_generic.scss */
.no-margin-top {
    margin-top: 0 !important;
}

/* line 168, web/common/styles/global/_generic.scss */
.no-margin-right {
    margin-right: 0 !important;
}

/* line 172, web/common/styles/global/_generic.scss */
.margin-right-10 {
    margin-right: 10px !important;
}

/* line 176, web/common/styles/global/_generic.scss */
.no-border-top {
    border-top: none !important;
}

/* line 180, web/common/styles/global/_generic.scss */
.no-border-right {
    border-right: none !important;
}

/* line 184, web/common/styles/global/_generic.scss */
.no-border-bottom {
    border-bottom: none !important;
}

/* line 188, web/common/styles/global/_generic.scss */
.no-border-left {
    border-left: none !important;
}

/* line 192, web/common/styles/global/_generic.scss */
.border-bottom-thin {
    border-bottom: 1px solid #78909c;
}

/* line 196, web/common/styles/global/_generic.scss */
.border-top-thin {
    border-top: 1px solid #78909c;
}

/* line 200, web/common/styles/global/_generic.scss */
.normal-font-weight {
    font-weight: normal;
}

/* line 204, web/common/styles/global/_generic.scss */
.border-round,
.border-left-round,
.border-right-round {
    overflow: hidden;
}

/* line 210, web/common/styles/global/_generic.scss */
.border-round {
    border-radius: 5px;
}

/* line 214, web/common/styles/global/_generic.scss */
.border-right-round {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* line 219, web/common/styles/global/_generic.scss */
.border-left-round {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

/* line 224, web/common/styles/global/_generic.scss */
.font-bold {
    font-weight: bold !important;
}

/* line 229, web/common/styles/global/_generic.scss */
.with-seperating-border {
    position: relative;
}

    /* line 233, web/common/styles/global/_generic.scss */
    .with-seperating-border > .col {
        border-left: 1px solid #e0e0e0;
    }

        /* line 237, web/common/styles/global/_generic.scss */
        .with-seperating-border > .col:first-child {
            border-left: none;
        }

/* line 242, web/common/styles/global/_generic.scss */
.overflow-hidden {
    overflow: hidden;
}

/* line 246, web/common/styles/global/_generic.scss */
.scrollable {
    overflow: auto;
    background-color: #fff;
}

/* line 251, web/common/styles/global/_generic.scss */
.positive-color {
    color: #2e7d32;
}

/* line 255, web/common/styles/global/_generic.scss */
.negative-color {
    color: #ff1744;
}

/* line 259, web/common/styles/global/_generic.scss */
.neutral-color {
    color: #424242;
}

/* line 263, web/common/styles/global/_generic.scss */
.text-large {
    font-size: 1.5em;
}

/* line 267, web/common/styles/global/_generic.scss */
.pointer {
    cursor: pointer;
}

/* line 271, web/common/styles/global/_generic.scss */
.fa-check-circle {
    color: #173620;
}

/* line 275, web/common/styles/global/_generic.scss */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* line 279, web/common/styles/global/_generic.scss */
.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* line 4, web/common/styles/partials/_alignment.scss */
.grid th,
.grid td {
    padding-right: 15px;
}

/* line 9, web/common/styles/partials/_alignment.scss */
.grid th {
    vertical-align: bottom;
}

/* line 13, web/common/styles/partials/_alignment.scss */
.grid td {
    vertical-align: top;
}

/* line 18, web/common/styles/partials/_alignment.scss */
.text-align-center {
    text-align: center;
}

/* line 22, web/common/styles/partials/_alignment.scss */
.vertical-middle {
    vertical-align: middle;
}

/* line 27, web/common/styles/partials/_alignment.scss */
.row.spacer {
    background: #e0e0e0;
    padding-top: 15px;
}

/* line 32, web/common/styles/partials/_alignment.scss */
.row.border-top, .row.spacer {
    border-top: 1px solid #78909c;
}

/* line 37, web/common/styles/partials/_alignment.scss */
.row-eq-height {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* line 41, web/common/styles/partials/_alignment.scss */
.flex-middle,
.flex-center,
.flex-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

/* line 47, web/common/styles/partials/_alignment.scss */
.flex-middle {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* line 51, web/common/styles/partials/_alignment.scss */
.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* line 55, web/common/styles/partials/_alignment.scss */
.flex-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

/* line 59, web/common/styles/partials/_alignment.scss */
.flex-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* line 63, web/common/styles/partials/_alignment.scss */
.flex-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

/* line 67, web/common/styles/partials/_alignment.scss */
.width-auto {
    width: auto;
}

/* line 71, web/common/styles/partials/_alignment.scss */
.full-height {
    height: 100%;
}

/* line 75, web/common/styles/partials/_alignment.scss */
.full-width {
    width: 100%;
}

/* line 79, web/common/styles/partials/_alignment.scss */
.table {
    display: table;
}

/* line 83, web/common/styles/partials/_alignment.scss */
.table-row {
    display: table-row;
}

/* line 87, web/common/styles/partials/_alignment.scss */
.table-cell,
.table-cell-squeeze {
    display: table-cell;
}

/* line 92, web/common/styles/partials/_alignment.scss */
.table-cell-squeeze {
    height: 1px;
}

/* line 96, web/common/styles/partials/_alignment.scss */
.vertical-top {
    vertical-align: top;
}

/* line 2, web/common/styles/partials/_forms.scss */
.form-group-padding {
    padding: 0 15px;
    margin-bottom: 0;
}

/* line 8, web/common/styles/partials/_forms.scss */
.form-control {
    margin-bottom: 32px;
    border: 2px solid #78909c;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

    /* line 15, web/common/styles/partials/_forms.scss */
    .form-control:focus, .form-control:active {
        border: 2px solid #173620;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    /* line 21, web/common/styles/partials/_forms.scss */
    .form-control::-webkit-input-placeholder {
        /* WebKit, Blink, Edge */
        color: #e0e0e0;
    }

    /* line 25, web/common/styles/partials/_forms.scss */
    .form-control:-moz-placeholder {
        /* Mozilla Firefox 4 to 18 */
        color: #e0e0e0;
        opacity: 1;
    }

    /* line 30, web/common/styles/partials/_forms.scss */
    .form-control::-moz-placeholder {
        /* Mozilla Firefox 19+ */
        color: #e0e0e0;
        opacity: 1;
    }

    /* line 35, web/common/styles/partials/_forms.scss */
    .form-control:-ms-input-placeholder {
        /* Internet Explorer 10-11 */
        color: #e0e0e0;
    }

    /* line 39, web/common/styles/partials/_forms.scss */
    .form-control[type="number"] {
        text-align: right;
    }

    /* line 43, web/common/styles/partials/_forms.scss */
    .form-control.input-s {
        width: 120px;
    }

    /* line 47, web/common/styles/partials/_forms.scss */
    .form-control.input-xs {
        width: 80px;
    }

    /* line 50, web/common/styles/partials/_forms.scss */
    .form-control.input-percentage {
        width: 50px;
        /* Hide number input arrows */
        /* Chrome, Safari, Edge, Opera */
        /* Firefox */
    }
        /* line 54, web/common/styles/partials/_forms.scss */
        .form-control.input-percentage::-webkit-outer-spin-button, .form-control.input-percentage::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        /* line 60, web/common/styles/partials/_forms.scss */
        .form-control.input-percentage[type=number] {
            -webkit-appearance: textfield;
            appearance: textfield;
            -moz-appearance: textfield;
        }

    /* line 66, web/common/styles/partials/_forms.scss */
    .form-control.input-xl {
        width: 300px;
    }

/* line 71, web/common/styles/partials/_forms.scss */
.input-group {
    margin-bottom: 32px;
}

/* line 75, web/common/styles/partials/_forms.scss */
.input-group-addon {
    border: 2px solid #78909c;
    border-radius: 0;
    padding: 6px 10px;
    background: #fff;
}

/* line 84, web/common/styles/partials/_forms.scss */
.with-form-control .form-control,
.with-form-control .checkbox,
label .form-control,
label .checkbox {
    margin-bottom: 0;
    font-weight: normal;
}

/* line 92, web/common/styles/partials/_forms.scss */
td .checkbox {
    margin-top: 0;
}

/* line 97, web/common/styles/partials/_forms.scss */
.with-form-control,
label.with-form-control {
    margin-bottom: 32px;
}
    /* line 101, web/common/styles/partials/_forms.scss */
    .with-form-control.no-validation,
    label.with-form-control.no-validation {
        margin-bottom: 15px;
    }
    /* line 105, web/common/styles/partials/_forms.scss */
    .with-form-control textarea,
    label.with-form-control textarea {
        height: 200px;
    }

/* line 111, web/common/styles/partials/_forms.scss */
.form-inline .form-control {
    margin-right: 15px;
}

/* line 115, web/common/styles/partials/_forms.scss */
.form-inline .radio,
.form-inline .checkbox,
.form-inline .form-control {
    margin-bottom: 32px;
}
    /* line 118, web/common/styles/partials/_forms.scss */
    .form-inline .radio input[type="checkbox"],
    .form-inline .radio input[type="checkbox"].form-control,
    .form-inline .radio input[type="radio"],
    .form-inline .radio input[type="radio"].form-control,
    .form-inline .checkbox input[type="checkbox"],
    .form-inline .checkbox input[type="checkbox"].form-control,
    .form-inline .checkbox input[type="radio"],
    .form-inline .checkbox input[type="radio"].form-control,
    .form-inline .form-control input[type="checkbox"],
    .form-inline .form-control input[type="checkbox"].form-control,
    .form-inline .form-control input[type="radio"],
    .form-inline .form-control input[type="radio"].form-control {
        position: absolute;
    }
    /* line 127, web/common/styles/partials/_forms.scss */
    .form-inline .radio.no-margin-bottom,
    .form-inline .checkbox.no-margin-bottom,
    .form-inline .form-control.no-margin-bottom {
        margin-bottom: 0;
    }

/* line 133, web/common/styles/partials/_forms.scss */
.form-inline label .form-control,
.form-inline label .checkbox,
.form-inline label .radio {
    margin-bottom: 0;
}

/* line 139, web/common/styles/partials/_forms.scss */
.form-inline label span {
    margin-bottom: 5px;
}

/* line 144, web/common/styles/partials/_forms.scss */
.form-inline .with-form-control,
.form-inline label.with-form-control {
    margin-right: 15px;
}
    /* line 148, web/common/styles/partials/_forms.scss */
    .form-inline .with-form-control.last-inline-element,
    .form-inline .with-form-control .form-control,
    .form-inline label.with-form-control.last-inline-element,
    .form-inline label.with-form-control .form-control {
        margin-right: 0;
    }

/* line 154, web/common/styles/partials/_forms.scss */
.form-inline .last-inline-element {
    margin-right: 0;
}

/* line 159, web/common/styles/partials/_forms.scss */
textarea {
    height: 54px;
    resize: none;
}

/* line 164, web/common/styles/partials/_forms.scss */
input, textarea {
    -webkit-font-smoothing: antialiased;
}

/* custom checkbox */
/* line 170, web/common/styles/partials/_forms.scss */
.checkbox label {
    padding-left: 0;
}

/* line 177, web/common/styles/partials/_forms.scss */
.checkbox,
.radio {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    padding: 5px 0;
}

    /* line 184, web/common/styles/partials/_forms.scss */
    .checkbox label,
    .radio label {
        position: relative;
    }

        /* line 188, web/common/styles/partials/_forms.scss */
        .checkbox label:before,
        .radio label:before {
            content: "";
            display: inline-block;
            -webkit-box-sizing: content-box;
            box-sizing: content-box;
            width: 1em;
            height: 1em;
            margin-right: 0.4em;
            line-height: 1em;
            background: #fff;
            border: 2px solid #78909c;
            vertical-align: middle;
            text-align: center;
        }

    /* line 202, web/common/styles/partials/_forms.scss */
    .checkbox input[type="checkbox"],
    .checkbox input[type="checkbox"].form-control,
    .checkbox input[type="radio"],
    .checkbox input[type="radio"].form-control,
    .radio input[type="checkbox"],
    .radio input[type="checkbox"].form-control,
    .radio input[type="radio"],
    .radio input[type="radio"].form-control {
        position: absolute;
        left: -100%;
    }

    /* line 210, web/common/styles/partials/_forms.scss */
    .checkbox input:focus + label:before,
    .checkbox input:checked:focus + label:before,
    .radio input:focus + label:before,
    .radio input:checked:focus + label:before {
        border-color: #173620;
    }

    /* line 215, web/common/styles/partials/_forms.scss */
    .checkbox input:checked + label:before,
    .radio input:checked + label:before {
        content: "\f00c";
        font-family: FontAwesome;
        color: #fff;
        background: #9cc493;
        border-color: #9cc493;
    }

/* line 223, web/common/styles/partials/_forms.scss */
input:checked + label:before .checkbox.deactivate, input:checked + label:before
.radio.deactivate {
    content: "\f00d";
    font-family: FontAwesome;
    color: #ff1744;
    background: #ff1744;
    border-color: #ff1744;
}

/* line 232, web/common/styles/partials/_forms.scss */
.checkbox.indeterminate input:checked + label:before,
.radio.indeterminate input:checked + label:before {
    content: "\f068";
}

/* line 237, web/common/styles/partials/_forms.scss */
.checkbox input[disabled] + label,
.radio input[disabled] + label {
    color: #e0e0e0;
}

    /* line 241, web/common/styles/partials/_forms.scss */
    .checkbox input[disabled] + label:before,
    .radio input[disabled] + label:before {
        color: #78909c;
        background: #f5f5f5;
        border-color: #78909c;
    }

/* line 247, web/common/styles/partials/_forms.scss */
.checkbox .with-form-control,
.radio .with-form-control {
    margin-bottom: 0;
}

/* line 253, web/common/styles/partials/_forms.scss */
.radio label:before {
    border-radius: 50%;
}

/* line 259, web/common/styles/partials/_forms.scss */
.dropdown {
    max-width: 100%;
}

    /* line 264, web/common/styles/partials/_forms.scss */
    .dropdown .dropdown-toggle {
        cursor: pointer;
        color: #173620;
        padding-right: 25px;
        position: relative;
        min-width: 120px;
        text-align: left;
    }

        /* line 273, web/common/styles/partials/_forms.scss */
        .dropdown .dropdown-toggle span {
            display: block;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* line 281, web/common/styles/partials/_forms.scss */
        .dropdown .dropdown-toggle i {
            font-weight: bold;
            position: absolute;
            right: 10px;
            top: 50%;
            margin-top: -7px;
        }

            /* line 289, web/common/styles/partials/_forms.scss */
            .dropdown .dropdown-toggle i.fa-angle-up {
                display: none;
            }

            /* line 293, web/common/styles/partials/_forms.scss */
            .dropdown .dropdown-toggle i.fa-angle-down {
                display: inline-block;
            }

    /* line 302, web/common/styles/partials/_forms.scss */
    .dropdown.open i.fa-angle-up {
        display: inline-block;
    }

    /* line 306, web/common/styles/partials/_forms.scss */
    .dropdown.open i.fa-angle-down {
        display: none;
    }

    /* line 312, web/common/styles/partials/_forms.scss */
    .dropdown li a:hover {
        background-color: #9cc493;
    }

    /* line 316, web/common/styles/partials/_forms.scss */
    .dropdown .country-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
        /* line 319, web/common/styles/partials/_forms.scss */
        .dropdown .country-container .country-code {
            width: 45px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }
        /* line 323, web/common/styles/partials/_forms.scss */
        .dropdown .country-container .country-name {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
        }

/* line 330, web/common/styles/partials/_forms.scss */
.menu-align-right .dropdown-menu {
    right: 0;
    left: auto;
}

/* line 336, web/common/styles/partials/_forms.scss */
.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: none;
    box-shadow: none;
}

/* line 341, web/common/styles/partials/_forms.scss */
.pull-right .dropdown-menu {
    right: 0;
    left: auto;
}

/* line 347, web/common/styles/partials/_forms.scss */
.dropdown-menu {
    border-radius: 0;
    padding: 0;
    min-width: 100px;
    max-height: 200px;
    overflow: auto;
}

/* line 356, web/common/styles/partials/_forms.scss */
.date-container .dropdown-menu {
    min-width: inherit;
    max-height: inherit;
    padding: 10px;
    color: #173620;
    margin-top: 1px;
}
    /* line 363, web/common/styles/partials/_forms.scss */
    .date-container .dropdown-menu strong, .date-container .dropdown-menu th {
        font-weight: 500;
        text-transform: capitalize;
    }
    /* line 368, web/common/styles/partials/_forms.scss */
    .date-container .dropdown-menu th, .date-container .dropdown-menu .text-muted {
        color: #78909c;
    }
    /* line 372, web/common/styles/partials/_forms.scss */
    .date-container .dropdown-menu .btn {
        border: 0 !important;
        margin: 0 !important;
    }
        /* line 376, web/common/styles/partials/_forms.scss */
        .date-container .dropdown-menu .btn.btn-sm {
            font-size: 14px;
        }
        /* line 380, web/common/styles/partials/_forms.scss */
        .date-container .dropdown-menu .btn.active, .date-container .dropdown-menu .btn :active {
            -webkit-box-shadow: none;
            box-shadow: none;
            background-color: #9cc493;
        }
        /* line 385, web/common/styles/partials/_forms.scss */
        .date-container .dropdown-menu .btn:hover {
            color: #173620;
        }

/* line 392, web/common/styles/partials/_forms.scss */
.date-container.menu-align-top .dropdown-menu {
    top: -280px !important;
    bottom: auto !important;
}

/* line 400, web/common/styles/partials/_forms.scss */
.autocompleter {
    position: relative;
}

    /* line 404, web/common/styles/partials/_forms.scss */
    .autocompleter .loader {
        position: absolute;
        top: 0;
        right: 15px;
        z-index: 1;
        width: 1em;
        height: 1em;
        margin-top: 0.5em;
        line-height: 1;
        color: #78909c;
    }

/* line 417, web/common/styles/partials/_forms.scss */
.form-inline .form-control.inputwithsaveandcancel {
    width: 75% !important;
}

/* line 4, web/common/styles/partials/_buttons.scss */
.btn {
    padding: 6px 12px;
    font-weight: bold;
    border-radius: 4px;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

    /* line 11, web/common/styles/partials/_buttons.scss */
    .btn.btn-default {
        color: #173620;
        border: 2px solid #173620;
        background: #fff;
    }

    /* line 17, web/common/styles/partials/_buttons.scss */
    .btn.btn-primary {
        color: #fff;
        border: 2px solid #173620;
        background: #173620;
    }

    /* line 23, web/common/styles/partials/_buttons.scss */
    .btn.btn-success {
        color: #fff;
        border: 2px solid #2e7d32;
        background: #2e7d32;
    }

    /* line 29, web/common/styles/partials/_buttons.scss */
    .btn.btn-danger {
        color: #fff;
        border: 2px solid #ff1744;
        background: #ff1744;
    }

    /* line 35, web/common/styles/partials/_buttons.scss */
    .btn.btn-repetitive {
        color: #173620;
        border: 2px solid transparent;
        background: transparent;
    }

    /* line 41, web/common/styles/partials/_buttons.scss */
    .btn.btn-mutually-exclusive-visible {
        width: 100%;
    }

    /* line 46, web/common/styles/partials/_buttons.scss */
    .btn:hover.btn-default {
        color: #173620;
        border: 2px solid #173620;
        background: #fff;
    }

    /* line 52, web/common/styles/partials/_buttons.scss */
    .btn:hover.btn-primary {
        color: #fff;
        border: 2px solid #173620;
        background: #173620;
    }

    /* line 58, web/common/styles/partials/_buttons.scss */
    .btn:hover.btn-repetitive {
        color: #fff;
        border: 2px solid #173620;
        background: #173620;
    }

    /* line 67, web/common/styles/partials/_buttons.scss */
    .btn:active {
        outline: none !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

        /* line 72, web/common/styles/partials/_buttons.scss */
        .btn:active.btn-default {
            color: #173620;
            border: 2px solid #173620;
            background: #9cc493;
        }

        /* line 78, web/common/styles/partials/_buttons.scss */
        .btn:active.btn-primary {
            color: #173620;
            border: 2px solid #9cc493;
            background: #9cc493;
        }

        /* line 84, web/common/styles/partials/_buttons.scss */
        .btn:active.btn-repetitive {
            color: #173620;
            border: 2px solid #9cc493;
            background: #9cc493;
        }

    /* line 92, web/common/styles/partials/_buttons.scss */
    .btn[disabled].btn-default {
        color: #78909c;
        border: 2px solid #e0e0e0;
        background: #f5f5f5;
    }

    /* line 98, web/common/styles/partials/_buttons.scss */
    .btn[disabled].btn-primary {
        color: #78909c;
        border: 2px solid #e0e0e0;
        background: #e0e0e0;
    }

    /* line 104, web/common/styles/partials/_buttons.scss */
    .btn[disabled].btn-repetitive {
        color: #e0e0e0;
        border: 2px solid transparent;
        background: transparent;
    }

/* line 3, web/common/styles/partials/_icons.scss */
.icon {
    display: inline-block;
    vertical-align: middle;
}
    /* line 7, web/common/styles/partials/_icons.scss */
    .icon.icon-info {
        fill: #173620;
        width: 15px;
        height: 15px;
    }
    /* line 13, web/common/styles/partials/_icons.scss */
    .icon.icon-gfhlogo {
        fill: #173620;
        max-height: 80px;
    }

/* line 20, web/common/styles/partials/_icons.scss */
.main-menu header .icon {
    fill: #173620;
}

/* line 24, web/common/styles/partials/_icons.scss */
.main-menu ul .icon,
.main-menu .menu-toggle .icon {
    fill: white;
    width: 24px;
    height: 24px;
}

/* line 33, web/common/styles/partials/_icons.scss */
.fa.fa-toggle-off, .fa.fa-toggle-on {
    cursor: pointer;
    font-size: 1.5em;
    top: 3px;
    position: relative;
}

/* line 8, web/common/styles/partials/_validation.scss */
.ng-submitted .ng-invalid,
.ng-submitted .radio .ng-invalid + label:before,
.ng-submitted .checkbox .ng-invalid + label:before,
.ng-touched.is-invalid,
.ng-touched.ng-invalid {
    border-color: #ff1744;
}

    /* line 12, web/common/styles/partials/_validation.scss */
    .ng-submitted .ng-invalid:focus,
    .ng-submitted .radio .ng-invalid + label:before:focus,
    .ng-submitted .checkbox .ng-invalid + label:before:focus,
    .ng-touched.is-invalid:focus,
    .ng-touched.ng-invalid:focus {
        border-color: #173620;
    }

/* line 17, web/common/styles/partials/_validation.scss */
.validation-container {
    position: relative;
    display: inline-block;
    vertical-align: top;
}

/* line 23, web/common/styles/partials/_validation.scss */
label > input {
    margin-top: 5px;
}

/* line 27, web/common/styles/partials/_validation.scss */
label > div {
    margin-top: 5px;
}

/* line 31, web/common/styles/partials/_validation.scss */
.validation-inline {
    color: #ff1744;
}

/* line 36, web/common/styles/partials/_validation.scss */
.validation-message {
    position: absolute;
    max-width: 90%;
    font-weight: normal;
    margin-top: -24.5px;
    font-size: 12.36364px;
    line-height: 17px;
    z-index: 1;
}

    /* line 46, web/common/styles/partials/_validation.scss */
    .validation-message:hover {
        max-width: none;
        margin-left: -7.5px;
        padding-left: 7.5px;
        padding-right: 7.5px;
        background: #fff;
        -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
        z-index: 2;
    }

    /* line 56, web/common/styles/partials/_validation.scss */
    .validation-message div {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* line 63, web/common/styles/partials/_validation.scss */
    .validation-message .validation-required,
    .validation-message .validation-min-max,
    .validation-message .validation-unique {
        color: #ff1744;
    }

    /* line 69, web/common/styles/partials/_validation.scss */
    .validation-message .validation-hint {
        color: #173620;
    }

    /* line 73, web/common/styles/partials/_validation.scss */
    .validation-message .validation-warning {
        color: #9cc493;
    }

    /* line 77, web/common/styles/partials/_validation.scss */
    .validation-message .validation-error {
        color: #ff1744;
    }

/* line 82, web/common/styles/partials/_validation.scss */
.warning-dialog {
    font-size: 12px;
    color: #EF6C00;
    background-color: #FFFDE7;
    border: 1px solid #EF6C00;
    padding-left: 10px;
    padding-right: 10px;
}
    /* line 90, web/common/styles/partials/_validation.scss */
    .warning-dialog i {
        padding-right: 10px;
    }

/* line 5, web/common/styles/partials/_dialog.scss */
.ngdialog,
.ngdialog.ngdialog-theme-default {
    min-width: 1280px;
    padding: 50px 0;
}

    /* line 10, web/common/styles/partials/_dialog.scss */
    .ngdialog .ngdialog-overlay,
    .ngdialog.ngdialog-theme-default .ngdialog-overlay {
        background: rgba(0, 0, 0, 0.6);
    }

    /* line 15, web/common/styles/partials/_dialog.scss */
    .ngdialog .ngdialog-content,
    .ngdialog.ngdialog-theme-default .ngdialog-content {
        width: 80%;
        padding: 0;
        border-radius: 0;
        font-family: 'ubuntu';
        background: #e0e0e0;
        -webkit-transform: translateZ(0);
        max-height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
    }

        /* line 28, web/common/styles/partials/_dialog.scss */
        .ngdialog .ngdialog-content .row.border-bottom,
        .ngdialog.ngdialog-theme-default .ngdialog-content .row.border-bottom {
            border-bottom: 1px solid #e0e0e0;
        }

        /* line 33, web/common/styles/partials/_dialog.scss */
        .ngdialog .ngdialog-content .row .col,
        .ngdialog.ngdialog-theme-default .ngdialog-content .row .col {
            border-top: 1px solid #78909c;
            padding: 0;
            background-color: white;
        }

            /* line 39, web/common/styles/partials/_dialog.scss */
            .ngdialog .ngdialog-content .row .col.padding,
            .ngdialog.ngdialog-theme-default .ngdialog-content .row .col.padding {
                padding: 15px 15px;
            }

            /* line 43, web/common/styles/partials/_dialog.scss */
            .ngdialog .ngdialog-content .row .col h2,
            .ngdialog.ngdialog-theme-default .ngdialog-content .row .col h2 {
                font-size: 1.2em;
                margin-left: 15px;
                margin-right: 15px;
            }

        /* line 51, web/common/styles/partials/_dialog.scss */
        .ngdialog .ngdialog-content .row.padding .col,
        .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .col {
            border-top: 1px solid #78909c;
            border-bottom: 1px solid #78909c;
        }

            /* line 56, web/common/styles/partials/_dialog.scss */
            .ngdialog .ngdialog-content .row.padding .col:first-child,
            .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .col:first-child {
                border-left: 1px solid #78909c;
            }

            /* line 60, web/common/styles/partials/_dialog.scss */
            .ngdialog .ngdialog-content .row.padding .col:last-child,
            .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .col:last-child {
                border-right: 1px solid #78909c;
            }

        /* line 65, web/common/styles/partials/_dialog.scss */
        .ngdialog .ngdialog-content .row.padding .with-title,
        .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .with-title {
            background: #f5f5f5;
        }

            /* line 69, web/common/styles/partials/_dialog.scss */
            .ngdialog .ngdialog-content .row.padding .with-title h2,
            .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .with-title h2 {
                color: #173620;
                text-transform: uppercase;
            }

    /* line 79, web/common/styles/partials/_dialog.scss */
    .ngdialog .dialog-title,
    .ngdialog.ngdialog-theme-default .dialog-title {
        padding: 0 15px;
        background-color: #173620;
        color: #fff;
        overflow: hidden;
    }

        /* line 86, web/common/styles/partials/_dialog.scss */
        .ngdialog .dialog-title h1,
        .ngdialog .dialog-title h2,
        .ngdialog.ngdialog-theme-default .dialog-title h1,
        .ngdialog.ngdialog-theme-default .dialog-title h2 {
            margin: 15px 0;
            line-height: 1.33333;
        }

    /* line 94, web/common/styles/partials/_dialog.scss */
    .ngdialog .close-button-holder,
    .ngdialog.ngdialog-theme-default .close-button-holder {
        margin: 15px 0;
        vertical-align: middle;
        cursor: pointer;
        font-size: 24px;
    }

    /* line 102, web/common/styles/partials/_dialog.scss */
    .ngdialog table.table,
    .ngdialog.ngdialog-theme-default table.table {
        background-color: white;
    }

    /* line 107, web/common/styles/partials/_dialog.scss */
    .ngdialog .dialog-button-bar,
    .ngdialog.ngdialog-theme-default .dialog-button-bar {
        background-color: white;
        border-top: 1px solid #173620;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: right;
    }

        /* line 115, web/common/styles/partials/_dialog.scss */
        .ngdialog .dialog-button-bar .btn,
        .ngdialog.ngdialog-theme-default .dialog-button-bar .btn {
            margin-left: 15px;
        }

    /* line 121, web/common/styles/partials/_dialog.scss */
    .ngdialog.with-scrollable-content .ngdialog-content,
    .ngdialog.ngdialog-theme-default.with-scrollable-content .ngdialog-content {
        height: 100%;
    }

    /* line 127, web/common/styles/partials/_dialog.scss */
    .ngdialog.box {
        padding: 100px 0;
    }
        /* line 130, web/common/styles/partials/_dialog.scss */
        .ngdialog.box .ngdialog-content {
            width: 40%;
        }

/* line 4, web/common/styles/partials/_toggle-row.scss */
.toggle-row.is-closed {
    display: none;
}

/* line 8, web/common/styles/partials/_toggle-row.scss */
.toggle-row.is-open {
    display: block;
}

/* line 14, web/common/styles/partials/_toggle-row.scss */
.toggle-button-container {
    position: relative;
}

    /* line 18, web/common/styles/partials/_toggle-row.scss */
    .toggle-button-container .toggle-button {
        position: absolute;
        bottom: 6px;
        right: 12px;
    }

/* line 3, web/common/styles/partials/_states.scss */
.state-inline-active,
.state-inline-matched {
    color: #2e7d32;
}

/* line 8, web/common/styles/partials/_states.scss */
.state-inline-concept {
    color: #9cc493;
}

/* line 12, web/common/styles/partials/_states.scss */
.state-inline-expired,
.state-inline-not-matched {
    color: #ff1744;
}

/* line 17, web/common/styles/partials/_states.scss */
.state-block-active,
.dropdown .state-block-active {
    color: #fff;
    background: #2e7d32;
    border-color: #2e7d32;
}

/* line 24, web/common/styles/partials/_states.scss */
.state-block-concept,
.dropdown .state-block-concept {
    color: #fff;
    background: #9cc493;
    border-color: #9cc493;
}

/* line 31, web/common/styles/partials/_states.scss */
.state-block-neutral,
.dropdown .state-block-neutral {
    color: #fff;
    background: #173620;
    border-color: #173620;
}

/* line 38, web/common/styles/partials/_states.scss */
.state-block-expired,
.dropdown .state-block-expired,
.state-block-not-matched {
    color: #fff;
    background: #ff1744;
    border-color: #ff1744;
}

/* line 46, web/common/styles/partials/_states.scss */
.state-label {
    font-weight: normal;
    min-width: 120px;
    padding: 0.2em 0;
    text-align: center;
    margin-bottom: 0;
}

/* line 3, web/common/styles/partials/_nav.scss */
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* line 10, web/common/styles/partials/_nav.scss */
.nav-item {
    border: 1px solid #e0e0e0;
    border-right: none;
    vertical-align: middle;
    overflow: hidden;
}

    /* line 17, web/common/styles/partials/_nav.scss */
    .nav-item:first-child {
        border-radius: 5px 0 0 5px;
    }

    /* line 21, web/common/styles/partials/_nav.scss */
    .nav-item:last-child {
        border-radius: 0 5px 5px 0;
    }

    /* line 25, web/common/styles/partials/_nav.scss */
    .nav-item.highlight-on-hover:hover {
        cursor: pointer;
        background: #9cc493;
    }

    /* line 30, web/common/styles/partials/_nav.scss */
    .nav-item.highlighted {
        position: relative;
    }

        /* line 34, web/common/styles/partials/_nav.scss */
        .nav-item.highlighted:after {
            content: "";
            display: block;
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 5px;
            background: #9cc493;
        }

    /* line 46, web/common/styles/partials/_nav.scss */
    .nav-item .summary td:first-child,
    .nav-item .summary span {
        padding-right: 15px;
    }

    /* line 52, web/common/styles/partials/_nav.scss */
    .nav-item .counter {
        display: inline-block;
        padding: 0 5px;
        border-radius: 2px;
    }

/* line 60, web/common/styles/partials/_nav.scss */
.navbar {
    border-radius: 5px;
    -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
    font-size: 13px;
}

    /* line 66, web/common/styles/partials/_nav.scss */
    .navbar .nav-list {
        display: table;
        width: 100%;
    }

    /* line 72, web/common/styles/partials/_nav.scss */
    .navbar .nav-item {
        display: table-cell;
        padding: 15px 15px;
    }

        /* line 77, web/common/styles/partials/_nav.scss */
        .navbar .nav-item.squeeze {
            width: 1px;
        }

        /* line 81, web/common/styles/partials/_nav.scss */
        .navbar .nav-item.with-full-height-child {
            padding-top: 0;
            padding-bottom: 0;
        }

        /* line 86, web/common/styles/partials/_nav.scss */
        .navbar .nav-item.with-btn, .navbar .nav-item.with-disabled-btn {
            padding: 0;
            border-color: #173620;
        }
            /* line 91, web/common/styles/partials/_nav.scss */
            .navbar .nav-item.with-btn .btn, .navbar .nav-item.with-disabled-btn .btn {
                display: block;
                height: 100%;
                padding: 15px 15px;
                border-radius: 0;
            }
            /* line 98, web/common/styles/partials/_nav.scss */
            .navbar .nav-item.with-btn + .nav-item, .navbar .nav-item.with-disabled-btn + .nav-item {
                border-left-color: #173620;
            }

        /* line 103, web/common/styles/partials/_nav.scss */
        .navbar .nav-item.with-disabled-btn {
            border-color: #e0e0e0;
        }

        /* line 107, web/common/styles/partials/_nav.scss */
        .navbar .nav-item .counter {
            min-width: 26px;
        }

/* line 114, web/common/styles/partials/_nav.scss */
.navtabs {
    font-size: 13px;
}

    /* line 118, web/common/styles/partials/_nav.scss */
    .navtabs:after {
        position: relative;
        content: "";
        display: block;
        clear: both;
        border-bottom: 2px solid #173620;
        z-index: 1;
    }

    /* line 128, web/common/styles/partials/_nav.scss */
    .navtabs .nav-item {
        float: left;
        margin-right: 5px;
        border: 1px solid #78909c;
        border-bottom: 5px solid transparent;
    }

        /* line 135, web/common/styles/partials/_nav.scss */
        .navtabs .nav-item:first-child {
            border-radius: 5px 0 0 0;
        }

        /* line 139, web/common/styles/partials/_nav.scss */
        .navtabs .nav-item:last-child {
            border-radius: 0 5px 0 0;
        }

        /* line 143, web/common/styles/partials/_nav.scss */
        .navtabs .nav-item a {
            display: inline-block;
            padding: 7.5px 15px;
            text-decoration: none;
        }

        /* line 149, web/common/styles/partials/_nav.scss */
        .navtabs .nav-item .counter {
            margin-left: 5px;
            color: #fff;
            background: #78909c;
        }

        /* line 156, web/common/styles/partials/_nav.scss */
        .navtabs .nav-item.active {
            -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
            border-color: #173620;
        }

            /* line 161, web/common/styles/partials/_nav.scss */
            .navtabs .nav-item.active a {
                background: #173620;
                color: #fff;
            }

            /* line 166, web/common/styles/partials/_nav.scss */
            .navtabs .nav-item.active .counter {
                background: #fff;
                color: #173620;
            }

/* line 174, web/common/styles/partials/_nav.scss */
.with-navtabs {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

/* line 4, web/common/styles/partials/_tables.scss */
.table {
    color: #424242;
    border-collapse: separate;
    border-style: none;
    margin: 0;
}

    /* line 15, web/common/styles/partials/_tables.scss */
    .table > thead > tr.active:not(.disabled) > td,
    .table > tbody > tr.active:not(.disabled) > td {
        background-color: #9cc493;
    }

    /* line 21, web/common/styles/partials/_tables.scss */
    .table > thead > tr > th,
    .table > tbody > tr > th {
        color: #424242;
        font-weight: 500;
        padding: 15px;
        border: 0;
    }

        /* line 28, web/common/styles/partials/_tables.scss */
        .table > thead > tr > th:first-child,
        .table > tbody > tr > th:first-child {
            padding-left: 20px;
        }

        /* line 32, web/common/styles/partials/_tables.scss */
        .table > thead > tr > th.vertical-middle,
        .table > tbody > tr > th.vertical-middle {
            vertical-align: middle;
        }

        /* line 37, web/common/styles/partials/_tables.scss */
        .table > thead > tr > th.vertical-text-header,
        .table > tbody > tr > th.vertical-text-header {
            font-size: 14px;
            background-color: #173620;
            color: white;
            width: 30px;
        }

            /* line 45, web/common/styles/partials/_tables.scss */
            .table > thead > tr > th.vertical-text-header .vertical-text-holder,
            .table > tbody > tr > th.vertical-text-header .vertical-text-holder {
                position: relative;
            }

                /* line 49, web/common/styles/partials/_tables.scss */
                .table > thead > tr > th.vertical-text-header .vertical-text-holder span,
                .table > tbody > tr > th.vertical-text-header .vertical-text-holder span {
                    position: absolute;
                    left: 15px;
                    right: 15px;
                    top: -5px;
                    bottom: -5px;
                    width: 90px;
                    text-align: center;
                    display: inline-block;
                    -webkit-transform: rotate(90deg);
                    transform: rotate(90deg);
                    -webkit-transform-origin: 0px 0px;
                    transform-origin: 0px 0px;
                }

        /* line 64, web/common/styles/partials/_tables.scss */
        .table > thead > tr > th .fa-arrow-circle-down, .table > thead > tr > th .fa-arrow-circle-up,
        .table > tbody > tr > th .fa-arrow-circle-down,
        .table > tbody > tr > th .fa-arrow-circle-up {
            color: #9cc493;
        }

    /* line 70, web/common/styles/partials/_tables.scss */
    .table > thead > tr > td,
    .table > tbody > tr > td {
        padding: 15px;
    }

        /* line 73, web/common/styles/partials/_tables.scss */
        .table > thead > tr > td.sm,
        .table > tbody > tr > td.sm {
            padding: 10px;
        }

        /* line 77, web/common/styles/partials/_tables.scss */
        .table > thead > tr > td.vertical-middle,
        .table > tbody > tr > td.vertical-middle {
            vertical-align: middle;
        }

        /* line 81, web/common/styles/partials/_tables.scss */
        .table > thead > tr > td .radio,
        .table > tbody > tr > td .radio {
            margin: 0;
        }

        /* line 85, web/common/styles/partials/_tables.scss */
        .table > thead > tr > td .checkbox,
        .table > thead > tr > td .radio,
        .table > tbody > tr > td .checkbox,
        .table > tbody > tr > td .radio {
            padding: 0;
        }

        /* line 91, web/common/styles/partials/_tables.scss */
        .table > thead > tr > td > span.moneycell,
        .table > tbody > tr > td > span.moneycell {
            white-space: nowrap;
        }

    /* line 97, web/common/styles/partials/_tables.scss */
    .table > thead > tr .with-btn,
    .table > tbody > tr .with-btn {
        padding: 11px;
    }

    /* line 102, web/common/styles/partials/_tables.scss */
    .table > thead > tr.disabled,
    .table > tbody > tr.disabled {
        background-color: #f5f5f5;
        color: #78909c;
    }

    /* line 112, web/common/styles/partials/_tables.scss */
    .table.clickable > tr,
    .table.clickable > thead > tr,
    .table.clickable > tbody > tr {
        cursor: pointer;
    }

        /* line 116, web/common/styles/partials/_tables.scss */
        .table.clickable > tr > td,
        .table.clickable > thead > tr > td,
        .table.clickable > tbody > tr > td {
            -webkit-transition: 0.4s;
            transition: 0.4s;
        }

        /* line 121, web/common/styles/partials/_tables.scss */
        .table.clickable > tr:hover:not(.disabled) > td,
        .table.clickable > thead > tr:hover:not(.disabled) > td,
        .table.clickable > tbody > tr:hover:not(.disabled) > td {
            background-color: #9cc493;
        }

        /* line 126, web/common/styles/partials/_tables.scss */
        .table.clickable > tr.active > td:first-child,
        .table.clickable > thead > tr.active > td:first-child,
        .table.clickable > tbody > tr.active > td:first-child {
            border-left: 5px solid #9cc493;
        }

        /* line 130, web/common/styles/partials/_tables.scss */
        .table.clickable > tr > td:first-child,
        .table.clickable > thead > tr > td:first-child,
        .table.clickable > tbody > tr > td:first-child {
            border-left: 5px solid transparent;
        }

        /* line 137, web/common/styles/partials/_tables.scss */
        .table.clickable > tr.non-clickable.active > td, .table.clickable > tr.non-clickable.active th, .table.clickable > tr.non-clickable:hover > td, .table.clickable > tr.non-clickable:hover th,
        .table.clickable > thead > tr.non-clickable.active > td,
        .table.clickable > thead > tr.non-clickable.active th,
        .table.clickable > thead > tr.non-clickable:hover > td,
        .table.clickable > thead > tr.non-clickable:hover th,
        .table.clickable > tbody > tr.non-clickable.active > td,
        .table.clickable > tbody > tr.non-clickable.active th,
        .table.clickable > tbody > tr.non-clickable:hover > td,
        .table.clickable > tbody > tr.non-clickable:hover th {
            cursor: default;
            background-color: inherit;
        }

            /* line 143, web/common/styles/partials/_tables.scss */
            .table.clickable > tr.non-clickable.active > td:first-child,
            .table.clickable > thead > tr.non-clickable.active > td:first-child,
            .table.clickable > tbody > tr.non-clickable.active > td:first-child {
                border-left: 5px solid transparent;
            }

    /* line 152, web/common/styles/partials/_tables.scss */
    .table.with-sub-table .sub-table {
        border-collapse: separate;
    }

        /* line 156, web/common/styles/partials/_tables.scss */
        .table.with-sub-table .sub-table > tbody + tbody {
            border: none;
        }

        /* line 162, web/common/styles/partials/_tables.scss */
        .table.with-sub-table .sub-table > tbody > tr td:first-child,
        .table.with-sub-table .sub-table > tr td:first-child {
            border-left: 5px solid transparent;
        }

        /* line 166, web/common/styles/partials/_tables.scss */
        .table.with-sub-table .sub-table > tbody > tr.active td,
        .table.with-sub-table .sub-table > tr.active td {
            background-color: #9cc493 !important;
        }

    /* line 174, web/common/styles/partials/_tables.scss */
    .table.with-sub-table > tbody > tr td:first-child,
    .table.with-sub-table > tr td:first-child {
        border-left: 5px solid transparent;
    }

    /* line 178, web/common/styles/partials/_tables.scss */
    .table.with-sub-table > tbody > tr.active td,
    .table.with-sub-table > tr.active td {
        background-color: #9cc493;
    }

        /* line 182, web/common/styles/partials/_tables.scss */
        .table.with-sub-table > tbody > tr.active td:first-child,
        .table.with-sub-table > tr.active td:first-child {
            border-left: 5px solid #9cc493;
        }

    /* line 187, web/common/styles/partials/_tables.scss */
    .table.with-sub-table td.with-sub-table {
        padding: 0;
    }

    /* line 192, web/common/styles/partials/_tables.scss */
    .table.with-sub-table .sub-table-container {
        position: relative;
        width: 100%;
        padding-left: 100px;
    }

        /* line 198, web/common/styles/partials/_tables.scss */
        .table.with-sub-table .sub-table-container:before, .table.with-sub-table .sub-table-container:after {
            position: absolute;
            left: 50px;
            font-size: 26px;
        }

        /* line 205, web/common/styles/partials/_tables.scss */
        .table.with-sub-table .sub-table-container:before {
            content: "";
            top: 0;
            width: 13px;
            height: 50%;
            margin-left: -6.5px;
            border-left: 2.88889px solid #e0e0e0;
            border-bottom: 2.88889px solid #e0e0e0;
        }

        /* line 215, web/common/styles/partials/_tables.scss */
        .table.with-sub-table .sub-table-container:after {
            content: "\f105";
            top: 50%;
            width: 26px;
            height: 26px;
            margin-top: -14.85714px;
            color: #e0e0e0;
            font-family: FontAwesome;
            line-height: 1;
        }

        /* line 226, web/common/styles/partials/_tables.scss */
        .table.with-sub-table .sub-table-container > :first-child {
            border-left: 1px solid #e0e0e0;
        }

/* line 233, web/common/styles/partials/_tables.scss */
.table-header {
    padding: 15px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: #173620;
    border-radius: 5px 5px 0 0;
}

/* line 15, web/common/styles/partials/_toasts.scss */
.toast.toast-info:before {
    content: "";
    font-family: FontAwesome;
    line-height: 1;
    font-size: 26px;
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 15px;
    color: #173620;
}

/* line 19, web/common/styles/partials/_toasts.scss */
.toast.toast-success:before {
    content: "";
    font-family: FontAwesome;
    line-height: 1;
    font-size: 26px;
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 15px;
    color: #2e7d32;
}

/* line 23, web/common/styles/partials/_toasts.scss */
.toast.toast-error:before {
    content: "";
    font-family: FontAwesome;
    line-height: 1;
    font-size: 26px;
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 15px;
    color: #ff1744;
}

/* line 27, web/common/styles/partials/_toasts.scss */
.toast.toast-warning:before {
    content: "";
    font-family: FontAwesome;
    line-height: 1;
    font-size: 26px;
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 15px;
    color: #9cc493;
}

/* line 31, web/common/styles/partials/_toasts.scss */
.toast {
    background-image: none;
    background-color: white;
    font-family: ubuntu;
}

/* line 37, web/common/styles/partials/_toasts.scss */
.toast-close-button {
    color: #424242;
    opacity: 1;
}

/* line 42, web/common/styles/partials/_toasts.scss */
.toast-message {
    color: #424242;
}

/* line 46, web/common/styles/partials/_toasts.scss */
.toast-title {
    color: #424242;
}

/* line 4, web/common/styles/partials/_login.scss */
.login {
    max-width: 600px;
}

    /* line 8, web/common/styles/partials/_login.scss */
    .login.table {
        margin: auto;
    }

    /* line 12, web/common/styles/partials/_login.scss */
    .login .login-form {
        overflow: hidden;
        padding: 15px 15px;
    }

    /* line 17, web/common/styles/partials/_login.scss */
    .login h2 {
        margin: -15px -15px 30px -15px;
        padding: 15px 15px;
        color: #fff;
        background: #173620;
    }

/* line 4, web/common/styles/partials/_main-menu.scss */
.main-menu-is-closed .main-menu {
    width: 48px;
}

    /* line 8, web/common/styles/partials/_main-menu.scss */
    .main-menu-is-closed .main-menu header svg {
        width: 38px;
    }

    /* line 12, web/common/styles/partials/_main-menu.scss */
    .main-menu-is-closed .main-menu footer .menu-toggle svg {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    /* line 18, web/common/styles/partials/_main-menu.scss */
    .main-menu-is-closed .main-menu footer p {
        display: none;
    }

/* line 24, web/common/styles/partials/_main-menu.scss */
.main-menu {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 216px;
    background: #173620;
    color: white;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
}

    /* line 37, web/common/styles/partials/_main-menu.scss */
    .main-menu a {
        color: white;
    }

    /* line 41, web/common/styles/partials/_main-menu.scss */
    .main-menu header {
        height: 80px;
        background: white;
        text-align: center;
    }

        /* line 47, web/common/styles/partials/_main-menu.scss */
        .main-menu header svg {
            width: 50px;
            height: 80px;
            -webkit-transition: width 0.4s;
            transition: width 0.4s;
        }

    /* line 56, web/common/styles/partials/_main-menu.scss */
    .main-menu > ul {
        list-style: none;
        margin: 0;
        padding: 1em 0;
    }

        /* line 63, web/common/styles/partials/_main-menu.scss */
        .main-menu > ul.first {
         
        }

        /* line 68, web/common/styles/partials/_main-menu.scss */
        .main-menu > ul > li {
            position: relative;
            white-space: nowrap;
        }

        /* line 73, web/common/styles/partials/_main-menu.scss */
        .main-menu > ul > ul > li > span {
            text-decoration: none;
            display: block;
            height: 36px;
            line-height: 24px;
            padding: 6px 12px;
        }

        /* line 81, web/common/styles/partials/_main-menu.scss */
        .main-menu > ul > li > span,
        .main-menu > ul > li a {
            text-decoration: none;
            display: block;
            height: 36px;
            line-height: 24px;
            padding: 6px 12px;
        }

            /* line 90, web/common/styles/partials/_main-menu.scss */
            .main-menu > ul > li > span > .icon,
            .main-menu > ul > li > a > .icon {
                font-size: 24px;
                margin-right: 12px;
            }

    /* line 96, web/common/styles/partials/_main-menu.scss */
    .main-menu ul ul {
        display: block;
        width: 170px;
        list-style: none;
        position: absolute;
        top: -12px;
        left: 100%;
        z-index: 99;
        padding: 12px 0;
        background: #173620;
    }
        /* line 107, web/common/styles/partials/_main-menu.scss */
        .main-menu ul ul.close {
            overflow: hidden;
            -webkit-transition: all;
            transition: all;
            -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
            width: 0px;
        }

    /* line 115, web/common/styles/partials/_main-menu.scss */
    .main-menu ul > li > span.active,
    .main-menu ul > li > span.active:hover,
    .main-menu ul > li > a.active,
    .main-menu ul > li > a.active:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }

    /* line 122, web/common/styles/partials/_main-menu.scss */
    .main-menu ul > li > span:hover,
    .main-menu ul > li > span.hover,
    .main-menu ul > li > a:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

    /* line 129, web/common/styles/partials/_main-menu.scss */
    .main-menu footer {
        position: absolute;
        bottom: 0;
        width: 100%;
    }

        /* line 135, web/common/styles/partials/_main-menu.scss */
        .main-menu footer div {
            margin: 0 12px 50px 12px;
            font-size: 0.8em;
        }

        /* line 140, web/common/styles/partials/_main-menu.scss */
        .main-menu footer p {
            width: 156px;
            margin: 0 0 12px 12px;
            font-size: 0.8em;
        }
            /* line 145, web/common/styles/partials/_main-menu.scss */
            .main-menu footer p span {
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;
            }

        /* line 152, web/common/styles/partials/_main-menu.scss */
        .main-menu footer .username {
            display: block;
            font-size: 1.25em;
        }

        /* line 158, web/common/styles/partials/_main-menu.scss */
        .main-menu footer .menu-toggle {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 48px;
            height: 48px;
            background: #9cc493;
            border: none;
        }

            /* line 168, web/common/styles/partials/_main-menu.scss */
            .main-menu footer .menu-toggle svg {
                -webkit-transition: -webkit-transform 0.4s;
                transition: -webkit-transform 0.4s;
                transition: transform 0.4s;
                transition: transform 0.4s, -webkit-transform 0.4s;
            }

/* line 6, web/common/styles/partials/_tooltip.scss */
tooltip._top tip, tooltip._right tip, tooltip._left tip, tooltip._bottom tip {
    font-size: 14px;
    font-weight: normal;
    color: #424242;
    background: #fff;
    border: 1px solid #78909c;
    padding: 6px;
    -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}
    /* line 15, web/common/styles/partials/_tooltip.scss */
    tooltip._top tip.ng-validate, tooltip._right tip.ng-validate, tooltip._left tip.ng-validate, tooltip._bottom tip.ng-validate {
        border: 1px solid #ff1744;
    }
        /* line 18, web/common/styles/partials/_tooltip.scss */
        tooltip._top tip.ng-validate tip-arrow, tooltip._right tip.ng-validate tip-arrow, tooltip._left tip.ng-validate tip-arrow, tooltip._bottom tip.ng-validate tip-arrow {
            border: 1px solid #ff1744;
            border-left: none;
            border-top: none;
        }
    /* line 25, web/common/styles/partials/_tooltip.scss */
    tooltip._top tip tip-arrow, tooltip._right tip tip-arrow, tooltip._left tip tip-arrow, tooltip._bottom tip tip-arrow {
        margin-top: -3px;
        border: 1px solid #78909c;
        border-left: none;
        border-top: none;
        background: #fff;
        width: 9px;
        height: 9px;
        margin-left: -4.5px;
        -webkit-box-shadow: 4px 4px 4px -4px rgba(0, 0, 0, 0.5);
        box-shadow: 4px 4px 4px -4px rgba(0, 0, 0, 0.5);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /* line 41, web/common/styles/partials/_tooltip.scss */
    tooltip._right tip tip-arrow {
        margin-right: -3px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg);
    }

    /* line 48, web/common/styles/partials/_tooltip.scss */
    tooltip._bottom tip tip-arrow {
        margin-bottom: -3px;
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg);
    }

    /* line 55, web/common/styles/partials/_tooltip.scss */
    tooltip._left tip tip-arrow {
        margin-left: -3px;
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg);
    }

/* line 3, web/bankbatches/styles/_bankbatches.scss */
.bankbatches .bank-batch-nav-item {
    padding-top: 0;
    padding-bottom: 0;
}
    /* line 7, web/bankbatches/styles/_bankbatches.scss */
    .bankbatches .bank-batch-nav-item .counter {
        margin-bottom: 5px;
    }

/* line 4, web/client/styles/_client.scss */
.client tr.disabled .positive-color,
.client tr.disabled .negative-color,
.client tr.disabled .warning-color {
    color: #78909c;
}

/* line 3, web/trading/styles/_trading.scss */
.nav-value-element {
    margin-right: 75px;
}

/* line 7, web/trading/styles/_trading.scss */
#nav-warning {
    color: #9cc493;
}

/* line 11, web/trading/styles/_trading.scss */
.yieldu-value-element {
    width: 100px;
    margin-bottom: 8px;
}

/* line 16, web/trading/styles/_trading.scss */
.status {
    font-size: 0.7em;
}

/* line 20, web/trading/styles/_trading.scss */
.year {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    margin-right: 12px;
}

/* line 1, web/funds/styles/_funds.scss */
input.small-margin-bottom {
    margin-bottom: 5px;
}

/* line 2, web/communication/styles/_communication.scss */
.emailtemplate textarea {
    min-width: 1000px;
    min-height: 400px;
    display: block;
}

/* line 8, web/communication/styles/_communication.scss */
.emailtemplate input {
    min-width: 1000px;
}

/* line 12, web/communication/styles/_communication.scss */
.emailtemplate textarea.errormailtemplate {
    min-height: 70px;
}

/* line 16, web/communication/styles/_communication.scss */
.emailtemplate label {
    display: block;
    margin-bottom: 8px !important;
}


.ngdialog, .ngdialog-overlay {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

    .ngdialog-content, .ngdialog-overlay, .ngdialog.ngdialog-closing .ngdialog-content, ul[rn-carousel] > li {
        -webkit-backface-visibility: hidden
    }

.text-center, tooltip tip {
    text-align: center
}

.card > header > h1, h2 {
    text-transform: uppercase
}

table tr td.vertical-align-top, table tr th, table tr th.vertical-align-top, ul[rn-carousel] > li {
    vertical-align: top
}

.app-container > nav, .app-container > nav ul, .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal
}

@-webkit-keyframes ngdialog-fadeout {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes ngdialog-fadeout {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes ngdialog-fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes ngdialog-fadein {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.ngdialog {
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 10000;
    background: rgba(0,0,0,.4);
    -webkit-animation: ngdialog-fadein .5s;
    animation: ngdialog-fadein .5s
}

    *, .ngdialog *, .ngdialog :after, .ngdialog :before, :after, :before {
        box-sizing: inherit
    }

body.ngdialog-open, html.ngdialog-open, ul[rn-carousel] {
    overflow: hidden
}

#toast-container *, html {
    box-sizing: border-box
}

.ngdialog.ngdialog-disabled-animation, .ngdialog.ngdialog-disabled-animation .ngdialog-content, .ngdialog.ngdialog-disabled-animation .ngdialog-overlay {
    -webkit-animation: none !important;
    animation: none !important
}

.ngdialog-overlay {
    -webkit-animation: ngdialog-fadein .5s;
    animation: ngdialog-fadein .5s;
    margin-right: 15px;
    background: 0 0
}

.ngdialog-no-overlay {
    pointer-events: none
}

.ngdialog.ngdialog-closing .ngdialog-overlay {
    -webkit-backface-visibility: hidden;
    -webkit-animation: ngdialog-fadeout .5s;
    animation: ngdialog-fadeout .5s
}

.ngdialog-content {
    background: #fff;
    -webkit-animation: ngdialog-fadein .5s;
    animation: ngdialog-fadein .5s;
    pointer-events: all
}

.ngdialog.ngdialog-closing .ngdialog-content {
    -webkit-animation: ngdialog-fadeout .5s;
    animation: ngdialog-fadeout .5s
}

.ngdialog-close:before {
    font-family: Helvetica,Arial,sans-serif;
    content: '\00D7';
    cursor: pointer
}

@-webkit-keyframes ngdialog-flyin {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes ngdialog-flyin {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes ngdialog-flyout {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

@keyframes ngdialog-flyout {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px)
    }
}

.ngdialog.ngdialog-theme-default {
    padding-bottom: 160px;
    padding-top: 160px
}

    .ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
        -webkit-animation: ngdialog-flyout .5s;
        animation: ngdialog-flyout .5s
    }

    .ngdialog.ngdialog-theme-default .ngdialog-content {
        -webkit-animation: ngdialog-flyin .5s;
        animation: ngdialog-flyin .5s;
        color: #444;
        font-size: 1.1em;
        line-height: 1.5em;
        margin: 0 auto;
        max-width: 100%;
        position: relative
    }

    .ngdialog.ngdialog-theme-default .ngdialog-close {
        border: none;
        background: 0 0;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0
    }

        .ngdialog.ngdialog-theme-default .ngdialog-close:before {
            display: block;
            padding: 3px;
            background: 0 0;
            color: #bbb;
            content: '\00D7';
            font-size: 26px;
            font-weight: 400;
            line-height: 26px;
            text-align: center
        }

        .ngdialog.ngdialog-theme-default .ngdialog-close:active:before, .ngdialog.ngdialog-theme-default .ngdialog-close:hover:before {
            color: #777
        }

    .ngdialog.ngdialog-theme-default .ngdialog-message {
        margin-bottom: .5em
    }

    .ngdialog.ngdialog-theme-default .ngdialog-input {
        margin-bottom: 1em
    }

        .ngdialog.ngdialog-theme-default .ngdialog-input input[type=text], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=email], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=url], .ngdialog.ngdialog-theme-default .ngdialog-input textarea {
            background: #fff;
            border: 0;
            border-radius: 3px;
            font-family: inherit;
            font-size: inherit;
            font-weight: inherit;
            margin: 0 0 .25em;
            min-height: 2.5em;
            padding: .25em .67em;
            width: 100%
        }

            .ngdialog.ngdialog-theme-default .ngdialog-input input[type=text]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=email]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=url]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus {
                box-shadow: inset 0 0 0 2px #8dbdf1;
                outline: 0
            }

    .ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
        content: '';
        display: table;
        clear: both
    }

    .ngdialog.ngdialog-theme-default .ngdialog-button {
        border: 0;
        border-radius: 3px;
        cursor: pointer;
        float: right;
        font-family: inherit;
        font-size: .8em;
        letter-spacing: .1em;
        line-height: 1em;
        margin: 0 0 0 .5em;
        padding: .75em 2em;
        text-transform: uppercase
    }

        .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
            -webkit-animation: ngdialog-pulse 1.1s infinite;
            animation: ngdialog-pulse 1.1s infinite;
            outline: 0
        }

@media (max-width:568px) {
    .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
        -webkit-animation: none;
        animation: none
    }
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
    background: #3288e6;
    color: #fff
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
    background: #e0e0e0;
    color: #777
}
/*! 
 * angular-loading-bar v0.9.0
 * https://chieffancypants.github.io/angular-loading-bar
 * Copyright (c) 2016 Wes Cruver
 * License: MIT
 */

#loading-bar, #loading-bar-spinner {
    pointer-events: none;
    -webkit-pointer-events: none;
    transition: 350ms linear all
}

    #loading-bar-spinner.ng-enter, #loading-bar-spinner.ng-leave.ng-leave-active, #loading-bar.ng-enter, #loading-bar.ng-leave.ng-leave-active {
        opacity: 0
    }

        #loading-bar-spinner.ng-enter.ng-enter-active, #loading-bar-spinner.ng-leave, #loading-bar.ng-enter.ng-enter-active, #loading-bar.ng-leave {
            opacity: 1
        }

    #loading-bar .bar {
        transition: width 350ms;
        background: #29d;
        position: fixed;
        z-index: 10002;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        border-bottom-right-radius: 1px;
        border-top-right-radius: 1px
    }

    #loading-bar .peg {
        position: absolute;
        width: 70px;
        right: 0;
        top: 0;
        height: 2px;
        opacity: .45;
        -ms-box-shadow: #29d 1px 0 6px 1px;
        box-shadow: #29d 1px 0 6px 1px;
        border-radius: 100%
    }

#loading-bar-spinner {
    display: block;
    position: fixed;
    z-index: 10002;
    top: 10px;
    left: 10px
}

    #loading-bar-spinner .spinner-icon {
        width: 14px;
        height: 14px;
        border: 2px solid transparent;
        border-top-color: #29d;
        border-left-color: #29d;
        border-radius: 50%;
        -webkit-animation: loading-bar-spinner .4s linear infinite;
        animation: loading-bar-spinner .4s linear infinite
    }

@-webkit-keyframes loading-bar-spinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes loading-bar-spinner {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.toast-title {
    font-weight: 700
}

.toast-message {
    word-wrap: break-word
}

    .toast-message a, .toast-message label {
        color: #FFF
    }

        .toast-message a:hover {
            color: #CCC;
            text-decoration: none
        }

.toast-close-button {
    position: relative;
    right: -.3em;
    top: -.3em;
    float: right;
    font-size: 20px;
    font-weight: 700;
    -webkit-text-shadow: 0 1px 0 #fff;
    text-shadow: 0 1px 0 #fff
}

.toast-top-center, .toast-top-full-width {
    top: 0;
    right: 0;
    width: 100%
}

.toast-close-button:focus, .toast-close-button:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .4
}

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

.toast-bottom-center {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-bottom-full-width {
    bottom: 0;
    right: 0;
    width: 100%
}

.toast-top-left {
    top: 12px;
    left: 12px
}

.toast-top-right {
    top: 12px;
    right: 12px
}

.toast-bottom-right {
    right: 12px;
    bottom: 12px
}

.toast-bottom-left {
    bottom: 12px;
    left: 12px
}

#toast-container {
    position: fixed;
    z-index: 999999
}

    #toast-container .toast {
        position: relative;
        overflow: hidden;
        margin: 0 0 6px;
        padding: 15px 15px 15px 50px;
        width: 300px;
        border-radius: 3px;
        background-position: 15px center;
        background-repeat: no-repeat;
        box-shadow: 0 0 12px #999;
        color: #FFF;
        opacity: .8
    }

        #toast-container .toast:hover {
            box-shadow: 0 0 12px #000;
            opacity: 1;
            cursor: pointer
        }

        #toast-container .toast.toast-info {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=) !important
        }

        #toast-container .toast.toast-error {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important
        }

        #toast-container .toast.toast-success {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important
        }

        #toast-container .toast.toast-warning {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=) !important
        }

    #toast-container.toast-bottom-center .toast, #toast-container.toast-top-center .toast {
        width: 300px;
        margin-left: auto;
        margin-right: auto
    }

    #toast-container.toast-bottom-full-width .toast, #toast-container.toast-top-full-width .toast {
        width: 96%;
        margin-left: auto;
        margin-right: auto
    }

tooltip._bottom:not(._left):not(._right) tip tip-arrow, tooltip._top:not(._left):not(._right) tip tip-arrow {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    margin-left: -6px;
    content: ''
}

.toast-success {
    background-color: #51A351
}

.toast-error {
    background-color: #BD362F
}

.toast-info {
    background-color: #2F96B4
}

.toast-warning {
    background-color: #F89406
}

progress-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #000;
    opacity: .4
}

div[toast] {
    opacity: 1 !important
}

    div[toast].ng-enter {
        opacity: 0 !important;
        transition: opacity .3s linear
    }

        div[toast].ng-enter.ng-enter-active {
            opacity: 1 !important
        }

    div[toast].ng-leave {
        opacity: 1;
        transition: opacity .3s linear
    }

        div[toast].ng-leave.ng-leave-active {
            opacity: 0 !important
        }

@media all and (max-width:240px) {
    #toast-container .toast.div {
        padding: 8px 8px 8px 50px;
        width: 11em
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }
}

@media all and (min-width:241px) and (max-width:480px) {
    #toast-container .toast.div {
        padding: 8px 8px 8px 50px;
        width: 18em
    }

    #toast-container .toast-close-button {
        right: -.2em;
        top: -.2em
    }
}

@media all and (min-width:481px) and (max-width:768px) {
    #toast-container .toast.div {
        padding: 15px 15px 15px 50px;
        width: 25em
    }
}

@-webkit-keyframes animate-tooltip {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    60% {
        opacity: .8
    }

    70% {
        opacity: .9
    }

    90% {
        opacity: 1
    }
}

@keyframes animate-tooltip {
    0% {
        opacity: 0
    }

    50% {
        opacity: .5
    }

    60% {
        opacity: .8
    }

    70% {
        opacity: .9
    }

    90% {
        opacity: 1
    }
}

._exradicated-tooltip {
    display: block;
    opacity: 1;
    position: absolute;
    z-index: 999
}

tooltip {
    display: inline-block;
    position: relative
}

    tooltip._multiline {
        display: block
    }

    tooltip._slow._ready tip {
        -webkit-animation: animate-tooltip .65s;
        animation: animate-tooltip .65s
    }

    tooltip._fast._ready tip {
        -webkit-animation: animate-tooltip .15s;
        animation: animate-tooltip .15s
    }

    tooltip._steady._ready tip {
        -webkit-animation: animate-tooltip .35s;
        animation: animate-tooltip .35s
    }

    tooltip tip {
        border-radius: 3px;
        background: rgba(0,0,0,.85);
        color: #fff;
        display: none;
        line-height: normal;
        max-width: 500px;
        min-width: 100px;
        opacity: 0;
        padding: 8px 16px;
        position: absolute;
        width: auto;
        will-change: top,left,bottom,right
    }

.app-container > header, body {
    background-color: #f8f8fa
}

tooltip tip._hidden {
    display: block;
    visibility: hidden
}

tooltip.active:not(._force-hidden) tip {
    display: block;
    opacity: 1;
    z-index: 999
}

tooltip tip-tip {
    font-size: .95em
}

    tooltip tip-tip._large {
        font-size: 1.1em
    }

    tooltip tip-tip._small {
        font-size: .8em
    }

tooltip._top:not(._left):not(._right) tip {
    left: 50%;
    top: -9px;
    -webkit-transform: translateX(-50%) translateY(-100%);
    transform: translateX(-50%) translateY(-100%)
}

    tooltip._top:not(._left):not(._right) tip tip-arrow {
        border-top: 6px solid rgba(0,0,0,.85);
        height: 0;
        left: 50%;
        position: absolute;
        top: 100%;
        width: 0
    }

tooltip._bottom:not(._left):not(._right) tip {
    right: 50%;
    top: 100%;
    -webkit-transform: translateX(50%) translateY(9px);
    transform: translateX(50%) translateY(9px)
}

    tooltip._bottom:not(._left):not(._right) tip tip-arrow {
        border-bottom: 6px solid rgba(0,0,0,.85);
        bottom: 100%;
        height: 0;
        left: 50%;
        position: absolute;
        width: 0
    }

tooltip._right:not(._top):not(._bottom) tip {
    left: 100%;
    top: 50%;
    -webkit-transform: translateX(9px) translateY(-50%);
    transform: translateX(9px) translateY(-50%)
}

    tooltip._right:not(._top):not(._bottom) tip tip-arrow {
        border-bottom: 6px solid transparent;
        border-right: 6px solid rgba(0,0,0,.85);
        border-top: 6px solid transparent;
        content: '';
        height: 0;
        margin-top: -6px;
        position: absolute;
        right: 100%;
        top: 50%;
        width: 0
    }

tooltip._left:not(._top):not(._bottom) tip {
    left: -9px;
    top: 50%;
    -webkit-transform: translateX(-100%) translateY(-50%);
    transform: translateX(-100%) translateY(-50%)
}

    tooltip._left:not(._top):not(._bottom) tip tip-arrow {
        border-bottom: 6px solid transparent;
        border-left: 6px solid rgba(0,0,0,.85);
        border-top: 6px solid transparent;
        content: '';
        height: 0;
        left: 100%;
        margin-top: -6px;
        position: absolute;
        top: 50%;
        width: 0
    }

tooltip._top._left tip tip-arrow, tooltip._top._right tip tip-arrow {
    border-top: 6px solid rgba(0,0,0,.85);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    content: '';
    height: 0;
    margin-left: -6px;
    position: absolute;
    width: 0
}

tooltip._top._left tip {
    left: -9px;
    top: -9px;
    -webkit-transform: translateX(-100%) translateY(-100%);
    transform: translateX(-100%) translateY(-100%)
}

    tooltip._top._left tip tip-arrow {
        left: 90%;
        top: 100%
    }

tooltip._top._right tip {
    left: 100%;
    top: -9px;
    -webkit-transform: translateX(9px) translateY(-100%);
    transform: translateX(9px) translateY(-100%)
}

    tooltip._top._right tip tip-arrow {
        left: 10%;
        top: 100%
    }

tooltip._bottom._left tip {
    left: -9px;
    top: 100%;
    -webkit-transform: translateX(-100%) translateY(9px);
    transform: translateX(-100%) translateY(9px)
}

    tooltip._bottom._left tip tip-arrow {
        border-bottom: 6px solid rgba(0,0,0,.85);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        bottom: 100%;
        content: '';
        height: 0;
        left: 90%;
        margin-left: -6px;
        position: absolute;
        width: 0
    }

tooltip._bottom._right tip {
    left: 100%;
    top: 100%;
    -webkit-transform: translateX(9px) translateY(9px);
    transform: translateX(9px) translateY(9px)
}

    tooltip._bottom._right tip tip-arrow {
        border-bottom: 6px solid rgba(0,0,0,.85);
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        bottom: 100%;
        content: '';
        height: 0;
        left: 10%;
        margin-left: -6px;
        position: absolute;
        width: 0
    }

tip-tip .close-button {
    cursor: pointer;
    float: right;
    left: 8%;
    margin-top: -7%;
    padding: 3px;
    position: relative
}

input[type=range] {
    width: 300px
}

ul[rn-carousel] {
    padding: 0;
    white-space: nowrap;
    position: relative;
    -webkit-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    -ms-touch-action: pan-y;
    touch-action: pan-y
}

    ul[rn-carousel] > li {
        color: #000;
        backface-visibility: hidden;
        overflow: visible;
        position: absolute;
        left: 0;
        right: 0;
        white-space: normal;
        padding: 0;
        margin: 0;
        list-style-type: none;
        width: 100%;
        height: 100%;
        display: inline-block
    }

ul[rn-carousel-buffered] > li {
    display: none
}

ul[rn-carousel-transition=hexagon] {
    overflow: visible
}

.card, h2, h2::after {
    overflow: hidden
}

div.rn-carousel-indicator span {
    cursor: pointer;
    color: #666
}

    div.rn-carousel-indicator span.active {
        color: #fff
    }

.rn-carousel-control {
    transition: opacity .2s ease-out;
    font-size: 2rem;
    position: absolute;
    top: 40%;
    opacity: .75;
    cursor: pointer
}

.btn .icon, h2 {
    position: relative
}

.rn-carousel-control:hover {
    opacity: 1
}

.rn-carousel-control.rn-carousel-control-prev {
    left: .5em
}

    .rn-carousel-control.rn-carousel-control-prev:before {
        content: "<"
    }

.rn-carousel-control.rn-carousel-control-next {
    right: .5em
}

    .rn-carousel-control.rn-carousel-control-next:before {
        content: ">"
    }

[ng-cloak] {
    display: none !important
}

.app-container > header {
    border-bottom: 2px #916491 solid
}

.app-container > nav {
    box-shadow: 0 0 20px rgba(0,0,0,.3)
}

.clickable, button {
    cursor: pointer
}

:focus {
    outline: 0
}

.tag {
    padding: 2px 5px;
    background-color: #039be5;
    border-radius: 4px
}

    .tag.tag-accent {
        background-color: #faf200
    }

@media only screen and (min-width:786px) {
    .app-container > nav {
        box-shadow: none;
        z-index: 100
    }

    .app-container > main {
        z-index: 200;
        box-shadow: 0 0 20px rgba(0,0,0,.3)
    }
}

.btn {
    text-decoration: none;
    padding: calc(20px /4) calc(20px /2);
    border-radius: 4px;
    color: #039be5;
    fill: #039be5;
    display: inline-block;
    cursor: pointer;
    background: 0 0;
    border: none
}

    .btn .icon {
        height: 14px;
        width: 14px;
        top: -2px
    }

    .btn.btn-right {
        float: right
    }

    .btn:hover {
        color: #026899;
        fill: #026899
    }

    .btn:active {
        color: #01354e;
        fill: #01354e;
        background-color: #e4e8ea
    }

    .btn:disabled {
        color: #b0bec5;
        fill: #b0bec5;
        cursor: default
    }

    .btn.important {
        color: #fff;
        fill: #fff;
        background-color: #039be5;
        box-shadow: 0 1px 1px rgba(0,0,0,.3)
    }

        .btn.important:hover {
            background-color: #026899
        }

        .btn.important:active {
            background-color: #01354e
        }

        .btn.important:disabled {
            background-color: #b0bec5
        }

tooltip._bottom tip, tooltip._left tip, tooltip._right tip, tooltip._top tip {
    font-size: 14px;
    font-weight: 400;
    color: #424242;
    background: #f8f8fa;
    border: 1px solid #bdbdbd;
    padding: 6px;
    box-shadow: 0 0 4px rgba(0,0,0,.5)
}

    tooltip._bottom tip.ng-validate, tooltip._left tip.ng-validate, tooltip._right tip.ng-validate, tooltip._top tip.ng-validate {
        border: 1px solid #ff1744
    }

        tooltip._bottom tip.ng-validate tip-arrow, tooltip._left tip.ng-validate tip-arrow, tooltip._right tip.ng-validate tip-arrow, tooltip._top tip.ng-validate tip-arrow {
            border: 1px solid #ff1744;
            border-left: none;
            border-top: none
        }

    tooltip._bottom tip tip-arrow, tooltip._left tip tip-arrow, tooltip._right tip tip-arrow, tooltip._top tip tip-arrow {
        margin-top: -3px;
        border: 1px solid #bdbdbd;
        border-left: none;
        border-top: none;
        background: #f8f8fa;
        width: 9px;
        height: 9px;
        margin-left: -4.5px;
        box-shadow: 4px 4px 4px -4px rgba(0,0,0,.5);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg)
    }

    tooltip._right tip tip-arrow {
        margin-right: -3px;
        -webkit-transform: rotate(135deg);
        transform: rotate(135deg)
    }

    tooltip._bottom tip tip-arrow {
        margin-bottom: -3px;
        -webkit-transform: rotate(225deg);
        transform: rotate(225deg)
    }

    tooltip._left tip tip-arrow {
        margin-left: -3px;
        -webkit-transform: rotate(315deg);
        transform: rotate(315deg)
    }

* {
    font-family: Ubuntu;
    font-weight: 400
}

b {
    font-weight: 700
}

h1, h2, h3, h4, h5 {
    font-weight: 500
}

body {
    color: #424242;
    font-size: 14px;
    fill: #fff;
    line-height: 18px
}

h2, h3 {
    font-size: 12px
}

    h2::after {
        position: absolute;
        top: 51%;
        width: 100%;
        height: 1px;
        content: '\a0';
        margin-left: 20px
    }

.input, .input.no-edit, input, input.no-edit {
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none
}

h3 {
    color: #eee
}

h4 {
    margin: 0;
    font-size: 14px
}

h5 {
    margin: 6px 0;
    color: inherit;
    font-size: 10px
}

h6 {
    font-size: 14px;
    margin: 15px
}

h7 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 25px
}

.inline-responsive {
    display: block;
    margin: 0 calc(20px / 2);
    padding: calc(20px / 2) 0
}

    .inline-responsive.has-divider {
        border: 0
    }

.bigger-on-small {
    font-size: 1.33em
}

.smaller {
    font-size: .8em
}

.negative-color {
    color: #ff1744
}

.neutral-color {
    color: #424242
}

.positive-color {
    color: #2e7d32
}

.singleline {
    white-space: nowrap
}

.text-right, table .number {
    text-align: right
}

.newlinefix {
    white-space: pre-line
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #fff inset
}

input, textarea {
    -webkit-font-smoothing: antialiased
}

    .input, .input.no-edit, input, input.no-edit, select {
        font-size: 14px;
        font-smoothing: antialiased;
        box-shadow: none;
        outline: 0;
        height: 28px
    }

textarea {
    width: 100%;
    height: 200px;
    resize: none
}

.input, input {
    border: 1px solid #bdbdbd;
    padding: 3px 6px;
    color: #424242;
    appearance: none;
    border-radius: 0;
    width: 100%;
    cursor: text;
    pointer-events: all
}

    .input::-webkit-input-placeholder, input::-webkit-input-placeholder {
        color: #bdbdbd
    }

    .input:-ms-input-placeholder, input:-ms-input-placeholder {
        color: #bdbdbd
    }

    .input::placeholder, input::placeholder {
        color: #bdbdbd
    }

    .input.small, input.small {
        width: 72px
    }

    .input:focus, input:focus {
        border-color: #039be5
    }

    .input::-ms-expand, input::-ms-expand {
        display: none
    }

    .input[type=search], input[type=search] {
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield
    }

    .input.no-edit, input.no-edit {
        border: 1px solid transparent;
        border-bottom-color: #bdbdbd;
        padding: 3px 12px 3px 0;
        color: #424242;
        appearance: none;
        border-radius: 0;
        cursor: default;
        pointer-events: none;
        width: 100%
    }

        .input.no-edit::-webkit-input-placeholder, input.no-edit::-webkit-input-placeholder {
            color: #bdbdbd
        }

        .input.no-edit:-ms-input-placeholder, input.no-edit:-ms-input-placeholder {
            color: #bdbdbd
        }

        .input.no-edit::placeholder, input.no-edit::placeholder {
            color: #bdbdbd
        }

        .input.no-edit.small, input.no-edit.small {
            width: 72px
        }

select {
    border: 1px solid #bdbdbd;
    padding: 3px 22px 3px 6px;
    color: #424242;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    width: 100%;
    pointer-events: all;
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHhtbG5zOnhsaW5rPSdodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rJyB2aWV3Qm94PScwIC01IDIyIDMwJyBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSd4TWF4WU1pZCc+PGc+PHBhdGggZmlsbD0nIzI5OTdENCcgZD0nTTE1LDcuNmwtNi42LDYuNmMtMC4xLDAuMS0wLjIsMC4yLTAuNCwwLjJzLTAuMy0wLjEtMC40LTAuMkwxLDcuNkMwLjksNy41LDAuOCw3LjMsMC44LDcuMlMwLjksNi45LDEsNi44bDEuNS0xLjVjMC4xLTAuMSwwLjItMC4yLDAuNC0wLjJzMC4zLDAuMSwwLjQsMC4yTDgsMTBsNC43LTQuN2MwLjEtMC4xLDAuMi0wLjIsMC40LTAuMmMwLjIsMCwwLjMsMC4xLDAuNCwwLjJMMTUsNi44YzAuMSwwLjEsMC4yLDAuMiwwLjIsMC40UzE1LjEsNy41LDE1LDcuNnonLz48L2c+PC9zdmc+) right center no-repeat;
    cursor: pointer
}

    select::-webkit-input-placeholder {
        color: #bdbdbd
    }

    select:-ms-input-placeholder {
        color: #bdbdbd
    }

    select::placeholder {
        color: #bdbdbd
    }

    select.small {
        width: 72px
    }

    select:focus {
        border-color: #039be5
    }

    select::-ms-expand {
        display: none
    }

    select[type=search] {
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield
    }

    .no-edit .input, .no-edit input, select.no-edit {
        border: 1px solid transparent;
        -webkit-appearance: none;
        -moz-appearance: none;
        font-smoothing: antialiased;
        box-shadow: none;
        pointer-events: none;
        outline: 0;
        height: 28px;
        font-size: 14px
    }

    select.no-edit {
        border-bottom-color: #bdbdbd;
        padding: 3px 16px 3px 0;
        color: #424242;
        appearance: none;
        border-radius: 0;
        width: 100%;
        background: 0 0;
        cursor: pointer
    }

        select.no-edit::-webkit-input-placeholder {
            color: #bdbdbd
        }

        select.no-edit:-ms-input-placeholder {
            color: #bdbdbd
        }

        select.no-edit::placeholder {
            color: #bdbdbd
        }

        select.no-edit.small {
            width: 72px
        }

.no-edit .input, .no-edit input {
    background-color: transparent;
    border-bottom-color: #bdbdbd;
    padding: 3px 12px 3px 0;
    color: #424242;
    appearance: none;
    border-radius: 0;
    cursor: default;
    width: 100%
}

    .no-edit .input::-webkit-input-placeholder, .no-edit input::-webkit-input-placeholder {
        color: #bdbdbd
    }

    .no-edit .input:-ms-input-placeholder, .no-edit input:-ms-input-placeholder {
        color: #bdbdbd
    }

    .no-edit .input::placeholder, .no-edit input::placeholder {
        color: #bdbdbd
    }

    .no-edit .input.small, .no-edit input.small {
        width: 72px
    }

.no-edit select {
    font-size: 14px;
    border: 1px solid transparent;
    border-bottom-color: #bdbdbd;
    font-smoothing: antialiased;
    padding: 3px 16px 3px 0;
    color: #424242;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: 0;
    pointer-events: none;
    outline: 0;
    width: 100%;
    height: 28px;
    background: 0 0;
    cursor: pointer
}

.ng-submitted .ng-invalid, .ng-submitted .ng-invalid:focus, .ng-touched.is-invalid, .ng-touched.is-invalid:focus, .ng-touched.ng-invalid, .ng-touched.ng-invalid:focus, label.invalid textarea {
    border-color: #ff1744
}

.no-edit select::-webkit-input-placeholder {
    color: #bdbdbd
}

.no-edit select:-ms-input-placeholder {
    color: #bdbdbd
}

.no-edit select::placeholder {
    color: #bdbdbd
}

.no-edit select.small {
    width: 72px
}

.btn {
    font-size: 14px
}

label {
    width: 100%;
    margin-right: 20px;
    display: inline-block;
    margin-bottom: 20px
}

    label.small {
        width: auto
    }

        label.small .input, label.small input, label.small select {
            max-width: 72px
        }

    label.last {
        margin-right: 0
    }

    label.block {
        display: block
    }

    label.invalid .input, label.invalid input, label.invalid select {
        border-bottom-color: #ff1744
    }

    label input, label select, label span, label tip-cont, label tooltip {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-negative: 1;
        flex-shrink: 1
    }

        label input:not(.small), label select:not(.small), label span:not(.small), label tip-cont:not(.small), label tooltip:not(.small) {
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1
        }

    label .btn, label .input, label input, label select, label textarea {
        margin-top: 5px;
        margin-bottom: 0
    }

.validation-summary-errors {
    color: #ff1744
}

    .validation-summary-errors ul {
        padding: 0;
        text-decoration: none
    }

        .validation-summary-errors ul li {
            list-style: none
        }

@media only screen and (min-width:786px) {
    .input, .input.no-edit, input, input.no-edit {
        background-color: transparent;
        -webkit-appearance: none;
        -moz-appearance: none
    }

        .input, .input.no-edit, input, input.no-edit, select {
            font-size: 14px;
            font-smoothing: antialiased;
            box-shadow: none;
            outline: 0;
            height: 28px
        }

    .input, input {
        border: 1px solid #bdbdbd;
        padding: 3px 6px;
        color: #424242;
        appearance: none;
        border-radius: 0;
        width: 100%;
        cursor: text;
        pointer-events: all
    }

        .input::-webkit-input-placeholder, input::-webkit-input-placeholder {
            color: #bdbdbd
        }

        .input:-ms-input-placeholder, input:-ms-input-placeholder {
            color: #bdbdbd
        }

        .input::placeholder, input::placeholder {
            color: #bdbdbd
        }

        .input.small, input.small {
            width: 72px
        }

        .input.medium, input.medium {
            width: 140px
        }

        .input.big, input.big {
            width: 252px
        }

        .input.x-big, input.x-big {
            width: 444px
        }

        .input.full-width, input.full-width {
            width: 100%
        }

        .input:focus, input:focus {
            border-color: #039be5
        }

        .input::-ms-expand, input::-ms-expand {
            display: none
        }

        .input[type=search], input[type=search] {
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield
        }

        .input.no-edit, input.no-edit {
            border: 1px solid transparent;
            border-bottom-color: #bdbdbd;
            padding: 3px 12px 3px 0;
            color: #424242;
            appearance: none;
            border-radius: 0;
            cursor: default;
            pointer-events: none;
            width: 100%
        }

            .input.no-edit::-webkit-input-placeholder, input.no-edit::-webkit-input-placeholder {
                color: #bdbdbd
            }

            .input.no-edit:-ms-input-placeholder, input.no-edit:-ms-input-placeholder {
                color: #bdbdbd
            }

            .input.no-edit::placeholder, input.no-edit::placeholder {
                color: #bdbdbd
            }

            .input.no-edit.small, input.no-edit.small {
                width: 72px
            }

            .input.no-edit.medium, input.no-edit.medium {
                width: 140px
            }

            .input.no-edit.big, input.no-edit.big {
                width: 252px
            }

            .input.no-edit.x-big, input.no-edit.x-big {
                width: 444px
            }

            .input.no-edit.full-width, input.no-edit.full-width, select {
                width: 100%
            }

    select {
        border: 1px solid #bdbdbd;
        padding: 3px 22px 3px 6px;
        color: #424242;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0;
        pointer-events: all;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHhtbG5zOnhsaW5rPSdodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rJyB2aWV3Qm94PScwIC01IDIyIDMwJyBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSd4TWF4WU1pZCc+PGc+PHBhdGggZmlsbD0nIzI5OTdENCcgZD0nTTE1LDcuNmwtNi42LDYuNmMtMC4xLDAuMS0wLjIsMC4yLTAuNCwwLjJzLTAuMy0wLjEtMC40LTAuMkwxLDcuNkMwLjksNy41LDAuOCw3LjMsMC44LDcuMlMwLjksNi45LDEsNi44bDEuNS0xLjVjMC4xLTAuMSwwLjItMC4yLDAuNC0wLjJzMC4zLDAuMSwwLjQsMC4yTDgsMTBsNC43LTQuN2MwLjEtMC4xLDAuMi0wLjIsMC40LTAuMmMwLjIsMCwwLjMsMC4xLDAuNCwwLjJMMTUsNi44YzAuMSwwLjEsMC4yLDAuMiwwLjIsMC40UzE1LjEsNy41LDE1LDcuNnonLz48L2c+PC9zdmc+) right center no-repeat;
        cursor: pointer
    }

        select::-webkit-input-placeholder {
            color: #bdbdbd
        }

        select:-ms-input-placeholder {
            color: #bdbdbd
        }

        select::placeholder {
            color: #bdbdbd
        }

        select.small {
            width: 72px
        }

        select.medium {
            width: 140px
        }

        select.big {
            width: 252px
        }

        select.x-big {
            width: 444px
        }

        select.full-width {
            width: 100%
        }

        select:focus {
            border-color: #039be5
        }

        select::-ms-expand {
            display: none
        }

        select[type=search] {
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield
        }

        .no-edit .input, .no-edit input, select.no-edit {
            border: 1px solid transparent;
            -webkit-appearance: none;
            -moz-appearance: none;
            font-size: 14px;
            font-smoothing: antialiased;
            box-shadow: none;
            pointer-events: none;
            outline: 0;
            height: 28px
        }

        select.no-edit {
            border-bottom-color: #bdbdbd;
            padding: 3px 16px 3px 0;
            color: #424242;
            appearance: none;
            border-radius: 0;
            width: 100%;
            background: 0 0;
            cursor: pointer
        }

            select.no-edit::-webkit-input-placeholder {
                color: #bdbdbd
            }

            select.no-edit:-ms-input-placeholder {
                color: #bdbdbd
            }

            select.no-edit::placeholder {
                color: #bdbdbd
            }

            select.no-edit.small {
                width: 72px
            }

            select.no-edit.medium {
                width: 140px
            }

            select.no-edit.big {
                width: 252px
            }

            select.no-edit.x-big {
                width: 444px
            }

            select.no-edit.full-width {
                width: 100%
            }

    .no-edit .input, .no-edit input {
        background-color: transparent;
        border-bottom-color: #bdbdbd;
        padding: 3px 12px 3px 0;
        color: #424242;
        appearance: none;
        border-radius: 0;
        cursor: default;
        width: 100%
    }

        .no-edit .input::-webkit-input-placeholder, .no-edit input::-webkit-input-placeholder {
            color: #bdbdbd
        }

        .no-edit .input:-ms-input-placeholder, .no-edit input:-ms-input-placeholder {
            color: #bdbdbd
        }

        .no-edit .input::placeholder, .no-edit input::placeholder {
            color: #bdbdbd
        }

        .no-edit .input.small, .no-edit input.small {
            width: 72px
        }

        .no-edit .input.medium, .no-edit input.medium {
            width: 140px
        }

        .no-edit .input.big, .no-edit input.big {
            width: 252px
        }

        .no-edit .input.x-big, .no-edit input.x-big {
            width: 444px
        }

        .no-edit .input.full-width, .no-edit input.full-width {
            width: 100%
        }

    .no-edit select {
        font-size: 14px;
        border: 1px solid transparent;
        border-bottom-color: #bdbdbd;
        font-smoothing: antialiased;
        padding: 3px 16px 3px 0;
        color: #424242;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-shadow: none;
        border-radius: 0;
        pointer-events: none;
        outline: 0;
        width: 100%;
        height: 28px;
        background: 0 0;
        cursor: pointer
    }

        .no-edit select::-webkit-input-placeholder {
            color: #bdbdbd
        }

        .no-edit select:-ms-input-placeholder {
            color: #bdbdbd
        }

        .no-edit select::placeholder {
            color: #bdbdbd
        }

        .no-edit select.small {
            width: 72px
        }

        .no-edit select.medium {
            width: 140px
        }

        .no-edit select.big {
            width: 252px
        }

        .no-edit select.x-big {
            width: 444px
        }

        .no-edit select.full-width {
            width: 100%
        }

    .inline-responsive {
        display: inline-block;
        padding: 0 calc(20px / 2);
        margin: calc(20px / 2) 0
    }

        .inline-responsive.has-divider {
            border-right: 1px solid #fff
        }

    .bigger-on-small {
        font-size: 1em
    }

    label {
        width: auto
    }

        label.medium .input, label.medium input, label.medium select {
            max-width: 140px
        }

        label.big .input, label.big input, label.big select {
            max-width: 252px
        }

        label.x-big .input, label.x-big input, label.x-big select {
            max-width: 444px
        }

        label.full-width {
            width: 100%
        }
}

@media only screen and (min-width:1240px) {
    .input, .input.no-edit, input, input.no-edit {
        background-color: transparent;
        -webkit-appearance: none;
        -moz-appearance: none
    }

        .input, .input.no-edit, input, input.no-edit, select {
            font-size: 14px;
            font-smoothing: antialiased;
            box-shadow: none;
            outline: 0;
            height: 28px
        }

    .input, input {
        border: 1px solid #bdbdbd;
        padding: 3px 6px;
        color: #424242;
        appearance: none;
        border-radius: 0;
        width: 100%;
        cursor: text;
        pointer-events: all
    }

        .input::-webkit-input-placeholder, input::-webkit-input-placeholder {
            color: #bdbdbd
        }

        .input:-ms-input-placeholder, input:-ms-input-placeholder {
            color: #bdbdbd
        }

        .input::placeholder, input::placeholder {
            color: #bdbdbd
        }

        .input.small, input.small {
            width: 72px
        }

        .input.medium, input.medium {
            width: 140px
        }

        .input.big, input.big {
            width: 252px
        }

        .input.x-big, input.x-big {
            width: 444px
        }

        .input.full-width, input.full-width {
            width: 100%
        }

        .input:focus, input:focus {
            border-color: #039be5
        }

        .input::-ms-expand, input::-ms-expand {
            display: none
        }

        .input[type=search], input[type=search] {
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield
        }

        .input.no-edit, input.no-edit {
            border: 1px solid transparent;
            border-bottom-color: #bdbdbd;
            padding: 3px 12px 3px 0;
            color: #424242;
            appearance: none;
            border-radius: 0;
            cursor: default;
            pointer-events: none;
            width: 100%
        }

            .input.no-edit::-webkit-input-placeholder, input.no-edit::-webkit-input-placeholder {
                color: #bdbdbd
            }

            .input.no-edit:-ms-input-placeholder, input.no-edit:-ms-input-placeholder {
                color: #bdbdbd
            }

            .input.no-edit::placeholder, input.no-edit::placeholder {
                color: #bdbdbd
            }

            .input.no-edit.small, input.no-edit.small {
                width: 72px
            }

            .input.no-edit.medium, input.no-edit.medium {
                width: 140px
            }

            .input.no-edit.big, input.no-edit.big {
                width: 252px
            }

            .input.no-edit.x-big, input.no-edit.x-big {
                width: 444px
            }

            .input.no-edit.full-width, input.no-edit.full-width, select {
                width: 100%
            }

    select {
        border: 1px solid #bdbdbd;
        padding: 3px 22px 3px 6px;
        color: #424242;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border-radius: 0;
        pointer-events: all;
        background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHhtbG5zOnhsaW5rPSdodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rJyB2aWV3Qm94PScwIC01IDIyIDMwJyBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSd4TWF4WU1pZCc+PGc+PHBhdGggZmlsbD0nIzI5OTdENCcgZD0nTTE1LDcuNmwtNi42LDYuNmMtMC4xLDAuMS0wLjIsMC4yLTAuNCwwLjJzLTAuMy0wLjEtMC40LTAuMkwxLDcuNkMwLjksNy41LDAuOCw3LjMsMC44LDcuMlMwLjksNi45LDEsNi44bDEuNS0xLjVjMC4xLTAuMSwwLjItMC4yLDAuNC0wLjJzMC4zLDAuMSwwLjQsMC4yTDgsMTBsNC43LTQuN2MwLjEtMC4xLDAuMi0wLjIsMC40LTAuMmMwLjIsMCwwLjMsMC4xLDAuNCwwLjJMMTUsNi44YzAuMSwwLjEsMC4yLDAuMiwwLjIsMC40UzE1LjEsNy41LDE1LDcuNnonLz48L2c+PC9zdmc+) right center no-repeat;
        cursor: pointer
    }

        select::-webkit-input-placeholder {
            color: #bdbdbd
        }

        select:-ms-input-placeholder {
            color: #bdbdbd
        }

        select::placeholder {
            color: #bdbdbd
        }

        select.small {
            width: 72px
        }

        select.medium {
            width: 140px
        }

        select.big {
            width: 252px
        }

        select.x-big {
            width: 444px
        }

        select.full-width {
            width: 100%
        }

        select:focus {
            border-color: #039be5
        }

        select::-ms-expand {
            display: none
        }

        select[type=search] {
            -webkit-appearance: textfield;
            -moz-appearance: textfield;
            appearance: textfield
        }

        .no-edit .input, .no-edit input, select.no-edit {
            border: 1px solid transparent;
            -webkit-appearance: none;
            -moz-appearance: none;
            font-size: 14px;
            font-smoothing: antialiased;
            box-shadow: none;
            pointer-events: none;
            outline: 0;
            height: 28px
        }

        select.no-edit {
            border-bottom-color: #bdbdbd;
            padding: 3px 16px 3px 0;
            color: #424242;
            appearance: none;
            border-radius: 0;
            width: 100%;
            background: 0 0;
            cursor: pointer
        }

            select.no-edit::-webkit-input-placeholder {
                color: #bdbdbd
            }

            select.no-edit:-ms-input-placeholder {
                color: #bdbdbd
            }

            select.no-edit::placeholder {
                color: #bdbdbd
            }

            select.no-edit.small {
                width: 72px
            }

            select.no-edit.medium {
                width: 140px
            }

            select.no-edit.big {
                width: 252px
            }

            select.no-edit.x-big {
                width: 444px
            }

            select.no-edit.full-width {
                width: 100%
            }

    .no-edit .input, .no-edit input {
        background-color: transparent;
        border-bottom-color: #bdbdbd;
        padding: 3px 12px 3px 0;
        color: #424242;
        appearance: none;
        border-radius: 0;
        cursor: default;
        width: 100%
    }

        .no-edit .input::-webkit-input-placeholder, .no-edit input::-webkit-input-placeholder {
            color: #bdbdbd
        }

        .no-edit .input:-ms-input-placeholder, .no-edit input:-ms-input-placeholder {
            color: #bdbdbd
        }

        .no-edit .input::placeholder, .no-edit input::placeholder {
            color: #bdbdbd
        }

        .no-edit .input.small, .no-edit input.small {
            width: 72px
        }

        .no-edit .input.medium, .no-edit input.medium {
            width: 140px
        }

        .no-edit .input.big, .no-edit input.big {
            width: 252px
        }

        .no-edit .input.x-big, .no-edit input.x-big {
            width: 444px
        }

        .no-edit .input.full-width, .no-edit input.full-width {
            width: 100%
        }

    .no-edit select {
        font-size: 14px;
        border: 1px solid transparent;
        border-bottom-color: #bdbdbd;
        font-smoothing: antialiased;
        padding: 3px 16px 3px 0;
        color: #424242;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        box-shadow: none;
        border-radius: 0;
        pointer-events: none;
        outline: 0;
        width: 100%;
        height: 28px;
        background: 0 0;
        cursor: pointer
    }

        .no-edit select::-webkit-input-placeholder {
            color: #bdbdbd
        }

        .no-edit select:-ms-input-placeholder {
            color: #bdbdbd
        }

        .no-edit select::placeholder {
            color: #bdbdbd
        }

        .no-edit select.small {
            width: 72px
        }

        .no-edit select.medium {
            width: 140px
        }

        .no-edit select.big {
            width: 252px
        }

        .no-edit select.x-big {
            width: 444px
        }

        .no-edit select.full-width {
            width: 100%
        }
}

.responsive-table > tbody > tr:first-child, .responsive-table > tbody > tr > td > table.responsive-table > tbody > tr {
    cursor: pointer
}

.card {
    box-shadow: 0 0 6px rgba(0,0,0,.2);
    margin-top: calc(20px / 2);
    margin-bottom: calc(20px / 2);
    background-color: #f8f8fa;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-direction: column;
    flex-direction: column
}

    .card > header h1, .card > header h2, .card > header h3, .tabs {
        margin: 0
    }

        .card > main p:last-child, .tabs select {
            margin-bottom: 0
        }

    .card > footer.flex, .card > header {
        display: -webkit-box;
        display: -ms-flexbox
    }

    .card > header, .card > main {
        -ms-flex-preferred-size: auto
    }

    .card > header {
        flex-basis: auto;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        color: #fff;
        background: #916491;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: calc(20px / 2)
    }

        .card > header > h1 {
            font-size: 16px
        }

        .card > header.closure {
            background: linear-gradient(90deg,#916491 0,#777 100%)
        }

        .card > header.blocked {
            background: linear-gradient(90deg,#777 0,#555 100%)
        }

        .card > header.paused {
            background: linear-gradient(90deg,#916491 0,#777 100%)
        }

        .card > header.with-tabs {
            padding-bottom: 0
        }

        .card > header .header-section {
            width: 100%;
            border-bottom: 1px solid #fff
        }

            .card > header .header-section:last-of-type {
                border: 0
            }

            .card > header .header-section h2 {
                font-size: 18px;
                text-transform: none
            }

                .card > header .header-section h2::after {
                    display: none
                }

            .card > header .header-section h3 {
                text-transform: uppercase;
                font-weight: 400
            }

    .card > main {
        flex-basis: auto;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        background-color: #fff
    }

        .card > main.main-padding {
            padding: calc(20px / 2)
        }

        .card > main p:first-child {
            margin-top: 0
        }

    .card > footer {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        padding: 10px;
        border-top: 1px solid #bdbdbd
    }

        .card > footer.flex {
            display: flex
        }

            .card > footer.flex.flex-end {
                -webkit-box-pack: end;
                -ms-flex-pack: end;
                justify-content: flex-end
            }

                .card > footer.flex.flex-end > * {
                    -webkit-box-flex: 0;
                    -ms-flex-positive: 0;
                    flex-grow: 0;
                    -ms-flex-negative: 1;
                    flex-shrink: 1;
                    -ms-flex-preferred-size: auto;
                    flex-basis: auto
                }

            .card > footer.flex.space-between {
                -webkit-box-pack: justify;
                -ms-flex-pack: justify;
                justify-content: space-between
            }

@media only screen and (min-width:786px) {
    .card {
        border-radius: 4px
    }

        .card > header .header-section {
            border: 0
        }

    .col .card:last-child {
        margin-bottom: 0
    }
}

@media only screen and (min-width:1240px) {
    .card > header .header-section {
        width: 50%
    }

        .card > header .header-section.align-right {
            text-align: right
        }
}

.tabs {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    overflow: visible
}

    .tabs menuitem, .tabs select {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        border: 1px solid #eee;
        border-bottom: 0;
        padding: 8px 15px 10px;
        margin-top: calc(10px);
        margin-right: 2px;
        margin-left: 2px;
        font-weight: 500;
        cursor: pointer;
        height: auto
    }

        .tabs menuitem.active, .tabs select.active {
            color: #faf200;
            margin-bottom: 0;
            padding-bottom: 13px;
            background-color: #fff
        }

.tab-content.tab-content-padding, table > tbody > tr > td, table > tbody > tr > th, table > thead tr > th {
    padding: calc(20px / 2)
}

.tabs menuitem {
    display: none
}

    .tabs menuitem.extra {
        border: 0;
        text-align: right;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1
    }

.tabs select {
    font-weight: 500;
    color: #faf200;
    background-color: #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

    .tabs select option {
        color: #424242
    }

.tab-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

    .tab-content.padding-bottom {
        padding-bottom: calc(20px / 2)
    }

@media only screen and (min-width:786px) {
    .tabs select {
        display: none
    }

    .tabs menuitem {
        color: #fff;
        margin-bottom: 3px;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        display: block;
        border-radius: 0
    }

        .tabs menuitem:first-of-type {
            border-top-left-radius: 8px;
            margin-left: 0
        }

        .tabs menuitem:last-of-type {
            border-top-right-radius: 8px;
            margin-right: 0
        }
}

table {
    border: 0;
    border-collapse: collapse;
    width: 100%
}

    table .icon {
        fill: #039be5
    }

    table .from-medium, table .only-big {
        display: none
    }

    table > tbody > tr > td:first-child, table > tbody > tr > th:first-child, table > thead tr > th:first-child {
        border-left: 3px solid transparent;
        padding-left: 20px
    }

    table > tbody > tr > td:last-child, table > tbody > tr > th:last-child, table > thead tr > th:last-child {
        padding-right: 20px
    }

    table tr.bottom-padding > th:first-child {
        padding-bottom: 5px;
        padding-left: 0
    }

    table tr.highlight {
        background-color: rgba(3,155,229,.06)
    }

        table tr.highlight td h4, table tr.highlight th h4 {
            color: #039be5
        }

    table tr td, table tr th {
        text-align: left
    }

        table tr td .btn, table tr th .btn {
            margin: calc(-20px / 4) 0 calc(-20px / 4) calc(-20px / 2)
        }

.responsive-table > tbody > tr:last-child > td > .content p:first-child, .responsive-table > tbody > tr > td > table.responsive-table > tbody > tr:last-child > td > .content p:first-child {
    margin-top: 0
}

table tr th {
    font-weight: 500
}

table > thead > tr > th {
    background-color: #f8f8fa
}

table > tbody {
    border-top: 1px solid #bdbdbd
}

    table > tbody:first-of-type {
        border-top: none
    }

.responsive-table > tbody > tr > td, .responsive-table > tbody > tr > th, .responsive-table > thead tr th {
    padding-top: 12px;
    padding-bottom: 12px
}

    .responsive-table > tbody > tr > td.multipletransactions, .responsive-table > tbody > tr > th.multipletransactions, .responsive-table > thead tr th.multipletransactions {
        overflow: visible !important;
        padding-left: 0 !important;
        margin-left: 0 !important
    }

        .responsive-table > tbody > tr > td.multipletransactions:last-child, .responsive-table > tbody > tr > th.multipletransactions:last-child, .responsive-table > thead tr th.multipletransactions:last-child {
            padding-right: 0 !important
        }

.responsive-table > thead > tr:nth-child(2) > th {
    padding-top: 0;
    font-size: 12px
}

.responsive-table > tbody > tr > td h4 {
    margin-bottom: calc(20px / 4)
}

.responsive-table > tbody > tr > td:first-child {
    padding-left: 20px
}

.responsive-table > tbody .chevron-down {
    transition: .3s
}

.responsive-table > tbody > tr:last-child > td {
    transition: padding-top .3s,padding-bottom .3s;
    overflow: hidden;
    border-bottom: 1px solid #bdbdbd;
    padding-top: 0;
    padding-bottom: 0
}

    .responsive-table > tbody > tr:last-child > td > .content {
        transition: max-height .3s;
        max-height: 0
    }

        .responsive-table > tbody > tr:last-child > td > .content ul[rn-carousel] {
            height: 200px;
            width: 100%;
            margin: 0
        }

            .responsive-table > tbody > tr:last-child > td > .content ul[rn-carousel] li, .responsive-table > tbody > tr:last-child > td > .content ul[rn-carousel].no-slide {
                height: auto
            }

                .responsive-table > tbody > tr:last-child > td > .content ul[rn-carousel].no-slide li {
                    position: relative
                }

        .responsive-table > tbody > tr:last-child > td > .content .slide-indicator {
            width: 100%;
            text-align: center
        }

        .responsive-table > tbody > tr:last-child > td > .content p:last-child {
            margin-bottom: 0
        }

.responsive-table > tbody:last-child > tr > td {
    border-bottom: none
}

.responsive-table > tbody.isopen > tr .chevron-down {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.responsive-table > tbody.isopen > tr > td:first-child {
    border-left: 3px solid #faf200
}

.responsive-table > tbody.isopen > tr:last-child > td {
    padding-top: calc(20px / 2);
    padding-bottom: calc(20px / 2)
}

    .responsive-table > tbody.isopen > tr:last-child > td > .content {
        max-height: 100%
    }

.responsive-table > tbody > tr > td > table.responsive-table > tbody > tr > td, .responsive-table > tbody > tr > td > table.responsive-table > tbody > tr > th, .responsive-table > tbody > tr > td > table.responsive-table > thead tr th {
    padding-top: 12px;
    padding-bottom: 12px;
    overflow: visible !important
}

.responsive-table > tbody > tr > td > table.responsive-table > thead > tr > th {
    padding-top: 0;
    font-size: 12px
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody > tr > td h4 {
    margin-bottom: calc(20px / 4)
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody > tr:first-child {
    border-top: 1px solid #bdbdbd
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody > tr:last-child > td {
    transition: padding-top .3s,padding-bottom .3s;
    overflow: hidden;
    border-bottom: 1px solid #bdbdbd;
    padding-top: 0;
    padding-bottom: 12px
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody.isopen > tr:last-child > td, .responsive-table > tbody > tr > td > table.responsive-table > tbody > tr > td {
    padding-top: calc(20px / 2);
    padding-bottom: calc(20px / 2)
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody > tr:last-child > td > .content {
    transition: max-height .3s;
    max-height: 0
}

    .responsive-table > tbody > tr > td > table.responsive-table > tbody > tr:last-child > td > .content p:last-child {
        margin-bottom: 0
    }

.responsive-table > tbody > tr > td > table.responsive-table > tbody:last-child > tr > td {
    border-bottom: none
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody > tr > td:first-child {
    padding-left: 0
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody > tr > td:last-child {
    padding-right: 0
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody.isopen > tr > td:first-child {
    border-left: 0
}

.responsive-table > tbody > tr > td > table.responsive-table > tbody.isopen > tr:last-child > td > .content {
    max-height: 100%
}

.small-table tbody td:first-child, .small-table tbody th:first-child, .small-table td, .small-table th {
    padding: 0 5px 5px 0
}

.small-table th {
    min-width: 80px;
    font-size: 12px;
    font-weight: 500
}

@media only screen and (min-width:786px) {
    .responsive-table .only-small {
        display: none
    }

    .responsive-table .width-1-from-medium {
        width: 1px
    }

    .responsive-table .from-medium {
        display: table-cell
    }

    .responsive-table > tbody > tr > td.border-right {
        border-right: 1px solid #eee
    }
}

@media only screen and (min-width:1240px) {
    .responsive-table:not(.responsive-table-always) .buttoncol {
        display: none
    }

    .responsive-table:not(.responsive-table-always) > tbody.isopen > tr:first-child, .responsive-table:not(.responsive-table-always) > tbody > tr:first-child {
        cursor: default
    }

        .responsive-table:not(.responsive-table-always) > tbody.isopen > tr:first-child > td:first-child, .responsive-table:not(.responsive-table-always) > tbody > tr:first-child > td:first-child {
            padding-left: 20px;
            border-left: none
        }

    .responsive-table:not(.responsive-table-always) > tbody.isopen > tr:last-child > td, .responsive-table:not(.responsive-table-always) > tbody > tr:last-child > td {
        padding-top: 0;
        padding-bottom: 0
    }

        .responsive-table:not(.responsive-table-always) > tbody.isopen > tr:last-child > td > .content, .responsive-table:not(.responsive-table-always) > tbody > tr:last-child > td > .content {
            max-height: 0
        }

    .responsive-table .only-big {
        display: table-cell
    }
}

.app-container > nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    background-color: #916491;
    color: #fff;
    z-index: 105
}

    .app-container > nav form {
        display: none
    }

    .app-container > nav .icon-gfhlogo {
        background-color: #fff;
        height: 80px;
        width: auto;
        padding: 10px;
        display: none;
        border-bottom: 2px #916491 solid;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .app-container > nav .menu {
        -ms-flex-negative: 1;
        flex-shrink: 1;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        overflow-y: auto;
        overflow-x: hidden
    }

    .app-container > nav ul {
        padding: calc(20px /2) 0;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

        .app-container > nav ul.extra {
            background-color: #916491
        }

        .app-container > nav ul li {
            display: block;
            list-style: none;
            white-space: nowrap;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1
        }

            .app-container > nav ul li .text {
                padding-left: 10px;
                padding-bottom: 10px
            }

            .app-container > nav ul li a, .app-container > nav ul li label {
                cursor: pointer;
                border: none;
                text-align: left;
                margin: 0;
                display: block;
                width: 100%;
                padding: 10px 12px;
                min-height: 44px;
                line-height: 24px;
                text-decoration: none;
                color: inherit
            }

                .app-container > nav ul li a .icon, .app-container > nav ul li label .icon {
                    fill: #fff;
                    display: inline-block;
                    margin-right: calc(20px / 2)
                }

                .app-container > nav ul li a:hover, .app-container > nav ul li label:hover {
                    background-color: #9d8b9d
                }

                .app-container > nav ul li a:active, .app-container > nav ul li label:active {
                    background-color: #b4a7b4
                }

                .app-container > nav ul li a.active, .app-container > nav ul li label.active {
                    background-color: #c7aec7
                }

                .app-container > nav ul li a .tag, .app-container > nav ul li label .tag {
                    margin-left: calc(20px / 4)
                }

    .app-container > nav footer {
        padding: 0 15px 15px;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 0
    }

.app-container .menu-overlay {
    display: none
}

@media only screen and (min-width:786px) {
    .app-container > nav .icon-gfhlogo {
        display: block
    }

    .app-container > nav ul li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        list-style: none
    }

        .app-container > nav ul li a {
            padding: 10px 12px
        }
}

.icon {
    display: inline-block;
    vertical-align: middle;
    height: 24px;
    width: 24px
}

.app-container, body {
    display: -webkit-box;
    display: -ms-flexbox
}

.icon.icon-small {
    height: 14px;
    width: 14px
}

.icon.icon-identityinfo {
    fill: #916491
}

body {
    display: flex;
    margin: 0
}

.app-container {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 1500px;
    flex: 0 1 1500px;
    overflow: auto;
    padding-top: 50px;
    min-height: 100vh
}

    .app-container.nav-open > header > div {
        background-color: #c7aec7;
        color: #fff;
        position: relative
    }

        .app-container.nav-open > header > div > .icon {
            fill: #fff
        }

    .app-container.nav-open > nav {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        margin-left: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .app-container.nav-open .menu-overlay {
        display: block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0,0,0,.5)
    }

    .app-container > header {
        position: fixed;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        z-index: 300;
        top: 0;
        height: 50px;
        width: 100%;
        font-size: 21px;
        line-height: 50px;
        text-transform: uppercase;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .app-container > main, .responsive-col {
        display: -webkit-box;
        display: -ms-flexbox
    }

    .app-container > header > div {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 1;
        flex-shrink: 1;
        padding-right: 10px;
        color: #916491;
        fill: #916491
    }

        .app-container > header > div > .icon {
            position: relative;
            height: 18px;
            top: -2px;
            -webkit-box-flex: 0;
            -ms-flex: 0;
            flex: 0;
            width: 50px;
            text-align: center
        }

    .app-container > header .icon-gfhlogo {
        width: auto;
        height: 50px;
        padding: 10px;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }

    .app-container > nav {
        -webkit-transform: translateX(-110%);
        transform: translateX(-110%);
        transition: all ease .5s;
        margin-top: 50px;
        position: fixed;
        bottom: 0;
        top: 0;
        left: 0;
        width: 80%
    }

    .app-container > main {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        overflow: auto;
        width: 100%;
        display: flex;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 10px 0
    }

        .app-container > main > .card, .app-container > main > .col {
            width: 100%
        }

.responsive-col {
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-negative: 1;
    flex-shrink: 1;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%
}

    .responsive-col .padding-sides {
        padding-left: calc(20px / 2);
        padding-right: calc(20px / 2)
    }

.padding {
    padding: calc(20px / 2)
}

.padding-top {
    padding-top: calc(20px / 2)
}

.padding-big {
    padding: 20px
}

main.flex-center {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

    main.flex-center > .card {
        margin-top: 0;
        width: 100%
    }

@media only screen and (max-width:786px) {
    .no-small {
        display: none
    }
}

@media only screen and (min-width:786px) {
    main.flex-center {
        min-height: 80vh;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

        main.flex-center > .card {
            width: auto
        }

    .app-container {
        padding-top: 0
    }

        .app-container > header {
            display: none
        }

        .app-container > nav {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            width: 210px;
            margin-left: 0;
            margin-top: 0;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-flex: 0;
            -ms-flex-positive: 0;
            flex-grow: 0;
            -ms-flex-negative: 0;
            flex-shrink: 0
        }

        .app-container > main {
            width: calc(100% - 210px);
            margin-left: 210px;
            padding: 10px;
            -webkit-box-flex: 1;
            -ms-flex-positive: 1;
            flex-grow: 1;
            -ms-flex-line-pack: start;
            align-content: flex-start
        }

            .app-container > main.column {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column
            }

            .app-container > main > .card, .app-container > main > .col {
                width: calc(100% - 20px);
                margin: 10px
            }
}

.toast.toast-error:before, .toast.toast-info:before, .toast.toast-success:before, .toast.toast-warning:before {
    line-height: 1;
    font-size: 26px;
    top: 50%;
    margin-top: -13px;
    left: 15px;
    position: absolute
}

@media only screen and (min-width:1240px) {
    .responsive-col {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%
    }

    .app-container > main > .card.break, .app-container > main > .col {
        width: calc(50% - 20px)
    }
}

.toast.toast-info:before {
    content: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMDA2NDkxIiBkPSJNMTMgMTZoLTJ2LTZoMnY2em0tMS0xMC4yNWMuNjkgMCAxLjI1LjU2IDEuMjUgMS4yNXMtLjU2IDEuMjUtMS4yNSAxLjI1LTEuMjUtLjU2LTEuMjUtMS4yNS41Ni0xLjI1IDEuMjUtMS4yNXptMC0yLjc1YzUuNTE0IDAgMTAgMy41OTIgMTAgOC4wMDcgMCA0LjkxNy01LjE0NSA3Ljk2MS05LjkxIDcuOTYxLTEuOTM3IDAtMy4zODMtLjM5Ny00LjM5NC0uNjQ0LTEgLjYxMy0xLjU5NSAxLjAzNy00LjI3MiAxLjgyLjUzNS0xLjM3My43MjMtMi43NDguNjAyLTQuMjY1LS44MzgtMS0yLjAyNS0yLjQtMi4wMjUtNC44NzItLjAwMS00LjQxNSA0LjQ4NS04LjAwNyA5Ljk5OS04LjAwN3ptMC0yYy02LjMzOCAwLTEyIDQuMjI2LTEyIDEwLjAwNyAwIDIuMDUuNzM4IDQuMDYzIDIuMDQ3IDUuNjI1LjA1NSAxLjgzLTEuMDIzIDQuNDU2LTEuOTkzIDYuMzY4IDIuNjAyLS40NyA2LjMwMS0xLjUwOCA3Ljk3OC0yLjUzNiAxLjQxOC4zNDUgMi43NzUuNTAzIDQuMDU5LjUwMyA3LjA4NCAwIDExLjkxLTQuODM3IDExLjkxLTkuOTYxLS4wMDEtNS44MTEtNS43MDItMTAuMDA2LTEyLjAwMS0xMC4wMDZ6Ii8+PC9zdmc+)
}

.toast.toast-success:before {
    content: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjMmU3ZDMyIiBkPSJNOSAyMS4wMzVsLTktOC42MzggMi43OTEtMi44NyA2LjE1NiA1Ljg3NCAxMi4yMS0xMi40MzYgMi44NDMgMi44MTd6Ii8+PC9zdmc+)
}

.toast.toast-error:before {
    content: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjRkYxNzQ0IiBkPSJNMTIgMWwtMTIgMjJoMjRsLTEyLTIyem0tMSA4aDJ2N2gtMnYtN3ptMSAxMS4yNWMtLjY5IDAtMS4yNS0uNTYtMS4yNS0xLjI1cy41Ni0xLjI1IDEuMjUtMS4yNSAxLjI1LjU2IDEuMjUgMS4yNS0uNTYgMS4yNS0xLjI1IDEuMjV6Ii8+PC9zdmc+)
}

.toast.toast-warning:before {
    content: url(data:image/svg+xml;charset=utf-8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0Ij48cGF0aCBmaWxsPSIjZmZhMjAwIiBkPSJNMTMgMTZoLTJ2LTZoMnY2em0tMS0xMC4yNWMuNjkgMCAxLjI1LjU2IDEuMjUgMS4yNXMtLjU2IDEuMjUtMS4yNSAxLjI1LTEuMjUtLjU2LTEuMjUtMS4yNS41Ni0xLjI1IDEuMjUtMS4yNXptMC0yLjc1YzUuNTE0IDAgMTAgMy41OTIgMTAgOC4wMDcgMCA0LjkxNy01LjE0NSA3Ljk2MS05LjkxIDcuOTYxLTEuOTM3IDAtMy4zODMtLjM5Ny00LjM5NC0uNjQ0LTEgLjYxMy0xLjU5NSAxLjAzNy00LjI3MiAxLjgyLjUzNS0xLjM3My43MjMtMi43NDguNjAyLTQuMjY1LS44MzgtMS0yLjAyNS0yLjQtMi4wMjUtNC44NzItLjAwMS00LjQxNSA0LjQ4NS04LjAwNyA5Ljk5OS04LjAwN3ptMC0yYy02LjMzOCAwLTEyIDQuMjI2LTEyIDEwLjAwNyAwIDIuMDUuNzM4IDQuMDYzIDIuMDQ3IDUuNjI1LjA1NSAxLjgzLTEuMDIzIDQuNDU2LTEuOTkzIDYuMzY4IDIuNjAyLS40NyA2LjMwMS0xLjUwOCA3Ljk3OC0yLjUzNiAxLjQxOC4zNDUgMi43NzUuNTAzIDQuMDU5LjUwMyA3LjA4NCAwIDExLjkxLTQuODM3IDExLjkxLTkuOTYxLS4wMDEtNS44MTEtNS43MDItMTAuMDA2LTEyLjAwMS0xMC4wMDZ6Ii8+PC9zdmc+)
}

.toast {
    background-image: none;
    background-color: #fff;
    font-family: ubuntu
}

.toast-close-button {
    color: #424242;
    opacity: 1
}

.toast-message, .toast-title {
    color: #424242
}

div.angucomplete-dropdown {
    border: 1px solid grey;
    position: absolute;
    top: 28px;
    z-index: 1000;
    background-color: #fff
}

div.angucomplete-holder {
    position: relative
}

div.angucomplete-row {
    padding-left: 5px;
    padding-right: 5px
}

    div.angucomplete-row span {
        display: inline
    }

div.angucomplete-selected-row {
    background-color: #039be5;
    color: #fff
}

.ngdialog, .ngdialog.ngdialog-theme-default {
    min-width: 1280px;
    padding: 50px 0
}

    .ngdialog .ngdialog-overlay, .ngdialog.ngdialog-theme-default .ngdialog-overlay {
        background: rgba(0,0,0,.6)
    }

    .ngdialog .ngdialog-content, .ngdialog.ngdialog-theme-default .ngdialog-content {
        width: 80%;
        padding: 0;
        border-radius: 0;
        font-family: ubuntu;
        background: #fff;
        -webkit-transform: translateZ(0);
        max-height: 100%;
        overflow-x: hidden;
        overflow-y: auto
    }

        .ngdialog .ngdialog-content .row.border-bottom, .ngdialog.ngdialog-theme-default .ngdialog-content .row.border-bottom {
            border-bottom: 1px solid #bdbdbd
        }

        .ngdialog .ngdialog-content .row .col, .ngdialog.ngdialog-theme-default .ngdialog-content .row .col {
            border-top: 1px solid #78909c;
            padding: 0;
            background-color: #fff
        }

            .ngdialog .ngdialog-content .row .col.padding, .ngdialog.ngdialog-theme-default .ngdialog-content .row .col.padding {
                padding: 15px
            }

            .ngdialog .ngdialog-content .row .col h2, .ngdialog.ngdialog-theme-default .ngdialog-content .row .col h2 {
                font-size: 1.2em;
                margin-left: 15px;
                margin-right: 15px
            }

        .ngdialog .ngdialog-content .row.padding .col, .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .col {
            border-top: 1px solid #78909c;
            border-bottom: 1px solid #78909c
        }

            .ngdialog .ngdialog-content .row.padding .col:first-child, .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .col:first-child {
                border-left: 1px solid #78909c
            }

            .ngdialog .ngdialog-content .row.padding .col:last-child, .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .col:last-child {
                border-right: 1px solid #78909c
            }

        .ngdialog .ngdialog-content .row.padding .with-title, .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .with-title {
            background: #f5f5f5
        }

            .ngdialog .ngdialog-content .row.padding .with-title h2, .ngdialog.ngdialog-theme-default .ngdialog-content .row.padding .with-title h2 {
                color: #015a89;
                text-transform: uppercase
            }

    .ngdialog .dialog-title, .ngdialog.ngdialog-theme-default .dialog-title {
        padding: 20px 15px;
        background-color: #916491;
        color: #fff;
        overflow: hidden
    }

    .ngdialog table.table, .ngdialog.ngdialog-theme-default table.table, div.account-box-wrapper, div.corner-gfhlogo {
        background-color: #fff
    }

    .ngdialog .dialog-title h1, .ngdialog .dialog-title h2, .ngdialog.ngdialog-theme-default .dialog-title h1, .ngdialog.ngdialog-theme-default .dialog-title h2 {
        margin: 15px 0;
        line-height: 1.33333
    }

    .ngdialog .close-button-holder, .ngdialog.ngdialog-theme-default .close-button-holder {
        margin: 15px 0;
        vertical-align: middle;
        cursor: pointer;
        font-size: 24px
    }

.funds-rates h4, main.account-box h4 {
    margin-bottom: calc(20px / 2)
}

.ngdialog .dialog-button-bar, .ngdialog.ngdialog-theme-default .dialog-button-bar {
    background-color: #fff;
    border-top: 1px solid #916491;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: right
}

    .ngdialog .dialog-button-bar .btn, .ngdialog.ngdialog-theme-default .dialog-button-bar .btn {
        margin-left: 15px
    }

.ngdialog.ngdialog-theme-default.with-scrollable-content .ngdialog-content, .ngdialog.with-scrollable-content .ngdialog-content {
    height: 100%
}

.ngdialog.box {
    padding: 100px 0
}

    .ngdialog.box .ngdialog-content {
        width: 40%
    }

main.account-box .account-box-gfhlogo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-line-pack: start;
    align-content: flex-start
}

main.account-box .info-icon {
    width: 15px;
    height: 15px;
    fill: #039be5;
    -ms-flex-item-align: start;
    align-self: flex-start
}

div.account-box-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

div.corner-gfhlogo {
    -ms-flex-item-align: end;
    align-self: flex-end;
    display: none
}

main.account-box label.inline-tooltip-child > tooltip:first-child {
    display: inline-block
}

main.account-box {
    width: 100%
}

@media only screen and (min-width:786px) {
    div.account-box-wrapper {
        width: 1160px;
        height: 400px;
        margin-left: auto;
        margin-right: auto;
        background: url(../../../../Images/inlog_bg.jpg) no-repeat;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    main.account-box {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: 40px;
        width: auto
    }

        main.account-box form.card {
            width: 300px;
            min-height: 200px;
            margin-top: 40px
        }

        main.account-box .account-box-gfhlogo {
            display: none
        }

    div.corner-gfhlogo {
        display: block
    }
}

@media only screen and (min-width:1240px) {
    div.account-box-wrapper {
        margin-top: 40px
    }
}

.funds-rates h4 {
    font-size: 15px
}

.funds-rates label {
    margin-bottom: calc(20px / 4)
}

.funds-rates table {
    width: auto
}

    .funds-rates table > tbody > tr > td {
        font-weight: 700;
        padding-top: 5px;
        padding-bottom: 0
    }

        .funds-rates table > tbody > tr > td:first-child {
            padding-left: 0
        }
.login {
    max-width: 600px;
}

    /* line 8, web/common/styles/partials/_login.scss */
    .login.table {
        margin: auto;
    }

    /* line 12, web/common/styles/partials/_login.scss */
    .login .login-form {
        overflow: hidden;
        padding: 15px 15px;
    }

    /* line 17, web/common/styles/partials/_login.scss */
    .login h2 {
        margin: -15px -15px 30px -15px;
        padding: 15px 15px;
        color: #fff;
        background: #173620;
    }
.table {
    display: table;
}

/* line 83, web/common/styles/partials/_alignment.scss */
.table-row {
    display: table-row;
}

/* line 87, web/common/styles/partials/_alignment.scss */
.table-cell,
.table-cell-squeeze {
    display: table-cell;
}

/* line 92, web/common/styles/partials/_alignment.scss */
.table-cell-squeeze {
    height: 1px;
}
.full-height {
    height: 100%;
}
.full-width {
    height: 100%;
}

