﻿@charset "UTF-8";

.fa-ul, .ns-popover-list-theme .list-item, .ns-popover-list-theme li, .ns-popover-tooltip-theme .ns-popover-tooltip li {
    list-style-type: none;
}

.ngdialog-content, .ngdialog-overlay, .ngdialog.ngdialog-closing .ngdialog-content, .tgl-ios + .tgl-btn:before, body {
    -webkit-backface-visibility: hidden;
}

.ngdialog, .ngdialog-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@-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;
}

    .ngdialog *, .ngdialog :after, .ngdialog :before {
        box-sizing: inherit;
    }

    .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 {
    background: rgba(0,0,0,.4);
    -webkit-animation: ngdialog-fadein .5s;
    animation: ngdialog-fadein .5s;
}

.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;
}

body.ngdialog-open, html.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);
    }
}

.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;
    }

    .ngdialog.ngdialog-theme-default .ngdialog-close {
        border-radius: 5px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
    }

        .ngdialog.ngdialog-theme-default .ngdialog-close:before {
            background: 0 0;
            border-radius: 3px;
            content: '\00D7';
            font-size: 26px;
            font-weight: 400;
            height: 30px;
            line-height: 26px;
            position: absolute;
            right: 3px;
            text-align: center;
            top: 3px;
            width: 30px;
        }

        .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=email], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=text], .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=email]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=text]: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;
}
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 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 */ /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

table, table.fancytree-ext-table {
    border-collapse: collapse;
}

.btn-group-vertical > .btn-group:after, .btn-toolbar:after, .clearfix:after, .cms-text [marked], .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .nav:after, .row:after {
    clear: both;
}

.fa.fa-pull-left, .fa.pull-left {
    margin-right: .3em;
}

@-ms-viewport {
    width: device-width;
}

.fa, .fa-stack {
    display: inline-block;
}
/*!
 *  Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */

@font-face {
    font-family: FontAwesome;
    src: url('/Resources/fonts/fontawesome-webfont.eot?v=4.6.3');
    src: url('/Resources/fonts/fontawesome-webfont.eot?#iefix&v=4.6.3') format('embedded-opentype'), url('/Resources/fonts/fontawesome-webfont.woff2?v=4.6.3') format('woff2'), url('/Resources/fonts/fontawesome-webfont.woff?v=4.6.3') format('woff'), url('/Resources/fonts/fontawesome-webfont.ttf?v=4.6.3') format('truetype'), url('/Resources/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular') format('svg');
    font-weight: 400;
    font-style: normal;
}

.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -15%;
}

.fa-2x {
    font-size: 2em;
}

.fa-3x {
    font-size: 3em;
}

.fa-4x {
    font-size: 4em;
}

.fa-5x {
    font-size: 5em;
}

.fa-fw {
    width: 1.28571em;
    text-align: center;
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
}

.fa.fa-pull-right, .fa.pull-right {
    margin-left: .3em;
}

.fa-ul > li {
    position: relative;
}

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: .14286em;
    text-align: center;
}

    .fa-li.fa-lg {
        left: -1.85714em;
    }

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em;
}

.fa-pull-left {
    float: left;
}

.fa-pull-right {
    float: right;
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}

.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(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.fa-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.fa-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.fa-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform: scale(-1,1);
    transform: scale(-1,1);
}

.fa-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: scale(1,-1);
    transform: scale(1,-1);
}

:root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
    -webkit-filter: none;
    filter: none;
}

.fa-stack {
    position: relative;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}

.fa-stack-1x {
    line-height: inherit;
}

.fa-stack-2x {
    font-size: 2em;
}

.fa-inverse {
    color: #fff;
}

.fa-glass:before {
    content: "";
}

.fa-music:before {
    content: "";
}

.fa-search:before {
    content: "";
}

.fa-envelope-o:before {
    content: "";
}

.fa-heart:before {
    content: "";
}

.fa-star:before {
    content: "";
}

.fa-star-o:before {
    content: "";
}

.fa-user:before {
    content: "";
}

.fa-film:before {
    content: "";
}

.fa-th-large:before {
    content: "";
}

.fa-th:before {
    content: "";
}

.fa-th-list:before {
    content: "";
}

.fa-check:before {
    content: "";
}

.fa-close:before, .fa-remove:before, .fa-times:before {
    content: "";
}

.fa-search-plus:before {
    content: "";
}

.fa-search-minus:before {
    content: "";
}

.fa-power-off:before {
    content: "";
}

.fa-signal:before {
    content: "";
}

.fa-cog:before, .fa-gear:before {
    content: "";
}

.fa-trash-o:before {
    content: "";
}

.fa-home:before {
    content: "";
}

.fa-file-o:before {
    content: "";
}

.fa-clock-o:before {
    content: "";
}

.fa-road:before {
    content: "";
}

.fa-download:before {
    content: "";
}

.fa-arrow-circle-o-down:before {
    content: "";
}

.fa-arrow-circle-o-up:before {
    content: "";
}

.fa-inbox:before {
    content: "";
}

.fa-play-circle-o:before {
    content: "";
}

.fa-repeat:before, .fa-rotate-right:before {
    content: "";
}

.fa-refresh:before {
    content: "";
}

.fa-list-alt:before {
    content: "";
}

.fa-lock:before {
    content: "";
}

.fa-flag:before {
    content: "";
}

.fa-headphones:before {
    content: "";
}

.fa-volume-off:before {
    content: "";
}

.fa-volume-down:before {
    content: "";
}

.fa-volume-up:before {
    content: "";
}

.fa-qrcode:before {
    content: "";
}

.fa-barcode:before {
    content: "";
}

.fa-tag:before {
    content: "";
}

.fa-tags:before {
    content: "";
}

.fa-book:before {
    content: "";
}

.fa-bookmark:before {
    content: "";
}

.fa-print:before {
    content: "";
}

.fa-camera:before {
    content: "";
}

.fa-font:before {
    content: "";
}

.fa-bold:before {
    content: "";
}

.fa-italic:before {
    content: "";
}

.fa-text-height:before {
    content: "";
}

.fa-text-width:before {
    content: "";
}

.fa-align-left:before {
    content: "";
}

.fa-align-center:before {
    content: "";
}

.fa-align-right:before {
    content: "";
}

.fa-align-justify:before {
    content: "";
}

.fa-list:before {
    content: "";
}

.fa-dedent:before, .fa-outdent:before {
    content: "";
}

.fa-indent:before {
    content: "";
}

.fa-video-camera:before {
    content: "";
}

.fa-image:before, .fa-photo:before, .fa-picture-o:before {
    content: "";
}

.fa-pencil:before {
    content: "";
}

.fa-map-marker:before {
    content: "";
}

.fa-adjust:before {
    content: "";
}

.fa-tint:before {
    content: "";
}

.fa-edit:before, .fa-pencil-square-o:before {
    content: "";
}

.fa-share-square-o:before {
    content: "";
}

.fa-check-square-o:before {
    content: "";
}

.fa-arrows:before {
    content: "";
}

.fa-step-backward:before {
    content: "";
}

.fa-fast-backward:before {
    content: "";
}

.fa-backward:before {
    content: "";
}

.fa-play:before {
    content: "";
}

.fa-pause:before {
    content: "";
}

.fa-stop:before {
    content: "";
}

.fa-forward:before {
    content: "";
}

.fa-fast-forward:before {
    content: "";
}

.fa-step-forward:before {
    content: "";
}

.fa-eject:before {
    content: "";
}

.fa-chevron-left:before {
    content: "";
}

.fa-chevron-right:before {
    content: "";
}

.fa-plus-circle:before {
    content: "";
}

.fa-minus-circle:before {
    content: "";
}

.fa-times-circle:before {
    content: "";
}

.fa-check-circle:before {
    content: "";
}

.fa-question-circle:before {
    content: "";
}

.fa-info-circle:before {
    content: "";
}

.fa-crosshairs:before {
    content: "";
}

.fa-times-circle-o:before {
    content: "";
}

.fa-check-circle-o:before {
    content: "";
}

.fa-ban:before {
    content: "";
}

.fa-arrow-left:before {
    content: "";
}

.fa-arrow-right:before {
    content: "";
}

.fa-arrow-up:before {
    content: "";
}

.fa-arrow-down:before {
    content: "";
}

.fa-mail-forward:before, .fa-share:before {
    content: "";
}

.fa-expand:before {
    content: "";
}

.fa-compress:before {
    content: "";
}

.fa-plus:before {
    content: "";
}

.fa-minus:before {
    content: "";
}

.fa-asterisk:before {
    content: "";
}

.fa-exclamation-circle:before {
    content: "";
}

.fa-gift:before {
    content: "";
}

.fa-leaf:before {
    content: "";
}

.fa-fire:before {
    content: "";
}

.fa-eye:before {
    content: "";
}

.fa-eye-slash:before {
    content: "";
}

.fa-exclamation-triangle:before, .fa-warning:before {
    content: "";
}

.fa-plane:before {
    content: "";
}

.fa-calendar:before {
    content: "";
}

.fa-random:before {
    content: "";
}

.fa-comment:before {
    content: "";
}

.fa-magnet:before {
    content: "";
}

.fa-chevron-up:before {
    content: "";
}

.fa-chevron-down:before {
    content: "";
}

.fa-retweet:before {
    content: "";
}

.fa-shopping-cart:before {
    content: "";
}

.fa-folder:before {
    content: "";
}

.fa-folder-open:before {
    content: "";
}

.fa-arrows-v:before {
    content: "";
}

.fa-arrows-h:before {
    content: "";
}

.fa-bar-chart-o:before, .fa-bar-chart:before {
    content: "";
}

.fa-twitter-square:before {
    content: "";
}

.fa-facebook-square:before {
    content: "";
}

.fa-camera-retro:before {
    content: "";
}

.fa-key:before {
    content: "";
}

.fa-cogs:before, .fa-gears:before {
    content: "";
}

.fa-comments:before {
    content: "";
}

.fa-thumbs-o-up:before {
    content: "";
}

.fa-thumbs-o-down:before {
    content: "";
}

.fa-star-half:before {
    content: "";
}

.fa-heart-o:before {
    content: "";
}

.fa-sign-out:before {
    content: "";
}

.fa-linkedin-square:before {
    content: "";
}

.fa-thumb-tack:before {
    content: "";
}

.fa-external-link:before {
    content: "";
}

.fa-sign-in:before {
    content: "";
}

.fa-trophy:before {
    content: "";
}

.fa-github-square:before {
    content: "";
}

.fa-upload:before {
    content: "";
}

.fa-lemon-o:before {
    content: "";
}

.fa-phone:before {
    content: "";
}

.fa-square-o:before {
    content: "";
}

.fa-bookmark-o:before {
    content: "";
}

.fa-phone-square:before {
    content: "";
}

.fa-twitter:before {
    content: "";
}

.fa-facebook-f:before, .fa-facebook:before {
    content: "";
}

.fa-github:before {
    content: "";
}

.fa-unlock:before {
    content: "";
}

.fa-credit-card:before {
    content: "";
}

.fa-feed:before, .fa-rss:before {
    content: "";
}

.fa-hdd-o:before {
    content: "";
}

.fa-bullhorn:before {
    content: "";
}

.fa-bell:before {
    content: "";
}

.fa-certificate:before {
    content: "";
}

.fa-hand-o-right:before {
    content: "";
}

.fa-hand-o-left:before {
    content: "";
}

.fa-hand-o-up:before {
    content: "";
}

.fa-hand-o-down:before {
    content: "";
}

.fa-arrow-circle-left:before {
    content: "";
}

.fa-arrow-circle-right:before {
    content: "";
}

.fa-arrow-circle-up:before {
    content: "";
}

.fa-arrow-circle-down:before {
    content: "";
}

.fa-globe:before {
    content: "";
}

.fa-wrench:before {
    content: "";
}

.fa-tasks:before {
    content: "";
}

.fa-filter:before {
    content: "";
}

.fa-briefcase:before {
    content: "";
}

.fa-arrows-alt:before {
    content: "";
}

.fa-group:before, .fa-users:before {
    content: "";
}

.fa-chain:before, .fa-link:before {
    content: "";
}

.fa-cloud:before {
    content: "";
}

.fa-flask:before {
    content: "";
}

.fa-cut:before, .fa-scissors:before {
    content: "";
}

.fa-copy:before, .fa-files-o:before {
    content: "";
}

.fa-paperclip:before {
    content: "";
}

.fa-floppy-o:before, .fa-save:before {
    content: "";
}

.fa-square:before {
    content: "";
}

.fa-bars:before, .fa-navicon:before, .fa-reorder:before {
    content: "";
}

.fa-list-ul:before {
    content: "";
}

.fa-list-ol:before {
    content: "";
}

.fa-strikethrough:before {
    content: "";
}

.fa-underline:before {
    content: "";
}

.fa-table:before {
    content: "";
}

.fa-magic:before {
    content: "";
}

.fa-truck:before {
    content: "";
}

.fa-pinterest:before {
    content: "";
}

.fa-pinterest-square:before {
    content: "";
}

.fa-google-plus-square:before {
    content: "";
}

.fa-google-plus:before {
    content: "";
}

.fa-money:before {
    content: "";
}

.fa-caret-down:before {
    content: "";
}

.fa-caret-up:before {
    content: "";
}

.fa-caret-left:before {
    content: "";
}

.fa-caret-right:before {
    content: "";
}

.fa-columns:before {
    content: "";
}

.fa-sort:before, .fa-unsorted:before {
    content: "";
}

.fa-sort-desc:before, .fa-sort-down:before {
    content: "";
}

.fa-sort-asc:before, .fa-sort-up:before {
    content: "";
}

.fa-envelope:before {
    content: "";
}

.fa-linkedin:before {
    content: "";
}

.fa-rotate-left:before, .fa-undo:before {
    content: "";
}

.fa-gavel:before, .fa-legal:before {
    content: "";
}

.fa-dashboard:before, .fa-tachometer:before {
    content: "";
}

.fa-comment-o:before {
    content: "";
}

.fa-comments-o:before {
    content: "";
}

.fa-bolt:before, .fa-flash:before {
    content: "";
}

.fa-sitemap:before {
    content: "";
}

.fa-umbrella:before {
    content: "";
}

.fa-clipboard:before, .fa-paste:before {
    content: "";
}

.fa-lightbulb-o:before {
    content: "";
}

.fa-exchange:before {
    content: "";
}

.fa-cloud-download:before {
    content: "";
}

.fa-cloud-upload:before {
    content: "";
}

.fa-user-md:before {
    content: "";
}

.fa-stethoscope:before {
    content: "";
}

.fa-suitcase:before {
    content: "";
}

.fa-bell-o:before {
    content: "";
}

.fa-coffee:before {
    content: "";
}

.fa-cutlery:before {
    content: "";
}

.fa-file-text-o:before {
    content: "";
}

.fa-building-o:before {
    content: "";
}

.fa-hospital-o:before {
    content: "";
}

.fa-ambulance:before {
    content: "";
}

.fa-medkit:before {
    content: "";
}

.fa-fighter-jet:before {
    content: "";
}

.fa-beer:before {
    content: "";
}

.fa-h-square:before {
    content: "";
}

.fa-plus-square:before {
    content: "";
}

.fa-angle-double-left:before {
    content: "";
}

.fa-angle-double-right:before {
    content: "";
}

.fa-angle-double-up:before {
    content: "";
}

.fa-angle-double-down:before {
    content: "";
}

.fa-angle-left:before {
    content: "";
}

.fa-angle-right:before {
    content: "";
}

.fa-angle-up:before {
    content: "";
}

.fa-angle-down:before {
    content: "";
}

.fa-desktop:before {
    content: "";
}

.fa-laptop:before {
    content: "";
}

.fa-tablet:before {
    content: "";
}

.fa-mobile-phone:before, .fa-mobile:before {
    content: "";
}

.fa-circle-o:before {
    content: "";
}

.fa-quote-left:before {
    content: "";
}

.fa-quote-right:before {
    content: "";
}

.fa-spinner:before {
    content: "";
}

.fa-circle:before {
    content: "";
}

.fa-mail-reply:before, .fa-reply:before {
    content: "";
}

.fa-github-alt:before {
    content: "";
}

.fa-folder-o:before {
    content: "";
}

.fa-folder-open-o:before {
    content: "";
}

.fa-smile-o:before {
    content: "";
}

.fa-frown-o:before {
    content: "";
}

.fa-meh-o:before {
    content: "";
}

.fa-gamepad:before {
    content: "";
}

.fa-keyboard-o:before {
    content: "";
}

.fa-flag-o:before {
    content: "";
}

.fa-flag-checkered:before {
    content: "";
}

.fa-terminal:before {
    content: "";
}

.fa-code:before {
    content: "";
}

.fa-mail-reply-all:before, .fa-reply-all:before {
    content: "";
}

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    content: "";
}

.fa-location-arrow:before {
    content: "";
}

.fa-crop:before {
    content: "";
}

.fa-code-fork:before {
    content: "";
}

.fa-chain-broken:before, .fa-unlink:before {
    content: "";
}

.fa-question:before {
    content: "";
}

.fa-info:before {
    content: "";
}

.fa-exclamation:before {
    content: "";
}

.fa-superscript:before {
    content: "";
}

.fa-subscript:before {
    content: "";
}

.fa-eraser:before {
    content: "";
}

.fa-puzzle-piece:before {
    content: "";
}

.fa-microphone:before {
    content: "";
}

.fa-microphone-slash:before {
    content: "";
}

.fa-shield:before {
    content: "";
}

.fa-calendar-o:before {
    content: "";
}

.fa-fire-extinguisher:before {
    content: "";
}

.fa-rocket:before {
    content: "";
}

.fa-maxcdn:before {
    content: "";
}

.fa-chevron-circle-left:before {
    content: "";
}

.fa-chevron-circle-right:before {
    content: "";
}

.fa-chevron-circle-up:before {
    content: "";
}

.fa-chevron-circle-down:before {
    content: "";
}

.fa-html5:before {
    content: "";
}

.fa-css3:before {
    content: "";
}

.fa-anchor:before {
    content: "";
}

.fa-unlock-alt:before {
    content: "";
}

.fa-bullseye:before {
    content: "";
}

.fa-ellipsis-h:before {
    content: "";
}

.fa-ellipsis-v:before {
    content: "";
}

.fa-rss-square:before {
    content: "";
}

.fa-play-circle:before {
    content: "";
}

.fa-ticket:before {
    content: "";
}

.fa-minus-square:before {
    content: "";
}

.fa-minus-square-o:before {
    content: "";
}

.fa-level-up:before {
    content: "";
}

.fa-level-down:before {
    content: "";
}

.fa-check-square:before {
    content: "";
}

.fa-pencil-square:before {
    content: "";
}

.fa-external-link-square:before {
    content: "";
}

.fa-share-square:before {
    content: "";
}

.fa-compass:before {
    content: "";
}

.fa-caret-square-o-down:before, .fa-toggle-down:before {
    content: "";
}

.fa-caret-square-o-up:before, .fa-toggle-up:before {
    content: "";
}

.fa-caret-square-o-right:before, .fa-toggle-right:before {
    content: "";
}

.fa-eur:before, .fa-euro:before {
    content: "";
}

.fa-gbp:before {
    content: "";
}

.fa-dollar:before, .fa-usd:before {
    content: "";
}

.fa-inr:before, .fa-rupee:before {
    content: "";
}

.fa-cny:before, .fa-jpy:before, .fa-rmb:before, .fa-yen:before {
    content: "";
}

.fa-rouble:before, .fa-rub:before, .fa-ruble:before {
    content: "";
}

.fa-krw:before, .fa-won:before {
    content: "";
}

.fa-bitcoin:before, .fa-btc:before {
    content: "";
}

.fa-file:before {
    content: "";
}

.fa-file-text:before {
    content: "";
}

.fa-sort-alpha-asc:before {
    content: "";
}

.fa-sort-alpha-desc:before {
    content: "";
}

.fa-sort-amount-asc:before {
    content: "";
}

.fa-sort-amount-desc:before {
    content: "";
}

.fa-sort-numeric-asc:before {
    content: "";
}

.fa-sort-numeric-desc:before {
    content: "";
}

.fa-thumbs-up:before {
    content: "";
}

.fa-thumbs-down:before {
    content: "";
}

.fa-youtube-square:before {
    content: "";
}

.fa-youtube:before {
    content: "";
}

.fa-xing:before {
    content: "";
}

.fa-xing-square:before {
    content: "";
}

.fa-youtube-play:before {
    content: "";
}

.fa-dropbox:before {
    content: "";
}

.fa-stack-overflow:before {
    content: "";
}

.fa-instagram:before {
    content: "";
}

.fa-flickr:before {
    content: "";
}

.fa-adn:before {
    content: "";
}

.fa-bitbucket:before {
    content: "";
}

.fa-bitbucket-square:before {
    content: "";
}

.fa-tumblr:before {
    content: "";
}

.fa-tumblr-square:before {
    content: "";
}

.fa-long-arrow-down:before {
    content: "";
}

.fa-long-arrow-up:before {
    content: "";
}

.fa-long-arrow-left:before {
    content: "";
}

.fa-long-arrow-right:before {
    content: "";
}

.fa-apple:before {
    content: "";
}

.fa-windows:before {
    content: "";
}

.fa-android:before {
    content: "";
}

.fa-linux:before {
    content: "";
}

.fa-dribbble:before {
    content: "";
}

.fa-skype:before {
    content: "";
}

.fa-foursquare:before {
    content: "";
}

.fa-trello:before {
    content: "";
}

.fa-female:before {
    content: "";
}

.fa-male:before {
    content: "";
}

.fa-gittip:before, .fa-gratipay:before {
    content: "";
}

.fa-sun-o:before {
    content: "";
}

.fa-moon-o:before {
    content: "";
}

.fa-archive:before {
    content: "";
}

.fa-bug:before {
    content: "";
}

.fa-vk:before {
    content: "";
}

.fa-weibo:before {
    content: "";
}

.fa-renren:before {
    content: "";
}

.fa-pagelines:before {
    content: "";
}

.fa-stack-exchange:before {
    content: "";
}

.fa-arrow-circle-o-right:before {
    content: "";
}

.fa-arrow-circle-o-left:before {
    content: "";
}

.fa-caret-square-o-left:before, .fa-toggle-left:before {
    content: "";
}

.fa-dot-circle-o:before {
    content: "";
}

.fa-wheelchair:before {
    content: "";
}

.fa-vimeo-square:before {
    content: "";
}

.fa-try:before, .fa-turkish-lira:before {
    content: "";
}

.fa-plus-square-o:before {
    content: "";
}

.fa-space-shuttle:before {
    content: "";
}

.fa-slack:before {
    content: "";
}

.fa-envelope-square:before {
    content: "";
}

.fa-wordpress:before {
    content: "";
}

.fa-openid:before {
    content: "";
}

.fa-bank:before, .fa-institution:before, .fa-university:before {
    content: "";
}

.fa-graduation-cap:before, .fa-mortar-board:before {
    content: "";
}

.fa-yahoo:before {
    content: "";
}

.fa-google:before {
    content: "";
}

.fa-reddit:before {
    content: "";
}

.fa-reddit-square:before {
    content: "";
}

.fa-stumbleupon-circle:before {
    content: "";
}

.fa-stumbleupon:before {
    content: "";
}

.fa-delicious:before {
    content: "";
}

.fa-digg:before {
    content: "";
}

.fa-pied-piper:before {
    content: "";
}

.fa-pied-piper-alt:before {
    content: "";
}

.fa-drupal:before {
    content: "";
}

.fa-joomla:before {
    content: "";
}

.fa-language:before {
    content: "";
}

.fa-fax:before {
    content: "";
}

.fa-building:before {
    content: "";
}

.fa-child:before {
    content: "";
}

.fa-paw:before {
    content: "";
}

.fa-spoon:before {
    content: "";
}

.fa-cube:before {
    content: "";
}

.fa-cubes:before {
    content: "";
}

.fa-behance:before {
    content: "";
}

.fa-behance-square:before {
    content: "";
}

.fa-steam:before {
    content: "";
}

.fa-steam-square:before {
    content: "";
}

.fa-recycle:before {
    content: "";
}

.fa-automobile:before, .fa-car:before {
    content: "";
}

.fa-cab:before, .fa-taxi:before {
    content: "";
}

.fa-tree:before {
    content: "";
}

.fa-spotify:before {
    content: "";
}

.fa-deviantart:before {
    content: "";
}

.fa-soundcloud:before {
    content: "";
}

.fa-database:before {
    content: "";
}

.fa-file-pdf-o:before {
    content: "";
}

.fa-file-word-o:before {
    content: "";
}

.fa-file-excel-o:before {
    content: "";
}

.fa-file-powerpoint-o:before {
    content: "";
}

.fa-file-image-o:before, .fa-file-photo-o:before, .fa-file-picture-o:before {
    content: "";
}

.fa-file-archive-o:before, .fa-file-zip-o:before {
    content: "";
}

.fa-file-audio-o:before, .fa-file-sound-o:before {
    content: "";
}

.fa-file-movie-o:before, .fa-file-video-o:before {
    content: "";
}

.fa-file-code-o:before {
    content: "";
}

.fa-vine:before {
    content: "";
}

.fa-codepen:before {
    content: "";
}

.fa-jsfiddle:before {
    content: "";
}

.fa-life-bouy:before, .fa-life-buoy:before, .fa-life-ring:before, .fa-life-saver:before, .fa-support:before {
    content: "";
}

.fa-circle-o-notch:before {
    content: "";
}

.fa-ra:before, .fa-rebel:before {
    content: "";
}

.fa-empire:before, .fa-ge:before {
    content: "";
}

.fa-git-square:before {
    content: "";
}

.fa-git:before {
    content: "";
}

.fa-hacker-news:before, .fa-y-combinator-square:before, .fa-yc-square:before {
    content: "";
}

.fa-tencent-weibo:before {
    content: "";
}

.fa-qq:before {
    content: "";
}

.fa-wechat:before, .fa-weixin:before {
    content: "";
}

.fa-paper-plane:before, .fa-send:before {
    content: "";
}

.fa-paper-plane-o:before, .fa-send-o:before {
    content: "";
}

.fa-history:before {
    content: "";
}

.fa-circle-thin:before {
    content: "";
}

.fa-header:before {
    content: "";
}

.fa-paragraph:before {
    content: "";
}

.fa-sliders:before {
    content: "";
}

.fa-share-alt:before {
    content: "";
}

.fa-share-alt-square:before {
    content: "";
}

.fa-bomb:before {
    content: "";
}

.fa-futbol-o:before, .fa-soccer-ball-o:before {
    content: "";
}

.fa-tty:before {
    content: "";
}

.fa-binoculars:before {
    content: "";
}

.fa-plug:before {
    content: "";
}

.fa-slideshare:before {
    content: "";
}

.fa-twitch:before {
    content: "";
}

.fa-yelp:before {
    content: "";
}

.fa-newspaper-o:before {
    content: "";
}

.fa-wifi:before {
    content: "";
}

.fa-calculator:before {
    content: "";
}

.fa-paypal:before {
    content: "";
}

.fa-google-wallet:before {
    content: "";
}

.fa-cc-visa:before {
    content: "";
}

.fa-cc-mastercard:before {
    content: "";
}

.fa-cc-discover:before {
    content: "";
}

.fa-cc-amex:before {
    content: "";
}

.fa-cc-paypal:before {
    content: "";
}

.fa-cc-stripe:before {
    content: "";
}

.fa-bell-slash:before {
    content: "";
}

.fa-bell-slash-o:before {
    content: "";
}

.fa-trash:before {
    content: "";
}

.fa-copyright:before {
    content: "";
}

.fa-at:before {
    content: "";
}

.fa-eyedropper:before {
    content: "";
}

.fa-paint-brush:before {
    content: "";
}

.fa-birthday-cake:before {
    content: "";
}

.fa-area-chart:before {
    content: "";
}

.fa-pie-chart:before {
    content: "";
}

.fa-line-chart:before {
    content: "";
}

.fa-lastfm:before {
    content: "";
}

.fa-lastfm-square:before {
    content: "";
}

.fa-toggle-off:before {
    content: "";
}

.fa-toggle-on:before {
    content: "";
}

.fa-bicycle:before {
    content: "";
}

.fa-bus:before {
    content: "";
}

.fa-ioxhost:before {
    content: "";
}

.fa-angellist:before {
    content: "";
}

.fa-cc:before {
    content: "";
}

.fa-ils:before, .fa-shekel:before, .fa-sheqel:before {
    content: "";
}

.fa-meanpath:before {
    content: "";
}

.fa-buysellads:before {
    content: "";
}

.fa-connectdevelop:before {
    content: "";
}

.fa-dashcube:before {
    content: "";
}

.fa-forumbee:before {
    content: "";
}

.fa-leanpub:before {
    content: "";
}

.fa-sellsy:before {
    content: "";
}

.fa-shirtsinbulk:before {
    content: "";
}

.fa-simplybuilt:before {
    content: "";
}

.fa-skyatlas:before {
    content: "";
}

.fa-cart-plus:before {
    content: "";
}

.fa-cart-arrow-down:before {
    content: "";
}

.fa-diamond:before {
    content: "";
}

.fa-ship:before {
    content: "";
}

.fa-user-secret:before {
    content: "";
}

.fa-motorcycle:before {
    content: "";
}

.fa-street-view:before {
    content: "";
}

.fa-heartbeat:before {
    content: "";
}

.fa-venus:before {
    content: "";
}

.fa-mars:before {
    content: "";
}

.fa-mercury:before {
    content: "";
}

.fa-intersex:before, .fa-transgender:before {
    content: "";
}

.fa-transgender-alt:before {
    content: "";
}

.fa-venus-double:before {
    content: "";
}

.fa-mars-double:before {
    content: "";
}

.fa-venus-mars:before {
    content: "";
}

.fa-mars-stroke:before {
    content: "";
}

.fa-mars-stroke-v:before {
    content: "";
}

.fa-mars-stroke-h:before {
    content: "";
}

.fa-neuter:before {
    content: "";
}

.fa-genderless:before {
    content: "";
}

.fa-facebook-official:before {
    content: "";
}

.fa-pinterest-p:before {
    content: "";
}

.fa-whatsapp:before {
    content: "";
}

.fa-server:before {
    content: "";
}

.fa-user-plus:before {
    content: "";
}

.fa-user-times:before {
    content: "";
}

.fa-bed:before, .fa-hotel:before {
    content: "";
}

.fa-viacoin:before {
    content: "";
}

.fa-train:before {
    content: "";
}

.fa-subway:before {
    content: "";
}

.fa-medium:before {
    content: "";
}

.fa-y-combinator:before, .fa-yc:before {
    content: "";
}

.fa-optin-monster:before {
    content: "";
}

.fa-opencart:before {
    content: "";
}

.fa-expeditedssl:before {
    content: "";
}

.fa-battery-4:before, .fa-battery-full:before {
    content: "";
}

.fa-battery-3:before, .fa-battery-three-quarters:before {
    content: "";
}

.fa-battery-2:before, .fa-battery-half:before {
    content: "";
}

.fa-battery-1:before, .fa-battery-quarter:before {
    content: "";
}

.fa-battery-0:before, .fa-battery-empty:before {
    content: "";
}

.fa-mouse-pointer:before {
    content: "";
}

.fa-i-cursor:before {
    content: "";
}

.fa-object-group:before {
    content: "";
}

.fa-object-ungroup:before {
    content: "";
}

.fa-sticky-note:before {
    content: "";
}

.fa-sticky-note-o:before {
    content: "";
}

.fa-cc-jcb:before {
    content: "";
}

.fa-cc-diners-club:before {
    content: "";
}

.fa-clone:before {
    content: "";
}

.fa-balance-scale:before {
    content: "";
}

.fa-hourglass-o:before {
    content: "";
}

.fa-hourglass-1:before, .fa-hourglass-start:before {
    content: "";
}

.fa-hourglass-2:before, .fa-hourglass-half:before {
    content: "";
}

.fa-hourglass-3:before, .fa-hourglass-end:before {
    content: "";
}

.fa-hourglass:before {
    content: "";
}

.fa-hand-grab-o:before, .fa-hand-rock-o:before {
    content: "";
}

.fa-hand-paper-o:before, .fa-hand-stop-o:before {
    content: "";
}

.fa-hand-scissors-o:before {
    content: "";
}

.fa-hand-lizard-o:before {
    content: "";
}

.fa-hand-spock-o:before {
    content: "";
}

.fa-hand-pointer-o:before {
    content: "";
}

.fa-hand-peace-o:before {
    content: "";
}

.fa-trademark:before {
    content: "";
}

.fa-registered:before {
    content: "";
}

.fa-creative-commons:before {
    content: "";
}

.fa-gg:before {
    content: "";
}

.fa-gg-circle:before {
    content: "";
}

.fa-tripadvisor:before {
    content: "";
}

.fa-odnoklassniki:before {
    content: "";
}

.fa-odnoklassniki-square:before {
    content: "";
}

.fa-get-pocket:before {
    content: "";
}

.fa-wikipedia-w:before {
    content: "";
}

.fa-safari:before {
    content: "";
}

.fa-chrome:before {
    content: "";
}

.fa-firefox:before {
    content: "";
}

.fa-opera:before {
    content: "";
}

.fa-internet-explorer:before {
    content: "";
}

.fa-television:before, .fa-tv:before {
    content: "";
}

.fa-contao:before {
    content: "";
}

.fa-500px:before {
    content: "";
}

.fa-amazon:before {
    content: "";
}

.fa-calendar-plus-o:before {
    content: "";
}

.fa-calendar-minus-o:before {
    content: "";
}

.fa-calendar-times-o:before {
    content: "";
}

.fa-calendar-check-o:before {
    content: "";
}

.fa-industry:before {
    content: "";
}

.fa-map-pin:before {
    content: "";
}

.fa-map-signs:before {
    content: "";
}

.fa-map-o:before {
    content: "";
}

.fa-map:before {
    content: "";
}

.fa-commenting:before {
    content: "";
}

.fa-commenting-o:before {
    content: "";
}

.fa-houzz:before {
    content: "";
}

.fa-vimeo:before {
    content: "";
}

.fa-black-tie:before {
    content: "";
}

.fa-fonticons:before {
    content: "";
}
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

    .animated.infinite {
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
    }

    .animated.hinge {
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
    }

    .animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
        -webkit-animation-duration: .75s;
        animation-duration: .75s;
    }

markdown-editor {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0,0,0,.1);
    z-index: 9999;
}

    markdown-editor .mark-background {
        position: fixed;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: rgba(0,0,0,.3);
        z-index: 0;
    }

    markdown-editor .mark-editor {
        position: absolute;
        z-index: 1;
        outline: #999 solid 1px;
    }

    markdown-editor .mark-actions {
        height: 40px;
        display: block;
        background: #eee;
        position: relative;
        padding: 5px 10px;
        box-shadow: 0 1px 2px rgba(0,0,0,.4);
        list-style: none;
        margin: 0;
    }

        markdown-editor .mark-actions li {
            padding: 0;
            margin: 0;
            float: left;
            height: 100%;
        }

        markdown-editor .mark-actions select {
            margin: 3px 8px;
        }

        markdown-editor .mark-actions button {
            background: 0 0;
            padding: 5px 8px 3px;
            border-radius: 3px;
            border: 1px solid transparent;
            position: relative;
        }

            markdown-editor .mark-actions button:hover {
                border: 1px solid #aaa;
                background: #fff;
            }

                markdown-editor .mark-actions button:hover .mark-tooltip {
                    opacity: 1;
                    transition: opacity .15s ease 1s;
                }

            markdown-editor .mark-actions button.mark-close {
                position: absolute;
                right: 5px;
                top: 5px;
            }

            markdown-editor .mark-actions button .mark-tooltip {
                position: absolute;
                bottom: 110%;
                left: 0;
                z-index: 1;
                white-space: nowrap;
                background: #000;
                color: #fff;
                padding: 5px 10px;
                font-size: 1rem;
                pointer-events: none;
                opacity: 0;
                border-radius: 2px;
                transition: opacity .15s ease 0s;
                -webkit-transform: translateX(-25%);
                transform: translateX(-25%);
            }

.grid-gallery > div img, .grid-image img {
    -webkit-transform: translate(-50%,-50%);
}

markdown-editor .mark-textarea {
    background: #fff;
}

markdown-editor .mark-separator {
    width: 1px;
    height: 80%;
    position: relative;
    top: 10%;
    background: #ccc;
    margin: 0 10px;
    display: inline-block;
}

@-webkit-keyframes indeterminate {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

@keyframes indeterminate {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.grid-gallery > div {
    padding: 5px;
    color: #fff;
    position: relative;
    background: #242629;
}

    .grid-gallery > div.uploading {
        text-align: center;
        color: #999;
        pointer-events: none;
    }

        .grid-gallery > div.processing span:after, .grid-gallery > div.uploading span {
            display: block;
        }

    .grid-gallery > div.active, .grid-gallery > div:hover:not(.uploading) {
        cursor: pointer;
        outline: #178BC6 solid 2px;
        outline-offset: -2px;
    }

    .grid-gallery > div img {
        max-width: calc(100% - 10px);
        max-height: calc(100% - 10px);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

        .grid-gallery > div img:not(.img-placehold) {
            background: #fff;
        }

        .grid-gallery > div img.img-placehold {
            max-height: 80px;
        }

    .grid-gallery > div h6 {
        width: calc(100% - 10px);
        max-width: calc(100% - 10px);
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis;
        position: absolute;
        top: calc(100% - 10px);
        left: 5px;
        line-height: 20px;
    }

    .grid-gallery > div span {
        height: 3px;
        width: 0;
        display: none;
        position: absolute;
        top: 90%;
        left: 0;
        background: #169E7A;
        transition: width .15s ease;
        overflow: hidden;
    }

        .grid-gallery > div span:after {
            display: none;
            position: absolute;
            content: '';
            left: -100%;
            top: 0;
            height: 100%;
            width: 50%;
            background: #0a4435;
            -webkit-animation: indeterminate 1s;
            animation: indeterminate 1s;
            -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
            -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
            -webkit-animation-play-state: running;
            animation-play-state: running;
        }

.grid-image {
    position: relative;
    max-width: 100%;
    min-height: 150px;
    overflow: hidden;
}

    .grid-image:hover {
        cursor: pointer;
    }

    .grid-image .placehold-text {
        color: #eee;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    .grid-image .fa-lock {
        position: absolute;
        bottom: 0;
        right: 0;
        background: rgba(0,0,0,.4);
        padding: 7px 11px;
        z-index: 5;
        color: #fff;
    }

    .grid-image .grid-image-rollover {
        transition: opacity .5s cubic-bezier(.7,0,.3,1),background .3s cubic-bezier(.7,0,.3,1);
        background: rgba(23,139,198,.8);
        color: #fff;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        z-index: 5;
        text-align: center;
        opacity: 0;
    }

        .grid-image .grid-image-rollover > span {
            font-size: 13px;
            position: absolute;
            width: 100%;
            top: 10px;
            left: 0;
            text-align: center;
            transition: opacity .5s cubic-bezier(.7,0,.3,1);
        }

    .grid-image .grid-image-outline, .grid-image img {
        max-height: 100%;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
    }

    .grid-image .grid-image-rollover > div {
        font-weight: 700;
        line-height: 147px;
        font-size: 16px;
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
        transition: opacity .5s ease .5s,-webkit-transform .5s ease .5s;
        transition: opacity .5s ease .5s,transform .5s ease .5s;
        transition: opacity .5s ease .5s,transform .5s ease .5s,-webkit-transform .5s ease .5s;
    }

    .grid-image:hover .grid-image-rollover, .grid-image:hover .grid-image-rollover span {
        opacity: 1;
    }

        .grid-image:hover .grid-image-rollover div {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }

    .grid-image.dark {
        background: #242629;
    }

        .grid-image.dark:hover {
            outline: #178BC6 solid 2px;
            cursor: pointer;
        }

    .grid-image img {
        max-width: calc(100% - 1px);
        transform: translate(-50%,-50%);
        border: 1px solid #ddd;
    }

    .grid-image .grid-image-outline {
        max-width: 100%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        z-index: 3;
        border: 2px solid #ccc;
    }

.ngdialog.ngdialog-theme-default .ngdialog-close:before, .ngdialog.ngdialog-theme-default .ngdialog-close:hover:before {
    font-style: normal;
    color: #178BC6;
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
    background: #f0f0f0;
    border-radius: 1px;
    color: #444;
    font-size: 1.1em;
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 100%;
    padding: 30px;
    position: relative;
    width: 450px;
    font-family: CentraleSansBook,Helvetica,sans-serif;
}

.confirm-modal .confirm-body {
    text-align: center;
    margin-top: 20px;
}

    .confirm-modal .confirm-body .btn-default {
        width: 86px;
    }

.confirm-modal h5 {
    font-size: 18px;
    text-align: center;
    margin: 30px 0 60px;
}

.library-dialog .ngdialog-overlay {
    background: rgba(0,0,0,.8);
}

.library-dialog .ngdialog-content {
    width: 90%;
    margin: 30px auto;
    z-index: 99;
    height: 90vh;
    position: relative;
    background: #2b2e31;
    border: 1px solid #525252;
    color: #ccc;
}

    .library-dialog .ngdialog-content > div:not(.ngdialog-close) {
        height: 100%;
    }

    .library-dialog .ngdialog-content .ngdialog-close {
        background: 0 0;
        position: absolute;
        right: 10px;
        top: 3px;
        line-height: 1;
        color: #999;
        font-size: 30px;
    }

.library-dialog.overlayed, .ngdialog.ngdialog-theme-default.links-map, .ngdialog.ngdialog-theme-default.not-authorized, .ngdialog.ngdialog-theme-default.overlayed {
    position: fixed !important;
}

.library-dialog .ngdialog-content .ngdialog-close:hover {
    color: #178BC6;
}

.ngdialog-theme-default.contact, .ngdialog-theme-default.faq {
    padding-top: 100px;
}

    .ngdialog-theme-default.contact .ngdialog-content, .ngdialog-theme-default.faq .ngdialog-content {
        width: 800px;
    }

.cms-modal-wide .ngdialog-content {
    width: 75% !important;
}

.cms-modal-half .ngdialog-content {
    width: 50% !important;
}

    .cms-modal-half .ngdialog-content textarea {
        width: 100%;
        height: 200px;
    }

.grid-selector {
    display: inline-block;
    margin: 0 5px;
}

.ngdialog.ngdialog-theme-default.links-map .ngdialog-content h3, .ngdialog.ngdialog-theme-default.not-authorized .ngdialog-content h3, .ngdialog.ngdialog-theme-default.pick-component .ngdialog-content h3 {
    color: #178BC6;
    font-weight: 400;
    font-family: CentraleSansLight,Helvetica,sans-serif;
    margin-bottom: 20px;
}

.grid-selector span {
    display: block;
}

.grid-selector img {
    width: 180px;
    max-width: none;
    border: 1px solid #ccc;
}

.grid-selector:hover {
    cursor: pointer;
}

    .grid-selector:hover img {
        outline: #178BC6 solid 2px;
        outline-offset: -1px;
    }

.library-dialog.overlayed.dark .ngdialog-overlay, .ngdialog.ngdialog-theme-default.overlayed.dark .ngdialog-overlay {
    display: block;
    background: rgba(0,0,0,.7);
}

.ngdialog.ngdialog-theme-default.links-map .ngdialog-overlay, .ngdialog.ngdialog-theme-default.not-authorized .ngdialog-overlay {
    display: block;
    background: rgba(255,255,255,.5);
}

.ngdialog.ngdialog-theme-default.links-map .ngdialog-content, .ngdialog.ngdialog-theme-default.not-authorized .ngdialog-content {
    border: none;
    width: 500px;
    box-shadow: 0 0 20px 3px rgba(0,0,0,.3);
    background: #fff;
}

    .ngdialog.ngdialog-theme-default.links-map .ngdialog-content .btn, .ngdialog.ngdialog-theme-default.not-authorized .ngdialog-content .btn {
        width: 160px;
    }

.ngdialog.ngdialog-theme-default.links-map {
    padding-top: 20px;
}

    .ngdialog.ngdialog-theme-default.links-map .ngdialog-content {
        width: 80%;
    }

.ngdialog.ngdialog-theme-default.pick-component {
    position: fixed !important;
    padding: 20px 0;
}

    .ngdialog.ngdialog-theme-default.pick-component .ngdialog-content {
        border: none;
        box-shadow: 0 0 20px 3px rgba(0,0,0,.3);
        background: #fff;
        width: 50%;
    }

    .ngdialog.ngdialog-theme-default.pick-component .component-picker {
        position: relative;
    }

        .ngdialog.ngdialog-theme-default.pick-component .component-picker .component-picker-type {
            margin: 0 0 60px 130px;
        }

            .ngdialog.ngdialog-theme-default.pick-component .component-picker .component-picker-type > div {
                border: 1px solid #ccc;
                width: 46%;
                margin: 0 5px 10px;
                display: inline-block;
                vertical-align: top;
            }

                .ngdialog.ngdialog-theme-default.pick-component .component-picker .component-picker-type > div p {
                    padding: 10px 15px;
                    line-height: 1;
                    margin: 0;
                    background: #ddd;
                    color: #222;
                    font-size: 13px;
                }

                .ngdialog.ngdialog-theme-default.pick-component .component-picker .component-picker-type > div:hover {
                    border-color: #178BC6;
                    cursor: pointer;
                }

        .ngdialog.ngdialog-theme-default.pick-component .component-picker h5 {
            position: absolute;
            top: 0;
            left: 0;
            padding: 2px;
            margin: 0;
            font-weight: 700;
            text-transform: capitalize;
        }

.switch, .tgl + .tgl-btn {
    position: relative;
}

.add-component, .btn-tbl, .cms-component-grid > span {
    text-transform: uppercase;
}

switcher[disabled] {
    pointer-events: none;
    opacity: .6;
}

.tgl {
    display: none;
}

    .tgl, .tgl *, .tgl :after, .tgl :before, .tgl + .tgl-btn, .tgl:after, .tgl:before {
        box-sizing: border-box;
    }

        .tgl ::-moz-selection, .tgl :after::-moz-selection, .tgl :before::-moz-selection, .tgl + .tgl-btn::-moz-selection, .tgl::-moz-selection, .tgl:after::-moz-selection, .tgl:before::-moz-selection {
            background: 0 0;
        }

        .tgl ::selection, .tgl :after::selection, .tgl :before::selection, .tgl + .tgl-btn::selection, .tgl::selection, .tgl:after::selection, .tgl:before::selection {
            background: 0 0;
        }

        .tgl + .tgl-btn {
            outline: 0;
            display: block;
            width: 5.5em;
            height: 2em;
            cursor: pointer;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

            .tgl + .tgl-btn:after, .tgl + .tgl-btn:before {
                position: relative;
                display: block;
                content: "";
                width: 35%;
                height: 100%;
            }

            .tgl + .tgl-btn:after {
                left: 0;
            }

            .tgl + .tgl-btn:before {
                display: none;
            }

        .tgl:checked + .tgl-btn:after {
            left: 65%;
        }

.tgl-ios + .tgl-btn {
    background: #2b2e31;
    float: right;
    border-radius: 2em;
    padding: 2px;
    transition: all .4s ease;
    border: 1px solid #242629;
}

    .tgl-ios + .tgl-btn:after {
        border-radius: 2em;
        background: #3a3c41;
        transition: left .3s cubic-bezier(.175,.885,.32,1.275),padding .3s ease,margin .3s ease;
        box-shadow: 0 0 0 1px rgba(0,0,0,.1),0 4px 0 rgba(0,0,0,.08);
    }

    .tgl-ios + .tgl-btn:before {
        display: inline-block;
        transition: all .4s ease;
        width: 100%;
        text-align: center;
        font-size: 10px;
        line-height: 30px;
        font-weight: 700;
        color: #a2a2a2;
        position: absolute;
        top: 0;
        left: 13px;
        backface-visibility: hidden;
        content: attr(data-tg-off);
    }

.cms-component, .cms-component .container {
    position: relative;
}

.tgl-ios + .tgl-btn:active {
    box-shadow: inset 0 0 0 2em #242629;
}

    .tgl-ios + .tgl-btn:active:after {
        padding-right: .8em;
    }

.tgl-ios:checked + .tgl-btn {
    background: #242629;
}

    .tgl-ios:checked + .tgl-btn:active {
        box-shadow: none;
    }

        .tgl-ios:checked + .tgl-btn:active:after {
            margin-left: -.8em;
        }

    .tgl-ios:checked + .tgl-btn:before {
        content: attr(data-tg-on);
        left: -13px;
        color: #fff;
    }

.cms-component {
    margin: 0 0 34px;
}

@-webkit-keyframes marching-ants-2 {
    0% {
        background-position: 0 0,0 100%,0 0,100% 0;
    }

    100% {
        background-position: 20px 0,-20px 100%,0 -20px,100% 20px;
    }
}

@keyframes marching-ants-2 {
    0% {
        background-position: 0 0,0 100%,0 0,100% 0;
    }

    100% {
        background-position: 20px 0,-20px 100%,0 -20px,100% 20px;
    }
}

.cms-actions {
    display: none;
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
}

    .cms-actions ul li, .cms-actions ul li.split span {
        height: 21px;
        width: 21px;
        display: block;
    }

    .cms-actions ul {
        width: 22px;
        margin: 1px 0 0 -24px;
        padding: 0;
        display: inline-block;
        overflow: hidden;
    }

        .cms-actions ul li {
            float: right;
            margin: 0 1px 1px 0;
            padding-top: 2px;
            text-align: center;
            overflow: hidden;
            cursor: pointer;
            background-color: #f4f4f4;
            position: relative;
        }

            .cms-actions ul li:hover {
                background-color: #ddd;
            }

            .cms-actions ul li i {
                color: #000;
            }

            .cms-actions ul li.split .fa {
                font-size: 10px;
                position: absolute;
                top: 5px;
            }

                .cms-actions ul li.split .fa:first-of-type {
                    left: 0;
                }

                .cms-actions ul li.split .fa:last-of-type {
                    right: 0;
                }

.fullbleed .cms-actions {
    z-index: 999;
}

    .fullbleed .cms-actions ul {
        margin-left: 0;
    }

.add-component-box {
    height: 80px;
    background: #ccc;
    border: 1px solid #999;
    border-radius: 2px;
    text-align: center;
    line-height: 80px;
    margin: 10px;
}

    .add-component-box p {
        line-height: inherit;
    }

    .add-component-box:hover {
        border-color: #178BC6;
        cursor: pointer;
    }

.cms-component-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.5);
    border: 1px solid #000;
    z-index: 100;
    text-align: center;
}

    .cms-component-grid .cms-actions ul {
        background: #777;
    }

    .cms-component-grid > span {
        color: #fff;
        font-weight: 700;
        position: relative;
        display: block;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.grid-mode .col-left, .grid-mode .col-right, .grid-mode .col-wide {
    position: relative;
}

    .grid-mode .col-left:after, .grid-mode .col-right:after, .grid-mode .col-wide:after {
        width: 100%;
        height: 100%;
        min-height: 40px;
        top: 0;
        left: 0;
        content: '';
        position: absolute;
        z-index: 9;
        border: 1px solid transparent;
        pointer-events: none;
    }

.grid-mode .cms-component {
    position: relative;
}

    .grid-mode .cms-component .cms-edit:after, .grid-mode .cms-component .cms-hover:after {
        display: none !important;
    }

    .grid-mode .cms-component .cms-add {
        display: none;
    }

.grid-mode .col-wide:after {
    background: rgba(255,0,0,.7);
    border-color: red;
}

.grid-mode .col-left:after {
    background: rgba(0,0,255,.7);
    border-color: #00f;
}

.grid-mode .col-right:after {
    background: rgba(157,33,255,.8);
    border-color: #9d21ff;
}

.grid-switch {
    position: fixed;
    padding: 5px 10px 3px;
    background: #000;
    border-radius: 2px;
    bottom: 60px;
    right: 30px;
    z-index: 999;
    color: #888;
    font-size: 20px;
    box-shadow: 0 0 10px 3px rgba(0,0,0,.3);
}

    .grid-switch:hover {
        cursor: pointer;
        color: #ccc;
    }

    .grid-switch.active {
        color: #5268ff;
    }

.col-wide .container .cms-actions {
    left: auto;
    margin-left: -24px;
}

    .col-wide .container .cms-actions ul {
        margin-left: 0;
    }

.cms-editmode .cms-edit, .cms-editmode .cms-hover {
    position: relative;
}

    .cms-editmode .cms-edit:after, .cms-editmode .cms-hover:after {
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        display: none;
        background-size: 10px 1px,10px 1px,1px 10px,1px 10px;
        background-position: 0 0,0 100%,0 0,100% 0;
        background-repeat: repeat-x,repeat-x,repeat-y,repeat-y;
        -webkit-animation: marching-ants-2 .5s;
        animation: marching-ants-2 .5s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-play-state: running;
        animation-play-state: running;
        background-image: linear-gradient(to right,#000 50%,#fff 50%),linear-gradient(to right,#000 50%,#fff 50%),linear-gradient(to bottom,#000 50%,#fff 50%),linear-gradient(to bottom,#000 50%,#fff 50%);
    }

    .cms-editmode .cms-edit:hover:after, .cms-editmode .cms-hover:hover:after {
        display: block;
        cursor: pointer;
    }

    .cms-editmode .cms-edit.cms-text:hover:after, .cms-editmode .cms-hover.cms-text:hover:after {
        cursor: text;
    }

.cms-component.active .cms-edit:after, .cms-editmode .cms-actions {
    display: block;
}

.section-header[ng-click]:hover {
    cursor: pointer;
    text-decoration: underline;
}

.section-header[ng-click] .fa {
    margin-left: 10px;
    font-size: 14px;
}

.cms-config .thumbnail {
    background: 0 0;
    border: 1px solid transparent;
}

    .cms-config .thumbnail.active {
        border-color: #000;
    }

    .cms-config .thumbnail p {
        margin: 0;
        text-align: center;
    }

@-webkit-keyframes selection {
    0%,100% {
        outline-color: red;
    }

    50% {
        outline-color: #fff;
    }
}

@keyframes selection {
    0%,100% {
        outline-color: red;
    }

    50% {
        outline-color: #fff;
    }
}

.cms-properties {
    padding: 24px;
}

    .cms-properties table.table thead tr th {
        border-bottom-color: #222;
    }

    .cms-properties table.table tr td {
        border: none;
        background: #252525;
        white-space: nowrap;
    }

        .cms-properties table.table tr td.wide {
            width: 100%;
        }

        .cms-properties table.table tr td:last-child {
            padding-right: 16px;
        }

    .cms-properties table.table tr:hover {
        cursor: pointer;
    }

        .cms-properties table.table tr:hover td {
            background: #5d5d5d;
        }

    .cms-properties table.table tr.fade {
        opacity: .25;
    }

    .cms-properties table.table tr.active td {
        background-color: #009688;
    }

.col-right .cms-add, .fullbleed .cms-add {
    display: none;
}

.cms-component:hover .cms-add {
    opacity: 1;
}

.cms-component .cms-add {
    z-index: 999;
    cursor: pointer;
    overflow: hidden;
    max-height: 70px;
    padding: 5px 0;
    top: 10px;
    opacity: 0;
    position: relative;
    transition: all .3s ease;
}

    .cms-component .cms-add:before {
        display: block;
        position: absolute;
        top: 14px;
        left: 0;
        width: 100%;
        height: 1px;
        border-top: 1px dashed #666;
        content: '';
    }

    .cms-component .cms-add .cms-add-label {
        position: relative;
        padding: 5px 10px;
        color: #222;
        background: #ccc;
        border: 1px solid #fff;
        display: inline-block;
        margin: -10px 0 0 15px;
        border-radius: 4px;
    }

.btn-tbl {
    padding: 3px 5px 2px;
    font-size: 12px;
    line-height: 1;
    border-radius: 2px;
    background: rgba(0,0,0,.25);
    color: #fff;
}

.add-component {
    position: relative;
    z-index: 100;
    background: rgba(0,0,0,.3);
    color: rgba(255,255,255,.7);
    width: 100%;
    left: 0;
    top: 0;
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
    font-size: 9px;
}

    .add-component .fa {
        margin: 0 10px;
    }

    .add-component:hover {
        cursor: pointer;
        background: rgba(0,0,0,.4);
    }

.cg-notify-message {
    position: fixed;
    top: 0;
    z-index: 999999;
    max-width: 400px;
    text-align: center;
    transition: top .5s ease-out,opacity .2s ease-out;
    visibility: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    cursor: pointer;
    border: 1px solid #f0c36d;
    background-color: #f9edbe;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 12px 6px;
    border-radius: 0;
    color: #333;
}

    .cg-notify-message.error {
        border: 1px solid #2f0912;
        background-color: #5e172d;
        color: #fff;
        padding: 10px 30px 8px;
    }

.cg-notify-close, .cg-notify-sr-only {
    position: absolute;
    padding: 0;
    border: 0;
}

.cg-notify-message-center {
    left: 50%;
}

.cg-notify-message-left {
    left: 15px;
}

.cg-notify-message-right {
    right: 15px;
}

.cg-notify-message a {
    font-weight: 700;
    color: inherit;
}

    .cg-notify-message a:hover {
        color: inherit;
    }

.cg-notify-close {
    -webkit-appearance: none;
    cursor: pointer;
    background: 0 0;
    font-size: 21px;
    font-weight: 700;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
    top: 0;
    right: 3px;
    line-height: 15px;
}

    .cg-notify-close:focus, .cg-notify-close:hover {
        color: #000;
        text-decoration: none;
        cursor: pointer;
        filter: alpha(opacity=50);
        opacity: .5;
    }

.cg-notify-sr-only {
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

.autocomplete, .search-box {
    position: relative;
}

    .autocomplete[disabled] {
        pointer-events: none;
        opacity: .5;
    }

    .autocomplete.active .search-box {
        border-radius: 2px 2px 0 0;
    }

    .autocomplete.invalid .search-box {
        outline: #cd202c solid 1px;
    }

    .autocomplete.small .search-box {
        padding: 7px 40px 5px 50px;
        border: 1px solid #ccc;
        background: #fff;
    }

        .autocomplete.small .search-box .form-control {
            font-size: 14px;
            height: 28px;
        }

        .autocomplete.small .search-box .fa-search, .autocomplete.small .search-box .fa-spinner, .autocomplete.small .search-box .fa-times {
            font-size: 17px;
            top: 8px;
            padding: 2px;
        }

    .autocomplete.light .search-box .form-control {
        color: #222;
    }

        .autocomplete.light .search-box .form-control::-webkit-input-placeholder {
            color: #999;
        }

    .autocomplete.dark .search-box {
        background: #242629;
        box-shadow: none;
        border: none;
        padding: 7px 40px 5px 50px;
    }

        .autocomplete.dark .search-box .form-control {
            font-size: 14px;
            height: 28px;
            color: #eee;
        }

            .autocomplete.dark .search-box .form-control::-webkit-input-placeholder {
                color: #666 !important;
            }

        .autocomplete.dark .search-box .fa-search, .autocomplete.dark .search-box .fa-spinner, .autocomplete.dark .search-box .fa-times {
            font-size: 17px;
            top: 10px;
        }

    .autocomplete.dark .dropdown-menu {
        background: #2b2e31;
        overflow-y: auto;
        max-height: 60vh;
    }

        .autocomplete.dark .dropdown-menu li > a {
            color: #aaa;
        }

            .autocomplete.dark .dropdown-menu li > a strong {
                color: #ccc;
            }

        .autocomplete.dark .dropdown-menu li.active > a, .autocomplete.dark .dropdown-menu li:hover > a {
            background: rgba(255,255,255,.1);
            color: #aaa;
        }

.search-box {
    padding: 10px 60px 6px 70px;
    background: #eee;
    border-radius: 2px;
    color: #666;
}

    .search-box .fa-search, .search-box .fa-spinner, .search-box .fa-times {
        position: absolute;
        top: 10px;
    }

    .search-box .fa-search, .search-box .fa-spinner {
        left: 20px;
        color: #555;
        font-size: 24px;
        padding: 2px;
    }

    .search-box .fa-times {
        right: 20px;
        color: #999;
        font-size: 20px;
    }

        .search-box .fa-times:hover {
            color: #444;
            cursor: pointer;
        }

    .search-box .form-control {
        font-size: 20px;
        border: none;
        box-shadow: none;
        padding: 0;
        background: 0 0;
    }

        .search-box .form-control:focus {
            box-shadow: none;
        }

        .search-box .form-control.input-transparent {
            background: 0 0;
            border: none;
            box-shadow: none !important;
        }

@media (max-width:767px) {
    .search-box {
        padding: 6px 45px 2px;
    }

        .search-box .form-control {
            font-size: 14px;
        }

        .search-box .fa-search, .search-box .fa-times {
            font-size: 18px;
        }

        .search-box .fa-search {
            left: 15px;
            color: #555;
        }
}

.search-box .dropdown-menu {
    left: 0 !important;
    width: 100%;
    padding: 0;
    background: rgba(255,255,255,.95);
    border: none;
    border-radius: 0;
    margin: 6px 0 0;
}

    .search-box .dropdown-menu li {
        position: relative;
    }

        .search-box .dropdown-menu li .fa {
            font-size: 12px !important;
            margin-right: 10px;
        }

            .search-box .dropdown-menu li .fa.fa-minus {
                margin-left: 20px;
            }

        .search-box .dropdown-menu li > a {
            padding: 6px 20px;
            font-size: 13px;
            overflow: hidden;
            text-overflow: ellipsis;
            display: block;
        }

        .search-box .dropdown-menu li.active > a, .search-box .dropdown-menu li:hover > a {
            background: rgba(0,0,0,.1);
            color: #222;
        }
/*!
 * Fancytree "awesome" skin.
/*------------------------------------------------------------------------------
 * Helpers
 *----------------------------------------------------------------------------*/

.ui-helper-hidden {
    display: none;
}

ul.fancytree-container {
    font-family: tahoma,arial,helvetica;
    font-size: 10pt;
    padding: 3px;
    margin: 0;
    background-color: #fff;
    border: 1px dotted gray;
    overflow: auto;
    min-height: 0;
    position: relative;
}

    ul.fancytree-container li {
        -moz-background-clip: border;
        -moz-background-inline-policy: continuous;
        -moz-background-origin: padding;
        background-attachment: scroll;
        background-color: transparent;
        background-position: 0 0;
        background-repeat: repeat-y;
        background-image: none;
        margin: 0;
        list-style: none;
    }

span.fancytree-checkbox, span.fancytree-custom-icon, span.fancytree-icon {
    margin-left: .5em;
}

ul.fancytree-container li.fancytree-lastsib, ul.fancytree-no-connector > li {
    background-image: none;
}

.ui-fancytree-disabled ul.fancytree-container {
    opacity: .5;
    background-color: silver;
}

#fancytree-drop-marker, span.fancytree-checkbox, span.fancytree-drag-helper-img, span.fancytree-empty, span.fancytree-expander, span.fancytree-icon, span.fancytree-radio, span.fancytree-vline {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: 0 0;
}

span.fancytree-checkbox, span.fancytree-custom-icon, span.fancytree-expander, span.fancytree-icon, span.fancytree-radio {
    margin-top: 0;
}

span.fancytree-custom-icon {
    display: inline-block;
}

img.fancytree-icon {
    width: 1em;
    height: 1em;
    margin-left: .5em;
    margin-top: 0;
    vertical-align: top;
    border-style: none;
}

span.fancytree-expander {
    cursor: pointer;
}

.fancytree-exp-n span.fancytree-expander, .fancytree-exp-nl span.fancytree-expander {
    background-image: none;
    cursor: default;
}

.fancytree-unselectable span.fancytree-checkbox {
    opacity: .4;
    filter: alpha(opacity=40);
}

.taxonomy-tree ul.fancytree-container .fancytree-node.dimmed, span.fancytree-drag-source {
    opacity: .3;
}

span.fancytree-node {
    display: inherit;
    width: 100%;
    margin-top: 1px;
    min-height: 1em;
}

span.fancytree-title, table.fancytree-ext-table span.fancytree-node {
    display: inline-block;
}

span.fancytree-title {
    cursor: pointer;
    vertical-align: top;
    min-height: 1em;
    padding: 0 3px;
    margin: 0 0 0 .5em;
    border: 1px solid transparent;
    border-radius: 0;
}

span.fancytree-node.fancytree-error span.fancytree-title {
    color: red;
}

div.fancytree-drag-helper {
    background: #178BC6;
    padding: 5px 10px;
    margin: 0;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
}

    div.fancytree-drag-helper.fancytree-drop-reject {
        border-color: red;
    }

#fancytree-drop-marker {
    width: 2em;
    position: absolute;
    margin: 0;
    height: 1px;
    background: #cd202c;
}

    #fancytree-drop-marker.fancytree-drop-after:before, #fancytree-drop-marker.fancytree-drop-before:before, #fancytree-drop-marker.fancytree-drop-over:before {
        content: '';
        position: absolute;
        top: -4px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-color: transparent transparent transparent #cd202c;
    }

    #fancytree-drop-marker.fancytree-drop-after, #fancytree-drop-marker.fancytree-drop-before {
        width: 100%;
    }

        #fancytree-drop-marker.fancytree-drop-after:before, #fancytree-drop-marker.fancytree-drop-before:before {
            left: -4px;
        }

    #fancytree-drop-marker.fancytree-drop-over {
        width: 20px;
    }

        #fancytree-drop-marker.fancytree-drop-over:before {
            right: 0;
        }

span.fancytree-drag-source span.fancytree.title {
    color: gray;
}

span.fancytree-drop-target.fancytree-drop-accept a {
    background-color: #3169C6 !important;
    color: #fff !important;
    text-decoration: none;
}

table.fancytree-ext-columnview tbody tr td {
    position: relative;
    border: 1px solid gray;
    vertical-align: top;
    overflow: auto;
}

    table.fancytree-ext-columnview tbody tr td > ul {
        padding: 0;
    }

        table.fancytree-ext-columnview tbody tr td > ul li {
            -moz-background-clip: border;
            -moz-background-inline-policy: continuous;
            -moz-background-origin: padding;
            background-attachment: scroll;
            background-color: transparent;
            background-position: 0 0;
            background-repeat: repeat-y;
            background-image: none;
            margin: 0;
            list-style: none;
        }

table.fancytree-ext-columnview span.fancytree-node {
    position: relative;
    display: inline-block;
}

    table.fancytree-ext-columnview span.fancytree-node.fancytree-expanded {
        background-color: #CBE8F6;
    }

table.fancytree-ext-columnview .fancytree-has-children span.fancytree-cv-right {
    position: absolute;
    right: 3px;
}

ul.fancytree-ext-wide, ul.fancytree-ext-wide span.fancytree-node > span {
    position: relative;
    z-index: 2;
}

.fancytree-ext-filter-dimm span.fancytree-node span.fancytree-title {
    color: silver;
    font-weight: lighter;
}

.fancytree-ext-filter-dimm span.fancytree-node.fancytree-submatch span.fancytree-title, .fancytree-ext-filter-dimm tr.fancytree-submatch span.fancytree-title {
    colo: #ccc;
    font-weight: 400;
}

.fancytree-ext-filter-dimm span.fancytree-node.fancytree-match span.fancytree-title, .fancytree-ext-filter-dimm tr.fancytree-match span.fancytree-title {
    colo: #ccc;
    font-weight: 700;
}

.fancytree-ext-filter-hide span.fancytree-node.fancytree-hide, .fancytree-ext-filter-hide tr.fancytree-hide {
    display: none;
}

.library-list-container.dragover .library-drop-inner, page-view {
    display: block;
}

.fancytree-ext-filter-hide span.fancytree-node.fancytree-submatch span.fancytree-title, .fancytree-ext-filter-hide tr.fancytree-submatch span.fancytree-title {
    color: silver;
    font-weight: lighter;
}

.fancytree-ext-filter-hide span.fancytree-node.fancytree-match span.fancytree-title, .fancytree-ext-filter-hide tr.fancytree-match span.fancytree-title {
    colo: #ccc;
    font-weight: 400;
}

ul.fancytree-ext-wide {
    min-width: 100%;
    box-sizing: border-box;
}

    ul.fancytree-ext-wide span.fancytree-node span.fancytree-title {
        position: absolute;
        z-index: 1;
        left: 0;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

ul.fancytree-container ul {
    padding: .3em 0 0 1em;
    margin: 0;
}

.taxonomy-scroll {
    white-space: pre-line;
    height: calc(100vh - 176px);
    overflow-y: hidden;
    position: relative;
}

.taxonomy-tree ul.fancytree-container {
    border: none;
    font-size: 16px;
    overflow: hidden;
    background: 0 0;
}

    .taxonomy-tree ul.fancytree-container .fa.fa-file-pdf-o {
        color: #cf454e;
    }

    .taxonomy-tree ul.fancytree-container .fancytree-expander {
        padding: 5px;
        top: 0;
        left: 0;
    }

    .taxonomy-tree ul.fancytree-container .fancytree-custom-icon, .taxonomy-tree ul.fancytree-container .fancytree-expander, .taxonomy-tree ul.fancytree-container .fancytree-icon {
        position: absolute;
    }

    .taxonomy-tree ul.fancytree-container .fancytree-custom-icon, .taxonomy-tree ul.fancytree-container .fancytree-icon {
        color: #888;
        top: 6px;
        left: 20px;
    }

        .taxonomy-tree ul.fancytree-container .fancytree-custom-icon.lock:after, .taxonomy-tree ul.fancytree-container .fancytree-icon.lock:after {
            content: '\f023';
            color: #a80000;
            text-shadow: 1px 1px 0 rgba(0,0,0,.7);
            font-size: 10px;
            position: absolute;
            top: -2px;
            left: -10px;
        }

    .fancytree-title, .taxonomy-tree ul.fancytree-container .fancytree-node {
        position: relative;
    }

    .taxonomy-tree ul.fancytree-container .fancytree-title {
        padding: 6px 10px;
        margin: 0 0 0 50px;
        font-size: 13px;
    }

    .taxonomy-tree ul.fancytree-container .fancytree-active, .taxonomy-tree ul.fancytree-container .fancytree-active .fancytree-custom-icon, .taxonomy-tree ul.fancytree-container .fancytree-active .fancytree-icon {
        color: #178BC6;
    }

.fancytree-title .fancytree-title-actions {
    position: absolute;
    top: 5px;
    right: -60px;
}

    .fancytree-title .fancytree-title-actions .fa {
        margin: 0 3px;
        padding: 5px;
        color: #999;
    }

        .fancytree-title .fancytree-title-actions .fa:hover {
            color: #178BC6;
        }

.page-modes-container {
    position: relative;
    overflow: hidden;
}

    .page-modes-container .page-mode {
        height: calc(100vh - 140px);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 3;
        position: relative;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

page-view {
    height: calc(100% - 6px);
    position: relative;
}

    .lib-details-loader, page-view .iframe-loader {
        position: absolute;
        width: 100%;
        left: 0;
        top: 0;
        text-align: center;
    }

    page-view .iframe-loader {
        height: 100%;
        background: rgba(255,255,255,.8);
        color: #444;
        padding-top: 40vh;
        font-size: 50px;
    }

    page-view .page-view-frame {
        width: 100%;
        height: calc(100% - 6px);
        border: none;
    }

.library-component {
    background: #2b2e31;
    height: 100%;
}

.lib-details-loader {
    height: 100%;
    background: rgba(43,46,49,.95);
    z-index: 5;
    font-weight: 700;
}

    .lib-details-loader div {
        position: relative;
        top: calc(50vh - 60px);
    }

    .lib-details-loader .fa {
        font-size: 50px;
        color: #169E7A;
    }

    .lib-details-loader span {
        margin: 20px 0;
        display: block;
    }

.library-collection {
    padding: 5px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.library-list-container {
    position: relative;
    height: calc(100% - 111px);
}

    .library-drop, .library-drop.dragover:after, .library-drop.dragover:before, .library-drop.smalldrop:after, .library-drop.smalldrop:before, .library-list-container .library-drop-inner {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        position: absolute;
    }

    .library-list-container .library-drop-inner {
        outline: #169E7A solid 5px;
        outline-offset: -5px;
        text-align: center;
        background: rgba(0,0,0,.8);
        z-index: 10;
        font-size: 50px;
        color: #fff;
        display: none;
    }

        .library-list-container .library-drop-inner > div {
            -webkit-transform: translateY(100%);
            transform: translateY(100%);
        }

.library-drop.dragover:after, .library-drop.smalldrop:after {
    z-index: 12;
    outline: #169E7A solid 5px;
    outline-offset: -5px;
    content: '';
    background: rgba(0,0,0,.7);
}

.library-drop.dragover:before, .library-drop.smalldrop:before {
    content: 'Drop files\a\a \f0ee';
    font-family: FontAwesome,sans-serif;
    white-space: pre;
    z-index: 13;
    font-size: 50px;
    color: #fff;
    text-align: center;
    -webkit-transform: translateY(25%);
    transform: translateY(25%);
}

.library-drop.smalldrop:before {
    content: '\f0ee';
    -webkit-transform: translateY(30%);
    transform: translateY(30%);
}

.search-bar {
    border-bottom: 1px solid #222;
    padding: 16px 10px;
    position: relative;
}

    .search-bar .search-action {
        position: absolute;
        left: 10px;
        top: 18px;
        padding: 8px 15px 6px;
    }

    .search-bar .btn-group {
        position: absolute;
        left: 10px;
        top: 18px;
    }

        .search-bar .btn-group .btn {
            padding: 8px 15px 6px;
        }

            .search-bar .btn-group .btn:last-child {
                border-left: 1px solid #555;
            }

    .search-bar .autocomplete {
        margin-left: 140px;
    }

        .search-bar .autocomplete.narrow {
            margin-left: 280px;
        }

.lib-contact .library-drop {
    width: 40%;
    left: 50%;
    margin-left: -15%;
}

    .lib-contact .library-drop:after {
        content: '\f007';
        font-family: FontAwesome,sans-serif;
        position: absolute;
        text-align: center;
        overflow: hidden;
        line-height: 110px;
        font-size: 30px;
        left: 0;
        top: 0;
        width: 100%;
        height: 105%;
        background: rgba(0,0,0,.8);
        opacity: 0;
    }

    .lib-contact .library-drop:hover:after {
        opacity: 1;
        cursor: pointer;
    }

.lib-contact img.img-responsive {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.lib-contact .input-group-addon {
    background: #242629;
    border: 1px solid rgba(65,64,64,.7);
    font-size: 23px;
    padding: 3px 7px;
    color: #999;
    border-radius: 2px 0 0 2px;
}

.contact-card-library {
    height: auto;
    background: 0 0;
    color: #333;
}

    .contact-card-library .input-group-addon {
        padding: 0 6px;
        font-size: 26px;
    }

.contact-library {
    margin: 16px 20px;
    color: #ccc !important;
    background: rgba(255,255,255,.1);
}

    .contact-library h4 {
        color: #eee;
    }

    .contact-library a:hover {
        color: #57baec;
    }

    .contact-library.active, .contact-library:hover {
        cursor: pointer;
        outline: #178BC6 solid 2px;
    }

.lib-image {
    background-color: #fff;
    background-image: linear-gradient(45deg,#eee 25%,transparent 25%,transparent 75%,#eee 75%,#eee),linear-gradient(45deg,#eee 25%,transparent 25%,transparent 75%,#eee 75%,#eee);
    background-size: 30px 30px;
    background-position: 0 0,15px 15px;
    margin: 30px 0 0;
    position: relative;
    height: inherit;
}

.bluetube-instructions {
    font-size: smaller;
}

    .bluetube-instructions .bluetube-toggle {
        cursor: pointer;
    }

        .bluetube-instructions .bluetube-toggle .fa {
            display: inline-block;
            transition: -webkit-transform .2s ease;
            transition: transform .2s ease;
            transition: transform .2s ease,-webkit-transform .2s ease;
            margin-right: .5em;
        }

    .bluetube-instructions ol {
        max-height: 0;
        transition: max-height .5s ease;
        overflow: hidden;
    }

    .bluetube-instructions.expanded .bluetube-toggle .fa {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .bluetube-instructions.expanded ol {
        max-height: 100px;
    }

.btn-group-lib .btn {
    border-right: 2px solid #126b98;
}

.btn-group-lib:last-child {
    border-right: none;
}

.contact-card .delete-contact {
    position: absolute;
    left: 100%;
    top: 0;
    background: #eee;
    padding: 5px 10px;
    border: none;
}

    .contact-card .delete-contact:hover {
        color: #fff;
        background: #178BC6;
    }

.infobox-blue, .infobox-gray {
    padding: 22px;
}

    .infobox-blue p, .infobox-gray p {
        margin: 0;
    }

    .infobox-blue h5, .infobox-gray h5 {
        position: relative;
        margin: 0 0 20px;
        padding: 1px 0 0 30px;
        font-weight: 700;
    }

.intro, .quote p {
    font-weight: 400;
    font-size: 17px;
}

.infobox-blue h5 .info-icon, .infobox-gray h5 .info-icon {
    position: absolute;
    left: -7px;
    top: -7px;
    padding: 3px;
    height: auto;
    max-width: 26px;
}

.infobox-blue.infobox-blue, .infobox-gray.infobox-blue {
    background-color: #cae3e9;
    color: #22505f;
}

    .infobox-blue.infobox-blue .info-icon path, .infobox-gray.infobox-blue .info-icon path {
        fill: #22505f;
    }

.infobox-blue.infobox-gray, .infobox-gray.infobox-gray {
    background-color: #F5F5F5;
    color: #5D5D5D;
}

    .infobox-blue.infobox-gray .info-icon path, .infobox-gray.infobox-gray .info-icon path {
        fill: #0189C4;
    }

    .infobox-blue.infobox-gray h5, .infobox-gray.infobox-gray h5 {
        color: #0189C4;
    }

.intro {
    line-height: 25px;
}

.alert-box {
    margin: 4px 0;
    padding: 22px;
    background-color: #933;
    color: #eee;
}

.quote {
    margin: 20px 0;
    padding: 16px 16px 16px 64px;
    color: #0089c4;
}

    .quote p:after, .quote p:before {
        content: '"';
    }

    .quote img:first-child {
        width: 80px;
        height: 80px;
    }

img.cms-textbox-img-left {
    float: left;
    margin: 0 22px 16px 0;
}

img.cms-textbox-img-right {
    float: right;
    margin: 0 0 16px 22px;
}

p {
    font-size: inherit;
    line-height: inherit;
    overflow: visible;
}

img {
    max-width: 25%;
}

.cms-media .full {
    background-image: url(/assets/img/header-gradient.png);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 240px;
    margin-bottom: 16px;
    position: relative;
    text-align: center;
    font-weight: 700;
}

    .cms-media .full .fa {
        font-size: 30px;
        position: absolute;
        top: 50%;
        margin-top: -15px;
    }

.cms-media .tile {
    text-align: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

    .cms-media .tile .tile-item {
        -webkit-flex: 0 1 23%;
        -ms-flex: 0 1 23%;
        flex: 0 1 23%;
        margin: 0 1%;
        background-size: cover;
        min-height: 160px;
        position: relative;
    }

        .cms-media .tile .tile-item img {
            max-width: calc(100% - 1px);
            max-height: 100%;
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
            border: 1px solid #ddd;
        }

        .cms-media .tile .tile-item .play-button {
            z-index: 10;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

        .cms-media .tile .tile-item .video-cover {
            min-height: 160px;
        }

            .cms-media .tile .tile-item .video-cover.plain:hover {
                cursor: default;
            }

        .cms-media .tile .tile-item h6 {
            text-align: left;
            position: relative;
            top: 15px;
        }

@media (max-width:1199px) {
    .cms-media .tile .tile-item h6 {
        top: 0;
    }
}

.cms-media .tile .fa-plus {
    padding: 32px;
    font-size: 48px;
    height: 120px;
}

.col-wide .cms-media .tile .tile-item, .col-wide .cms-media .tile .tile-item .video-cover {
    min-height: 190px;
}

    .col-wide .cms-media .tile .tile-item h6 {
        top: 25px;
    }

@media (max-width:1199px) {
    .col-wide .cms-media .tile .tile-item h6 {
        top: 15px;
    }
}

.cms-faq {
    background: #eee;
    padding: 16px;
    margin: 0 0 4px;
}

.cms-pdf {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0icGhpbGlwc0dyYWRpZW50IgogICAgICAgICAgICAgICAgICAgICAgICB4MT0iMCUiIHkxPSIyMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHgyPSIxMDAlIiB5Mj0iMTAwJSIKICAgICAgICAgICAgICAgICAgICAgICAgc3ByZWFkTWV0aG9kPSJwYWQiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiAgIHN0b3AtY29sb3I9IiMwNDEwMkYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxMjYxOUIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6dXJsKCNwaGlsaXBzR3JhZGllbnQpOyIgLz4KPC9zdmc+);
    background: linear-gradient(125deg,#04102F 0,#12619B 100%);
    padding-top: 200px;
}

    .cms-pdf .pdf-loader {
        position: absolute;
        color: #000;
        font-size: 14px;
        padding: 0;
        margin: 0;
        max-width: calc(100% - 10px);
        max-height: calc(100% - 10px);
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        display: none;
    }

    .cms-pdf .pan-zoom {
        position: relative;
    }

        .cms-pdf .pan-zoom .pdf-loader {
            font-size: 54px;
        }

        .cms-pdf .pan-zoom.loading #PDFimage {
            opacity: .3;
        }

        .cms-pdf .pan-zoom.loading .pdf-loader {
            display: block;
        }

    .cms-pdf .image-view {
        margin: 0 auto;
    }

    .cms-pdf.fullscreen {
        width: 100%;
        height: 100%;
        padding-top: 20px;
    }

        .cms-pdf.fullscreen .pdf-view, .cms-pdf.fullscreen .pdf-view .pan-zoom {
            z-index: 1;
        }

            .cms-pdf.fullscreen .pdf-view .pdf-view-next, .cms-pdf.fullscreen .pdf-view .pdf-view-prev {
                display: none;
            }

        .cms-pdf.fullscreen .pdf-options, .cms-pdf.fullscreen .pdf-pagination {
            z-index: 3;
        }

        .cms-pdf.fullscreen .container {
            width: 100vw !important;
            position: relative;
        }

        .cms-pdf.fullscreen .pan-zoom {
            overflow: visible !important;
        }

        .cms-pdf.fullscreen .pan-zoom, .cms-pdf.fullscreen .pdf-view {
            max-width: 74vw;
            margin: 0 auto;
        }

        .cms-pdf.fullscreen .image-view {
            max-height: 96vh;
            background: #fff;
        }

        .cms-pdf.fullscreen .pdf-pagination {
            position: fixed;
            display: none;
        }

            .cms-pdf.fullscreen .pdf-pagination.active {
                display: block;
                background: rgba(0,0,0,.65);
                right: 0;
                top: 0;
                height: 100%;
                width: 150px !important;
                max-height: none;
                margin: 0;
                padding: 20px 10px;
                overflow: auto;
            }

                .cms-pdf.fullscreen .pdf-pagination.active button {
                    display: none;
                }

                .cms-pdf.fullscreen .pdf-pagination.active .pdf-pagination-overflow {
                    white-space: normal;
                    overflow: visible;
                    margin: 0;
                    padding: 35px 0;
                }

.nav-actions, .text-nowrap, rzslider span {
    white-space: nowrap;
}

.cms-pdf.fullscreen .pdf-pagination.active .pdf-pagination-page {
    display: block;
    margin: 0 auto;
}

.cms-pdf.fullscreen .pdf-pagination.active .dots-navigation {
    display: none;
    position: absolute;
    top: 50%;
    left: 10px;
    z-index: 5;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

    .cms-pdf.fullscreen .pdf-pagination.active .dots-navigation > span {
        display: block;
        margin-bottom: 14px;
    }

        .cms-pdf.fullscreen .pdf-pagination.active .dots-navigation > span:hover:before {
            display: none;
        }

.cms-pdf.fullscreen .pdf-options {
    width: 74vw;
    left: 50%;
    margin-left: -37vw;
    position: fixed;
    bottom: 10px;
    padding: 0;
}

    .cms-pdf.fullscreen .pdf-options .pdf-zoom {
        display: block;
    }

    .cms-pdf.fullscreen .pdf-options .pdf-actions {
        padding: 2px;
        top: -2px;
    }

        .cms-pdf.fullscreen .pdf-options .pdf-actions button:last-of-type {
            margin-right: 10px;
        }

    .cms-pdf.fullscreen .pdf-options .pdf-counter {
        display: inline-block;
        padding: 6px 40px;
    }

        .cms-pdf.fullscreen .pdf-options .pdf-counter button {
            display: inline-block;
            cursor: pointer;
        }

        .cms-pdf.fullscreen .pdf-options .pdf-counter .fa-angle-left {
            padding-right: 15px;
        }

        .cms-pdf.fullscreen .pdf-options .pdf-counter .fa-angle-right {
            padding-left: 15px;
        }

    .cms-pdf.fullscreen .pdf-options .pdf-actions, .cms-pdf.fullscreen .pdf-options .pdf-counter, .cms-pdf.fullscreen .pdf-options .pdf-zoom {
        background: rgba(0,0,0,.65);
        border-radius: 3px;
    }

.cms-pdf .pdf-links {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

    .cms-pdf .pdf-links > span {
        display: inline-block;
        cursor: pointer;
        position: absolute;
        pointer-events: all;
    }

.cms-pdf .pdf-view {
    margin-bottom: 14px;
    position: relative;
    background: #fff;
    overflow: visible !important;
}

    .cms-pdf .pdf-view .pdf-view-next, .cms-pdf .pdf-view .pdf-view-prev {
        border: none;
        background: rgba(0,0,0,.3);
        color: rgba(255,255,255,.3);
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        font-size: 40px;
        padding: 5px 15px;
        line-height: 1;
        transition: color .15s ease;
    }

        .cms-pdf .pdf-view .pdf-view-next:hover, .cms-pdf .pdf-view .pdf-view-prev:hover {
            color: rgba(255,255,255,.8);
        }

    .cms-pdf .pdf-view .pdf-view-next {
        left: 100%;
    }

    .cms-pdf .pdf-view .pdf-view-prev {
        right: 100%;
    }

.cms-pdf .pdf-pagination {
    padding: 0 50px;
    position: relative;
    max-height: 0;
    opacity: 0;
    transition: all .3s cubic-bezier(.7,0,.3,1);
    overflow: hidden;
    margin-top: 0;
}

    .cms-pdf .pdf-pagination.active {
        max-height: 200px;
        opacity: 1;
        padding: 20px 50px 0;
        margin-top: -20px;
    }

    .cms-pdf .pdf-pagination .pdf-pagination-next, .cms-pdf .pdf-pagination .pdf-pagination-prev {
        position: absolute;
        border: none;
        padding: 5px;
        background: 0 0;
        top: 30px;
        font-size: 30px;
        color: rgba(255,255,255,.3);
        transition: color .15s ease;
    }

        .cms-pdf .pdf-pagination .pdf-pagination-next:hover, .cms-pdf .pdf-pagination .pdf-pagination-prev:hover {
            color: rgba(255,255,255,.8);
        }

    .cms-pdf .pdf-pagination .pdf-pagination-prev {
        left: 16%;
    }

    .cms-pdf .pdf-pagination .pdf-pagination-next {
        right: 16%;
    }

    .cms-pdf .pdf-pagination .pdf-pagination-overflow {
        white-space: nowrap;
        overflow: hidden;
        text-align: center;
        padding-top: 30px;
        margin-top: -30px;
    }

    .cms-pdf .pdf-pagination .pdf-pagination-page {
        display: inline-block;
        padding: 5px;
        position: relative;
        width: 68px;
        height: 63px;
        transition: all .5s ease;
        -webkit-transform-origin: 50% 80%;
        transform-origin: 50% 80%;
    }

        .cms-pdf .pdf-pagination .pdf-pagination-page:after {
            position: absolute;
            top: -18px;
            left: calc(50% + 15px);
            -webkit-transform: translateX(-100%) translateY(20%) scale(.8);
            transform: translateX(-100%) translateY(20%) scale(.8);
            background: #000;
            padding: 5px 7px;
            content: attr(n);
            color: #fff;
            line-height: 1;
            font-size: 12px;
            border-radius: 3px;
            opacity: 0;
            transition: all .15s ease;
        }

        .cms-pdf .pdf-pagination .pdf-pagination-page.active img {
            outline: #169E7A solid 2px;
        }

        .cms-pdf .pdf-pagination .pdf-pagination-page:hover {
            cursor: pointer;
        }

            .cms-pdf .pdf-pagination .pdf-pagination-page:hover:after {
                opacity: 1;
                -webkit-transform: translateX(-100%) translateY(0) scale(1);
                transform: translateX(-100%) translateY(0) scale(1);
            }

        .cms-pdf .pdf-pagination .pdf-pagination-page img {
            max-width: calc(100% - 10px);
            max-height: calc(100% - 10px);
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
            background: #fff;
        }

        .cms-pdf .pdf-pagination .pdf-pagination-page.loading {
            pointer-events: none;
        }

            .cms-pdf .pdf-pagination .pdf-pagination-page.loading img {
                opacity: .3;
            }

            .cms-pdf .pdf-pagination .pdf-pagination-page.loading .pdf-loader {
                display: block;
            }

.cms-pdf .pdf-options {
    color: #fff;
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

    .cms-pdf .pdf-options .pdf-actions, .cms-pdf .pdf-options .pdf-zoom {
        position: absolute;
        top: 0;
    }

    .cms-pdf .pdf-options .pdf-zoom {
        width: 200px;
        left: 0;
        padding: 0 35px;
        display: none;
    }

    .cms-pdf .pdf-options .pdf-actions {
        right: 0;
        top: -5px;
    }

    .cms-pdf .pdf-options .pdf-counter button:last-of-type, .cms-pdf .pdf-options .pdf-zoom button:last-of-type {
        right: 3px;
    }

    .cms-pdf .pdf-options .pdf-counter {
        position: relative;
    }

        .cms-pdf .pdf-options .pdf-counter button {
            display: none;
            background: 0 0;
            border: none;
            color: #fff;
            opacity: .4;
            font-size: 20px;
            position: absolute;
            top: 3px;
        }

            .cms-pdf .pdf-options .pdf-counter button:hover {
                opacity: 1;
            }

            .cms-pdf .pdf-options .pdf-counter button:first-of-type {
                left: 3px;
            }

    .cms-pdf .pdf-options .pdf-actions, .cms-pdf .pdf-options .pdf-actions > *, .cms-pdf .pdf-options .pdf-zoom, .cms-pdf .pdf-options .pdf-zoom > * {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

.nav-actions > *, rzslider {
    -moz-user-select: none;
    -ms-user-select: none;
}

.cms-pdf .pdf-options .pdf-actions button, .cms-pdf .pdf-options .pdf-zoom button {
    border: none;
    background: 0 0;
    padding: 5px;
    margin-left: 10px;
    position: relative;
    opacity: .8;
}

    .cms-pdf .pdf-options .pdf-actions button:hover, .cms-pdf .pdf-options .pdf-zoom button:hover {
        opacity: 1;
    }

    .cms-pdf .pdf-options .pdf-actions button > .fa, .cms-pdf .pdf-options .pdf-actions button > [class^=p-icon], .cms-pdf .pdf-options .pdf-actions button > img, .cms-pdf .pdf-options .pdf-zoom button > .fa, .cms-pdf .pdf-options .pdf-zoom button > [class^=p-icon], .cms-pdf .pdf-options .pdf-zoom button > img {
        pointer-events: none;
    }

    .cms-pdf .pdf-options .pdf-actions button > img, .cms-pdf .pdf-options .pdf-zoom button > img {
        width: 19px;
        height: 19px;
        max-width: none;
    }

    .cms-pdf .pdf-options .pdf-actions button:before, .cms-pdf .pdf-options .pdf-zoom button:before {
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translateX(-25%) translateY(-75%) scale(.8);
        transform: translateX(-25%) translateY(-75%) scale(.8);
        background: #000;
        padding: 5px 7px;
        content: attr(tooltip);
        color: #fff;
        line-height: 1;
        font-size: 12px;
        border-radius: 3px;
        opacity: 0;
        transition: all .15s ease 0s;
    }

    .cms-pdf .pdf-options .pdf-actions button:hover:before, .cms-pdf .pdf-options .pdf-zoom button:hover:before {
        opacity: 1;
        -webkit-transform: translateX(-25%) translateY(-100%) scale(1);
        transform: translateX(-25%) translateY(-100%) scale(1);
        transition: all .15s ease .8s;
    }

    .cms-pdf .pdf-options .pdf-actions button.inactive, .cms-pdf .pdf-options .pdf-zoom button.inactive {
        color: rgba(255,255,255,.3);
    }

    .cms-pdf .pdf-options .pdf-actions button i.fa, .cms-pdf .pdf-options .pdf-zoom button i.fa {
        padding: 1px;
    }

.cms-pdf .pdf-options .pdf-zoom button {
    position: absolute;
    top: 3px;
    margin: 0;
}

    .cms-pdf .pdf-options .pdf-zoom button:first-of-type {
        left: 3px;
    }

.cms-pdf .dots-navigation {
    width: 100%;
    padding: 5px 0;
}

    .cms-pdf .dots-navigation .dot {
        width: 9px;
        height: 9px;
        border-radius: 9px;
        margin-right: 17px;
        display: inline-block;
        background: rgba(255,255,255,.3);
        position: relative;
        padding: 5px;
    }

        .cms-pdf .dots-navigation .dot:last-of-type {
            margin: 0;
        }

        .cms-pdf .dots-navigation .dot:before {
            position: absolute;
            top: -30px;
            left: 7px;
            -webkit-transform: translate(-50%,20%) scale(.8);
            transform: translate(-50%,20%) scale(.8);
            background: #000;
            padding: 5px 7px;
            content: attr(n);
            color: #fff;
            line-height: 1;
            font-size: 12px;
            border-radius: 3px;
            opacity: 0;
            transition: all .15s ease;
            pointer-events: none;
        }

        .cms-pdf .dots-navigation .dot:after {
            position: absolute;
            border-radius: 50%;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            content: '';
            background: #fff;
            opacity: 0;
            -webkit-transform: scale(0);
            transform: scale(0);
            transition: all .3s ease;
        }

        .cms-pdf .dots-navigation .dot.active, .cms-pdf .dots-navigation .dot:hover {
            cursor: pointer;
        }

            .cms-pdf .dots-navigation .dot.active:after, .cms-pdf .dots-navigation .dot:hover:after {
                opacity: 1;
                -webkit-transform: scale(1.2);
                transform: scale(1.2);
            }

            .cms-pdf .dots-navigation .dot:hover:before {
                opacity: 1;
                -webkit-transform: translate(-50%,0) scale(1);
                transform: translate(-50%,0) scale(1);
            }

.tags {
    margin: 2px 0 0;
    list-style: none;
    padding: 0;
}

    .tags > li {
        margin: 0 10px 5px 0;
        display: inline-block;
    }

    .tags .tag {
        color: #178BC6;
        background: #C0E2ED;
        padding: 10px 15px 7px;
        border-radius: 2px;
        font-size: 12px;
        position: relative;
        text-decoration: none;
        transition: all .15s ease;
    }

        .tags .tag.active, .tags .tag:hover {
            background: #178BC6;
            color: #fff;
            cursor: pointer;
        }

        .tags .tag.active {
            cursor: default;
        }

        .tags .tag .fa {
            display: none;
            position: absolute;
            right: 4px;
            top: 3px;
            padding: 5px 8px 7px;
        }

    .tags.editable .tag {
        padding: 4px 36px 2px 8px;
        margin: 0 10px 5px 0;
        display: inline-block;
    }

        .tags.editable .tag .fa {
            color: #004266;
            display: inline-block;
        }

            .tags.editable .tag .fa:hover {
                color: #fff;
                cursor: pointer;
            }

.synonyms .synonyms-form {
    position: relative;
}

    .synonyms .synonyms-form h4 {
        margin-bottom: 20px;
    }

    .synonyms .synonyms-form .form-control {
        width: calc(100% - 70px);
    }

    .synonyms .synonyms-form .btn {
        position: absolute;
        right: 5px;
        bottom: 2px;
    }

.synonyms .synonyms-list .list-items {
    max-height: 300px;
    overflow-y: auto;
}

    .synonyms .synonyms-list .list-items .fa {
        position: absolute;
        padding: 5px;
        left: 3px;
        top: 4px;
        display: none;
    }

    .synonyms .synonyms-list .list-items > li > span {
        display: block;
        margin-left: 15px;
    }

    .synonyms .synonyms-list .list-items > li:hover {
        cursor: default;
    }

        .synonyms .synonyms-list .list-items > li:hover .fa {
            display: block;
        }

            .synonyms .synonyms-list .list-items > li:hover .fa:hover {
                cursor: pointer;
                color: #cd202c;
            }

.download-component li, .download-component p {
    position: relative;
    padding-right: 30px;
}

.download-component .fa-trash-o {
    position: absolute;
    right: -20px;
    top: 5px;
    padding: 5px;
    color: #666;
    pointer-events: all !important;
}

    .download-component .fa-trash-o:hover {
        cursor: pointer;
        color: red;
    }

.download-component .download-group {
    overflow: visible !important;
}

.subscribe-to-resource {
    margin-top: 35px;
    font-size: 13px;
}

    .subscribe-to-resource .p-icon-checkmark {
        margin-right: 5px;
    }

    .subscribe-to-resource .btn-sub {
        padding: 10px 16px 6px;
        font-size: 16px;
    }

.metabox {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 320px;
    margin: 16px;
    padding: 16px;
    border: 1px solid #000;
    background: #fff;
    border-radius: 3px;
    box-shadow: 4px 4px 16px 0 rgba(0,0,0,.5);
    z-index: 999;
}

    .metabox table tr td {
        padding: 0;
        font-size: 12px;
        cursor: pointer;
    }

    .metabox table tr.active td, .metabox table tr:hover td {
        background-color: #5bbbb7 !important;
        color: #fff;
    }

    .metabox a {
        cursor: pointer;
        text-decoration: none;
    }

.cms-header > div.cms-header-link a, a:focus, a:hover {
    text-decoration: underline;
}

.metabox .btn-primary {
    background-color: #5bbbb7;
}

    .metabox .btn-primary:hover {
        background-color: #156570;
    }

.ns-popover-list-theme {
    box-sizing: border-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 3px;
    z-index: 100;
    background-color: #fff;
    box-shadow: 0 .3125rem .625rem rgba(0,0,0,.2);
}

    .ns-popover-list-theme .list, .ns-popover-list-theme ul {
        padding: 0;
        margin: .625rem 0;
        display: block;
    }

    .ns-popover-list-theme .list-item a, .ns-popover-list-theme li a {
        padding: .1875rem .625rem;
        display: block;
    }

        .ns-popover-list-theme .list-item a:hover, .ns-popover-list-theme li a:hover {
            background-color: #f5f5f5;
        }

.ns-popover-tooltip-theme {
    box-sizing: border-box;
    z-index: 100;
    background-color: transparent;
}

    .ns-popover-tooltip-theme .ns-popover-tooltip {
        box-sizing: border-box;
        border: 1px solid rgba(0,0,0,.2);
        border-radius: 2px;
        background-color: #fff;
        padding: 20px 30px;
        position: relative;
        font-size: .875rem;
        box-shadow: 0 .3125rem .625rem rgba(0,0,0,.2);
        margin: 10px;
    }

        .ns-popover-tooltip-theme .ns-popover-tooltip ul {
            padding: 0;
            margin: .625rem 0;
            display: block;
        }

        .ns-popover-tooltip-theme .ns-popover-tooltip .fa-times {
            position: absolute;
            padding: 5px;
            font-size: 14px;
            color: rgba(0,0,0,.3);
            top: 5px;
            right: 5px;
        }

            .ns-popover-tooltip-theme .ns-popover-tooltip .fa-times:hover {
                cursor: pointer;
                color: rgba(0,0,0,.7);
            }

        .ns-popover-tooltip-theme .ns-popover-tooltip li a {
            padding: .1875rem .625rem;
            display: block;
        }

            .ns-popover-tooltip-theme .ns-popover-tooltip li a:hover {
                background-color: #f5f5f5;
            }

    .ns-popover-tooltip-theme.ns-popover-bottom-placement .triangle {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: 11px solid transparent;
        position: absolute;
        z-index: 5;
        border-bottom-color: rgba(0,0,0,.2);
        left: 50%;
        top: -11px;
        margin-left: -11px;
    }

        .ns-popover-tooltip-theme.ns-popover-bottom-placement .triangle:after {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border: 10px solid transparent;
            position: absolute;
            border-bottom-color: #fff;
            border-top-width: 0;
            top: 1px;
            margin-left: -10px;
        }

    .ns-popover-tooltip-theme.ns-popover-top-placement .triangle {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: 11px solid transparent;
        position: absolute;
        z-index: 5;
        border-top-color: rgba(0,0,0,.2);
        left: 50%;
        bottom: -11px;
        margin-left: -11px;
    }

        .ns-popover-tooltip-theme.ns-popover-top-placement .triangle:after {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border: 10px solid transparent;
            position: absolute;
            border-top-color: #fff;
            border-bottom-width: 0;
            bottom: 1px;
            margin-left: -10px;
        }

    .ns-popover-tooltip-theme.ns-popover-right-placement .triangle {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: 11px solid transparent;
        position: absolute;
        z-index: 5;
        border-right-color: rgba(0,0,0,.2);
        top: 50%;
        left: -11px;
        margin-top: -11px;
    }

        .ns-popover-tooltip-theme.ns-popover-right-placement .triangle:after {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border: 10px solid transparent;
            position: absolute;
            border-right-color: #fff;
            border-left-width: 0;
            left: 1px;
            bottom: -10px;
        }

    .ns-popover-tooltip-theme.ns-popover-left-placement .triangle {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border: 11px solid transparent;
        position: absolute;
        z-index: 5;
        border-left-color: rgba(0,0,0,.2);
        top: 50%;
        right: -11px;
        margin-top: -11px;
    }

        .ns-popover-tooltip-theme.ns-popover-left-placement .triangle:after {
            content: " ";
            display: block;
            width: 0;
            height: 0;
            border: 10px solid transparent;
            position: absolute;
            border-left-color: #fff;
            border-right-width: 0;
            right: 1px;
            bottom: -10px;
        }

    .ns-popover-tooltip-theme.ns-popover-left-align .ns-popover-tooltip {
        margin-left: 0;
    }

    .ns-popover-tooltip-theme.ns-popover-right-align .ns-popover-tooltip {
        margin-right: 0;
    }

    .ns-popover-tooltip-theme.ns-popover-top-align .ns-popover-tooltip {
        margin-top: 0;
    }

    .ns-popover-tooltip-theme.ns-popover-bottom-align .ns-popover-tooltip {
        margin-bottom: 0;
    }

.login-box {
    width: 400px;
    margin: 35vh auto 0;
    color: #ccc;
}

@font-face {
    font-family: CentraleSansBook;
    src: url(https://www.crsc.philips.com/crsc/images/093d4fa4af732b00118797af560f9e2f.eot);
    src: url(https://www.crsc.philips.com/crsc/images/093d4fa4af732b00118797af560f9e2f.eot?#iefix) format('embedded-opentype'), url(https://www.crsc.philips.com/crsc/images/2e7d0791a9a32be9a98c25cb6a2df8ef.woff2) format('woff2'), url(https://www.crsc.philips.com/crsc/images/cbf75e79afb2e3240b2b2a3661d2acd9.woff) format('woff'), url(https://www.crsc.philips.com/crsc/images/b05ceb8f194e1d1cfc575d7853c022d4.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: CentraleSansLight;
    src: url(https://www.crsc.philips.com/crsc/images/b67b3b31681bedd79f87a66bf56c8a98.eot);
    src: url(https://www.crsc.philips.com/crsc/images/b67b3b31681bedd79f87a66bf56c8a98.eot?#iefix) format('embedded-opentype'), url(https://www.crsc.philips.com/crsc/images/c4b335aca9b5fad6d4945a987b1c3f31.woff2) format('woff2'), url(https://www.crsc.philips.com/crsc/images/dea2b53e43e10f88d8431799b9b98fb5.woff) format('woff'), url(https://www.crsc.philips.com/crsc/images/b01538eef5085ed4f21ffbfb2f395920.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: CentraleSansBold;
    src: url(https://www.crsc.philips.com/crsc/images/05d584a74aa50187a115fcc2dfd2f1fc.eot);
    src: url(https://www.crsc.philips.com/crsc/images/05d584a74aa50187a115fcc2dfd2f1fc.eot?#iefix) format('embedded-opentype'), url(https://www.crsc.philips.com/crsc/images/c2ce0c0314c039a40f539267b4b5a70e.woff2) format('woff2'), url(https://www.crsc.philips.com/crsc/images/26cb2993670ec9da5251494dbf0a1a89.woff) format('woff'), url(https://www.crsc.philips.com/crsc/images/0c1185d6048c311d47e3ff0721914a0e.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: philips-global-icon-font;
    src: url(/Resources/fonts/philips-global-icon-font.eot);
    src: url(/Resources/fonts/philips-global-icon-font.eot?#iefix) format("embedded-opentype"),url(/Resources/fonts/philips-global-icon-font.woff) format("woff"),url(/Resources/fonts/philips-global-icon-font.ttf) format("truetype"),url(/Resources/fonts/philips-global-icon-font.svg#philips-global-icon-font) format("svg");
}

rzslider {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 2px;
    margin: 15px 0;
    vertical-align: middle;
    -webkit-user-select: none;
    user-select: none;
}

    rzslider[disabled] {
        cursor: not-allowed;
    }

        rzslider[disabled] span.rz-pointer {
            cursor: not-allowed;
            background-color: #d8e0f3;
        }

    rzslider span {
        position: absolute;
        display: inline-block;
    }

        rzslider span.rz-base {
            width: 100%;
            height: 100%;
            padding: 0;
        }

        rzslider span.rz-bar-wrapper {
            left: 0;
            z-index: 1;
            width: 100%;
            height: 32px;
            padding-top: 16px;
            margin-top: -16px;
            box-sizing: border-box;
        }

        rzslider span.rz-bar {
            left: 0;
            z-index: 1;
            width: 100%;
            height: 2px;
            background: rgba(255,255,255,.3);
            border-radius: 2px;
        }

            rzslider span.rz-bar.rz-selection {
                z-index: 2;
                background: #0db9f0;
                border-radius: 2px;
            }

        rzslider span.rz-pointer {
            top: -8px;
            z-index: 3;
            width: 16px;
            height: 16px;
            cursor: pointer;
            background-color: #fff;
            border-radius: 50%;
        }

            rzslider span.rz-pointer:hover:after {
                background-color: #fff;
            }

            rzslider span.rz-pointer.rz-active:after {
                background-color: #451aff;
            }

        rzslider span.rz-bubble {
            bottom: 16px;
            padding: 1px 3px;
            color: #55637d;
            cursor: default;
            display: none;
        }

            rzslider span.rz-bubble.rz-selection {
                top: 16px;
            }

            rzslider span.rz-bubble.rz-limit {
                color: #55637d;
            }

    rzslider .rz-ticks {
        position: absolute;
        top: -3px;
        left: 0;
        z-index: 1;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        padding: 0 11px;
        margin: 0;
        list-style: none;
        box-sizing: border-box;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

        rzslider .rz-ticks .tick {
            width: 10px;
            height: 10px;
            text-align: center;
            cursor: pointer;
            background: #d8e0f3;
            border-radius: 50%;
        }

            rzslider .rz-ticks .tick.selected {
                background: #0db9f0;
            }

            rzslider .rz-ticks .tick .tick-value {
                position: absolute;
                top: -30px;
                -webkit-transform: translate(-50%,0);
                transform: translate(-50%,0);
            }

.ng-cloak, .x-ng-cloak, [data-ng-cloak], [ng-cloak], [ng\:cloak], [x-ng-cloak] {
    display: none !important;
}

:focus {
    outline: 0 !important;
}

pre.log {
    height: 100vh;
    width: 30vw;
    overflow: auto;
    position: fixed;
    bottom: 0;
    box-shadow: 0 0 4px rgba(0,0,0,.3);
    z-index: 1000;
}

    pre.log.left {
        left: 0;
    }

    pre.log.right {
        right: 0;
    }

body header {
    position: absolute !important;
}

.cms-header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #242629;
    color: #777;
    border-bottom: 1px solid #111;
}

    .cms-header > div {
        display: inline-block;
        padding: 12px 25px 10px;
        border-right: 1px solid #111;
        transition: all .15s ease;
    }

        .cms-header > div:hover {
            color: #ccc;
            cursor: pointer;
        }

        .cms-header > div.active {
            color: #fff;
            background: #178BC6;
        }

        .cms-header > div.cms-header-link {
            border: none;
        }

            .cms-header > div.cms-header-link a:hover {
                color: #41b0e9;
            }

.left-nav, .one-nav, .right-nav {
    position: fixed;
    color: #ccc;
    background: #2b2e31;
    top: 60px;
    height: calc(100vh - 60px);
}

    .left-nav > h4 [ui-sref].active, .left-nav > h4 [ui-sref]:hover, .left-nav > h4.active, .one-nav > h4 [ui-sref].active, .one-nav > h4 [ui-sref]:hover, .one-nav > h4.active, .right-nav > h4 [ui-sref].active, .right-nav > h4 [ui-sref]:hover, .right-nav > h4.active {
        color: #178BC6;
        cursor: pointer;
    }

    .left-nav > h4, .one-nav > h4, .right-nav > h4 {
        background: #242629;
        margin: 0;
        padding: 12px 25px;
        font-size: 13px;
        font-weight: 700;
        position: relative;
        z-index: 2;
    }

        .left-nav > h4 [ui-sref]:before, .one-nav > h4 [ui-sref]:before, .right-nav > h4 [ui-sref]:before {
            font-family: FontAwesome,sans-serif;
            content: "";
            position: absolute;
            left: 5px;
            top: 10px;
            font-size: 15px;
            transition: all .3s cubic-bezier(.7,0,.3,1);
            opacity: 0;
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .left-nav > h4 [ui-sref].active:before, .one-nav > h4 [ui-sref].active:before, .right-nav > h4 [ui-sref].active:before {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }

        .left-nav > h4 .btn, .one-nav > h4 .btn, .right-nav > h4 .btn {
            position: absolute;
            right: 5px;
            top: 5px;
        }

.left-nav {
    left: 0;
    width: 25%;
}

    .left-nav.wide {
        width: 65%;
    }

    .left-nav > .left-nav-filter {
        width: 100%;
        position: absolute;
        z-index: 5;
        background: #2b2e31;
        padding: 5px;
        border-bottom: 1px solid #222;
    }

        .left-nav > .left-nav-filter:before {
            position: absolute;
            content: '';
            width: 100%;
            height: 1px;
            bottom: -2px;
            left: 0;
            background: #3A3A3A;
        }

        .left-nav > .left-nav-filter + .nav-scrollable-content {
            margin-top: 50px;
            height: calc(100% - 126px);
        }

.one-nav {
    width: 100%;
    right: 0;
}

.right-nav {
    right: 0;
    width: calc(75% - 20px);
}

    .right-nav.narrow {
        right: 0;
        width: calc(35% - 20px);
    }

.nav-scrollable-content {
    height: calc(100% - 76px);
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
}

    .nav-scrollable-content.padding {
        padding: 20px;
    }

.nav-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    background: #242629;
}

    .nav-actions > * {
        -webkit-user-select: none;
        user-select: none;
    }

    .nav-actions[actions='1'] > div {
        width: 100%;
    }

    .nav-actions[actions='2'] > div {
        width: 50%;
    }

    .nav-actions[actions='3'] > div {
        width: 33.33333%;
    }

    .nav-actions > div {
        padding: 10px;
        display: inline-block;
        text-align: center;
        float: left;
        transition: all .15s ease;
        border-right: 1px solid #111;
    }

.resource-category h5 .btn-group.ng-hide, .resource-category h5 .split-arrow.ng-hide {
    display: none !important;
}

.nav-actions > div:last-of-type {
    border-right: none;
}

.nav-actions > div:hover {
    color: #fff;
    cursor: pointer;
    background: #5d5d5d;
}

.nav-actions > div[disabled] {
    pointer-events: none;
    opacity: .3;
}

.nav-actions > div.green.raised, .nav-actions > div.green:hover {
    background: #169E7A;
}

.nav-actions > div.red:hover {
    background: #5e172d;
}

.nav-actions > div > .fa {
    margin-right: 20px;
}

.resource-category h5 {
    background: #242629;
    margin: 0;
    padding: 16px 10px 14px;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #171717;
}

    .resource-category h5 > span {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

        .resource-category h5 > span:hover {
            color: #178BC6;
            cursor: text;
        }

    .resource-category h5.empty {
        margin-bottom: 20px;
    }

    .resource-category h5 .fa-folder-open-o {
        margin: 0 10px 0 20px;
        opacity: .7;
    }

    .resource-category h5 .rows-number {
        width: 60px;
        position: absolute;
        right: 80px;
        top: 16px;
    }

    .resource-category h5 .split-arrow {
        position: absolute;
        top: 7px;
        left: 6px;
        font-size: 13px;
        opacity: 0;
        transition: opacity .15s ease;
    }

    .resource-category h5 .btn-group {
        border-left: 1px solid #171717;
        padding-left: 5px;
        transition: opacity .15s ease,-webkit-transform .15s cubic-bezier(.7,0,.3,1);
        transition: transform .15s cubic-bezier(.7,0,.3,1),opacity .15s ease;
        transition: transform .15s cubic-bezier(.7,0,.3,1),opacity .15s ease,-webkit-transform .15s cubic-bezier(.7,0,.3,1);
        position: absolute;
        right: 5px;
        top: 8px;
        opacity: 0;
    }

        .resource-category h5 .btn-group:before {
            position: absolute;
            content: '';
            width: 1px;
            height: 100%;
            top: 0;
            left: -2px;
            background: #313131;
        }

    .resource-category h5 .action-cancel, .resource-category h5 .action-save {
        position: absolute;
        right: 5px;
        top: 16px;
        padding: 6px 10px 4px;
    }

    .resource-category h5 .action-cancel {
        right: 35px;
    }

.resource-category .list-items > li {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-left: 30px;
}

    .resource-category .list-items > li:last-of-type {
        margin-bottom: 10px;
    }

    .resource-category .list-items > li.dimmed {
        opacity: .3;
    }

    .resource-category .list-items > li input {
        width: calc(100% - 60px);
    }

    .resource-category .list-items > li .fa {
        position: absolute;
        top: 13px;
        padding: 5px;
        color: #ccc;
    }

        .resource-category .list-items > li .fa:hover {
            color: #178BC6;
        }

    .resource-category .list-items > li .fa-check {
        right: 5px;
    }

    .resource-category .list-items > li .fa-times {
        right: 35px;
    }

    .resource-category .list-items > li .fa-lock, .resource-category .list-items > li .fa-lock:hover {
        color: #cd202c;
        position: absolute;
        left: 15px;
        font-size: 10px;
        top: 0;
    }

.resource-category:hover h5 .btn-group, .resource-category:hover h5 .split-arrow {
    opacity: 1;
}

.options-tabs {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #242629;
    color: #999;
    z-index: 5;
    position: relative;
}

    .options-tabs:after {
        position: absolute;
        bottom: -5px;
        left: 0;
        content: '';
        width: 100%;
        height: 5px;
        background: #2b2e31;
        box-shadow: 0 1px 1px rgba(0,0,0,.5);
    }

    .options-tabs > li {
        display: inline-block;
        padding: 10px 30px;
        font-size: 13px;
        border-right: 1px solid #111;
        text-transform: capitalize;
    }

        .options-tabs > li > i {
            margin-right: 10px;
        }

        .options-tabs > li:hover {
            cursor: pointer;
            color: #ccc;
        }

        .options-tabs > li.active {
            color: #178BC6;
            background: #2b2e31;
        }

        .options-tabs > li[disabled] {
            pointer-events: none;
            opacity: .3;
        }

.cms-non-editable {
    padding: 16px;
    background-image: url(/img/warning.png);
    background-size: 16px;
    font-weight: 700;
    color: #000;
}

.ngdialog {
    position: absolute !important;
    z-index: 999;
}

.contacts-dnd[dnd-list], .download-dnd[dnd-list], .faq-dnd[dnd-list], .link-table, .related-dnd[dnd-list], .tags-dnd[dnd-list] {
    position: relative;
}

.ngdialog .ngdialog-content {
    border: 1px solid rgba(0,0,0,.25);
    box-shadow: 0 0 16px 0 rgba(0,0,0,.25);
}

.ngdialog-overlay {
    display: none;
}

ul.colors {
    padding: 0;
}

    ul.colors li {
        width: 24px;
        height: 24px;
        display: inline-block;
        margin: 0 4px 0 0;
    }

        ul.colors li.active, ul.colors li:hover {
            cursor: pointer;
            outline: #000 solid 1px;
        }

.alias .input-group-addon {
    background-color: #1a1c1e;
    border: none;
    border-radius: 2px 0 0 2px;
    padding: 6px 10px 4px;
    color: #666;
}

.alias .form-control {
    background-color: #242629;
    padding: 2px 10px;
    border: none;
    color: #ccc;
    border-radius: 0 3px 3px;
}

    .alias .form-control::-moz-placeholder {
        color: #666;
    }

    .alias .form-control::-webkit-input-placeholder {
        color: #666;
    }

.usersCtrl .left-nav.left-nav-first {
    height: calc(40vh - 100px);
}

.usersCtrl .left-nav.left-nav-second {
    height: calc(60vh - 50px);
    top: calc(40vh + 50px);
}

.usersCtrl .user-admin, .usersCtrl .user-member {
    padding-left: 10px;
}

.usersCtrl .user-member {
    color: #178BC6;
}

.usersCtrl .user-admin {
    color: #D01C28;
}

.contacts-dnd[dnd-list] > div, .contacts-dnd[dnd-list] > li, .download-dnd[dnd-list] > div, .download-dnd[dnd-list] > li, .faq-dnd[dnd-list] > div, .faq-dnd[dnd-list] > li, .related-dnd[dnd-list] > div, .related-dnd[dnd-list] > li, .tags-dnd[dnd-list] > div, .tags-dnd[dnd-list] > li {
    position: relative;
    transition: all .1s ease;
}

    .contacts-dnd[dnd-list] > div:hover, .contacts-dnd[dnd-list] > li:hover, .download-dnd[dnd-list] > div:hover, .download-dnd[dnd-list] > li:hover, .faq-dnd[dnd-list] > div:hover, .faq-dnd[dnd-list] > li:hover, .related-dnd[dnd-list] > div:hover, .related-dnd[dnd-list] > li:hover, .tags-dnd[dnd-list] > div:hover, .tags-dnd[dnd-list] > li:hover {
        cursor: move;
        cursor: -webkit-grab;
        cursor: -moz-grab;
        -webkit-transform: translateY(-2px);
        transform: translateY(-2px);
        box-shadow: 0 2px 20px rgba(0,0,0,.3);
    }

.link-table .edit:hover, .table.dark .link-row .remove:hover, [role=button] {
    cursor: pointer;
}

.contacts-dnd[dnd-list] > div *, .contacts-dnd[dnd-list] > li *, .download-dnd[dnd-list] > div *, .download-dnd[dnd-list] > li *, .faq-dnd[dnd-list] > div *, .faq-dnd[dnd-list] > li *, .related-dnd[dnd-list] > div *, .related-dnd[dnd-list] > li *, .tags-dnd[dnd-list] > div *, .tags-dnd[dnd-list] > li * {
    pointer-events: none;
}

.contacts-dnd[dnd-list] .dndDraggingSource, .download-dnd[dnd-list] .dndDraggingSource, .faq-dnd[dnd-list] .dndDraggingSource, .related-dnd[dnd-list] .dndDraggingSource, .tags-dnd[dnd-list] .dndDraggingSource {
    display: none;
}

.contacts-dnd[dnd-list] .dndPlaceholder, .download-dnd[dnd-list] .dndPlaceholder, .faq-dnd[dnd-list] .dndPlaceholder, .related-dnd[dnd-list] .dndPlaceholder, .tags-dnd[dnd-list] .dndPlaceholder {
    display: inline-block;
    float: left;
    background-color: #eee;
}

.related-dnd[dnd-list] .dndPlaceholder {
    height: 200px;
    min-width: 24%;
}

.contacts-dnd[dnd-list] .dndPlaceholder {
    height: 200px;
    min-width: 50%;
}

.faq-dnd[dnd-list] .dndPlaceholder {
    height: 50px;
    width: 100%;
    display: block;
    float: none;
}

.tags-dnd[dnd-list] .dndPlaceholder {
    width: 100px;
    min-height: 28px;
    vertical-align: bottom;
    float: none;
    margin: -5px 10px 4px 0;
    background-color: #147baf;
}

.table.dark > tbody > tr > td.inline, .table.dark > thead > tr > th.inline, img {
    vertical-align: middle;
}

.btn-group > .btn-group, .btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .dropdown-menu {
    float: left;
}

.download-dnd[dnd-list] .dndPlaceholder {
    width: 100%;
    height: 50px;
    background-color: #147baf;
}

.link-table .edit {
    position: absolute;
    top: 2px;
    right: 10px;
    opacity: .4;
}

    .link-table .edit.fa-times {
        top: 12px;
    }

    .link-table .edit:hover {
        opacity: 1;
    }

.table.dark > tbody > tr > td, .table.dark > thead > tr > th {
    width: 50%;
    border-bottom: 1px solid #242629;
    position: relative;
    vertical-align: middle;
}

    .table.dark > tbody > tr > td.plain, .table.dark > thead > tr > th.plain {
        border: none;
    }

hr, img {
    border: 0;
}

.table.dark > tbody > tr > td.plain:after, .table.dark > thead > tr > th.plain:after {
    display: none;
}

.table.dark > tbody > tr > td:after, .table.dark > thead > tr > th:after {
    position: absolute;
    content: '';
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #3A3A3A;
}

.table.dark > tbody > tr > td.inline .form-control, .table.dark > thead > tr > th.inline .form-control {
    display: inline-block;
    width: calc(100% - 170px);
}

.table.dark > tbody > tr > td.inline label, .table.dark > thead > tr > th.inline label {
    margin-right: 20px;
}

body, figure {
    margin: 0;
}

.table.dark > tbody > tr > td.inline .autocomplete, .table.dark > thead > tr > th.inline .autocomplete {
    transition: width .15s ease;
    width: 100%;
}

.table.dark > tbody > tr > td.inline .add-route, .table.dark > thead > tr > th.inline .add-route {
    position: absolute;
    top: 9px;
    right: 0;
    padding: 9px 14px 7px;
}

.table.dark > tbody > tr > td.wide .autocomplete, .table.dark > thead > tr > th.wide .autocomplete {
    width: calc(100% - 40px);
}

.table.dark .link-row {
    position: relative;
}

    .table.dark .link-row .remove {
        color: red;
        padding: 5px;
        position: absolute;
        right: -20px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0;
    }

    .table.dark .link-row:hover .remove {
        opacity: 1;
    }

.table.dark .link-url {
    max-width: 600px;
    overflow-wrap: break-word;
    padding-right: 20px;
    word-wrap: break-word;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    -ms-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.img-responsive, .img-thumbnail, .table, label {
    max-width: 100%;
}

pre, textarea {
    overflow: auto;
}

.table.dark .redirector {
    position: absolute;
    left: -17px;
    top: 18px;
    color: #999;
}

.table.dark .map-lg {
    font-size: 14px;
    padding: 10px 16px 8px;
    position: relative;
    top: -1px;
}

    .table.dark .map-lg.form-control {
        height: 40px;
    }
/*!
 * Bootstrap v3.3.5 (http://getbootstrap.com)
 * Copyright 2011-2015 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 */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

    audio:not([controls]) {
        display: none;
        height: 0;
    }

[hidden], template {
    display: none;
}

a {
    background-color: transparent;
}

    a:active, a:hover {
        outline: 0;
    }

b, optgroup, strong {
    font-weight: 700;
}

dfn {
    font-style: italic;
}

mark {
    background: #ff0;
    color: #000;
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

svg:not(:root) {
    overflow: hidden;
}

hr {
    box-sizing: content-box;
    height: 0;
}

code, kbd, pre, samp {
    font-size: 1em;
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

.tooltip, address {
    font-style: normal;
}

button {
    overflow: visible;
}

button, select {
    text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
}

    button[disabled], html input[disabled] {
        cursor: default;
    }

    button::-moz-focus-inner, input::-moz-focus-inner {
        border: 0;
        padding: 0;
    }

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    resize: none;
}

table {
    border-spacing: 0;
}

td, th {
    padding: 0;
}
/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
    blockquote, img, pre, tr {
        page-break-inside: avoid;
    }

    *, :after, :before {
        background: 0 0 !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a, a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: "";
    }

    blockquote, pre {
        border: 1px solid #999;
    }

    thead {
        display: table-header-group;
    }

    img {
        max-width: 100% !important;
    }

    h2, h3, p {
        orphans: 3;
        widows: 3;
    }

    h2, h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

        .table td, .table th {
            background-color: #fff !important;
        }

    .table-bordered td, .table-bordered th {
        border: 1px solid #ddd !important;
    }
}

.img-thumbnail, body {
    background-color: #fff;
}

*, :after, :before {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-size: 14px;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #178BC6;
    text-decoration: none;
}

    a:focus, a:hover {
        color: #0f5b81;
    }

    a:focus {
        outline: dotted thin;
        outline: -webkit-focus-ring-color auto 5px;
        outline-offset: -2px;
    }

.img-responsive {
    display: block;
    height: auto;
}

.img-rounded {
    border-radius: 2px;
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: all .2s ease-in-out;
    display: inline-block;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-weight: 400;
        line-height: 1;
        color: #777;
    }

.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

    .h1 .small, .h1 small, .h2 .small, .h2 small, .h3 .small, .h3 small, h1 .small, h1 small, h2 .small, h2 small, h3 .small, h3 small {
        font-size: 65%;
    }

.h4, .h5, .h6, h4, h5, h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

    .h4 .small, .h4 small, .h5 .small, .h5 small, .h6 .small, .h6 small, h4 .small, h4 small, h5 .small, h5 small, h6 .small, h6 small {
        font-size: 75%;
    }

.h1, h1 {
    font-size: 36px;
}

.h2, h2 {
    font-size: 30px;
}

.h3, h3 {
    font-size: 24px;
}

.h4, h4 {
    font-size: 18px;
}

.h5, h5 {
    font-size: 14px;
}

.h6, h6 {
    font-size: 12px;
}

p {
    margin: 0 0 10px;
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

dt, kbd kbd, label {
    font-weight: 700;
}

@media (min-width:768px) {
    .lead {
        font-size: 21px;
    }
}

.small, small {
    font-size: 85%;
}

.mark, mark {
    background-color: #fcf8e3;
    padding: .2em;
}

.list-inline, .list-unstyled {
    padding-left: 0;
    list-style: none;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-lowercase {
    text-transform: lowercase;
}

.initialism, .text-uppercase {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #777;
}

.text-primary {
    color: #178BC6;
}

a.text-primary:focus, a.text-primary:hover {
    color: #126b98;
}

.text-success {
    color: #3c763d;
}

a.text-success:focus, a.text-success:hover {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:focus, a.text-info:hover {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:focus, a.text-warning:hover {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:focus, a.text-danger:hover {
    color: #843534;
}

.bg-primary {
    color: #fff;
    background-color: #178BC6;
}

a.bg-primary:focus, a.bg-primary:hover {
    background-color: #126b98;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:focus, a.bg-success:hover {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:focus, a.bg-info:hover {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:focus, a.bg-warning:hover {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:focus, a.bg-danger:hover {
    background-color: #e4b9b9;
}

pre code, table {
    background-color: transparent;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee;
}

dl, ol, ul {
    margin-top: 0;
}

    blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child, ol ol, ol ul, ul ol, ul ul {
        margin-bottom: 0;
    }

ol, ul {
    margin-bottom: 10px;
}

.list-inline {
    margin-left: -5px;
}

    .list-inline > li {
        display: inline-block;
        padding-left: 5px;
        padding-right: 5px;
    }

dl {
    margin-bottom: 20px;
}

dd, dt {
    line-height: 1.42857;
}

dd {
    margin-left: 0;
}

.dl-horizontal dd:after, .dl-horizontal dd:before {
    content: " ";
    display: table;
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .dl-horizontal dd {
        margin-left: 180px;
    }

    .container {
        width: 750px;
    }
}

abbr[data-original-title], abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #777;
}

.initialism {
    font-size: 90%;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee;
}

    blockquote .small, blockquote footer, blockquote small {
        display: block;
        font-size: 80%;
        line-height: 1.42857;
        color: #777;
    }

legend, pre {
    color: #333;
}

blockquote .small:before, blockquote footer:before, blockquote small:before {
    content: '\2014 \00A0';
}

.blockquote-reverse, blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right;
}

code, kbd {
    padding: 2px 4px;
    font-size: 90%;
    border-radius: 2px;
}

caption, th {
    text-align: left;
}

.blockquote-reverse .small:before, .blockquote-reverse footer:before, .blockquote-reverse small:before, blockquote.pull-right .small:before, blockquote.pull-right footer:before, blockquote.pull-right small:before {
    content: '';
}

.blockquote-reverse .small:after, .blockquote-reverse footer:after, .blockquote-reverse small:after, blockquote.pull-right .small:after, blockquote.pull-right footer:after, blockquote.pull-right small:after {
    content: '\00A0 \2014';
}

address {
    margin-bottom: 20px;
    line-height: 1.42857;
}

code, kbd, pre, samp {
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
}

code {
    color: #c7254e;
    background-color: #f9f2f4;
}

kbd {
    color: #fff;
    background-color: #333;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);
}

    kbd kbd {
        padding: 0;
        font-size: 100%;
        box-shadow: none;
    }

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.container-fluid:after, .container-fluid:before, .container:after, .container:before, .row:after, .row:before {
    display: table;
    content: " ";
}

.container, .container-fluid {
    margin-right: auto;
    margin-left: auto;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    border-radius: 0;
}

.container, .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

@media (min-width:992px) {
    .container {
        width: 970px;
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px;
    }
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .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-md-1, .col-md-10, .col-md-11, .col-md-12, .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-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .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-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1 {
    width: 8.33333%;
}

.col-xs-2 {
    width: 16.66667%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-4 {
    width: 33.33333%;
}

.col-xs-5 {
    width: 41.66667%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-7 {
    width: 58.33333%;
}

.col-xs-8 {
    width: 66.66667%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-10 {
    width: 83.33333%;
}

.col-xs-11 {
    width: 91.66667%;
}

.col-xs-12 {
    width: 100%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-pull-1 {
    right: 8.33333%;
}

.col-xs-pull-2 {
    right: 16.66667%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-4 {
    right: 33.33333%;
}

.col-xs-pull-5 {
    right: 41.66667%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-7 {
    right: 58.33333%;
}

.col-xs-pull-8 {
    right: 66.66667%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-10 {
    right: 83.33333%;
}

.col-xs-pull-11 {
    right: 91.66667%;
}

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-push-1 {
    left: 8.33333%;
}

.col-xs-push-2 {
    left: 16.66667%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-4 {
    left: 33.33333%;
}

.col-xs-push-5 {
    left: 41.66667%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-7 {
    left: 58.33333%;
}

.col-xs-push-8 {
    left: 66.66667%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-10 {
    left: 83.33333%;
}

.col-xs-push-11 {
    left: 91.66667%;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-offset-0 {
    margin-left: 0;
}

.col-xs-offset-1 {
    margin-left: 8.33333%;
}

.col-xs-offset-2 {
    margin-left: 16.66667%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-4 {
    margin-left: 33.33333%;
}

.col-xs-offset-5 {
    margin-left: 41.66667%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-7 {
    margin-left: 58.33333%;
}

.col-xs-offset-8 {
    margin-left: 66.66667%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-10 {
    margin-left: 83.33333%;
}

.col-xs-offset-11 {
    margin-left: 91.66667%;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

@media (min-width:768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: left;
    }

    .col-sm-1 {
        width: 8.33333%;
    }

    .col-sm-2 {
        width: 16.66667%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-4 {
        width: 33.33333%;
    }

    .col-sm-5 {
        width: 41.66667%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-7 {
        width: 58.33333%;
    }

    .col-sm-8 {
        width: 66.66667%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-10 {
        width: 83.33333%;
    }

    .col-sm-11 {
        width: 91.66667%;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-pull-1 {
        right: 8.33333%;
    }

    .col-sm-pull-2 {
        right: 16.66667%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-4 {
        right: 33.33333%;
    }

    .col-sm-pull-5 {
        right: 41.66667%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-7 {
        right: 58.33333%;
    }

    .col-sm-pull-8 {
        right: 66.66667%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-10 {
        right: 83.33333%;
    }

    .col-sm-pull-11 {
        right: 91.66667%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-push-1 {
        left: 8.33333%;
    }

    .col-sm-push-2 {
        left: 16.66667%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-4 {
        left: 33.33333%;
    }

    .col-sm-push-5 {
        left: 41.66667%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-7 {
        left: 58.33333%;
    }

    .col-sm-push-8 {
        left: 66.66667%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-10 {
        left: 83.33333%;
    }

    .col-sm-push-11 {
        left: 91.66667%;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width:992px) {
    .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9 {
        float: left;
    }

    .col-md-1 {
        width: 8.33333%;
    }

    .col-md-2 {
        width: 16.66667%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-4 {
        width: 33.33333%;
    }

    .col-md-5 {
        width: 41.66667%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-7 {
        width: 58.33333%;
    }

    .col-md-8 {
        width: 66.66667%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-10 {
        width: 83.33333%;
    }

    .col-md-11 {
        width: 91.66667%;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-pull-1 {
        right: 8.33333%;
    }

    .col-md-pull-2 {
        right: 16.66667%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-4 {
        right: 33.33333%;
    }

    .col-md-pull-5 {
        right: 41.66667%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-7 {
        right: 58.33333%;
    }

    .col-md-pull-8 {
        right: 66.66667%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-10 {
        right: 83.33333%;
    }

    .col-md-pull-11 {
        right: 91.66667%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-push-1 {
        left: 8.33333%;
    }

    .col-md-push-2 {
        left: 16.66667%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-4 {
        left: 33.33333%;
    }

    .col-md-push-5 {
        left: 41.66667%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-7 {
        left: 58.33333%;
    }

    .col-md-push-8 {
        left: 66.66667%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-10 {
        left: 83.33333%;
    }

    .col-md-push-11 {
        left: 91.66667%;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }

    .col-md-offset-1 {
        margin-left: 8.33333%;
    }

    .col-md-offset-2 {
        margin-left: 16.66667%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333%;
    }

    .col-md-offset-5 {
        margin-left: 41.66667%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333%;
    }

    .col-md-offset-8 {
        margin-left: 66.66667%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333%;
    }

    .col-md-offset-11 {
        margin-left: 91.66667%;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }
}

@media (min-width:1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: left;
    }

    .col-lg-1 {
        width: 8.33333%;
    }

    .col-lg-2 {
        width: 16.66667%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-4 {
        width: 33.33333%;
    }

    .col-lg-5 {
        width: 41.66667%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-7 {
        width: 58.33333%;
    }

    .col-lg-8 {
        width: 66.66667%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-10 {
        width: 83.33333%;
    }

    .col-lg-11 {
        width: 91.66667%;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-pull-1 {
        right: 8.33333%;
    }

    .col-lg-pull-2 {
        right: 16.66667%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-4 {
        right: 33.33333%;
    }

    .col-lg-pull-5 {
        right: 41.66667%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-7 {
        right: 58.33333%;
    }

    .col-lg-pull-8 {
        right: 66.66667%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-10 {
        right: 83.33333%;
    }

    .col-lg-pull-11 {
        right: 91.66667%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-push-1 {
        left: 8.33333%;
    }

    .col-lg-push-2 {
        left: 16.66667%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-4 {
        left: 33.33333%;
    }

    .col-lg-push-5 {
        left: 41.66667%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-7 {
        left: 58.33333%;
    }

    .col-lg-push-8 {
        left: 66.66667%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-10 {
        left: 83.33333%;
    }

    .col-lg-push-11 {
        left: 91.66667%;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
}

.table {
    width: 100%;
    margin-bottom: 20px;
}

    .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
        padding: 8px;
        line-height: 1.42857;
        vertical-align: top;
        border-top: 1px solid #ddd;
    }

    .table > thead > tr > th {
        vertical-align: bottom;
        border-bottom: 2px solid #ddd;
    }

    .table > caption + thead > tr:first-child > td, .table > caption + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > thead:first-child > tr:first-child > td, .table > thead:first-child > tr:first-child > th {
        border-top: 0;
    }

    .table > tbody + tbody {
        border-top: 2px solid #ddd;
    }

    .table .table {
        background-color: #fff;
    }

.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
    padding: 5px;
}

.table-bordered, .table-bordered > tbody > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
    border: 1px solid #ddd;
}

    .table-bordered > thead > tr > td, .table-bordered > thead > tr > th {
        border-bottom-width: 2px;
    }

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover, .table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > thead > tr > td.active, .table > thead > tr > th.active {
    background-color: #f5f5f5;
}

table col[class*=col-] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*=col-], table th[class*=col-] {
    position: static;
    float: none;
    display: table-cell;
}

.table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr.active:hover > th, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover {
    background-color: #e8e8e8;
}

.table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > thead > tr > td.success, .table > thead > tr > th.success {
    background-color: #dff0d8;
}

.table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr.success:hover > th, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover {
    background-color: #d0e9c6;
}

.table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > thead > tr > td.info, .table > thead > tr > th.info {
    background-color: #d9edf7;
}

.table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr.info:hover > th, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover {
    background-color: #c4e3f3;
}

.table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > thead > tr > td.warning, .table > thead > tr > th.warning {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr.warning:hover > th, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover {
    background-color: #faf2cc;
}

.table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > thead > tr > td.danger, .table > thead > tr > th.danger {
    background-color: #f2dede;
}

.table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr.danger:hover > th, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover {
    background-color: #ebcccc;
}

.table-responsive {
    overflow-x: auto;
    min-height: .01%;
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd;
    }

        .table-responsive > .table {
            margin-bottom: 0;
        }

            .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tfoot > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > thead > tr > th {
                white-space: nowrap;
            }

        .table-responsive > .table-bordered {
            border: 0;
        }

            .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > thead > tr > th:first-child {
                border-left: 0;
            }

            .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > thead > tr > th:last-child {
                border-right: 0;
            }

            .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th {
                border-bottom: 0;
            }
}

.collapsing, .embed-responsive, .media, .media-body, .modal, .modal-open, .nav .nav-divider, .progress {
    overflow: hidden;
}

fieldset {
    min-width: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    margin-bottom: 5px;
}

input[type=search] {
    box-sizing: border-box;
    -webkit-appearance: none;
}

input[type=checkbox], input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px\9;
    line-height: normal;
}

.form-control, output {
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    display: block;
}

input[type=file] {
    display: block;
}

input[type=range] {
    display: block;
    width: 100%;
}

select[multiple], select[size] {
    height: auto;
}

input[type=file]:focus, input[type=checkbox]:focus, input[type=radio]:focus {
    outline: dotted thin;
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px;
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle, .btn.active, .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active, .btn:active.focus, .btn:active:focus, .btn:focus, .dropdown-toggle:focus, .form-control:focus, .modal, .modal-content, .open > a {
    outline: 0;
}

output {
    padding-top: 7px;
}

.form-control {
    width: 100%;
    height: 34px;
    padding: 6px 16px;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 2px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.btn-danger, .btn-default, .btn-info, .btn-primary, .btn-success, .btn-warning {
    transition: all .2s ease;
}

.form-control:focus {
    border-color: #66afe9;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
}

.form-control::-webkit-input-placeholder {
    color: #999;
}

.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .form-control-feedback, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
    color: #3c763d;
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1;
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed;
}

textarea.form-control {
    height: auto;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type=date].form-control, input[type=time].form-control, input[type=datetime-local].form-control, input[type=month].form-control {
        line-height: 34px;
    }

    .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], .input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm > .input-group-btn > input[type=time].btn, .input-group-sm > .input-group-btn > input[type=datetime-local].btn, .input-group-sm > .input-group-btn > input[type=month].btn, .input-group-sm > input[type=date].form-control, .input-group-sm > input[type=date].input-group-addon, .input-group-sm > input[type=time].form-control, .input-group-sm > input[type=time].input-group-addon, .input-group-sm > input[type=datetime-local].form-control, .input-group-sm > input[type=datetime-local].input-group-addon, .input-group-sm > input[type=month].form-control, .input-group-sm > input[type=month].input-group-addon, input[type=date].input-sm, input[type=time].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm {
        line-height: 30px;
    }

    .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], .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg > .input-group-btn > input[type=time].btn, .input-group-lg > .input-group-btn > input[type=datetime-local].btn, .input-group-lg > .input-group-btn > input[type=month].btn, .input-group-lg > input[type=date].form-control, .input-group-lg > input[type=date].input-group-addon, .input-group-lg > input[type=time].form-control, .input-group-lg > input[type=time].input-group-addon, .input-group-lg > input[type=datetime-local].form-control, .input-group-lg > input[type=datetime-local].input-group-addon, .input-group-lg > input[type=month].form-control, .input-group-lg > input[type=month].input-group-addon, input[type=date].input-lg, input[type=time].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg {
        line-height: 38px;
    }
}

.form-group {
    margin-bottom: 15px;
}

.checkbox, .radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .checkbox label, .radio label {
        min-height: 20px;
        padding-left: 20px;
        margin-bottom: 0;
        font-weight: 400;
        cursor: pointer;
    }

    .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
        position: absolute;
        margin-left: -20px;
        margin-top: 4px;\9
    }

    .checkbox + .checkbox, .radio + .radio {
        margin-top: -5px;
    }

.checkbox-inline, .radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer;
}

    .checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
        margin-top: 0;
        margin-left: 10px;
    }

    .checkbox-inline.disabled, .checkbox.disabled label, .radio-inline.disabled, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio label, fieldset[disabled] .radio-inline, fieldset[disabled] input[type=checkbox], fieldset[disabled] input[type=radio], input[type=checkbox].disabled, input[type=checkbox][disabled], input[type=radio].disabled, input[type=radio][disabled] {
        cursor: not-allowed;
    }

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px;
}

    .form-control-static.input-lg, .form-control-static.input-sm, .input-group-lg > .form-control-static.form-control, .input-group-lg > .form-control-static.input-group-addon, .input-group-lg > .input-group-btn > .form-control-static.btn, .input-group-sm > .form-control-static.form-control, .input-group-sm > .form-control-static.input-group-addon, .input-group-sm > .input-group-btn > .form-control-static.btn {
        padding-left: 0;
        padding-right: 0;
    }

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn, .input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.input-group-sm > .input-group-btn > select.btn, .input-group-sm > select.form-control, .input-group-sm > select.input-group-addon, select.input-sm {
    height: 30px;
    line-height: 30px;
}

.input-group-sm > .input-group-btn > select[multiple].btn, .input-group-sm > .input-group-btn > textarea.btn, .input-group-sm > select[multiple].form-control, .input-group-sm > select[multiple].input-group-addon, .input-group-sm > textarea.form-control, .input-group-sm > textarea.input-group-addon, select[multiple].input-sm, textarea.input-sm {
    height: auto;
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}

.form-group-sm select[multiple].form-control, .form-group-sm textarea.form-control {
    height: auto;
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn, .input-lg {
    height: 38px;
    padding: 6px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 2px;
}

.input-group-lg > .input-group-btn > select.btn, .input-group-lg > select.form-control, .input-group-lg > select.input-group-addon, select.input-lg {
    height: 38px;
    line-height: 38px;
}

.input-group-lg > .input-group-btn > select[multiple].btn, .input-group-lg > .input-group-btn > textarea.btn, .input-group-lg > select[multiple].form-control, .input-group-lg > select[multiple].input-group-addon, .input-group-lg > textarea.form-control, .input-group-lg > textarea.input-group-addon, select[multiple].input-lg, textarea.input-lg {
    height: auto;
}

.form-group-lg .form-control {
    height: 38px;
    padding: 6px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 2px;
}

.form-group-lg select.form-control {
    height: 38px;
    line-height: 38px;
}

.form-group-lg select[multiple].form-control, .form-group-lg textarea.form-control {
    height: auto;
}

.form-group-lg .form-control-static {
    height: 38px;
    min-height: 38px;
    padding: 7px 16px;
    font-size: 18px;
    line-height: 1.33333;
}

.has-feedback {
    position: relative;
}

    .has-feedback .form-control {
        padding-right: 42.5px;
    }

.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;
}

.collapsing, .dropdown, .dropup {
    position: relative;
}

.form-group-lg .form-control + .form-control-feedback, .input-group-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .input-lg + .form-control-feedback {
    width: 38px;
    height: 38px;
    line-height: 38px;
}

.form-group-sm .form-control + .form-control-feedback, .input-group-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .input-sm + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

    .has-success .form-control:focus {
        border-color: #2b542c;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;
    }

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8;
}

.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .has-warning .form-control-feedback, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.checkbox label, .has-warning.checkbox-inline label, .has-warning.radio label, .has-warning.radio-inline label {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

    .has-warning .form-control:focus {
        border-color: #66512c;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;
    }

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3;
}

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .has-error .form-control-feedback, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
    color: #a94442;
}

.has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

    .has-error .form-control:focus {
        border-color: #843534;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;
    }

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede;
}

.has-feedback label ~ .form-control-feedback {
    top: 25px;
}

.has-feedback label.sr-only ~ .form-control-feedback {
    top: 0;
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373;
}

@media (min-width:768px) {
    .form-inline .form-control-static, .form-inline .form-group {
        display: inline-block;
    }

    .form-inline .control-label, .form-inline .form-group {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

        .form-inline .input-group .form-control, .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn {
            width: auto;
        }

        .form-inline .input-group > .form-control {
            width: 100%;
        }

    .form-inline .checkbox, .form-inline .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

        .form-inline .checkbox label, .form-inline .radio label {
            padding-left: 0;
        }

        .form-inline .checkbox input[type=checkbox], .form-inline .radio input[type=radio] {
            position: relative;
            margin-left: 0;
        }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }

    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px;
    }
}

.form-horizontal .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px;
}

.form-horizontal .checkbox, .form-horizontal .radio {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px;
}

    .form-horizontal .form-group:after, .form-horizontal .form-group:before {
        content: " ";
        display: table;
    }

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 9px;
        font-size: 18px;
    }

    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 16px 4px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 2px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .btn.icon-left .fa {
        margin-right: 10px;
    }

    .btn.icon-right .fa {
        margin-left: 10px;
    }

    .btn.focus, .btn:focus, .btn:hover {
        color: #333;
        text-decoration: none;
    }

    .btn.active, .btn:active {
        background-image: none;
    }

    .btn.disabled, .btn[disabled], fieldset[disabled] .btn {
        cursor: not-allowed;
        opacity: .65;
        filter: alpha(opacity=65);
        box-shadow: none;
    }

a.btn.disabled, fieldset[disabled] a.btn {
    pointer-events: none;
}

.btn-default {
    color: #333;
    background-color: #fff;
}

    .btn-default.focus, .btn-default:focus {
        color: #333;
    }

    .btn-default:hover {
        color: #333;
        background-color: #e6e6e6;
    }

    .btn-default.active, .btn-default:active, .open > .btn-default.dropdown-toggle {
        color: #333;
        background-image: none;
    }

        .btn-default.active.focus, .btn-default.active:focus, .btn-default.active:hover, .btn-default:active.focus, .btn-default:active:focus, .btn-default:active:hover, .open > .btn-default.dropdown-toggle.focus, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle:hover {
            color: #333;
            background-color: #d4d4d4;
        }

    .btn-default.disabled, .btn-default.disabled.active, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled:focus, .btn-default.disabled:hover, .btn-default[disabled], .btn-default[disabled].active, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled]:focus, .btn-default[disabled]:hover, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default.active, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default:hover {
        background-color: #fff;
    }

    .btn-default .badge {
        color: #fff;
        background-color: #333;
    }

.btn-primary {
    color: #fff;
    background-color: #178BC6;
}

    .btn-primary.focus, .btn-primary:focus {
        color: #fff;
    }

    .btn-primary:hover {
        color: #fff;
        background-color: #126b98;
    }

    .btn-primary.active, .btn-primary:active, .open > .btn-primary.dropdown-toggle {
        color: #fff;
        background-image: none;
    }

        .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .btn-primary.dropdown-toggle.focus, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle:hover {
            color: #fff;
            background-color: #0e5478;
        }

    .btn-primary.disabled, .btn-primary.disabled.active, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled], .btn-primary[disabled].active, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary.active, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
        background-color: #178BC6;
    }

    .btn-primary .badge {
        color: #178BC6;
        background-color: #fff;
    }

.btn-success {
    color: #fff;
    background-color: #5cb85c;
}

    .btn-success.focus, .btn-success:focus {
        color: #fff;
    }

    .btn-success:hover {
        color: #fff;
        background-color: #449d44;
    }

    .btn-success.active, .btn-success:active, .open > .btn-success.dropdown-toggle {
        color: #fff;
        background-image: none;
    }

        .btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .btn-success.dropdown-toggle.focus, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle:hover {
            color: #fff;
            background-color: #398439;
        }

    .btn-success.disabled, .btn-success.disabled.active, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled:focus, .btn-success.disabled:hover, .btn-success[disabled], .btn-success[disabled].active, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled]:focus, .btn-success[disabled]:hover, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success.active, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success:hover {
        background-color: #5cb85c;
    }

    .btn-success .badge {
        color: #5cb85c;
        background-color: #fff;
    }

.btn-info {
    color: #fff;
    background-color: #5bc0de;
}

    .btn-info.focus, .btn-info:focus {
        color: #fff;
    }

    .btn-info:hover {
        color: #fff;
        background-color: #31b0d5;
    }

    .btn-info.active, .btn-info:active, .open > .btn-info.dropdown-toggle {
        color: #fff;
        background-image: none;
    }

        .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .btn-info.dropdown-toggle.focus, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle:hover {
            color: #fff;
            background-color: #269abc;
        }

    .btn-info.disabled, .btn-info.disabled.active, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled:focus, .btn-info.disabled:hover, .btn-info[disabled], .btn-info[disabled].active, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled]:focus, .btn-info[disabled]:hover, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info.active, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info:hover {
        background-color: #5bc0de;
    }

    .btn-info .badge {
        color: #5bc0de;
        background-color: #fff;
    }

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
}

    .btn-warning.focus, .btn-warning:focus {
        color: #fff;
    }

    .btn-warning:hover {
        color: #fff;
        background-color: #ec971f;
    }

    .btn-warning.active, .btn-warning:active, .open > .btn-warning.dropdown-toggle {
        color: #fff;
        background-image: none;
    }

        .btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .btn-warning.dropdown-toggle.focus, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle:hover {
            color: #fff;
            background-color: #d58512;
        }

    .btn-warning.disabled, .btn-warning.disabled.active, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled:focus, .btn-warning.disabled:hover, .btn-warning[disabled], .btn-warning[disabled].active, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled]:focus, .btn-warning[disabled]:hover, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning.active, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning:hover {
        background-color: #f0ad4e;
    }

    .btn-warning .badge {
        color: #f0ad4e;
        background-color: #fff;
    }

.btn-danger {
    color: #fff;
    background-color: #d9534f;
}

    .btn-danger.focus, .btn-danger:focus {
        color: #fff;
    }

    .btn-danger:hover {
        color: #fff;
        background-color: #c9302c;
    }

    .btn-danger.active, .btn-danger:active, .open > .btn-danger.dropdown-toggle {
        color: #fff;
        background-image: none;
    }

        .btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .btn-danger.dropdown-toggle.focus, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle:hover {
            color: #fff;
            background-color: #ac2925;
        }

    .btn-danger.disabled, .btn-danger.disabled.active, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled:focus, .btn-danger.disabled:hover, .btn-danger[disabled], .btn-danger[disabled].active, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled]:focus, .btn-danger[disabled]:hover, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger.active, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger:hover {
        background-color: #d9534f;
    }

    .btn-danger .badge {
        color: #d9534f;
        background-color: #fff;
    }

.btn-link {
    color: #178BC6;
    font-weight: 400;
    border-radius: 0;
}

    .btn-link, .btn-link.active, .btn-link:active, .btn-link[disabled], fieldset[disabled] .btn-link {
        background-color: transparent;
        box-shadow: none;
    }

        .btn-link, .btn-link:active, .btn-link:focus, .btn-link:hover {
            border-color: transparent;
        }

            .btn-link:focus, .btn-link:hover {
                color: #0f5b81;
                text-decoration: underline;
                background-color: transparent;
            }

            .btn-link[disabled]:focus, .btn-link[disabled]:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:hover {
                color: #777;
                text-decoration: none;
            }

.btn-group-lg > .btn, .btn-lg {
    padding: 6px 16px 4px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 2px;
}

.btn-group-sm > .btn, .btn-group-xs > .btn, .btn-sm, .btn-xs {
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px;
}

.btn-group-sm > .btn, .btn-sm {
    padding: 5px 10px 3px;
}

.btn-block {
    display: block;
    width: 100%;
}

    .btn-block + .btn-block {
        margin-top: 5px;
    }

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    transition: opacity .15s linear;
}

    .fade.in {
        opacity: 1;
    }

.collapse {
    display: none;
}

    .collapse.in {
        display: block;
    }

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    height: 0;
    transition-property: height,visibility;
    transition-duration: .35s;
    transition-timing-function: ease;
}

.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;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 2px;
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
    background-clip: padding-box;
}

    .dropdown-menu-right, .dropdown-menu.pull-right {
        left: auto;
        right: 0;
    }

    .dropdown-header, .dropdown-menu > li > a {
        display: block;
        padding: 3px 20px;
        line-height: 1.42857;
        white-space: nowrap;
    }

.btn-group-vertical > .btn:not(:first-child):not(:last-child), .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn, .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu > li > a {
    clear: both;
    font-weight: 400;
    color: #333;
}

    .dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
        text-decoration: none;
        color: #262626;
        background-color: #f5f5f5;
    }

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #178BC6;
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
    color: #777;
}

    .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
        text-decoration: none;
        background-color: transparent;
        background-image: none;
        filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
        cursor: not-allowed;
    }

.progress-bar-striped, .progress-striped .progress-bar, .progress-striped .progress-bar-danger, .progress-striped .progress-bar-info, .progress-striped .progress-bar-success, .progress-striped .progress-bar-warning {
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
}

.open > .dropdown-menu {
    display: block;
}

.dropdown-menu-left {
    left: 0;
    right: auto;
}

.dropdown-header {
    font-size: 12px;
    color: #777;
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990;
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto;
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid\9;
    content: "";
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width:768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto;
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

    .btn-group-vertical > .btn, .btn-group > .btn {
        position: relative;
        float: left;
    }

        .btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
            z-index: 2;
        }

    .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
        margin-left: -1px;
    }

.btn-toolbar {
    margin-left: -5px;
}

    .btn-toolbar:after, .btn-toolbar:before {
        content: " ";
        display: table;
    }

    .btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
        margin-left: 5px;
    }

.btn .caret, .btn-group > .btn:first-child {
    margin-left: 0;
}

    .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
        border-bottom-right-radius: 0;
        border-top-right-radius: 0;
    }

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px;
}

.btn-group-lg.btn-group > .btn + .dropdown-toggle, .btn-group > .btn-lg + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px;
}

.btn-group.open .dropdown-toggle {
    box-shadow: inset 0 3px 5px rgba(0,0,0,.125);
}

    .btn-group.open .dropdown-toggle.btn-link {
        box-shadow: none;
    }

.btn-group-lg > .btn .caret, .btn-lg .caret {
    border-width: 5px 5px 0;
}

.dropup .btn-group-lg > .btn .caret, .dropup .btn-lg .caret {
    border-width: 0 5px 5px;
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

    .btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before {
        content: " ";
        display: table;
    }

    .btn-group-vertical > .btn-group > .btn {
        float: none;
    }

    .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
        margin-top: -1px;
        margin-left: 0;
    }

    .btn-group-vertical > .btn:first-child:not(:last-child) {
        border-top-right-radius: 2px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn:last-child:not(:first-child) {
        border-bottom-left-radius: 2px;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn, .input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
        border-radius: 0;
    }

    .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

    .btn-group-justified > .btn, .btn-group-justified > .btn-group {
        float: none;
        display: table-cell;
        width: 1%;
    }

        .btn-group-justified > .btn-group .btn {
            width: 100%;
        }

        .btn-group-justified > .btn-group .dropdown-menu {
            left: auto;
        }

[data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
    position: absolute;
    clip: rect(0,0,0,0);
    pointer-events: none;
}

.input-group, .input-group-btn, .input-group-btn > .btn {
    position: relative;
}

.input-group {
    display: table;
    border-collapse: separate;
}

    .input-group[class*=col-] {
        float: none;
        padding-left: 0;
        padding-right: 0;
    }

    .input-group .form-control {
        position: relative;
        z-index: 2;
        float: left;
        width: 100%;
        margin-bottom: 0;
    }

    .input-group .form-control, .input-group-addon, .input-group-btn {
        display: table-cell;
    }

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 6px 16px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.alert .alert-link, .label {
    font-weight: 700;
}

.input-group-addon.input-sm, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 2px;
}

.input-group-addon.input-lg, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 6px 16px;
    font-size: 18px;
    border-radius: 2px;
}

.input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
    margin-top: 0;
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}

.input-group-addon:first-child {
    border-right: 0;
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.input-group-addon:last-child {
    border-left: 0;
}

.input-group-btn {
    font-size: 0;
    white-space: nowrap;
}

    .input-group-btn > .btn + .btn {
        margin-left: -1px;
    }

    .input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
        z-index: 2;
    }

    .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
        margin-right: -1px;
    }

    .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
        z-index: 2;
        margin-left: -1px;
    }

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

    .nav:after, .nav:before {
        content: " ";
        display: table;
    }

    .nav > li, .nav > li > a {
        display: block;
        position: relative;
    }

        .nav > li > a {
            padding: 10px 15px;
        }

            .nav > li > a:focus, .nav > li > a:hover {
                text-decoration: none;
                background-color: #eee;
            }

        .nav > li.disabled > a {
            color: #777;
        }

            .nav > li.disabled > a:focus, .nav > li.disabled > a:hover {
                color: #777;
                text-decoration: none;
                background-color: transparent;
                cursor: not-allowed;
            }

    .nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
        background-color: #eee;
        border-color: #178BC6;
    }

    .nav .nav-divider {
        height: 1px;
        margin: 9px 0;
        background-color: #e5e5e5;
    }

    .nav > li > a > img {
        max-width: none;
    }

.nav-tabs {
    border-bottom: 1px solid #ddd;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857;
            border: 1px solid transparent;
            border-radius: 2px 2px 0 0;
        }

            .nav-tabs > li > a:hover {
                border-color: #eee #eee #ddd;
            }

        .nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
            color: #555;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent;
            cursor: default;
        }

.nav-pills > li {
    float: left;
}

.nav-justified > li, .nav-stacked > li, .nav-tabs.nav-justified > li {
    float: none;
}

.nav-pills > li > a {
    border-radius: 2px;
}

.nav-pills > li + li {
    margin-left: 2px;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    color: #fff;
    background-color: #178BC6;
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
}

.nav-justified, .nav-tabs.nav-justified {
    width: 100%;
}

    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        text-align: center;
        margin-bottom: 5px;
    }

    .nav-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto;
    }

.nav-tabs-justified, .nav-tabs.nav-justified {
    border-bottom: 0;
}

    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-right: 0;
        border-radius: 2px;
    }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
        border: 1px solid #ddd;
    }

@media (min-width:768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

        .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
            margin-bottom: 0;
        }

        .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
            border-bottom: 1px solid #ddd;
            border-radius: 2px 2px 0 0;
        }

    .nav-tabs-justified > .active > a, .nav-tabs-justified > .active > a:focus, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
        border-bottom-color: #fff;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 2px;
}

    .label, .pagination > li {
        display: inline;
    }

.alert, .thumbnail {
    margin-bottom: 20px;
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 16px;
    line-height: 1.42857;
    text-decoration: none;
    color: #178BC6;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span, .pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span, .pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    z-index: 3;
    color: #0f5b81;
    background-color: #eee;
    border-color: #ddd;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 2;
    color: #fff;
    background-color: #178BC6;
    border-color: #178BC6;
    cursor: default;
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed;
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 6px 16px;
    font-size: 18px;
    line-height: 1.33333;
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.label {
    padding: .2em .6em .3em;
    font-size: 75%;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em;
}

    .label:empty {
        display: none;
    }

.media-object, .thumbnail {
    display: block;
}

.btn .label {
    position: relative;
    top: -1px;
}

a.label:focus, a.label:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

.label-default {
    background-color: #777;
}

    .label-default[href]:focus, .label-default[href]:hover {
        background-color: #5e5e5e;
    }

.label-primary {
    background-color: #178BC6;
}

    .label-primary[href]:focus, .label-primary[href]:hover {
        background-color: #126b98;
    }

.label-success {
    background-color: #5cb85c;
}

    .label-success[href]:focus, .label-success[href]:hover {
        background-color: #449d44;
    }

.label-info {
    background-color: #5bc0de;
}

    .label-info[href]:focus, .label-info[href]:hover {
        background-color: #31b0d5;
    }

.label-warning {
    background-color: #f0ad4e;
}

    .label-warning[href]:focus, .label-warning[href]:hover {
        background-color: #ec971f;
    }

.label-danger {
    background-color: #d9534f;
}

    .label-danger[href]:focus, .label-danger[href]:hover {
        background-color: #c9302c;
    }

.thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    transition: border .2s ease-in-out;
}

    .thumbnail a > img, .thumbnail > img {
        display: block;
        max-width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .thumbnail .caption {
        padding: 9px;
        color: #333;
    }

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
    border-color: #178BC6;
}

.alert {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 2px;
}

    .alert h4 {
        margin-top: 0;
        color: inherit;
    }

    .alert > p, .alert > ul {
        margin-bottom: 0;
    }

        .alert > p + p {
            margin-top: 5px;
        }

.alert-dismissable, .alert-dismissible {
    padding-right: 35px;
}

    .alert-dismissable .close, .alert-dismissible .close {
        position: relative;
        top: -2px;
        right: -21px;
        color: inherit;
    }

.modal, .modal-backdrop {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d;
}

    .alert-success hr {
        border-top-color: #c9e2b3;
    }

    .alert-success .alert-link {
        color: #2b542c;
    }

.alert-info {
    background-color: #d9edf7;
    color: #31708f;
}

    .alert-info hr {
        border-top-color: #a6e1ec;
    }

    .alert-info .alert-link {
        color: #245269;
    }

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b;
}

    .alert-warning hr {
        border-top-color: #f7e1b5;
    }

    .alert-warning .alert-link {
        color: #66512c;
    }

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442;
}

    .alert-danger hr {
        border-top-color: #e4b9c0;
    }

    .alert-danger .alert-link {
        color: #843534;
    }

@-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;
    }
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #178BC6;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    transition: width .6s ease;
}

.progress-bar-striped, .progress-striped .progress-bar {
    background-size: 40px 40px;
}

.progress-bar.active, .progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.progress-bar-success {
    background-color: #5cb85c;
}

.progress-bar-info {
    background-color: #5bc0de;
}

.progress-bar-warning {
    background-color: #f0ad4e;
}

.progress-bar-danger {
    background-color: #d9534f;
}

.media {
    margin-top: 15px;
}

    .media:first-child {
        margin-top: 0;
    }

.media, .media-body {
    zoom: 1;
}

.media-body {
    width: 10000px;
}

.media-object.img-thumbnail {
    max-width: none;
}

.media-right, .media > .pull-right {
    padding-left: 10px;
}

.media-left, .media > .pull-left {
    padding-right: 10px;
}

.media-body, .media-left, .media-right {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
}

    .embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        height: 100%;
        width: 100%;
        border: 0;
    }

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate(0,-25%);
        transform: translate(0,-25%);
        transition: -webkit-transform .3s ease-out;
        transition: transform .3s ease-out;
        transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 2px;
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    background-clip: padding-box;
}

.modal-backdrop {
    position: fixed;
    z-index: 1040;
    background-color: #000;
}

    .modal-backdrop.fade {
        opacity: 0;
        filter: alpha(opacity=0);
    }

    .modal-backdrop.in {
        opacity: .5;
        filter: alpha(opacity=50);
    }

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.43px;
}

    .modal-header .close {
        margin-top: -2px;
    }

.modal-title {
    margin: 0;
    line-height: 1.42857;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

    .modal-footer:after, .modal-footer:before {
        content: " ";
        display: table;
    }

    .modal-footer .btn + .btn {
        margin-left: 5px;
        margin-bottom: 0;
    }

    .modal-footer .btn-group .btn + .btn {
        margin-left: -1px;
    }

    .modal-footer .btn-block + .btn-block {
        margin-left: 0;
    }

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}

.img-placeholder, .list-items > li, .media-box .media-box-content, .socialbuttons {
    overflow: hidden;
}

@media (min-width:768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        box-shadow: 0 5px 15px rgba(0,0,0,.5);
    }

    .modal-sm {
        width: 300px;
    }
}

.tooltip.top-left .tooltip-arrow, .tooltip.top-right .tooltip-arrow {
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
    bottom: 0;
}

@media (min-width:992px) {
    .modal-lg {
        width: 900px;
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0);
}

    .tooltip.in {
        opacity: .9;
        filter: alpha(opacity=90);
    }

    .tooltip.top {
        margin-top: -3px;
        padding: 5px 0;
    }

    .tooltip.right {
        margin-left: 3px;
        padding: 0 5px;
    }

    .tooltip.bottom {
        margin-top: 3px;
        padding: 5px 0;
    }

    .tooltip.left {
        margin-left: -3px;
        padding: 0 5px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 2px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
}

.tooltip.top-right .tooltip-arrow {
    left: 5px;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow, .tooltip.bottom-left .tooltip-arrow, .tooltip.bottom-right .tooltip-arrow {
    top: 0;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    left: 50%;
    margin-left: -5px;
}

.tooltip.bottom-left .tooltip-arrow {
    right: 5px;
    margin-top: -5px;
}

.tooltip.bottom-right .tooltip-arrow {
    left: 5px;
    margin-top: -5px;
}

.clearfix:after, .clearfix:before {
    content: " ";
    display: table;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.hidden, .visible-lg, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-sm, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xs, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

h1, h3 {
    font-weight: 700;
}

.affix {
    position: fixed;
}

@-ms-viewport {
    width: device-width;
}

@media (max-width:767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    td.visible-xs, th.visible-xs {
        display: table-cell !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table !important;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    td.visible-sm, th.visible-sm {
        display: table-cell !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table !important;
    }

    tr.visible-md {
        display: table-row !important;
    }

    td.visible-md, th.visible-md {
        display: table-cell !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width:1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table !important;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    td.visible-lg, th.visible-lg {
        display: table-cell !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }

    .hidden-lg {
        display: none !important;
    }
}

@media (max-width:767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .hidden-md {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table !important;
    }

    tr.visible-print {
        display: table-row !important;
    }

    td.visible-print, th.visible-print {
        display: table-cell !important;
    }
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }

    .hidden-print {
        display: none !important;
    }
}

@font-face {
    font-family: CentraleSansBook;
    src: url(https://www.crsc.philips.com/crsc/images/093d4fa4af732b00118797af560f9e2f.eot);
    src: url(https://www.crsc.philips.com/crsc/images/093d4fa4af732b00118797af560f9e2f.eot?#iefix) format('embedded-opentype'), url(https://www.crsc.philips.com/crsc/images/2e7d0791a9a32be9a98c25cb6a2df8ef.woff2) format('woff2'), url(https://www.crsc.philips.com/crsc/images/cbf75e79afb2e3240b2b2a3661d2acd9.woff) format('woff'), url(https://www.crsc.philips.com/crsc/images/b05ceb8f194e1d1cfc575d7853c022d4.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: CentraleSansLight;
    src: url(https://www.crsc.philips.com/crsc/images/b67b3b31681bedd79f87a66bf56c8a98.eot);
    src: url(https://www.crsc.philips.com/crsc/images/b67b3b31681bedd79f87a66bf56c8a98.eot?#iefix) format('embedded-opentype'), url(https://www.crsc.philips.com/crsc/images/c4b335aca9b5fad6d4945a987b1c3f31.woff2) format('woff2'), url(https://www.crsc.philips.com/crsc/images/dea2b53e43e10f88d8431799b9b98fb5.woff) format('woff'), url(https://www.crsc.philips.com/crsc/images/b01538eef5085ed4f21ffbfb2f395920.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: CentraleSansBold;
    src: url(https://www.crsc.philips.com/crsc/images/05d584a74aa50187a115fcc2dfd2f1fc.eot);
    src: url(https://www.crsc.philips.com/crsc/images/05d584a74aa50187a115fcc2dfd2f1fc.eot?#iefix) format('embedded-opentype'), url(https://www.crsc.philips.com/crsc/images/c2ce0c0314c039a40f539267b4b5a70e.woff2) format('woff2'), url(https://www.crsc.philips.com/crsc/images/26cb2993670ec9da5251494dbf0a1a89.woff) format('woff'), url(https://www.crsc.philips.com/crsc/images/0c1185d6048c311d47e3ff0721914a0e.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: philips-global-icon-font;
    src: url(/Resources/fonts/philips-global-icon-font.eot);
    src: url(/Resources/fonts/philips-global-icon-font.eot?#iefix) format("embedded-opentype"),url(/Resources/fonts/philips-global-icon-font.woff) format("woff"),url(/Resources/fonts/philips-global-icon-font.ttf) format("truetype"),url(/Resources/fonts/philips-global-icon-font.svg#philips-global-icon-font) format("svg");
}

::selection {
    background: #178BC6;
    color: #fff;
}

::-moz-selection {
    background: #178BC6;
    color: #fff;
}

.fa.ng-hide {
    display: none !important;
}

a .fa-angle-right {
    margin-left: 10px;
    transition: -webkit-transform .3s cubic-bezier(.7,0,.3,1);
    transition: transform .3s cubic-bezier(.7,0,.3,1);
    transition: transform .3s cubic-bezier(.7,0,.3,1),-webkit-transform .3s cubic-bezier(.7,0,.3,1);
}

a:hover .fa-angle-right {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
}

b, strong {
    font-family: CentraleSansBold,sans-serif;
}

i.fa {
    position: relative;
}

    i.fa > .fa {
        position: absolute;
        font-size: .5em;
        top: -3px;
        left: 120%;
    }

h1, h2, h3 {
    margin: 0;
}

h3 {
    font-size: 21px;
    margin-bottom: 5px;
}

h1 {
    font-size: 34px;
}

.divide {
    position: relative;
    top: -1px;
    font-family: Verdana,sans-serif;
    padding: 0 5px;
}

    .divide:after {
        content: '/';
    }

h3.section-header {
    margin-bottom: 26px;
    font-weight: 400;
    font-size: 18px;
}

.text-small {
    font-size: .9em;
}

.list-link {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

    .list-link > li {
        margin: 10px 0;
    }

.cms-text.subtitle, h1.title, h1.title-small, h2.subtitle, h2.subtitle-small {
    color: #fff;
    font-size: 30px;
    text-shadow: 0 0 4px rgba(0,0,0,.2);
}

h1.title {
    line-height: 1;
}

h1.title-small {
    font-size: 50px;
}

.cms-text.subtitle, h2.subtitle, h2.subtitle-small {
    font-family: CentraleSansLight,Helvetica,sans-serif;
}

h2.subtitle-small {
    font-size: 30px;
    top: -140px;
}

ul {
    margin: 20px 0;
}

    ul.simple {
        margin: 0 0 0 20px;
    }

        ul.simple li {
            display: list-item;
        }

.cms-text [marked] {
    width: 100%;
    margin-bottom: 26px;
}

.cms-text:not(.intro) ul {
    line-height: 22px;
    position: relative;
    left: 10px;
}

.cms-text img {
    max-width: none;
    width: 280px;
}

.ultra-dark-blue-background {
    background: #09142e;
}

.ultra-dark-blue-color {
    color: #09142e;
}

.very-dark-blue-background {
    background: #0f204b;
}

.very-dark-blue-color {
    color: #0f204b;
}

.dark-blue-background {
    background: #003478;
}

.dark-blue-color {
    color: #003478;
}

.bright-blue-background {
    background: #0066a1;
}

.bright-blue-color {
    color: #0066a1;
}

.light-blue-background {
    background: #7ba4d9;
}

.light-blue-color {
    color: #7ba4d9;
}

.very-light-blue-background {
    background: #b3c8e6;
}

.very-light-blue-color {
    color: #b3c8e6;
}

.ultra-light-blue-background {
    background: #d3deed;
}

.ultra-light-blue-color {
    color: #d3deed;
}

.ultra-dark-aqua-background {
    background: #132d36;
}

.ultra-dark-aqua-color {
    color: #132d36;
}

.very-dark-aqua-background {
    background: #22505f;
}

.very-dark-aqua-color {
    color: #22505f;
}

.dark-aqua-background {
    background: #156570;
}

.dark-aqua-color {
    color: #156570;
}

.bright-aqua-background {
    background: #1e9d8b;
}

.bright-aqua-color {
    color: #1e9d8b;
}

.light-aqua-background {
    background: #5bbbb7;
}

.light-aqua-color {
    color: #5bbbb7;
}

.very-light-aqua-background {
    background: #cae3e9;
}

.very-light-aqua-color {
    color: #cae3e9;
}

.ultra-light-aqua-background {
    background: #dfedf0;
}

.ultra-light-aqua-color {
    color: #dfedf0;
}

.ultra-dark-green-background {
    background: #013324;
}

.ultra-dark-green-color {
    color: #013324;
}

.very-dark-green-background {
    background: #024731;
}

.very-dark-green-color {
    color: #024731;
}

.dark-green-background {
    background: #00693c;
}

.dark-green-color {
    color: #00693c;
}

.bright-green-background {
    background: #5b8f22;
}

.bright-green-color {
    color: #5b8f22;
}

.light-green-background {
    background: #b6bf00;
}

.light-green-color {
    color: #b6bf00;
}

.very-light-green-background {
    background: #e0e96e;
}

.very-light-green-color {
    color: #e0e96e;
}

.ultra-light-green-background {
    background: #edf0ca;
}

.ultra-light-green-color {
    color: #edf0ca;
}

.ultra-dark-orange-background {
    background: #4d161d;
}

.ultra-dark-orange-color {
    color: #4d161d;
}

.very-dark-orange-background {
    background: #772432;
}

.very-dark-orange-color {
    color: #772432;
}

.dark-orange-background {
    background: #983222;
}

.dark-orange-color {
    color: #983222;
}

.bright-orange-background {
    background: #e98300;
}

.bright-orange-color {
    color: #e98300;
}

.light-orange-background {
    background: #eeaf00;
}

.light-orange-color {
    color: #eeaf00;
}

.very-light-orange-background {
    background: #fbd476;
}

.very-light-orange-color {
    color: #fbd476;
}

.ultra-light-orange-background {
    background: #fff2d1;
}

.ultra-light-orange-color {
    color: #fff2d1;
}

.ultra-dark-red-background {
    background: #400f1f;
}

.ultra-dark-red-color {
    color: #400f1f;
}

.very-dark-red-background {
    background: #5e172d;
}

.very-dark-red-color {
    color: #5e172d;
}

.dark-red-background {
    background: #96172e;
}

.dark-red-color {
    color: #96172e;
}

.bright-red-background {
    background: #cd202c;
}

.bright-red-color {
    color: #cd202c;
}

.light-red-background {
    background: #e59aaa;
}

.light-red-color {
    color: #e59aaa;
}

.very-light-red-background {
    background: #e9c5cb;
}

.very-light-red-color {
    color: #e9c5cb;
}

.ultra-light-red-background {
    background: #f5e6e9;
}

.ultra-light-red-color {
    color: #f5e6e9;
}

.ultra-dark-purple-background {
    background: #280b3b;
}

.ultra-dark-purple-color {
    color: #280b3b;
}

.very-dark-purple-background {
    background: #42145f;
}

.very-dark-purple-color {
    color: #42145f;
}

.dark-purple-background {
    background: #631d76;
}

.dark-purple-color {
    color: #631d76;
}

.bright-purple-background {
    background: #7d0063;
}

.bright-purple-color {
    color: #7d0063;
}

.light-purple-background {
    background: #b390bb;
}

.light-purple-color {
    color: #b390bb;
}

.very-light-purple-background {
    background: #dbcfe9;
}

.very-light-purple-color {
    color: #dbcfe9;
}

.ultra-light-purple-background {
    background: #f3ebfa;
}

.ultra-light-purple-color {
    color: #f3ebfa;
}

.color-green-dark {
    color: #169E7A;
}

.white-background {
    background: #fff;
    color: #222;
}

.help-form h3 {
    margin-bottom: 24px;
}

.help-form .content-gray {
    padding: 30px;
}

.help-form .muted-red {
    color: #cd202c;
    font-size: .9em;
    margin-left: 5px;
    font-weight: 400;
}

.marked-box {
    border: 1px solid #bbb;
}

    .marked-box .iconized-title {
        position: relative;
        background: #fff;
    }

        .marked-box .iconized-title .form-control {
            padding-left: 50px;
            border: none;
            box-shadow: 0 0 2px rgba(0,0,0,.2);
            border-radius: 0;
        }

        .marked-box .iconized-title .fa {
            position: absolute;
            left: 15px;
            top: 10px;
        }

    .marked-box .actions {
        box-shadow: 0 1px 1px rgba(0,0,0,.3);
        position: relative;
        background: #eee;
        min-height: 31px;
        z-index: 5;
    }

        .marked-box .actions button {
            border-right: 1px solid #ccc;
            position: relative;
            float: left;
            border-radius: 0;
        }

            .marked-box .actions button > * {
                pointer-events: none;
            }

            .marked-box .actions button:before {
                position: absolute;
                top: -30px;
                left: 0;
                -webkit-transform: translate(-10%,0) scale(1);
                transform: translate(-10%,0) scale(1);
                background: #000;
                padding: 5px 7px;
                content: attr(tooltip);
                color: #fff;
                line-height: 1;
                font-size: 12px;
                border-radius: 3px;
                opacity: 0;
                transition: all .15s ease;
                pointer-events: none;
            }

            .marked-box .actions button:hover {
                background: #178BC6;
                color: #fff;
            }

                .marked-box .actions button:hover:before {
                    opacity: 1;
                }

        .marked-box .actions .extra-action {
            position: absolute;
            right: 3px;
            top: 2px;
        }

            .marked-box .actions .extra-action label {
                display: inline-block;
                float: left;
                margin: 4px 10px;
                font-size: 12px;
            }

            .marked-box .actions .extra-action .form-control {
                font-size: 12px;
                height: 27px;
                width: auto;
            }

    .marked-box textarea.form-control {
        border: none;
    }

        .marked-box textarea.form-control:focus {
            box-shadow: none;
        }

    .marked-box.marked-box-dark {
        border: 1px solid rgba(65,64,64,.7);
    }

        .marked-box.marked-box-dark .actions {
            background: #242629;
        }

            .marked-box.marked-box-dark .actions .btn {
                color: #ccc;
                background: #242629;
                border-right: 1px solid #181818;
            }

                .marked-box.marked-box-dark .actions .btn:hover {
                    color: #178BC6;
                }

.img-placeholder {
    max-width: 250px;
    height: 140px;
    background: #ddd;
    margin: 15px 0;
    text-align: center;
    line-height: 140px;
    font-size: 12px;
    color: #888;
}

    .img-placeholder:hover {
        cursor: pointer;
        outline: #178BC6 solid 2px;
    }

    .img-placeholder.dark {
        background: #222;
    }

fieldset {
    margin: 20px 0 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 5px 0 10px;
}

    fieldset legend {
        margin: 0 10px;
        padding: 0 10px;
        border: none;
        display: inline-block;
        width: auto;
        font-size: 12px;
        color: #777;
    }

.split-arrow, .visit-page .fa {
    margin-right: 10px;
}

.visit-page {
    font-size: 14px;
    margin-left: 40px;
}

    .visit-page:active, .visit-page:focus, .visit-page:hover {
        color: #57baec;
    }

.split-arrow {
    display: inline-block;
    position: relative;
    min-height: 30px;
}

    .split-arrow .fa {
        position: absolute;
        left: 0;
        padding: 2px 4px;
    }

        .split-arrow .fa:hover {
            cursor: pointer;
            color: #178BC6;
        }

        .split-arrow .fa[disabled] {
            pointer-events: none;
            opacity: .1;
        }

    .split-arrow .fa-caret-up {
        top: 0;
    }

    .split-arrow .fa-caret-down {
        bottom: 0;
    }

.content-gray {
    background: #EEE;
    color: #444;
}

.content-blue {
    background: #E5EDF6;
    color: #444;
}

.btn.btn-transparent:active, .btn.btn-transparent:focus, .btn.btn-transparent:hover, .list-items > li.active {
    color: #178BC6;
}

.btn.btn-transparent {
    background: 0 0;
}

.list-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .list-items > li {
        padding: 8px 20px;
        margin: 0;
        font-size: 13px;
        position: relative;
    }

        .list-items > li:before {
            font-family: FontAwesome,sans-serif;
            content: "";
            position: absolute;
            left: 5px;
            top: 5px;
            font-size: 15px;
            transition: all .3s cubic-bezier(.7,0,.3,1);
            opacity: 0;
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
        }

        .list-items > li.active, .list-items > li:hover {
            background: rgba(255,255,255,.05);
            cursor: pointer;
        }

            .list-items > li.active:before {
                opacity: 1;
                -webkit-transform: translateX(0);
                transform: translateX(0);
            }

        .list-items > li .fa {
            margin-right: 10px;
        }

.empty-list {
    margin: 20px 10px;
    text-align: center;
    color: #888;
}

    .empty-list .fa-trash-o {
        margin-bottom: 20px;
        display: block;
    }

hr.dark {
    border-top: 1px solid #222;
    position: relative;
}

    hr.dark:before {
        position: absolute;
        content: '';
        width: 100%;
        height: 1px;
        top: 0;
        left: 0;
        background: #444;
    }

h5.hover-action {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    color: #aaa;
}

    h5.hover-action .fa {
        margin-left: 15px;
        padding: 5px;
        color: #666;
        position: relative;
        top: -1px;
    }

        h5.hover-action .fa.fa-check, h5.hover-action .fa:hover {
            color: #178BC6;
            cursor: pointer;
        }

.selectable-list {
    margin: 0;
    padding: 20px 20px 20px 35px;
    list-style: decimal;
}

    .selectable-list > li {
        padding: 8px 16px;
        background: rgba(255,255,255,.05);
        border-radius: 2px;
        margin-bottom: 14px;
        border: 1px solid transparent;
    }

        .selectable-list > li.active, .selectable-list > li:hover {
            border-color: #178BC6;
            cursor: pointer;
        }

        .selectable-list > li .fa-angle-right {
            margin-left: 5px;
        }

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

    .videoWrapper iframe, .videoWrapper span {
        position: absolute;
        border: none;
        display: block;
        max-height: 96vh;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

        .videoWrapper iframe object, .videoWrapper span object {
            width: 100%;
            height: 100%;
        }

.form-control.dark {
    background: #242629;
    resize: none;
    width: 100%;
    padding: 15px;
    border-radius: 3px;
    border: 1px solid rgba(65,64,64,.7);
    color: #ccc;
    transition: box-shadow .3s ease;
    box-shadow: 0 0 15px rgba(23,139,198,0);
}

    .form-control.dark:focus {
        box-shadow: 0 0 7px rgba(104,117,123,.5);
    }

    .form-control.dark[disabled] {
        opacity: .6;
    }

    .form-control.dark::-webkit-input-placeholder {
        color: #666 !important;
    }

.form-control.flat {
    border-radius: 0;
}

.tag-searcher {
    margin-bottom: 20px;
}

    .tag-searcher .search-box {
        background: #242629;
        padding: 8px 50px 4px 60px;
    }

        .tag-searcher .search-box .fa-search, .tag-searcher .search-box .fa-spinner {
            font-size: 20px;
        }

        .tag-searcher .search-box .form-control {
            font-size: 14px;
            color: #ccc;
        }

            .tag-searcher .search-box .form-control::-webkit-input-placeholder {
                color: #555;
            }

.label-value {
    margin: 5px 0;
}

    .label-value.label-clickable {
        cursor: pointer;
    }

    .label-value span {
        float: left;
        line-height: 32px;
        padding-left: 32px;
        font-size: 13px;
        color: #999;
    }

.btn-sub, .btn-sub:hover {
    background: 0 0;
    color: #178BC6;
}

.label-value span .fa {
    top: .6em;
    left: 24px;
    position: absolute;
}

.label-value .form-control.dark {
    position: absolute;
    left: 140px;
    width: calc(100% - 150px);
}

.label-value switcher {
    display: block;
    position: absolute;
    left: 140px;
}

.btn-sub {
    border: 1px solid #178BC6;
    transition: color .3s ease,background .3s ease;
}

    .btn-sub:hover {
        border: 1px solid #126b98;
    }

.media-box {
    transition: box-shadow .5s cubic-bezier(.7,0,.3,1);
}

    .media-box:hover:not(.flat) {
        cursor: pointer;
        box-shadow: 0 0 20px 2px rgba(0,0,0,.3);
    }

        .media-box:hover:not(.flat) figcaption {
            outline: transparent solid 1px;
        }

        .media-box:hover:not(.flat) .media-box-content img {
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

    .media-box.flat .media-box-content {
        outline: #ccc solid 1px;
    }

    .media-box .media-box-content img {
        transition: -webkit-transform 2s ease;
        transition: transform 2s ease;
        transition: transform 2s ease,-webkit-transform 2s ease;
    }

    .media-box .media-box-content.change-image {
        position: relative;
        cursor: pointer;
    }

        .media-box .media-box-content.change-image .fa-trash-o {
            background: rgba(0,0,0,.8);
            color: #fff;
            padding: 8px 12px;
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 5;
        }

            .media-box .media-box-content.change-image .fa-trash-o:hover {
                color: #178BC6;
            }

        .media-box .media-box-content.change-image:after {
            pointer-events: none;
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            background: rgba(0,0,0,.6);
            text-align: center;
            color: #fff;
            content: 'Select media';
            font-weight: 700;
            opacity: 0;
            padding-top: 20%;
        }

        .media-box .media-box-content.change-image:hover:after {
            opacity: 1;
        }

    .media-box figcaption {
        padding: 20px;
        max-height: 100px;
        min-height: 100px;
        position: relative;
        overflow: hidden;
        color: #fff;
    }

        .media-box figcaption.white-background {
            background: #fff;
            color: #222;
            outline: #ddd solid 1px;
            outline-offset: -1px;
            transition: outline .5s cubic-bezier(.7,0,.3,1);
        }

.media-box-small .media-box-content {
    background-size: cover;
    height: 150px;
}

.media-box-small figcaption {
    padding: 10px 0;
    position: relative;
    color: #222;
    font-size: 12px;
}

    .media-box-small figcaption h4 a {
        color: #555;
    }

    .media-box-small figcaption a {
        color: #222;
        font-size: 14px;
        font-weight: 700;
        display: block;
    }

@media (max-width:767px) {
    .media-box-small .media-box-content {
        height: auto;
    }

    .media-box-small .grid-image img {
        position: static;
        -webkit-transform: none;
        transform: none;
        margin: 0 auto;
    }
}

.media-box-left .media-box-content, .media-box-left figcaption {
    display: inline-block;
    margin: 0;
    float: left;
}

.media-box-left .media-box-content {
    width: 35%;
    height: 0;
    padding-top: 35%;
    position: relative;
}

    .media-box-left .media-box-content img {
        position: absolute;
        max-width: 100%;
        max-height: 100%;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

.media-box-left figcaption {
    width: 65%;
    padding: 0 20px;
    font-size: 14px;
}

    .media-box-left figcaption a {
        font-weight: 700;
    }

.media-box-left.desc {
    padding: 20px;
    color: #fff;
}

    .media-box-left.desc .media-box-content {
        width: 25%;
        padding-top: 25%;
    }

    .media-box-left.desc figcaption {
        width: 75%;
        float: none;
    }

        .media-box-left.desc figcaption a:hover {
            color: #fff;
        }

        .media-box-left.desc figcaption p {
            margin-top: 10px;
        }

        .media-box-left.desc figcaption h6 {
            font-weight: 400;
            margin: 0 0 5px;
            font-size: 16px;
        }

@media (max-width:991px) {
    .media-box-left .media-box-content, .media-box-left figcaption {
        display: block;
        margin: 0;
        float: none;
        width: 100%;
    }

    .media-box-left figcaption {
        padding: 20px 0;
    }
}

.media-box, .media-box-left, .media-box-small {
    margin-bottom: 20px;
}

    .media-box figcaption h3, .media-box figcaption h4, .media-box figcaption h5, .media-box-left figcaption h3, .media-box-left figcaption h4, .media-box-left figcaption h5, .media-box-small figcaption h3, .media-box-small figcaption h4, .media-box-small figcaption h5 {
        font-family: CentraleSansBold,sans-serif;
        line-height: 25px;
        font-size: 17px;
        margin: 0;
    }

    .media-box figcaption h4, .media-box-left figcaption h4, .media-box-small figcaption h4 {
        font-size: 17px;
        margin: 0;
        line-height: 20px;
    }

@media (max-width:991px) {
    .media-box figcaption h4, .media-box-left figcaption h4, .media-box-small figcaption h4 {
        font-size: 12px;
    }

    .socialbuttons {
        white-space: nowrap;
    }
}

.media-box figcaption .bottom, .media-box-left figcaption .bottom, .media-box-small figcaption .bottom {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-size: 14px;
}

    .media-box figcaption .bottom .fa, .media-box-left figcaption .bottom .fa, .media-box-small figcaption .bottom .fa {
        margin-left: 10px;
    }

.video-cover:hover {
    cursor: pointer;
}

    .video-cover:hover .play-button {
        background: #178BC6;
    }

.video-cover .play-button {
    border-radius: 2px;
    background: rgba(23,139,198,.5);
    transition: background .15s ease;
    font-size: 20px;
    color: #fff;
    text-align: center;
    line-height: 55px;
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    margin-left: -25px;
    top: 50%;
}

.ngdialog.ngdialog-theme-default.video-modal {
    padding: 20px 0;
    position: fixed !important;
    top: 0;
    left: 0;
}

    .ngdialog.ngdialog-theme-default.video-modal .ngdialog-overlay {
        display: block;
        background: rgba(0,0,0,.9);
    }

    .ngdialog.ngdialog-theme-default.video-modal .ngdialog-content {
        border: none;
        margin-top: 15vh;
        width: 50%;
        padding: 0;
        max-height: 96vh;
    }

.btn.download-button {
    width: 100%;
    padding: 10px 16px 6px;
    font-size: 16px;
}

.download-group {
    transition: max-height .3s cubic-bezier(.7,0,.3,1);
}

    .download-group .download-button {
        position: relative;
    }

        .download-group .download-button .fa-angle-up {
            position: absolute;
            right: 10px;
            top: 10px;
            margin-left: 10px;
            font-size: 18px;
            transition: all .3s cubic-bezier(.7,0,.3,1);
            -webkit-transform: rotate(0);
            transform: rotate(0);
        }

    .download-group .list-download {
        list-style: none;
        margin: 0;
        padding: 0;
        background: #2aa7e6;
        color: #fff;
    }

        .download-group .list-download li {
            padding: 0;
            margin: 0;
        }

            .download-group .list-download li a {
                color: #fff;
                display: block;
                text-decoration: none;
                padding: 8px 12px;
                word-break: break-all;
            }

                .download-group .list-download li a:hover {
                    background: rgba(255,255,255,.1);
                    cursor: pointer;
                }

    .download-group.active .btn-primary {
        border-radius: 2px 2px 0 0 !important;
    }

        .download-group.active .btn-primary .fa-angle-up {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

.socialbuttons {
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
    height: 37px;
}

    .socialbuttons .social-button {
        vertical-align: top;
        display: inline-block;
        zoom: 1;
        font-size: 12px;
    }

        .socialbuttons .social-button:hover {
            cursor: pointer;
        }

            .socialbuttons .social-button:hover span {
                border-color: #178BC6;
            }

            .socialbuttons .social-button:hover i {
                background: #126b98;
            }

        .socialbuttons .social-button span {
            padding: 6px 10px 4px;
            color: #178BC6;
            border: 1px solid #C0E2ED;
            border-right: none;
            border-radius: 2px 0 0 2px;
            margin-right: -4px;
        }

        .socialbuttons .social-button i {
            padding: 6px 8px;
            background: #178BC6;
            color: #fff;
            border-radius: 0 2px 2px 0;
        }

    .socialbuttons .stretch {
        width: 100%;
        display: inline-block;
        font-size: 0;
        line-height: 0;
    }

.faq-link {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

    .faq-link .faq-link-answer, .faq-link .faq-link-question {
        position: relative;
    }

    .faq-link .faq-link-question {
        background: #D9EDF6;
        border-radius: 3px;
        padding: 12px 40px 10px 20px;
        color: #178BC6;
        display: block;
        cursor: pointer;
    }

    .faq-link .fa-angle-down {
        position: absolute;
        top: 8px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
    }

    .faq-link .faq-link-answer {
        display: none;
        padding: 10px 25px 0 20px;
    }

    .faq-link > li, .faq-link > li.active .faq-link-answer {
        display: block;
    }

    .faq-link > li {
        margin-bottom: 5px;
    }

        .faq-link > li.active .fa-angle-down {
            -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
        }

.checkbox {
    background: 0 0;
    width: 18px;
    height: 18px;
    display: inline-block;
    border: 1px solid #178BC6;
    transition: border .3s cubic-bezier(.7,0,.3,1);
}

    .checkbox:hover {
        border-color: #178bc6;
        cursor: pointer;
    }

    .checkbox svg {
        position: absolute;
        width: 10px;
        height: 10px;
        top: 50%;
        left: 2px;
        margin-top: -6px;
        pointer-events: none;
    }

        .checkbox svg path {
            stroke: #fff;
            stroke-width: 13px;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
            stroke-dasharray: 126.37px,126.37px;
            stroke-dashoffset: 126.37px;
            transition: stroke-dashoffset .3s cubic-bezier(.7,0,.3,1),stroke .3s cubic-bezier(.7,0,.3,1);
        }

            .checkbox svg path.active {
                stroke-dashoffset: 0;
            }

.label-value .checkbox {
    pointer-events: none;
    border: 2px solid #aaa;
}

    .label-value .checkbox:hover {
        border-color: #919191;
        cursor: pointer;
    }

.grid-image .checkbox {
    position: absolute;
    right: 10px;
    top: 0;
    z-index: 10;
    background: rgba(0,0,0,.5);
}

.contact-card {
    background: #cae3e9;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
    font-size: 13px;
    border-radius: 1px;
    min-height: 200px;
}

    .contact-card .contact-placeholder {
        background: #fff;
        color: #bbb;
        width: 100%;
        height: 100px;
    }

    .contact-card .social-links {
        margin: 10px 0 0;
        padding: 0;
        list-style: none;
    }

        .contact-card .social-links li {
            display: inline-block;
            margin-right: 10px;
            font-size: 30px;
            line-height: 1;
            transition: color .15s ease;
        }

            .contact-card .social-links li a {
                color: #fff;
            }

            .contact-card .social-links li:hover {
                cursor: pointer;
            }

            .contact-card .social-links li.social-linkedin:hover a {
                color: #4875B4;
            }

            .contact-card .social-links li.social-facebook:hover a {
                color: #3b5998;
            }

            .contact-card .social-links li.social-twitter:hover a {
                color: #3CF;
            }

.contact-card {
    display: block;
}

.contact-card--image-container {
    min-width: 140px;
    min-height: 130px;
    position: absolute;
    left: 5px;
}

    .contact-card--image-container img {
        max-width: calc(100% - 5px);
        max-height: calc(100% - 5px);
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
    }

.contact-card--image {
    width: 20%;
}

.contact-card--content {
    margin-left: 140px;
}

.contact-card--contact, .contact-card--description, .contact-card--function, .contact-card--name, .contact-card--sm-list {
    width: 100%;
    margin: 0;
    padding: 0;
}

.contact-card--name {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 5px;
}

.contact-card--function {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 5px;
}

.contact-card--contact {
    width: auto;
    font-size: 13px;
    text-decoration: none;
}

.contact-card--description {
    font-size: 13px;
    margin: 15px 0;
}

.contact-card--sm-list--item {
    display: inline-block;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 22px;
}

    .contact-card--sm-list--item + .contact-card--sm-list--item {
        margin-left: .5em;
    }

.contact-card__isBlue {
    background-color: #CAE3E9;
}

.contact-card__isGreen {
    background-color: #156570;
    color: #fff !important;
}

    .contact-card__isGreen a {
        color: #ccc !important;
    }

cms-contact.colorized {
    margin: 34px 0 20px;
    display: block;
}

.contact-card__isPurple {
    background-color: #7D0064;
    color: #fff !important;
}

    .contact-card__isPurple a {
        color: #ccc !important;
    }

.tags .btn {
    background-color: #cfebf7;
    color: #1789c6;
    margin-right: 2px;
}

    .tags .btn .fa {
        margin-right: 5px;
    }

    .tags .btn:hover {
        background: #178BC6;
        color: #fff;
    }

ul.crumbpath {
    padding: 12px 0 0 200px;
    font-size: 13px;
    margin: 0;
}

    ul.crumbpath li {
        display: inline-block;
        margin-right: 16px;
    }

        ul.crumbpath li a {
            color: #000;
        }

            ul.crumbpath li a:hover {
                cursor: pointer;
                text-decoration: underline;
            }

header .sub-nav a, header .sub-nav li a {
    text-decoration: none;
    color: #222;
}

ul.crumbpath li:last-child:after {
    margin-left: 0;
    content: '' !important;
}

.related-links ul li a:after, ul.crumbpath li:after {
    content: '\f105';
    font-family: FontAwesome,sans-serif;
}

ul.crumbpath li:after {
    margin-left: 16px;
    opacity: .7;
    z-index: -1;
    position: relative;
}

@media (max-width:767px) {
    ul.crumbpath {
        padding: 0 0 0 140px;
    }

        ul.crumbpath li:after {
            margin-left: 5px;
        }
}

.very-dark-blue {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ibGlnaHRCbHVlIgogICAgICAgICAgICAgICAgICAgICAgICB4MT0iMCUiIHkxPSIyMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHgyPSIxMDAlIiB5Mj0iMTAwJSIKICAgICAgICAgICAgICAgICAgICAgICAgc3ByZWFkTWV0aG9kPSJwYWQiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiAgIHN0b3AtY29sb3I9IiMwRjIwNEIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDM0NzgiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6dXJsKCNsaWdodEJsdWUpOyIgLz4KPC9zdmc+);
    background: linear-gradient(125deg,#0f204b 0,#003478 100%);
}

.dark-blue {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ibGlnaHRCbHVlIgogICAgICAgICAgICAgICAgICAgICAgICB4MT0iMCUiIHkxPSIyMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHgyPSIxMDAlIiB5Mj0iMTAwJSIKICAgICAgICAgICAgICAgICAgICAgICAgc3ByZWFkTWV0aG9kPSJwYWQiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiAgIHN0b3AtY29sb3I9IiMwMDM0NzgiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDY2QTEiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6dXJsKCNsaWdodEJsdWUpOyIgLz4KPC9zdmc+);
    background: linear-gradient(125deg,#003478 0,#0066a1 100%);
}

.bright-blue {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0iYnJpZ2h0Qmx1ZSIKICAgICAgICAgICAgICAgICAgICAgICAgeDE9IjAlIiB5MT0iMjAlIgogICAgICAgICAgICAgICAgICAgICAgICB4Mj0iMTAwJSIgeTI9IjEwMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHNwcmVhZE1ldGhvZD0icGFkIj4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIwJSIgICBzdG9wLWNvbG9yPSIjMDA2NkExIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgICAgICAgICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNjI5RkQ1IiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgICAgICA8L2xpbmVhckdyYWRpZW50PgogICAgPC9kZWZzPgoKICAgIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHN0eWxlPSJmaWxsOnVybCgjYnJpZ2h0Qmx1ZSk7IiAvPgo8L3N2Zz4=);
    background: linear-gradient(125deg,#0066a1 0,#629fd5 100%);
}

.light-blue {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ibGlnaHRCbHVlIgogICAgICAgICAgICAgICAgICAgICAgICB4MT0iMCUiIHkxPSIyMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHgyPSIxMDAlIiB5Mj0iMTAwJSIKICAgICAgICAgICAgICAgICAgICAgICAgc3ByZWFkTWV0aG9kPSJwYWQiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiAgIHN0b3AtY29sb3I9IiM3QkE0RDkiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNCM0M4RTYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6dXJsKCNsaWdodEJsdWUpOyIgLz4KPC9zdmc+);
    background: linear-gradient(125deg,#7ba4d9 0,#b3c8e6 100%);
}

.very-light-blue {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0ibGlnaHRCbHVlIgogICAgICAgICAgICAgICAgICAgICAgICB4MT0iMCUiIHkxPSIyMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHgyPSIxMDAlIiB5Mj0iMTAwJSIKICAgICAgICAgICAgICAgICAgICAgICAgc3ByZWFkTWV0aG9kPSJwYWQiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiAgIHN0b3AtY29sb3I9IiNlZGYyZjgiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6dXJsKCNsaWdodEJsdWUpOyIgLz4KPC9zdmc+);
    background: linear-gradient(125deg,#edf2f8 0,#fff 100%);
}

.very-dark-aqua {
    background: linear-gradient(125deg,#22505f 0,#156570 100%);
}

.dark-aqua {
    background: linear-gradient(125deg,#156570 0,#1e9d8b 100%);
}

.bright-aqua {
    background: linear-gradient(125deg,#1e9d8b 0,#4fb5ae 100%);
}

.light-aqua {
    background: linear-gradient(125deg,#5bbbb7 0,#cae3e9 100%);
}

.very-light-aqua {
    background: linear-gradient(125deg,#f2f8f9 0,#fff 100%);
}

.very-dark-green {
    background: linear-gradient(125deg,#024731 0,#00693c 100%);
}

.dark-green {
    background: linear-gradient(125deg,#00693c 0,#5b8f22 100%);
}

.bright-green {
    background: linear-gradient(125deg,#5b8f22 0,#a4b507 100%);
}

.light-green {
    background: linear-gradient(125deg,#b6bf00 0,#e0e96e 100%);
}

.very-light-green {
    background: linear-gradient(125deg,#f8f9ea 0,#fff 100%);
}

.very-dark-orange {
    background: linear-gradient(125deg,#772432 0,#983222 100%);
}

.dark-orange {
    background: linear-gradient(125deg,#983222 0,#e98300 100%);
}

.bright-orange {
    background: linear-gradient(125deg,#e98300 0,#eda600 100%);
}

.light-orange {
    background: linear-gradient(125deg,#eeaf00 0,#fbd476 100%);
}

.very-light-orange {
    background: linear-gradient(125deg,#fffaed 0,#fff 100%);
}

.very-dark-red {
    background: linear-gradient(125deg,#662046 0,#91004b 100%);
}

.dark-red {
    background: linear-gradient(125deg,#91004b 0,#ec4371 100%);
}

.bright-red {
    background: linear-gradient(125deg,#ec4371 0,#e59aaa 100%);
}

.light-red {
    background: linear-gradient(125deg,#e59aaa 0,#e9c5cb 100%);
}

.very-light-red {
    background: linear-gradient(125deg,#fbf5f6 0,#fff 100%);
}

.very-dark-purple {
    background: linear-gradient(125deg,#42145f 0,#631d76 100%);
}

.dark-purple {
    background: linear-gradient(125deg,#4a1657 0,#7d0063 100%);
}

.bright-purple {
    background: linear-gradient(125deg,#7d0063 0,#a873a9 100%);
}

.light-purple {
    background: linear-gradient(125deg,#b390bb 0,#dbcfe9 100%);
}

.very-light-purple {
    background: linear-gradient(125deg,#faf7fd 0,#fff 100%);
}

.related-links .add-new {
    border: none;
    background: #eee;
    padding: 5px 8px 4px;
    font-size: 13px;
    margin-left: 10px;
}

.related-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .related-links ul li {
        padding: 5px 0;
        position: relative;
        border-bottom: 1px solid #ddd;
    }

        .related-links ul li .actions {
            position: absolute;
            left: 100%;
            top: 4px;
            white-space: nowrap;
        }

            .related-links ul li .actions button {
                border: none;
                background: #eee;
                padding: 4px 9px;
            }

        .related-links ul li p {
            margin: 0;
        }

        .related-links ul li a:after {
            padding-left: 10px;
            position: absolute;
            top: 3px;
            right: 0;
            transition: -webkit-transform .15s ease;
            transition: transform .15s ease;
            transition: transform .15s ease,-webkit-transform .15s ease;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }

        .related-links ul li a:hover:after {
            -webkit-transform: translateX(3px);
            transform: translateX(3px);
        }

.pdf-search {
    position: absolute;
    width: 400px;
    margin-left: -200px;
    background: #fff;
    left: 0;
    bottom: calc(100% + 10px);
    color: #222;
    text-align: left;
    padding: 10px;
    box-shadow: 0 0 3px 1px rgba(0,0,0,.3);
}

    .pdf-search:after {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 10px 0;
        border-color: #fff transparent transparent;
        content: '';
        position: absolute;
        bottom: -7px;
        left: 50%;
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

    .pdf-search .fa-times {
        position: absolute;
        z-index: 999;
    }

    .pdf-search .search-box input:focus {
        box-shadow: none;
    }

    .pdf-search .pdf-search-count {
        margin: 0 -10px;
        font-size: 12px;
        padding: 10px;
        box-shadow: 0 1px 1px rgba(0,0,0,.4);
        position: relative;
        z-index: 10;
    }

.pdf-search-results, .pdf-search-results-page {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pdf-search-results {
    max-height: 0;
    overflow: auto;
    margin: 0 -10px;
    transition: max-height .3s ease;
}

    .pdf-search-results.active {
        max-height: 50vh;
    }

    .pdf-search-results table {
        margin: 0;
    }

    .pdf-search-results img {
        outline: #ccc solid 1px;
        background: #fff;
        margin: 10px auto;
    }

    .pdf-search-results > li {
        padding: 5px 10px;
        border-top: 1px solid #eee;
    }

        .pdf-search-results > li:first-of-type {
            border-top: none;
        }

        .pdf-search-results > li:hover {
            cursor: pointer;
            background: #eee;
        }

    .pdf-search-results h6 {
        color: #178BC6;
        font-weight: 700;
    }

    .pdf-search-results.static {
        overflow: visible;
        max-height: none;
    }

        .pdf-search-results.static > li {
            border: none;
            margin-bottom: 10px;
        }

            .pdf-search-results.static > li:hover {
                cursor: default;
                background: 0 0;
            }

        .pdf-search-results.static h6 {
            font-size: 17px;
        }

@media (max-width:991px) {
    .pdf-search-results.static > li {
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #ddd;
    }

    .pdf-search-results.static table > tbody > tr > td {
        display: block;
    }

        .pdf-search-results.static table > tbody > tr > td:first-of-type {
            width: 100% !important;
        }

    .resource .social-group {
        white-space: nowrap;
    }
}

.pdf-search-results-page {
    font-size: 11px;
}

[sticky-bar].stick {
    padding: 0;
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    background: rgba(255,255,255,.8);
    margin: 0;
    z-index: 99;
    box-shadow: 0 1px 2px rgba(0,0,0,.3);
}

    [sticky-bar].stick .search-box, header {
        background: 0 0;
    }

    [sticky-bar].stick .filter-row {
        margin: 0 -15px;
    }

.p-arrow-down:after, .p-arrow-right:after, .p-arrow-small:after, .p-checkbox:after, .p-checked:after, .p-icon-360-reset:after, .p-icon-360-rotate:after, .p-icon-add-application:after, .p-icon-alipay-unboxed:after, .p-icon-allmyproducts:after, .p-icon-aol-unboxed:after, .p-icon-arrow-down:after, .p-icon-arrow-left:after, .p-icon-arrow-right:after, .p-icon-arrow-up:after, .p-icon-blog:after, .p-icon-blogger-unboxed:after, .p-icon-book:after, .p-icon-brush:after, .p-icon-chat-2:after, .p-icon-chat:after, .p-icon-checklist:after, .p-icon-checkmark-rounded:after, .p-icon-checkmark:after, .p-icon-clinic:after, .p-icon-clock-inverted:after, .p-icon-clock:after, .p-icon-close-02:after, .p-icon-close:after, .p-icon-collaboration:after, .p-icon-comet:after, .p-icon-community:after, .p-icon-contactcard:after, .p-icon-courses:after, .p-icon-cross-2:after, .p-icon-cross:after, .p-icon-dajie:after, .p-icon-dashboard:after, .p-icon-database:after, .p-icon-doc:after, .p-icon-document:after, .p-icon-documentchecked:after, .p-icon-documents:after, .p-icon-down:after, .p-icon-download:after, .p-icon-drop:after, .p-icon-envelope-2:after, .p-icon-envelope-3:after, .p-icon-envelope:after, .p-icon-events:after, .p-icon-exit-fullscreen-small:after, .p-icon-exit-fullscreen:after, .p-icon-facebook-2:after, .p-icon-facebook-unboxed:after, .p-icon-facebook:after, .p-icon-faq:after, .p-icon-finance:after, .p-icon-flickr-unboxed:after, .p-icon-flickr:after, .p-icon-foursquare-unboxed:after, .p-icon-fullscreen-2:after, .p-icon-fullscreen-small-2:after, .p-icon-fullscreen-small:after, .p-icon-fullscreen:after, .p-icon-gallery-grid-2:after, .p-icon-gallery-grid:after, .p-icon-gallery-preview:after, .p-icon-globe-2:after, .p-icon-globe:after, .p-icon-google-unboxed:after, .p-icon-googleplus-2:after, .p-icon-googleplus-unboxed:after, .p-icon-googleplus:after, .p-icon-grid-view:after, .p-icon-healthcare:after, .p-icon-house:after, .p-icon-hr-vacancies:after, .p-icon-hr:after, .p-icon-idt:after, .p-icon-ies:after, .p-icon-images:after, .p-icon-information:after, .p-icon-inpage-menu:after, .p-icon-inpage:after, .p-icon-instagram-unboxed:after, .p-icon-instagram:after, .p-icon-kaixin001-unboxed:after, .p-icon-laptop:after, .p-icon-ldt:after, .p-icon-learning-2:after, .p-icon-learning:after, .p-icon-legal:after, .p-icon-lighting:after, .p-icon-link-2:after, .p-icon-link-unboxed:after, .p-icon-link:after, .p-icon-linkedin-unboxed:after, .p-icon-linkedin:after, .p-icon-list-items:after, .p-icon-list-view:after, .p-icon-liveid-unboxed:after, .p-icon-livejournal:after, .p-icon-location:after, .p-icon-login:after, .p-icon-magnifier:after, .p-icon-marker-selected:after, .p-icon-marker:after, .p-icon-minus-2:after, .p-icon-minus:after, .p-icon-moon-stars:after, .p-icon-more-stories:after, .p-icon-mouse:after, .p-icon-myphilips:after, .p-icon-myspace-unboxed:after, .p-icon-navigation:after, .p-icon-next-2:after, .p-icon-next:after, .p-icon-no-image-available-outline:after, .p-icon-no-image-available:after, .p-icon-openid-unboxed:after, .p-icon-pause:after, .p-icon-paypal-unboxed:after, .p-icon-pdf:after, .p-icon-pencil:after, .p-icon-philips-wordmark-2008:after, .p-icon-pinterest-unboxed:after, .p-icon-pinterest:after, .p-icon-plane:after, .p-icon-play-button-2:after, .p-icon-play-button:after, .p-icon-play:after, .p-icon-plus-2:after, .p-icon-plus:after, .p-icon-ppt:after, .p-icon-prev:after, .p-icon-previous-2:after, .p-icon-print:after, .p-icon-priority-high:after, .p-icon-priority-normal:after, .p-icon-project:after, .p-icon-projectplanneradd:after, .p-icon-publications-2:after, .p-icon-publications:after, .p-icon-qq-unboxed:after, .p-icon-question-mark:after, .p-icon-questionmark:after, .p-icon-quotesleft:after, .p-icon-quotesright:after, .p-icon-record:after, .p-icon-renren-unboxed:after, .p-icon-rfa:after, .p-icon-rolf:after, .p-icon-rotation:after, .p-icon-rss:after, .p-icon-sales-marketing:after, .p-icon-search:after, .p-icon-self-service:after, .p-icon-share-2:after, .p-icon-share:after, .p-icon-shoppingcart-inverted:after, .p-icon-shoppingcart:after, .p-icon-signup:after, .p-icon-sinaweibo-unboxed:after, .p-icon-star:after, .p-icon-stories:after, .p-icon-sun:after, .p-icon-teeth:after, .p-icon-telephone:after, .p-icon-tencentweibo-unboxed:after, .p-icon-tencentweibo:after, .p-icon-tools:after, .p-icon-tradelink-outline:after, .p-icon-trashbin:after, .p-icon-travel:after, .p-icon-twitter-unboxed:after, .p-icon-twitter:after, .p-icon-uld:after, .p-icon-up-to-date:after, .p-icon-up:after, .p-icon-videos:after, .p-icon-vk-unboxed:after, .p-icon-vkontakte:after, .p-icon-volume-high:after, .p-icon-volume-low:after, .p-icon-volume-medium:after, .p-icon-volume-mute:after, .p-icon-web-navigation:after, .p-icon-webinars:after, .p-icon-wechat-unboxed:after, .p-icon-weibo-unboxed:after, .p-icon-weibo:after, .p-icon-wheels:after, .p-icon-wordpress-unboxed:after, .p-icon-xing:after, .p-icon-xls:after, .p-icon-yahoo-unboxed:after, .p-icon-youku:after, .p-icon-youtube:after, .p-icon-zip:after {
    font-family: philips-global-icon-font;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.p-icon-philips-wordmark-2008:after {
    content: "\e100";
}

.p-icon-arrow-up:after, .p-icon-up:after {
    content: "\e200";
}

.p-arrow-down:after, .p-icon-arrow-down:after, .p-icon-down:after {
    content: "\e201";
}

.p-arrow-down:after {
    font-size: 8px;
}

.p-icon-arrow-left:after, .p-icon-prev:after {
    content: "\e202";
}

.p-arrow-right:after, .p-arrow-small:after, .p-icon-arrow-right:after, .p-icon-next:after {
    content: "\e203";
}

.p-icon-checkmark:after {
    content: "\e204";
}

.p-icon-fullscreen-small:after, .p-icon-fullscreen:after {
    content: "\e205";
}

.p-icon-exit-fullscreen-small:after, .p-icon-exit-fullscreen:after {
    content: "\e206";
}

.p-icon-grid-view:after {
    content: "\e207";
}

.p-icon-list-view:after {
    content: "\e208";
}

.p-icon-magnifier:after, .p-icon-search:after {
    content: "\e209";
}

.p-icon-play:after {
    content: "\e20a";
}

.p-icon-pause:after {
    content: "\e20b";
}

.p-icon-record:after {
    content: "\e20c";
}

.p-icon-play-button:after {
    content: "\e20d";
}

.p-icon-plus:after {
    content: "\e20e";
}

.p-icon-close-02:after, .p-icon-close:after, .p-icon-cross:after {
    content: "\e20f";
}

.p-icon-question-mark:after, .p-icon-questionmark:after {
    content: "\e210";
}

.p-icon-volume-high:after {
    content: "\e211";
}

.p-icon-volume-medium:after {
    content: "\e212";
}

.p-icon-volume-low:after {
    content: "\e213";
}

.p-icon-volume-mute:after {
    content: "\e214";
}

.p-icon-shoppingcart:after {
    content: "\e215";
}

.p-icon-myphilips:after {
    content: "\e216";
}

.p-icon-envelope:after {
    content: "\e217";
}

.p-icon-gallery-grid:after {
    content: "\e218";
}

.p-icon-gallery-preview:after {
    content: "\e219";
}

.p-icon-360-reset:after {
    content: "\e220";
}

.p-icon-360-rotate:after {
    content: "\e221";
}

.p-icon-checkmark-rounded:after {
    content: "\e222";
}

.p-icon-shopping-cart-inverted:after, .p-icon-shoppingcart-inverted:after {
    content: "\e223";
}

.p-icon-telephone:after {
    content: "\e224";
}

.p-icon-list-items:after {
    content: "\e225";
}

.p-icon-cross-2:after {
    content: "\e226";
}

.p-icon-community:after {
    content: "\e227";
}

.p-icon-courses:after {
    content: "\e228";
}

.p-icon-download:after {
    content: "\e229";
}

.p-icon-events:after {
    content: "\e22a";
}

.p-icon-fullscreen-2:after, .p-icon-fullscreen-small-2:after {
    content: "\e22b";
}

.p-icon-faq:after {
    content: "\e22c";
}

.p-icon-envelope-3:after {
    content: "\e22d";
}

.p-icon-minus:after {
    content: "\e22e";
}

.p-icon-more-stories:after {
    content: "\e22f";
}

.p-icon-navigation:after {
    content: "\e230";
}

.p-icon-next-2:after {
    content: "\e231";
}

.p-icon-previous-2:after {
    content: "\e232";
}

.p-icon-plus-2:after {
    content: "\e233";
}

.p-icon-publications:after {
    content: "\e234";
}

.p-icon-rotation:after {
    content: "\e235";
}

.p-icon-gallery-grid-2:after {
    content: "\e236";
}

.p-icon-tradelink-outline:after {
    content: "\e237";
}

.p-icon-up-to-date:after {
    content: "\e238";
}

.p-icon-videos:after {
    content: "\e239";
}

.p-icon-webinars:after {
    content: "\e23a";
}

.p-icon-minus-2:after {
    content: "\e62d";
}

.p-icon-learning-2:after {
    content: "\e630";
}

.p-icon-publications-2:after {
    content: "\e631";
}

.p-icon-star:after {
    content: "\e632";
}

.p-icon-chat-2:after, .p-icon-chat:after {
    content: "\e62b";
}

.p-icon-documentchecked:after {
    content: "\e62c";
}

.p-icon-projectplanneradd:after {
    content: "\e635";
}

.p-icon-trashbin:after {
    content: "\e636";
}

.p-icon-comet:after {
    content: "\e639";
}

.p-icon-location:after {
    content: "\e637";
}

.p-icon-quotesleft:after {
    content: "\e638";
}

.p-icon-quotesright:after {
    content: "\e63a";
}

.p-icon-brush:after {
    content: "\e800";
}

.p-icon-clinic:after {
    content: "\e801";
}

.p-icon-drop:after {
    content: "\e802";
}

.p-icon-house:after {
    content: "\e803";
}

.p-icon-moon-stars:after {
    content: "\e804";
}

.p-icon-priority-high:after {
    content: "\e805";
}

.p-icon-priority-normal:after {
    content: "\e806";
}

.p-icon-sun:after {
    content: "\e807";
}

.p-icon-teeth:after {
    content: "\e808";
}

.p-icon-print:after {
    content: "\e809";
}

.p-icon-tools:after {
    content: "\e810";
}

.p-icon-facebook:after {
    content: "\e300";
}

.p-icon-flickr:after {
    content: "\e301";
}

.p-icon-googleplus:after {
    content: "\e302";
}

.p-icon-instagram:after {
    content: "\e303";
}

.p-icon-link:after {
    content: "\e304";
}

.p-icon-linkedin:after {
    content: "\e305";
}

.p-icon-livejournal:after {
    content: "\e306";
}

.p-icon-pinterest:after {
    content: "\e307";
}

.p-icon-rss:after {
    content: "\e308";
}

.p-icon-weibo:after {
    content: "\e309";
}

.p-icon-tencentweibo:after {
    content: "\e30a";
}

.p-icon-twitter:after {
    content: "\e30b";
}

.p-icon-vkontakte:after {
    content: "\e30c";
}

.p-icon-youtube:after {
    content: "\e30d";
}

.p-icon-facebook-2:after {
    content: "\e30e";
}

.p-icon-google-plus-2:after, .p-icon-googleplus-2:after {
    content: "\e30f";
}

.p-icon-marker:after {
    content: "\e310";
}

.p-icon-marker-selected:after {
    content: "\e311";
}

.p-icon-xing:after {
    content: "\e312";
}

.p-icon-dajie:after {
    content: "\e313";
}

.p-icon-youku:after {
    content: "\e314";
}

.p-icon-link-2:after {
    content: "\e629";
}

.p-icon-blog:after {
    content: "\e634";
}

.p-icon-openid-unboxed:after {
    content: "\e63b";
}

.p-icon-renren-unboxed:after {
    content: "\e63c";
}

.p-icon-sinaweibo-unboxed:after, .p-icon-weibo-unboxed:after {
    content: "\e63d";
}

.p-icon-vk-unboxed:after {
    content: "\e63e";
}

.p-icon-instagram-unboxed:after {
    content: "\e63f";
}

.p-icon-pinterest-unboxed:after {
    content: "\e640";
}

.p-icon-myspace-unboxed:after {
    content: "\e641";
}

.p-icon-foursquare-unboxed:after {
    content: "\e642";
}

.p-icon-flickr-unboxed:after {
    content: "\e643";
}

.p-icon-linkedin-unboxed:after {
    content: "\e644";
}

.p-icon-yahoo-unboxed:after {
    content: "\e645";
}

.p-icon-paypal-unboxed:after {
    content: "\e646";
}

.p-icon-google-unboxed:after {
    content: "\e647";
}

.p-icon-facebook-unboxed:after {
    content: "\e648";
}

.p-icon-wordpress-unboxed:after {
    content: "\e649";
}

.p-icon-googleplus-unboxed:after {
    content: "\e315";
}

.p-icon-aol-unboxed:after, .p-icon-link-unboxed:after {
    content: "\e316";
}

.p-icon-twitter-unboxed:after {
    content: "\e64a";
}

.p-icon-blogger-unboxed:after {
    content: "\e64b";
}

.p-icon-liveid-unboxed:after {
    content: "\e64c";
}

.p-icon-alipay-unboxed:after {
    content: "\e64d";
}

.p-icon-kaixin001-unboxed:after {
    content: "\e64e";
}

.p-icon-qq-unboxed:after {
    content: "\e64f";
}

.p-icon-tencentweibo-unboxed:after {
    content: "\e650";
}

.p-icon-wechat-unboxed:after {
    content: "\e651";
}

.p-icon-stories:after {
    content: "\e400";
}

.p-icon-share:after {
    content: "\e401";
}

.p-icon-inpage:after {
    content: "\e402";
}

.p-icon-share-2:after {
    content: "\e500";
}

.p-icon-in-page-menu:after, .p-icon-inpage-menu:after {
    content: "\e501";
}

.p-icon-add-application:after {
    content: "\e600";
}

.p-icon-checklist:after {
    content: "\e601";
}

.p-icon-clock:after {
    content: "\e602";
}

.p-icon-clock-inverted:after {
    content: "\e603";
}

.p-icon-collaboration:after {
    content: "\e604";
}

.p-icon-dashboard:after {
    content: "\e605";
}

.p-icon-database:after {
    content: "\e606";
}

.p-icon-document:after {
    content: "\e607";
}

.p-icon-documents:after {
    content: "\e608";
}

.p-icon-finance:after {
    content: "\e609";
}

.p-icon-globe-2:after, .p-icon-globe:after {
    content: "\e60a";
}

.p-icon-healthcare:after {
    content: "\e60b";
}

.p-icon-hr:after {
    content: "\e60c";
}

.p-icon-hr-vacancies:after {
    content: "\e60d";
}

.p-icon-images:after {
    content: "\e60e";
}

.p-icon-laptop:after {
    content: "\e60f";
}

.p-icon-learning:after {
    content: "\e610";
}

.p-icon-legal:after {
    content: "\e611";
}

.p-icon-lighting:after {
    content: "\e612";
}

.p-icon-envelope-2:after {
    content: "\e613";
}

.p-icon-mouse:after {
    content: "\e614";
}

.p-icon-pdf:after {
    content: "\e620";
}

.p-icon-pencil:after {
    content: "\e616";
}

.p-icon-plane:after {
    content: "\e617";
}

.p-icon-play-button-2:after {
    content: "\e618";
}

.p-icon-ppt:after {
    content: "\e621";
}

.p-icon-sales-marketing:after {
    content: "\e61a";
}

.p-icon-self-service:after {
    content: "\e61b";
}

.p-icon-travel:after {
    content: "\e61c";
}

.p-icon-web-navigation:after {
    content: "\e61d";
}

.p-icon-wheels:after {
    content: "\e61e";
}

.p-icon-doc:after {
    content: "\e615";
}

.p-icon-xls:after {
    content: "\e625";
}

.p-icon-zip:after {
    content: "\e626";
}

.p-icon-book:after {
    content: "\e657";
}

.p-icon-idt:after {
    content: "\e619";
}

.p-icon-ies:after {
    content: "\e61f";
}

.p-icon-information:after {
    content: "\e658";
}

.p-icon-ldt:after {
    content: "\e628";
}

.p-icon-no-image-available-outline:after {
    content: "\e659";
}

.p-icon-no-image-available:after {
    content: "\e65a";
}

.p-icon-rfa:after {
    content: "\e622";
}

.p-icon-rolf:after {
    content: "\e623";
}

.p-icon-uld:after {
    content: "\e624";
}

.p-icon-contactcard:after {
    content: "\e633";
}

.p-icon-project:after {
    content: "\e62a";
}

.p-icon-signup:after {
    content: "\e62e";
}

.p-icon-login:after {
    content: "\e62f";
}

.p-icon-allmyproducts:after {
    content: "\e627";
}

@media (max-width:767px) {
    .footer-section .btn-primary {
        display: block;
        width: 100%;
    }

    .footer-section .content-gray .col-sm-4:not(:last-of-type) {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid #ccc;
    }

    .footer-section .social-footer-box {
        text-align: center;
        margin-bottom: 40px;
    }

        .footer-section .social-footer-box .social-footer {
            text-align: center;
        }

            .footer-section .social-footer-box .social-footer > li {
                float: none;
            }

                .footer-section .social-footer-box .social-footer > li:last-of-type {
                    margin: 0;
                }
}

footer {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0icGhpbGlwc0dyYWRpZW50IgogICAgICAgICAgICAgICAgICAgICAgICB4MT0iMCUiIHkxPSIyMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHgyPSIxMDAlIiB5Mj0iMTAwJSIKICAgICAgICAgICAgICAgICAgICAgICAgc3ByZWFkTWV0aG9kPSJwYWQiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiAgIHN0b3AtY29sb3I9IiMwNDEwMkYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxMjYxOUIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6dXJsKCNwaGlsaXBzR3JhZGllbnQpOyIgLz4KPC9zdmc+);
    background: linear-gradient(125deg,#0b2265 0,#0039a6 100%);
    color: #fff;
    padding: 60px 0;
}

    footer .p-logo {
        text-align: center;
    }

        footer .p-logo img {
            width: 110px;
            height: 140px;
            max-width: none;
        }

header, header .shadow {
    width: 100%;
    top: 0;
    left: 0;
}

footer .f-left, footer .f-right {
    list-style: none;
    font-weight: 700;
}

    footer .f-left > li, footer .f-right > li {
        padding: 4px 0;
        cursor: pointer;
    }

footer .f-left {
    text-align: left;
}

footer .f-right {
    text-align: right;
}

footer .terms {
    margin-top: 40px;
}

    footer .terms a {
        color: #fff;
        font-weight: 400;
    }

    footer .terms ul, header .nav > div.active > a {
        font-weight: 700;
    }

        footer .terms ul li {
            display: inline-block;
            margin-right: 10px;
            padding-right: 10px;
            border-right: 1px solid #fff;
        }

            footer .terms ul li:last-of-type {
                border-right: none;
                margin-right: 0;
            }

header {
    padding: 20px 0 0;
    position: fixed;
    height: 170px;
    z-index: 100;
}

    header .shadow {
        background: linear-gradient(to bottom,rgba(0,0,0,.1) 0,rgba(0,0,0,.1) 20%,transparent 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1ab3c8e6', endColorstr='#00b3c8e6', GradientType=0 );
        height: 100%;
        position: absolute;
        pointer-events: none;
    }

    header.active {
        top: -200px;
        transition: top .5s ease;
    }

        header.active .shadow {
            opacity: 1;
        }

    header .p-logo {
        width: 190px;
        height: 154px;
        display: inline-block;
        cursor: pointer;
        position: absolute;
        top: -20px;
        left: 0;
    }

        header .p-logo img {
            max-width: 100%;
            pointer-events: none;
        }

        header .p-logo span {
            color: #fff;
            font-size: 18px;
            margin-left: 40px;
            position: relative;
            top: -61px;
        }

@media (max-width:767px) {
    header .p-logo {
        width: 150px;
        height: 154px;
        margin-left: -5px;
    }

        header .p-logo span {
            font-size: 14px;
            margin-left: 30px;
            top: -50px;
        }
}

header .s-nav {
    position: fixed;
    top: 15px;
    right: 15px;
    cursor: pointer;
    height: 25px;
    width: 25px;
    z-index: 100;
}

    header .s-nav span {
        width: 100%;
        border-top: 5px solid #fff;
        display: block;
        position: relative;
        pointer-events: none;
    }

        header .s-nav span:after, header .s-nav span:before {
            pointer-events: none;
            content: '';
            display: block;
            position: absolute;
            top: 4px;
            right: 0;
            left: 0;
            height: 5px;
            border-top: 5px solid #fff;
        }

        header .s-nav span:before {
            top: 13px;
        }

        header .s-nav span, header .s-nav span:after, header .s-nav span:before {
            box-shadow: 0 0 2px 1px rgba(0,0,0,.3);
        }

header .nav {
    margin-left: 175px;
    border-bottom: 1px solid rgba(0,0,0,.1);
    padding-bottom: 9px;
    font-size: 13px;
}

    header .nav > div.active:after, header .sub-nav:before {
        width: 0;
        height: 0;
        border-style: solid;
        content: '';
    }

    header .nav > div {
        margin-right: 13px;
        display: inline-block;
        color: rgba(0,0,0,.7);
        position: relative;
    }

        header .nav > div > a, header .nav > div > span {
            padding: 5px 10px 3px;
            color: #222;
            text-decoration: none;
            cursor: pointer;
        }

        header .nav > div:hover > .sub-nav {
            display: block;
        }

        header .nav > div.active:after {
            border-width: 0 5px 6px;
            border-color: transparent transparent rgba(0,0,0,.2);
            z-index: -1;
            position: absolute;
            top: calc(100% + 3px);
            left: 50%;
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
        }

header .sub-nav {
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #222;
    font-size: 12px;
    box-shadow: 0 0 3px rgba(0,0,0,.3);
}

    header .sub-nav:before {
        border-width: 0 5px 5px;
        border-color: transparent transparent #fff;
        position: absolute;
        top: -5px;
        left: 20px;
    }

    header .sub-nav .sub-nav-scroll {
        max-height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    header .sub-nav li {
        white-space: nowrap;
        position: relative;
        min-height: 41px;
    }

        header .sub-nav li.active, header .sub-nav li:hover {
            background: #f5f5f5;
            cursor: pointer;
        }

        header .sub-nav li a {
            display: block;
            padding: 12px 16px;
            cursor: pointer;
        }

            header .sub-nav li a:first-of-type {
                padding-top: 14px;
            }

header .right-navigation {
    position: absolute !important;
    right: 12px;
    top: -3px;
}

    header .right-navigation > div {
        display: inline-block;
        position: relative;
        top: -6px !important;
    }

        header .right-navigation > div:hover .sub-nav {
            display: block;
        }

    header .right-navigation .p-icon-myphilips {
        font-size: 16px;
    }

    header .right-navigation .user-icon {
        margin-right: 5px;
        position: relative;
        top: -1px;
    }

        header .right-navigation .user-icon > span {
            display: inline-block;
            width: 17px;
            height: 17px;
            opacity: .8;
            background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAABDCAYAAAA8nU2sAAAACXBIWXMAABcSAAAXEgFnn9JSAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAq1JREFUeNrsmjtOw0AQhteGggpMjSJMR0fo6GI6urilSjgB4gSBExhOQHICkhMQOjrMCTCKkKDCwAUYO7PCgdgk+/Bj5JFGUaTYu9/+M7s7AwbTYI3Glg0fXfAWuDPnJz74GPxqMnkJVI9vaIDpIdCiNgQ/Uwm3ohAoArkBP1jy0d1oETY21t8+P7/80kAh0DX4muAroudcAPsAsPvCoRJAKuwIwJ5lFTMU5NADuKU41/chx4TBTMnBPQ1A/L35K4UqPTF9dghqjfNW6pTptU4R4edohnKKgGpqhrIhxK3coGAw3UBSCyeqlMVKbCYjaEJQolutgAV5KxVoBgpFb+4yULrVGhaRUwPNUMLvl73Q3mo6hH0Ivf2idr8zTSpJvVeqnoK65zUq7KI6SCHQBajUL7RIjCpVALMVXZv6ACStvpJyHsBGChS7UAGkDCqh2IhNGyn2MpsC+LFsyCnb/TJ2RQfrITflnhjiOTTQcTsxlpxsNMEu+2lS8gmfpK00PpPMtyDtpvCriRPiAX+HuRYqhcKJeSy7SXkpkxMwxjmbNkJTNxE2bXqG0lAwmIurt0i5ESy7JWOoegvuniFGxVAYSqKnF2DOjPB2EM4JxzbmnC3w/pOshTM0AOVlqWBGRrn+UIF6cG7TM+3u57FqmLfQhRYT16kIlIPz/VepXsVaEr3MnMqhlazLZlrUZsVV4taZqxSeH0+s5D29DNvk52FSKbfCQHz+f8KvzaptpzPhh6H3zqpvcQhypRxGw9xk+LWJQLWSUE0iUHHEGYTyiduOSUglbk2T0CYxA7VNDGrPFCyny2wWRSiHIlT9h+waqoaqoWqoGqr0UCFFKJ8Yk09Rqbjx8khRKWrh90gyp3gzM2q8WBSIJpMXg59TYyIqxRyr+GVERKn4Hx+/BRgAETDU7/7cy88AAAAASUVORK5CYII=) no-repeat;
            background-size: 15px 17px;
        }

    header .right-navigation .search-icon, header .right-navigation .search-icon span {
        width: 19px;
        height: 19px;
        display: inline-block;
    }

        header .right-navigation .search-icon span {
            background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RDM3NzM2MjdFMDc5MTFFNTg5OEY4QzdFRDQ5OEQ0QzAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RDM3NzM2MjhFMDc5MTFFNTg5OEY4QzdFRDQ5OEQ0QzAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpEMzc3MzYyNUUwNzkxMUU1ODk4RjhDN0VENDk4RDRDMCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpEMzc3MzYyNkUwNzkxMUU1ODk4RjhDN0VENDk4RDRDMCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PnhN0JYAAAFoSURBVHjapJTPK0RRFMfvkxQiWZBJk5S3UIyyYjmahShW2FmwsLBiS5FY+AOUjQVmMRs2krJhIwtbFtPMTrFQovzYPd9T36fT8WZ6b3zr03tz75nP3PfuueO5vxkF02AItIMAFME1OAEvujgIgt97T403gC0wxs9voARagK/qNsBZlCxMHciDO7AH+s18E5jjvDCjZSFhdli06qonBa5Y60fJfE4eu3gZYH0+SrbOyYyLn31+J21l5+DWJcs4ZVNaJi++AzwnlD3x2ml38Ru0JpQ18vppZfeUtSWQjfD6YCcm+PwrMUXS6DfgQhZjN0BWd0nhYAzZNmsXKzVtRnV3roKkGWyqulPpUS3TZzMLdnlf5Pl7BPVgGMxG/IBs3jxEZXvQJb1giWKbd1AAk6BLjX+ABQhLXpUzKIe9G3yBMh/NcezQtJO0yLLnaksaHPE9hnmtVSbpAQdqhWvun+nj/19WdvNHgAEAXhuWiJ4Ae48AAAAASUVORK5CYII=);
            opacity: .9;
            background-size: 19px 19px;
        }

header .icon {
    border-top: 2px solid transparent;
    text-decoration: none !important;
}

    header .icon:hover {
        border-top: 2px solid #fff;
    }

header .icon-right {
    position: absolute !important;
    right: 10px;
    top: 0;
}

header .mobile-menu-overlay {
    position: fixed;
    background: rgba(0,0,0,.8);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
}

    header .mobile-menu-overlay.active {
        display: block;
    }

header .mobile-menu {
    position: fixed;
    left: 100%;
    top: 0;
    height: 100%;
    width: 90%;
    padding-right: 40px;
    background: #f2f2f2;
    z-index: 9999;
    box-shadow: -1px 0 5px rgba(0,0,0,.7);
    overflow-y: auto;
    overflow-x: hidden;
    transition: -webkit-transform .3s cubic-bezier(.7,0,.3,1);
    transition: transform .3s cubic-bezier(.7,0,.3,1);
    transition: transform .3s cubic-bezier(.7,0,.3,1),-webkit-transform .3s cubic-bezier(.7,0,.3,1);
}

    header .mobile-menu.active {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    header .mobile-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        header .mobile-menu ul li {
            border-bottom: 1px solid #ddd;
            margin-right: -40px;
            position: relative;
            background: #fff;
        }

            header .mobile-menu ul li > a {
                padding: 15px 0 15px 30px;
                display: block;
            }

                header .mobile-menu ul li > a[anchor]:after {
                    font-family: FontAwesome,sans-serif;
                    content: '\f105';
                    position: absolute;
                    right: 60px;
                    top: 10px;
                    font-size: 20px;
                    color: #999;
                }

            header .mobile-menu ul li.close {
                text-align: right;
                color: #178BC6;
                padding: 15px 20px 15px 30px;
            }

                header .mobile-menu ul li.close .p-icon-close {
                    position: relative;
                    top: 3px;
                    padding: 4px;
                }

                header .mobile-menu ul li.close:after {
                    display: none;
                }

    header .mobile-menu .sub-nav {
        display: block;
        position: static;
        box-shadow: none;
    }

        header .mobile-menu .sub-nav:before {
            display: none;
        }

        header .mobile-menu .sub-nav li:last-of-type {
            border: none;
        }

        header .mobile-menu .sub-nav li a {
            padding-left: 50px;
        }

.info-icon.blue {
    fill: #178BC6;
}

.header-class.white header .right-navigation .search-icon span {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABMAAAATCAYAAAByUDbMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDY3IDc5LjE1Nzc0NywgMjAxNS8wMy8zMC0yMzo0MDo0MiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpiYmQ5ZjA4Zi0wNGQ2LTRhM2YtOGRlZS1kMTkwMmJlMGRiZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6Qzc3MjcxMTNDMUQyMTFFNTkwOUNEQTg5M0U0QjY3NDkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6Qzc3MjcxMTJDMUQyMTFFNTkwOUNEQTg5M0U0QjY3NDkiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTUgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpiYmQ5ZjA4Zi0wNGQ2LTRhM2YtOGRlZS1kMTkwMmJlMGRiZTYiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6YmJkOWYwOGYtMDRkNi00YTNmLThkZWUtZDE5MDJiZTBkYmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+mkO4xQAAAXJJREFUeNqc1L0vBEEYBvDZi0i4EFEQF7mIxBaXcER1yhMVheroFBQKFS0JEQp/gESjwBWao1BINDSqaxSuuNBJKCRC4qOQrOeVZ5PXZDa3601+md2Z2ecuszPrBUFgrBqDaRiGTpAJdbiCCjybiPJUWDNswjjvX+EO2sBXz6zDmTNNwiAFZajCLuTYH2qFWY6LkjX+K7zY5qQV1yQlA5ec67vCfA4eNQgKDXJ+2RW2xsF8zDCxx2eyuj+FZSvAN9yY+HXKdkR3SlgXPJlk9ci22w77gvaEYS1sP+ywW4Z1JAgrsK3Z+2ySi7kcc/Flo1/DOffnn7cpHRcMHIoRtsW5C1GbNq9290RESBo21LwTe+Pqs1mEHV7Xef4eoAlGYcaxdvLy5uDePuhS/bDIYLve4BimoEf1v8O8fBQ8xydIKgM56IVP/nKVY9J3YG0n2SJLUWGNKguHkFZ9L/8Nk+qDffUPV02Cw+0ywO9fUe5/BBgA71AbJ4Ds/tcAAAAASUVORK5CYII=);
    opacity: 1;
}

.header-class.white header .right-navigation .user-icon > span {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAABDCAYAAAA8nU2sAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NjkyNTNGRTMwREYyMTFFNkFCNjQ4MzgyRDZDNDJFQjEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NjkyNTNGRTQwREYyMTFFNkFCNjQ4MzgyRDZDNDJFQjEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2OTI1M0ZFMTBERjIxMUU2QUI2NDgzODJENkM0MkVCMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo2OTI1M0ZFMjBERjIxMUU2QUI2NDgzODJENkM0MkVCMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PhaPwqsAAAJTSURBVHja7JrtUYNAEIbhxgLOCkwqECvwrCB0YKwgsYLEChgrwFSgVpBYQUgFpIPQwXnHLBmMRAm3d8AO78z+MMrHw97uLW/0pZSeBY1UTFXcqxAVv09UbFS8qtijX11DIcZIRSwv0zsch3YfmEBTFQfZTAc4vlNQU4mjeVegsIAKGWfMN2wUuiFsVXDkUr+DZtJIzPDikQWg4ryNZZIpnaXUs6cHaPtOMzXz7OqxjeUnLEOJNpaf9OzrWkXmKlOB50aBy+XHvQ6LeQTV9ZoaN5niTTK1twyUNb2GCdTGMtRHGzW1sgy1aqOmtNaWNuEEhtpWoAKY0jsz92G0dP1En5GBXozrFenNN0Z6QYy75lHMDYGWXTRedAQq1hfCbFUIzPvwLfl+At6HwjNzYgb70MrGfncpFD8xKYsbflLx9scxwckkcm5S0OeOS+Aa+AvOnWE3Cl6jGUSGy2ZZo4lwrJoKLzAp0wYWl4C6qmt6hqZQTT29FDInKp4uh88j+Dt0b9ClSSldmZ7nGoWt8QdblaYns2EmOlRUd/YTDuwvzP1Q1IFa9MySWPy3+dq2kp1Y1KznWaq0qMuZ4pAl3lOwo5tbzlTYY6Di/n8tv0nPPczZ6fLTGToQMGfzJchK/Z6CwvLymxCBui9DBUSgRFFTVOqp0JgRytLxDYMRahI/oG6IQd0yGGIpietGkVID01CSWKZofpE9QA1QA9QANUCRgsooQiXEmBKKmcqNlx3FTFFbfjuSNVWYmdp44USg/GKf2hAByjmu4IdPIpnK//HxW4ABAMiOJ40wTmY7AAAAAElFTkSuQmCC);
}

.header-class.white header .nav {
    border-bottom-color: rgba(255,255,255,.3);
}

    .header-class.white header .nav > div.active:after {
        border-color: transparent transparent rgba(255,255,255,.5);
    }

    .header-class.white header .nav > div > a {
        color: rgba(255,255,255,.9);
    }

        .header-class.white header .nav > div > a:hover {
            color: #fff;
        }

    .header-class.white header .nav .right-navigation > div {
        color: rgba(255,255,255,.9);
    }

.header-class.white header ul.crumbpath, .header-class.white header ul.crumbpath a {
    color: #fff;
}

.header-class.white header .s-nav span, .header-class.white header .s-nav span:after, .header-class.white header .s-nav span:before {
    border-top: 5px solid #fff;
}

.library .col-sm-3 {
    transition: all .3s cubic-bezier(.7,0,.3,1);
}

    .library .col-sm-3.ng-hide-add {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .library .col-sm-3.ng-hide-add-active, .library .col-sm-3.ng-hide-remove {
        opacity: 0;
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

    .library .col-sm-3.ng-hide-remove-active {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

.filters .dropdown {
    margin-right: 30px;
    color: #178BC6;
    cursor: pointer;
}

    .filters .dropdown .fa-angle-down {
        margin-left: 10px;
    }

.filters label {
    display: inline-block;
    color: #178BC6;
    min-width: 80px;
    position: relative;
    padding-left: 30px;
    font-weight: 400;
}

    .filters label .checkbox {
        position: absolute;
        top: -10px;
        left: 0;
    }

    .filters label:hover {
        cursor: pointer;
        color: #126b98;
    }

        .filters label:hover .checkbox {
            border-color: #126b98;
            cursor: pointer;
        }

.resource .cover {
    min-height: 90vh;
}

.resource .media {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgdmVyc2lvbj0iMS4wIiB3aWR0aD0iMTAwJSIKICAgICBoZWlnaHQ9IjEwMCUiCiAgICAgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgoKICAgIDxkZWZzPgogICAgICAgIDxsaW5lYXJHcmFkaWVudCBpZD0icGhpbGlwc0dyYWRpZW50IgogICAgICAgICAgICAgICAgICAgICAgICB4MT0iMCUiIHkxPSIyMCUiCiAgICAgICAgICAgICAgICAgICAgICAgIHgyPSIxMDAlIiB5Mj0iMTAwJSIKICAgICAgICAgICAgICAgICAgICAgICAgc3ByZWFkTWV0aG9kPSJwYWQiPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjAlIiAgIHN0b3AtY29sb3I9IiMwNDEwMkYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgICAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMxMjYxOUIiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgICAgIDwvbGluZWFyR3JhZGllbnQ+CiAgICA8L2RlZnM+CgogICAgPHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6dXJsKCNwaGlsaXBzR3JhZGllbnQpOyIgLz4KPC9zdmc+);
    background: linear-gradient(125deg,#04102F 0,#12619B 100%);
    padding-top: 200px;
}

.resource .list-link li {
    margin: 10px 0;
}

.resource .tools {
    font-weight: 700;
    color: #fff;
    list-style: none;
    padding: 8px 16px;
    border-radius: 4px;
    background: #000;
    float: right;
    margin-top: 20px;
}

.resource .description {
    padding-top: 20px;
}

    .resource .description h2 {
        margin-top: 0;
    }

    .resource .description .btn {
        margin-top: 15px;
        padding: 6px 30px;
        font-size: 13px;
        border-radius: 2px;
        display: block;
        width: 100%;
    }

.resource .social-group {
    text-align: justify;
    -ms-text-justify: distribute-all-lines;
    text-justify: distribute-all-lines;
    overflow: hidden;
}

    .resource .social-group .social-button {
        vertical-align: top;
        display: inline-block;
        zoom: 1;
        font-size: 12px;
    }

        .resource .social-group .social-button:hover {
            cursor: pointer;
        }

            .resource .social-group .social-button:hover span {
                border-color: #178BC6;
            }

            .resource .social-group .social-button:hover i {
                background: #126b98;
            }

        .resource .social-group .social-button span {
            padding: 6px 10px 4px;
            color: #178BC6;
            border: 1px solid #C0E2ED;
            border-right: none;
            border-radius: 2px 0 0 2px;
            margin-right: -4px;
        }

        .resource .social-group .social-button i {
            padding: 6px 8px;
            background: #178BC6;
            color: #fff;
            border-radius: 0 2px 2px 0;
        }

    .resource .social-group .stretch {
        width: 100%;
        display: inline-block;
        font-size: 0;
        line-height: 0;
    }

@media (max-width:767px) {
    .resource .actions {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #C0E2ED;
    }

        .resource .actions .social-group {
            text-align: right;
            display: inline-block;
            float: left;
        }

            .resource .actions .social-group .social-button {
                margin-right: 5px;
            }

        .resource .actions .btn {
            display: inline-block;
            width: auto;
            margin: 0;
        }
}

.search-result-item h4, .search-result-overview h4 {
    font-weight: 700;
    font-size: 14px;
    margin: 1px 0 5px;
}

.search-result-overview {
    margin-bottom: 36px;
}

.link-tags {
    margin-top: 10px;
}

    .link-tags a {
        margin-right: 5px;
        display: inline-block;
    }

        .link-tags a.active {
            font-weight: 700;
        }

.search-result-item {
    margin-bottom: 16px;
}

    .search-result-item h4 {
        color: #000;
    }

    .search-result-item p {
        margin-bottom: 0;
    }

.content-header .cover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

    .content-header .cover.videobutton:after {
        position: absolute;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,.6);
        font-family: FontAwesome,sans-serif;
        display: block;
        content: '\f04b';
        line-height: 40px;
        left: 50%;
        top: 50%;
        text-align: center;
    }

    .content-header .cover.videobutton:hover {
        cursor: pointer;
    }

        .content-header .cover.videobutton:hover:after {
            background: #fff;
        }

.content-header .btn {
    margin-left: 175px;
    font-size: 13px;
    padding: 6px 20px 4px;
    opacity: .9;
}

    .content-header .btn:hover {
        opacity: 1;
    }

.cover-title {
    margin: 0 0 20px 175px;
    color: #fff;
    font-family: CentraleSansLight,Helvetica,sans-serif;
    font-size: 70px;
    letter-spacing: 2px;
    text-shadow: 0 0 4px rgba(0,0,0,.2);
}

@media (max-width:767px) {
    .cover-title {
        line-height: 10px;
        margin: 0;
        font-size: 40px;
    }

        .cover-title > div {
            font-size: 70px;
        }
}

.download-library .filter-row {
    margin-bottom: 16px;
}

.download-library ul.sorting {
    padding: 0;
    margin-bottom: 60px;
    color: #178BC6;
    text-align: right;
}

    .download-library ul.sorting li {
        display: inline-block;
        padding: 0 32px 0 0;
    }

        .download-library ul.sorting li:last-of-type {
            padding-right: 0;
        }

        .download-library ul.sorting li span {
            cursor: pointer;
        }

            .download-library ul.sorting li span .fa {
                padding-left: 5px;
            }

        .download-library ul.sorting li.active {
            text-decoration: underline;
        }

    .download-library ul.sorting.ux-filters {
        padding: 0 0 10px;
        margin-bottom: 0;
    }

.download-library .ux-tag-sorter {
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    margin-bottom: 60px;
}

    .download-library .ux-tag-sorter .tags .btn {
        margin-right: 5px;
    }

.download-library .big-tooltip {
    background: #46A9A4;
    color: #fff;
    height: 150px;
    padding: 30px;
    font-size: 16px;
    border-radius: 2px;
    line-height: 1.5em;
    position: relative;
    border: 1px solid transparent;
}

    .download-library .big-tooltip:before {
        right: 100%;
        top: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
        border-color: rgba(30,157,139,0);
        border-right-color: #46A9A4;
        border-width: 7px;
        margin-top: -7px;
    }

@media (min-width:991px) {
    .download-library .big-tooltip {
        font-size: 18px;
    }
}

.download-library section {
    margin-bottom: 50px;
    border-bottom: 1px solid #ddd;
}

    .download-library section:last-of-type {
        border: none;
    }

    .download-library section .show-more {
        margin: 20px 0;
        text-align: center;
    }

        .download-library section .show-more .btn {
            border-radius: 2px;
        }

.download-library h3 {
    font-weight: 100;
    font-size: 18px;
    margin: 15px 0;
}

.col-grid {
    float: none;
    display: inline-block;
    vertical-align: top;
}

.download-library-filters {
    text-align: right;
}

.landing-box .media-box-content {
    height: 245px;
}

    .landing-box .media-box-content img {
        min-height: 245px;
    }

@media (max-width:1199px) {
    .landing-box .media-box-content {
        height: 200px;
    }

        .landing-box .media-box-content img {
            min-height: 210px;
        }
}

@media (max-width:991px) {
    .landing-box .media-box-content {
        height: auto;
    }

        .landing-box .media-box-content img {
            min-height: 0;
        }
}

.landing-box figcaption {
    min-height: 120px;
    max-height: 120px;
}

    .landing-box figcaption p {
        position: absolute;
        bottom: 0;
    }

        .landing-box figcaption p .fa-angle-right {
            margin-left: 10px;
        }

@media (min-width:767px) and (max-width:992px) {
    .landing-box figcaption {
        font-size: 12px;
    }

        .landing-box figcaption h5 {
            font-size: 15px;
        }
}

body {
    background: #fff;
    font-family: CentraleSansBook,Helvetica,sans-serif;
    color: #3c3c3c !important;
    line-height: 22px;
}

    body.noscroll {
        overflow: hidden;
    }

a:hover {
    cursor: pointer;
}

.content-blue.extra-footer a {
    font-size: 20px;
}

    .content-blue.extra-footer a:after {
        font-family: FontAwesome,sans-serif;
        padding-left: 10px;
        content: '\f105';
    }

    .content-blue.extra-footer a:hover {
        text-decoration: none;
    }

.user-account {
    position: absolute !important;
    right: 0;
    top: 0;
}

    .user-account .fa-user {
        margin-right: 5px;
    }

.search-spinner {
    text-align: center;
    font-size: 30px;
    color: #ccc;
    padding: 30px 0;
}

footer .social-footer {
    text-align: left;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

    footer .social-footer li {
        float: left;
        margin-right: 8px;
        display: inline-block;
        padding: 0;
    }

    footer .social-footer a {
        width: 2rem;
        height: 2rem;
        overflow: hidden;
        text-indent: -9999px;
        display: inline-block;
    }

    footer .social-footer .twitter a {
        background: url(/assets/img/sprites.png) 0 50px/311px 158px;
    }

    footer .social-footer .facebook a {
        background: url(/assets/img/sprites.png) -20px 50px/311px 158px;
    }

    footer .social-footer .youtube a {
        background: url(/assets/img/sprites.png) -43px 50px/311px 158px;
    }

    footer .social-footer .gplus a {
        background: url(/assets/img/sprites.png) -63px 50px/311px 158px;
    }

    footer .social-footer .pinterest a {
        background: url(/assets/img/sprites.png) -83px 50px/311px 158px;
    }

h1.title {
    font-size: 40px !important;
    font-weight: 400 !important;
    font-family: CentraleSansLight,Helvetica,sans-serif !important;
}

@media (max-width:991px) {
    h1.title {
        font-size: 40px !important;
    }
}

@media (max-width:767px) {
    .landing-box figcaption {
        min-height: 140px;
        max-height: 140px;
    }

    h1.title {
        font-size: 30px !important;
    }
}

.cms-text.subtitle, h2.subtitle {
    font-family: CentraleSansLight,Helvetica,sans-serif !important;
    font-size: 85px !important;
    line-height: 1;
}

@media (max-width:1199px) {
    .cms-text.subtitle, h2.subtitle {
        font-size: 70px !important;
    }
}

@media (max-width:991px) {
    .cms-text.subtitle, h2.subtitle {
        font-size: 65px !important;
    }
}

@media (max-width:767px) {
    .cms-text.subtitle, h2.subtitle {
        font-size: 50px !important;
        margin-top: -30px;
    }

        .cms-text.subtitle p, h2.subtitle p {
            line-height: 1;
        }
}

.decimal-list {
    list-style: decimal;
}

.nonorder-list {
    list-style: disc;
    margin: 0 0 20px 20px;
}

    .decimal-list li, .nonorder-list li {
        display: list-item;
    }

.cms-text.subtitle, h1.title, h2.subtitle {
    text-shadow: 0 0 1px rgba(0,0,0,.3);
}

.content-header {
    position: relative;
    min-height: 200px;
}

    .content-header.cover-header {
        min-height: 745px;
    }

@media (max-width:1199px) {
    .content-header.cover-header {
        min-height: 700px;
    }
}

@media (max-width:991px) {
    .content-header.cover-header {
        min-height: 600px;
    }
}

@media (max-width:767px) {
    .content-header.cover-header {
        min-height: 400px;
    }

        .content-header.cover-header .cover {
            background-position-x: 25%;
        }

    .landing-search {
        margin-top: -20px;
    }
}

.content-header.cover-small {
    min-height: 300px;
}

.landing-search {
    position: relative;
    margin-bottom: 16px;
}

    .landing-search .search-box {
        z-index: 2;
        margin-right: 160px;
        transition: margin-right .5s cubic-bezier(.7,0,.3,1);
    }

        .landing-search .search-box.focus {
            margin-right: 0;
        }

@media (max-width:767px) {
    .landing-search .search-box {
        margin: 0;
    }
}

.landing-search .btn {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 1px;
    font-size: 14px;
    padding: 17px 30px 15px;
    border-radius: 2px;
}

    .landing-search .btn .fa {
        margin-left: 10px;
    }

    .landing-search .btn.btn-white {
        background: rgba(255,255,255,.8);
    }

.landing-search.landing-search-selectables .search-box {
    margin-right: 220px;
}

.landing-search.landing-search-selectables .btn-select-all {
    padding-left: 60px;
    color: rgba(23,139,198,.3);
}

    .landing-search.landing-search-selectables .btn-select-all:hover {
        cursor: default;
        background-color: #fff;
    }

    .landing-search.landing-search-selectables .btn-select-all .checkbox svg path {
        stroke: #178BC6;
    }

    .landing-search.landing-search-selectables .btn-select-all.action {
        color: #178BC6;
    }

        .landing-search.landing-search-selectables .btn-select-all.action:hover {
            cursor: pointer;
            background-color: #178BC6;
            color: #fff;
        }

            .landing-search.landing-search-selectables .btn-select-all.action:hover .checkbox {
                border-color: #fff;
            }

                .landing-search.landing-search-selectables .btn-select-all.action:hover .checkbox svg path {
                    stroke: #fff;
                }

.landing-search.landing-search-selectables .checkbox {
    position: absolute;
    left: 20px;
    top: 5px;
}

.landing-content h4 {
    position: relative;
}

    .landing-content h4 a {
        position: absolute;
        right: 0;
        top: 3px;
        font-size: 14px;
    }

.subscriptions-list {
    margin: 20px 0;
}

    .subscriptions-list .checkbox svg path {
        stroke: #178BC6;
    }

    .subscriptions-list tbody > tr > td {
        vertical-align: middle;
        font-size: 16px;
        border-bottom: 1px solid #ddd;
        border-top: none;
    }

        .subscriptions-list tbody > tr > td .img-responsive {
            border: 1px solid #eee;
        }

.contact-card {
    color: #222;
}

    .contact-card.contact-card__isBlue {
        background: #CAE3E8;
    }

    .contact-card a {
        color: #178BC6;
    }

        .contact-card a:hover {
            color: #0f5b81;
        }

.form-border {
    position: relative;
}

@media (min-width:767px) {
    .form-border:before {
        height: 100%;
        width: 1px;
        content: '';
        position: absolute;
        left: -50px;
        top: 0;
        background: #ccc;
    }

    .form-border form {
        width: 80%;
    }
}

.header-image {
    height: 480px;
}

    .header-image img {
        max-width: 2000px;
    }

/*@media (max-width:945px) {
    .header-image img {
        max-width: 945px;
    }
}*/

@media (min-width: 210px) {
    .wraptest {
        background-image: url(/Resources/ImgPhilips/cover_1.jpg);
        background-size: 600px auto;
        background-repeat: no-repeat;
        background-origin: padding-box;
        background-position: center top;
    }

    h1.title {
        color: #000;
    }

    .form-border {
        margin-top: 220px;
    }
}

@media (min-width: 410px) {
    .wraptest {
        background-image: url(/Resources/ImgPhilips/cover_1.jpg);
        background-size: 800px auto;
        background-repeat: no-repeat;
        background-origin: padding-box;
        background-position: center top;
    }

    h1.title {
        color: #FFF;
    }
}

@media (min-width: 440px) {
    .wraptest {
        background-image: url(/Resources/ImgPhilips/cover_1.jpg);
        background-size: 1200px auto;
        background-repeat: no-repeat;
        background-origin: padding-box;
        background-position: center top;
    }

    h1.title {
        color: #FFF;
    }
}

@media (min-width: 769px) {
    .wraptest {
        background-image: url(/Resources/ImgPhilips/cover_1.jpg);
        background-size: 2000px auto;
        background-repeat: no-repeat;
        background-origin: padding-box;
        background-position: center top;
    }

    h1.title {
        color: #FFF;
    }
}

/*@media (max-width:885px) {
    .header-image {
        height: 315px;
    }

        .header-image img {
            max-width: 885px;
        }
}*/

@media (max-width:769px) {
    .header-image {
        height: 295px;
    }

        /*.header-image img {
            max-width: 440px;
        }*/

    .header-text {
        min-width: 295px;
    }
}

@media (max-width:440px) {
    .header-image {
        height: 210px;
    }

        /*.header-image img {
            max-width: 440px;
        }*/

    .header-text {
        min-width: 295px;
    }
}

/*@media (min-width:570px) {
    .form-border {
        margin-top: 40px;
    }
}*/

@media (max-width:571px) {
    .form-border {
        margin-top: 0px;
    }

        .form-border:before {
            height: 1px;
            width: 100%;
            content: '';
            position: absolute;
            left: 0;
            top: -20px;
            background: #ccc;
        }
}

@media (min-width:440px) {
    .form-border {
        margin-top: 20px;
    }
}

@media (max-width:439px) {
    .form-border {
        margin-top: -10px;
    }
}


.profile-page h4 {
    color: #178BC6;
    font-size: 16px;
    margin-bottom: 5px;
}

.profile-page .title {
    top: -60px !important;
    position: absolute;
}

/*@media (max-width:500px) {
    .profile-page .title {
        color: #222;
    }
}*/

.profile-page .control-required:before {
    content: '*';
    margin-right: 3px;
    font-size: 12px;
    position: relative;
    top: -2px;
    color: #178BC6;
}

.alert-authorization {
    margin: 36px 0;
}

.alert-info {
    border: none;
    padding: 21px 15px 15px 70px;
    position: relative;
}

    .alert-info h3 {
        font-size: 16px;
        margin: 2px 0 26px;
    }

    .alert-info .fa {
        font-size: 20px;
        position: absolute;
        top: 20px;
        left: 25px;
    }

.validators {
    margin: 5px 0;
}

    .validators > span {
        display: inline-block;
        width: 50%;
        padding: 3px 0;
    }

        .validators > span .fa {
            margin-right: 5px;
            position: relative;
            top: -1px;
        }

            .validators > span .fa.fa-times {
                color: #cd202c;
            }

            .validators > span .fa.fa-check {
                color: #5b8f22;
            }

.missing-section {
    color: #fff;
    background: #0066A1;
    padding: 50px 0;
    margin-bottom: -36px;
}

    .missing-section h1 {
        font-family: CentraleSansLight,Helvetica,sans-serif;
        font-size: 24px;
        margin-bottom: 26px;
    }

    .missing-section a {
        color: #fff;
    }

header .sub-nav li.separator {
    min-height: 2px;
    background: rgba(0,0,0,.05);
}

.qform .check label {
    font-weight: 400;
    margin-left: 10px;
}

.qform .check input {
    position: relative;
    left: -10px;
}

.empty-search-res {
    text-align: center;
}
