.bootstrap-tagsinput {
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    display: inline-block;
    padding: 4px 6px;
    color: #555;
    vertical-align: middle;
    border-radius: 4px;
    max-width: 100%;
    line-height: 22px;
    cursor: text;
}
.bootstrap-tagsinput input {
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    padding: 0 6px;
    margin: 0;
    width: auto;
    max-width: inherit;
}
.bootstrap-tagsinput.form-control input::-moz-placeholder {
    color: #777;
    opacity: 1;
}
.bootstrap-tagsinput.form-control input:-ms-input-placeholder {
    color: #777;
}
.bootstrap-tagsinput.form-control input::-webkit-input-placeholder {
    color: #777;
}
.bootstrap-tagsinput input:focus {
    border: none;
    box-shadow: none;
}
.bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: white;
}
.bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: 8px;
    cursor: pointer;
}
.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "x";
    padding: 0px 2px;
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.05);
}
.bootstrap-tagsinput .tag [data-role="remove"]:hover:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: "FontAwesome";
    src: url("../fonts/fontawesome-webfont.eot?v=4.6.3");
    src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.6.3")
            format("embedded-opentype"),
        url("../fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"),
        url("../fonts/fontawesome-webfont.woff?v=4.6.3") format("woff"),
        url("../fonts/fontawesome-webfont.ttf?v=4.6.3") format("truetype"),
        url("../fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular")
            format("svg");
    font-weight: normal;
    font-style: normal;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.fa-lg {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}
.fa-2x {
    font-size: 2em;
}
.fa-3x {
    font-size: 3em;
}
.fa-4x {
    font-size: 4em;
}
.fa-5x {
    font-size: 5em;
}
.fa-fw {
    width: 1.28571429em;
    text-align: center;
}
.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
}
.fa-ul > li {
    position: relative;
}
.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: 0.14285714em;
    text-align: center;
}
.fa-li.fa-lg {
    left: -1.85714286em;
}
.fa-border {
    padding: 0.2em 0.25em 0.15em;
    border: solid 0.08em #eee;
    border-radius: 0.1em;
}
.fa-pull-left {
    float: left;
}
.fa-pull-right {
    float: right;
}
.fa.fa-pull-left {
    margin-right: 0.3em;
}
.fa.fa-pull-right {
    margin-left: 0.3em;
}
.pull-right {
    float: right;
}
.pull-left {
    float: left;
}
.fa.pull-left {
    margin-right: 0.3em;
}
.fa.pull-right {
    margin-left: 0.3em;
}
.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(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}
.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
}
.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
}
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
}
.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
}
.fa-stack-1x {
    line-height: inherit;
}
.fa-stack-2x {
    font-size: 2em;
}
.fa-inverse {
    color: #fff;
}
.fa-glass:before {
    content: "\f000";
}
.fa-music:before {
    content: "\f001";
}
.fa-search:before {
    content: "\f002";
}
.fa-envelope-o:before {
    content: "\f003";
}
.fa-heart:before {
    content: "\f004";
}
.fa-star:before {
    content: "\f005";
}
.fa-star-o:before {
    content: "\f006";
}
.fa-user:before {
    content: "\f007";
}
.fa-film:before {
    content: "\f008";
}
.fa-th-large:before {
    content: "\f009";
}
.fa-th:before {
    content: "\f00a";
}
.fa-th-list:before {
    content: "\f00b";
}
.fa-check:before {
    content: "\f00c";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
}
.fa-search-plus:before {
    content: "\f00e";
}
.fa-search-minus:before {
    content: "\f010";
}
.fa-power-off:before {
    content: "\f011";
}
.fa-signal:before {
    content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
    content: "\f013";
}
.fa-trash-o:before {
    content: "\f014";
}
.fa-home:before {
    content: "\f015";
}
.fa-file-o:before {
    content: "\f016";
}
.fa-clock-o:before {
    content: "\f017";
}
.fa-road:before {
    content: "\f018";
}
.fa-download:before {
    content: "\f019";
}
.fa-arrow-circle-o-down:before {
    content: "\f01a";
}
.fa-arrow-circle-o-up:before {
    content: "\f01b";
}
.fa-inbox:before {
    content: "\f01c";
}
.fa-play-circle-o:before {
    content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
}
.fa-refresh:before {
    content: "\f021";
}
.fa-list-alt:before {
    content: "\f022";
}
.fa-lock:before {
    content: "\f023";
}
.fa-flag:before {
    content: "\f024";
}
.fa-headphones:before {
    content: "\f025";
}
.fa-volume-off:before {
    content: "\f026";
}
.fa-volume-down:before {
    content: "\f027";
}
.fa-volume-up:before {
    content: "\f028";
}
.fa-qrcode:before {
    content: "\f029";
}
.fa-barcode:before {
    content: "\f02a";
}
.fa-tag:before {
    content: "\f02b";
}
.fa-tags:before {
    content: "\f02c";
}
.fa-book:before {
    content: "\f02d";
}
.fa-bookmark:before {
    content: "\f02e";
}
.fa-print:before {
    content: "\f02f";
}
.fa-camera:before {
    content: "\f030";
}
.fa-font:before {
    content: "\f031";
}
.fa-bold:before {
    content: "\f032";
}
.fa-italic:before {
    content: "\f033";
}
.fa-text-height:before {
    content: "\f034";
}
.fa-text-width:before {
    content: "\f035";
}
.fa-align-left:before {
    content: "\f036";
}
.fa-align-center:before {
    content: "\f037";
}
.fa-align-right:before {
    content: "\f038";
}
.fa-align-justify:before {
    content: "\f039";
}
.fa-list:before {
    content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
}
.fa-indent:before {
    content: "\f03c";
}
.fa-video-camera:before {
    content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
}
.fa-pencil:before {
    content: "\f040";
}
.fa-map-marker:before {
    content: "\f041";
}
.fa-adjust:before {
    content: "\f042";
}
.fa-tint:before {
    content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
}
.fa-share-square-o:before {
    content: "\f045";
}
.fa-check-square-o:before {
    content: "\f046";
}
.fa-arrows:before {
    content: "\f047";
}
.fa-step-backward:before {
    content: "\f048";
}
.fa-fast-backward:before {
    content: "\f049";
}
.fa-backward:before {
    content: "\f04a";
}
.fa-play:before {
    content: "\f04b";
}
.fa-pause:before {
    content: "\f04c";
}
.fa-stop:before {
    content: "\f04d";
}
.fa-forward:before {
    content: "\f04e";
}
.fa-fast-forward:before {
    content: "\f050";
}
.fa-step-forward:before {
    content: "\f051";
}
.fa-eject:before {
    content: "\f052";
}
.fa-chevron-left:before {
    content: "\f053";
}
.fa-chevron-right:before {
    content: "\f054";
}
.fa-plus-circle:before {
    content: "\f055";
}
.fa-minus-circle:before {
    content: "\f056";
}
.fa-times-circle:before {
    content: "\f057";
}
.fa-check-circle:before {
    content: "\f058";
}
.fa-question-circle:before {
    content: "\f059";
}
.fa-info-circle:before {
    content: "\f05a";
}
.fa-crosshairs:before {
    content: "\f05b";
}
.fa-times-circle-o:before {
    content: "\f05c";
}
.fa-check-circle-o:before {
    content: "\f05d";
}
.fa-ban:before {
    content: "\f05e";
}
.fa-arrow-left:before {
    content: "\f060";
}
.fa-arrow-right:before {
    content: "\f061";
}
.fa-arrow-up:before {
    content: "\f062";
}
.fa-arrow-down:before {
    content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
}
.fa-expand:before {
    content: "\f065";
}
.fa-compress:before {
    content: "\f066";
}
.fa-plus:before {
    content: "\f067";
}
.fa-minus:before {
    content: "\f068";
}
.fa-asterisk:before {
    content: "\f069";
}
.fa-exclamation-circle:before {
    content: "\f06a";
}
.fa-gift:before {
    content: "\f06b";
}
.fa-leaf:before {
    content: "\f06c";
}
.fa-fire:before {
    content: "\f06d";
}
.fa-eye:before {
    content: "\f06e";
}
.fa-eye-slash:before {
    content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
}
.fa-plane:before {
    content: "\f072";
}
.fa-calendar:before {
    content: "\f073";
}
.fa-random:before {
    content: "\f074";
}
.fa-comment:before {
    content: "\f075";
}
.fa-magnet:before {
    content: "\f076";
}
.fa-chevron-up:before {
    content: "\f077";
}
.fa-chevron-down:before {
    content: "\f078";
}
.fa-retweet:before {
    content: "\f079";
}
.fa-shopping-cart:before {
    content: "\f07a";
}
.fa-folder:before {
    content: "\f07b";
}
.fa-folder-open:before {
    content: "\f07c";
}
.fa-arrows-v:before {
    content: "\f07d";
}
.fa-arrows-h:before {
    content: "\f07e";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080";
}
.fa-twitter-square:before {
    content: "\f081";
}
.fa-facebook-square:before {
    content: "\f082";
}
.fa-camera-retro:before {
    content: "\f083";
}
.fa-key:before {
    content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
}
.fa-comments:before {
    content: "\f086";
}
.fa-thumbs-o-up:before {
    content: "\f087";
}
.fa-thumbs-o-down:before {
    content: "\f088";
}
.fa-star-half:before {
    content: "\f089";
}
.fa-heart-o:before {
    content: "\f08a";
}
.fa-sign-out:before {
    content: "\f08b";
}
.fa-linkedin-square:before {
    content: "\f08c";
}
.fa-thumb-tack:before {
    content: "\f08d";
}
.fa-external-link:before {
    content: "\f08e";
}
.fa-sign-in:before {
    content: "\f090";
}
.fa-trophy:before {
    content: "\f091";
}
.fa-github-square:before {
    content: "\f092";
}
.fa-upload:before {
    content: "\f093";
}
.fa-lemon-o:before {
    content: "\f094";
}
.fa-phone:before {
    content: "\f095";
}
.fa-square-o:before {
    content: "\f096";
}
.fa-bookmark-o:before {
    content: "\f097";
}
.fa-phone-square:before {
    content: "\f098";
}
.fa-twitter:before {
    content: "\f099";
}
.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a";
}
.fa-github:before {
    content: "\f09b";
}
.fa-unlock:before {
    content: "\f09c";
}
.fa-credit-card:before {
    content: "\f09d";
}
.fa-feed:before,
.fa-rss:before {
    content: "\f09e";
}
.fa-hdd-o:before {
    content: "\f0a0";
}
.fa-bullhorn:before {
    content: "\f0a1";
}
.fa-bell:before {
    content: "\f0f3";
}
.fa-certificate:before {
    content: "\f0a3";
}
.fa-hand-o-right:before {
    content: "\f0a4";
}
.fa-hand-o-left:before {
    content: "\f0a5";
}
.fa-hand-o-up:before {
    content: "\f0a6";
}
.fa-hand-o-down:before {
    content: "\f0a7";
}
.fa-arrow-circle-left:before {
    content: "\f0a8";
}
.fa-arrow-circle-right:before {
    content: "\f0a9";
}
.fa-arrow-circle-up:before {
    content: "\f0aa";
}
.fa-arrow-circle-down:before {
    content: "\f0ab";
}
.fa-globe:before {
    content: "\f0ac";
}
.fa-wrench:before {
    content: "\f0ad";
}
.fa-tasks:before {
    content: "\f0ae";
}
.fa-filter:before {
    content: "\f0b0";
}
.fa-briefcase:before {
    content: "\f0b1";
}
.fa-arrows-alt:before {
    content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
    content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
}
.fa-cloud:before {
    content: "\f0c2";
}
.fa-flask:before {
    content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
}
.fa-paperclip:before {
    content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
}
.fa-square:before {
    content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
}
.fa-list-ul:before {
    content: "\f0ca";
}
.fa-list-ol:before {
    content: "\f0cb";
}
.fa-strikethrough:before {
    content: "\f0cc";
}
.fa-underline:before {
    content: "\f0cd";
}
.fa-table:before {
    content: "\f0ce";
}
.fa-magic:before {
    content: "\f0d0";
}
.fa-truck:before {
    content: "\f0d1";
}
.fa-pinterest:before {
    content: "\f0d2";
}
.fa-pinterest-square:before {
    content: "\f0d3";
}
.fa-google-plus-square:before {
    content: "\f0d4";
}
.fa-google-plus:before {
    content: "\f0d5";
}
.fa-money:before {
    content: "\f0d6";
}
.fa-caret-down:before {
    content: "\f0d7";
}
.fa-caret-up:before {
    content: "\f0d8";
}
.fa-caret-left:before {
    content: "\f0d9";
}
.fa-caret-right:before {
    content: "\f0da";
}
.fa-columns:before {
    content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
}
.fa-envelope:before {
    content: "\f0e0";
}
.fa-linkedin:before {
    content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
}
.fa-comment-o:before {
    content: "\f0e5";
}
.fa-comments-o:before {
    content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
}
.fa-sitemap:before {
    content: "\f0e8";
}
.fa-umbrella:before {
    content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
}
.fa-lightbulb-o:before {
    content: "\f0eb";
}
.fa-exchange:before {
    content: "\f0ec";
}
.fa-cloud-download:before {
    content: "\f0ed";
}
.fa-cloud-upload:before {
    content: "\f0ee";
}
.fa-user-md:before {
    content: "\f0f0";
}
.fa-stethoscope:before {
    content: "\f0f1";
}
.fa-suitcase:before {
    content: "\f0f2";
}
.fa-bell-o:before {
    content: "\f0a2";
}
.fa-coffee:before {
    content: "\f0f4";
}
.fa-cutlery:before {
    content: "\f0f5";
}
.fa-file-text-o:before {
    content: "\f0f6";
}
.fa-building-o:before {
    content: "\f0f7";
}
.fa-hospital-o:before {
    content: "\f0f8";
}
.fa-ambulance:before {
    content: "\f0f9";
}
.fa-medkit:before {
    content: "\f0fa";
}
.fa-fighter-jet:before {
    content: "\f0fb";
}
.fa-beer:before {
    content: "\f0fc";
}
.fa-h-square:before {
    content: "\f0fd";
}
.fa-plus-square:before {
    content: "\f0fe";
}
.fa-angle-double-left:before {
    content: "\f100";
}
.fa-angle-double-right:before {
    content: "\f101";
}
.fa-angle-double-up:before {
    content: "\f102";
}
.fa-angle-double-down:before {
    content: "\f103";
}
.fa-angle-left:before {
    content: "\f104";
}
.fa-angle-right:before {
    content: "\f105";
}
.fa-angle-up:before {
    content: "\f106";
}
.fa-angle-down:before {
    content: "\f107";
}
.fa-desktop:before {
    content: "\f108";
}
.fa-laptop:before {
    content: "\f109";
}
.fa-tablet:before {
    content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
}
.fa-circle-o:before {
    content: "\f10c";
}
.fa-quote-left:before {
    content: "\f10d";
}
.fa-quote-right:before {
    content: "\f10e";
}
.fa-spinner:before {
    content: "\f110";
}
.fa-circle:before {
    content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
}
.fa-github-alt:before {
    content: "\f113";
}
.fa-folder-o:before {
    content: "\f114";
}
.fa-folder-open-o:before {
    content: "\f115";
}
.fa-smile-o:before {
    content: "\f118";
}
.fa-frown-o:before {
    content: "\f119";
}
.fa-meh-o:before {
    content: "\f11a";
}
.fa-gamepad:before {
    content: "\f11b";
}
.fa-keyboard-o:before {
    content: "\f11c";
}
.fa-flag-o:before {
    content: "\f11d";
}
.fa-flag-checkered:before {
    content: "\f11e";
}
.fa-terminal:before {
    content: "\f120";
}
.fa-code:before {
    content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
}
.fa-location-arrow:before {
    content: "\f124";
}
.fa-crop:before {
    content: "\f125";
}
.fa-code-fork:before {
    content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
}
.fa-question:before {
    content: "\f128";
}
.fa-info:before {
    content: "\f129";
}
.fa-exclamation:before {
    content: "\f12a";
}
.fa-superscript:before {
    content: "\f12b";
}
.fa-subscript:before {
    content: "\f12c";
}
.fa-eraser:before {
    content: "\f12d";
}
.fa-puzzle-piece:before {
    content: "\f12e";
}
.fa-microphone:before {
    content: "\f130";
}
.fa-microphone-slash:before {
    content: "\f131";
}
.fa-shield:before {
    content: "\f132";
}
.fa-calendar-o:before {
    content: "\f133";
}
.fa-fire-extinguisher:before {
    content: "\f134";
}
.fa-rocket:before {
    content: "\f135";
}
.fa-maxcdn:before {
    content: "\f136";
}
.fa-chevron-circle-left:before {
    content: "\f137";
}
.fa-chevron-circle-right:before {
    content: "\f138";
}
.fa-chevron-circle-up:before {
    content: "\f139";
}
.fa-chevron-circle-down:before {
    content: "\f13a";
}
.fa-html5:before {
    content: "\f13b";
}
.fa-css3:before {
    content: "\f13c";
}
.fa-anchor:before {
    content: "\f13d";
}
.fa-unlock-alt:before {
    content: "\f13e";
}
.fa-bullseye:before {
    content: "\f140";
}
.fa-ellipsis-h:before {
    content: "\f141";
}
.fa-ellipsis-v:before {
    content: "\f142";
}
.fa-rss-square:before {
    content: "\f143";
}
.fa-play-circle:before {
    content: "\f144";
}
.fa-ticket:before {
    content: "\f145";
}
.fa-minus-square:before {
    content: "\f146";
}
.fa-minus-square-o:before {
    content: "\f147";
}
.fa-level-up:before {
    content: "\f148";
}
.fa-level-down:before {
    content: "\f149";
}
.fa-check-square:before {
    content: "\f14a";
}
.fa-pencil-square:before {
    content: "\f14b";
}
.fa-external-link-square:before {
    content: "\f14c";
}
.fa-share-square:before {
    content: "\f14d";
}
.fa-compass:before {
    content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
    content: "\f153";
}
.fa-gbp:before {
    content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
}
.fa-won:before,
.fa-krw:before {
    content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
}
.fa-file:before {
    content: "\f15b";
}
.fa-file-text:before {
    content: "\f15c";
}
.fa-sort-alpha-asc:before {
    content: "\f15d";
}
.fa-sort-alpha-desc:before {
    content: "\f15e";
}
.fa-sort-amount-asc:before {
    content: "\f160";
}
.fa-sort-amount-desc:before {
    content: "\f161";
}
.fa-sort-numeric-asc:before {
    content: "\f162";
}
.fa-sort-numeric-desc:before {
    content: "\f163";
}
.fa-thumbs-up:before {
    content: "\f164";
}
.fa-thumbs-down:before {
    content: "\f165";
}
.fa-youtube-square:before {
    content: "\f166";
}
.fa-youtube:before {
    content: "\f167";
}
.fa-xing:before {
    content: "\f168";
}
.fa-xing-square:before {
    content: "\f169";
}
.fa-youtube-play:before {
    content: "\f16a";
}
.fa-dropbox:before {
    content: "\f16b";
}
.fa-stack-overflow:before {
    content: "\f16c";
}
.fa-instagram:before {
    content: "\f16d";
}
.fa-flickr:before {
    content: "\f16e";
}
.fa-adn:before {
    content: "\f170";
}
.fa-bitbucket:before {
    content: "\f171";
}
.fa-bitbucket-square:before {
    content: "\f172";
}
.fa-tumblr:before {
    content: "\f173";
}
.fa-tumblr-square:before {
    content: "\f174";
}
.fa-long-arrow-down:before {
    content: "\f175";
}
.fa-long-arrow-up:before {
    content: "\f176";
}
.fa-long-arrow-left:before {
    content: "\f177";
}
.fa-long-arrow-right:before {
    content: "\f178";
}
.fa-apple:before {
    content: "\f179";
}
.fa-windows:before {
    content: "\f17a";
}
.fa-android:before {
    content: "\f17b";
}
.fa-linux:before {
    content: "\f17c";
}
.fa-dribbble:before {
    content: "\f17d";
}
.fa-skype:before {
    content: "\f17e";
}
.fa-foursquare:before {
    content: "\f180";
}
.fa-trello:before {
    content: "\f181";
}
.fa-female:before {
    content: "\f182";
}
.fa-male:before {
    content: "\f183";
}
.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184";
}
.fa-sun-o:before {
    content: "\f185";
}
.fa-moon-o:before {
    content: "\f186";
}
.fa-archive:before {
    content: "\f187";
}
.fa-bug:before {
    content: "\f188";
}
.fa-vk:before {
    content: "\f189";
}
.fa-weibo:before {
    content: "\f18a";
}
.fa-renren:before {
    content: "\f18b";
}
.fa-pagelines:before {
    content: "\f18c";
}
.fa-stack-exchange:before {
    content: "\f18d";
}
.fa-arrow-circle-o-right:before {
    content: "\f18e";
}
.fa-arrow-circle-o-left:before {
    content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
}
.fa-dot-circle-o:before {
    content: "\f192";
}
.fa-wheelchair:before {
    content: "\f193";
}
.fa-vimeo-square:before {
    content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
}
.fa-plus-square-o:before {
    content: "\f196";
}
.fa-space-shuttle:before {
    content: "\f197";
}
.fa-slack:before {
    content: "\f198";
}
.fa-envelope-square:before {
    content: "\f199";
}
.fa-wordpress:before {
    content: "\f19a";
}
.fa-openid:before {
    content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
}
.fa-yahoo:before {
    content: "\f19e";
}
.fa-google:before {
    content: "\f1a0";
}
.fa-reddit:before {
    content: "\f1a1";
}
.fa-reddit-square:before {
    content: "\f1a2";
}
.fa-stumbleupon-circle:before {
    content: "\f1a3";
}
.fa-stumbleupon:before {
    content: "\f1a4";
}
.fa-delicious:before {
    content: "\f1a5";
}
.fa-digg:before {
    content: "\f1a6";
}
.fa-pied-piper-pp:before {
    content: "\f1a7";
}
.fa-pied-piper-alt:before {
    content: "\f1a8";
}
.fa-drupal:before {
    content: "\f1a9";
}
.fa-joomla:before {
    content: "\f1aa";
}
.fa-language:before {
    content: "\f1ab";
}
.fa-fax:before {
    content: "\f1ac";
}
.fa-building:before {
    content: "\f1ad";
}
.fa-child:before {
    content: "\f1ae";
}
.fa-paw:before {
    content: "\f1b0";
}
.fa-spoon:before {
    content: "\f1b1";
}
.fa-cube:before {
    content: "\f1b2";
}
.fa-cubes:before {
    content: "\f1b3";
}
.fa-behance:before {
    content: "\f1b4";
}
.fa-behance-square:before {
    content: "\f1b5";
}
.fa-steam:before {
    content: "\f1b6";
}
.fa-steam-square:before {
    content: "\f1b7";
}
.fa-recycle:before {
    content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
}
.fa-tree:before {
    content: "\f1bb";
}
.fa-spotify:before {
    content: "\f1bc";
}
.fa-deviantart:before {
    content: "\f1bd";
}
.fa-soundcloud:before {
    content: "\f1be";
}
.fa-database:before {
    content: "\f1c0";
}
.fa-file-pdf-o:before {
    content: "\f1c1";
}
.fa-file-word-o:before {
    content: "\f1c2";
}
.fa-file-excel-o:before {
    content: "\f1c3";
}
.fa-file-powerpoint-o:before {
    content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
}
.fa-file-code-o:before {
    content: "\f1c9";
}
.fa-vine:before {
    content: "\f1ca";
}
.fa-codepen:before {
    content: "\f1cb";
}
.fa-jsfiddle:before {
    content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
}
.fa-circle-o-notch:before {
    content: "\f1ce";
}
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
}
.fa-git-square:before {
    content: "\f1d2";
}
.fa-git:before {
    content: "\f1d3";
}
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4";
}
.fa-tencent-weibo:before {
    content: "\f1d5";
}
.fa-qq:before {
    content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
}
.fa-history:before {
    content: "\f1da";
}
.fa-circle-thin:before {
    content: "\f1db";
}
.fa-header:before {
    content: "\f1dc";
}
.fa-paragraph:before {
    content: "\f1dd";
}
.fa-sliders:before {
    content: "\f1de";
}
.fa-share-alt:before {
    content: "\f1e0";
}
.fa-share-alt-square:before {
    content: "\f1e1";
}
.fa-bomb:before {
    content: "\f1e2";
}
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3";
}
.fa-tty:before {
    content: "\f1e4";
}
.fa-binoculars:before {
    content: "\f1e5";
}
.fa-plug:before {
    content: "\f1e6";
}
.fa-slideshare:before {
    content: "\f1e7";
}
.fa-twitch:before {
    content: "\f1e8";
}
.fa-yelp:before {
    content: "\f1e9";
}
.fa-newspaper-o:before {
    content: "\f1ea";
}
.fa-wifi:before {
    content: "\f1eb";
}
.fa-calculator:before {
    content: "\f1ec";
}
.fa-paypal:before {
    content: "\f1ed";
}
.fa-google-wallet:before {
    content: "\f1ee";
}
.fa-cc-visa:before {
    content: "\f1f0";
}
.fa-cc-mastercard:before {
    content: "\f1f1";
}
.fa-cc-discover:before {
    content: "\f1f2";
}
.fa-cc-amex:before {
    content: "\f1f3";
}
.fa-cc-paypal:before {
    content: "\f1f4";
}
.fa-cc-stripe:before {
    content: "\f1f5";
}
.fa-bell-slash:before {
    content: "\f1f6";
}
.fa-bell-slash-o:before {
    content: "\f1f7";
}
.fa-trash:before {
    content: "\f1f8";
}
.fa-copyright:before {
    content: "\f1f9";
}
.fa-at:before {
    content: "\f1fa";
}
.fa-eyedropper:before {
    content: "\f1fb";
}
.fa-paint-brush:before {
    content: "\f1fc";
}
.fa-birthday-cake:before {
    content: "\f1fd";
}
.fa-area-chart:before {
    content: "\f1fe";
}
.fa-pie-chart:before {
    content: "\f200";
}
.fa-line-chart:before {
    content: "\f201";
}
.fa-lastfm:before {
    content: "\f202";
}
.fa-lastfm-square:before {
    content: "\f203";
}
.fa-toggle-off:before {
    content: "\f204";
}
.fa-toggle-on:before {
    content: "\f205";
}
.fa-bicycle:before {
    content: "\f206";
}
.fa-bus:before {
    content: "\f207";
}
.fa-ioxhost:before {
    content: "\f208";
}
.fa-angellist:before {
    content: "\f209";
}
.fa-cc:before {
    content: "\f20a";
}
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b";
}
.fa-meanpath:before {
    content: "\f20c";
}
.fa-buysellads:before {
    content: "\f20d";
}
.fa-connectdevelop:before {
    content: "\f20e";
}
.fa-dashcube:before {
    content: "\f210";
}
.fa-forumbee:before {
    content: "\f211";
}
.fa-leanpub:before {
    content: "\f212";
}
.fa-sellsy:before {
    content: "\f213";
}
.fa-shirtsinbulk:before {
    content: "\f214";
}
.fa-simplybuilt:before {
    content: "\f215";
}
.fa-skyatlas:before {
    content: "\f216";
}
.fa-cart-plus:before {
    content: "\f217";
}
.fa-cart-arrow-down:before {
    content: "\f218";
}
.fa-diamond:before {
    content: "\f219";
}
.fa-ship:before {
    content: "\f21a";
}
.fa-user-secret:before {
    content: "\f21b";
}
.fa-motorcycle:before {
    content: "\f21c";
}
.fa-street-view:before {
    content: "\f21d";
}
.fa-heartbeat:before {
    content: "\f21e";
}
.fa-venus:before {
    content: "\f221";
}
.fa-mars:before {
    content: "\f222";
}
.fa-mercury:before {
    content: "\f223";
}
.fa-intersex:before,
.fa-transgender:before {
    content: "\f224";
}
.fa-transgender-alt:before {
    content: "\f225";
}
.fa-venus-double:before {
    content: "\f226";
}
.fa-mars-double:before {
    content: "\f227";
}
.fa-venus-mars:before {
    content: "\f228";
}
.fa-mars-stroke:before {
    content: "\f229";
}
.fa-mars-stroke-v:before {
    content: "\f22a";
}
.fa-mars-stroke-h:before {
    content: "\f22b";
}
.fa-neuter:before {
    content: "\f22c";
}
.fa-genderless:before {
    content: "\f22d";
}
.fa-facebook-official:before {
    content: "\f230";
}
.fa-pinterest-p:before {
    content: "\f231";
}
.fa-whatsapp:before {
    content: "\f232";
}
.fa-server:before {
    content: "\f233";
}
.fa-user-plus:before {
    content: "\f234";
}
.fa-user-times:before {
    content: "\f235";
}
.fa-hotel:before,
.fa-bed:before {
    content: "\f236";
}
.fa-viacoin:before {
    content: "\f237";
}
.fa-train:before {
    content: "\f238";
}
.fa-subway:before {
    content: "\f239";
}
.fa-medium:before {
    content: "\f23a";
}
.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b";
}
.fa-optin-monster:before {
    content: "\f23c";
}
.fa-opencart:before {
    content: "\f23d";
}
.fa-expeditedssl:before {
    content: "\f23e";
}
.fa-battery-4:before,
.fa-battery-full:before {
    content: "\f240";
}
.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241";
}
.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242";
}
.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243";
}
.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244";
}
.fa-mouse-pointer:before {
    content: "\f245";
}
.fa-i-cursor:before {
    content: "\f246";
}
.fa-object-group:before {
    content: "\f247";
}
.fa-object-ungroup:before {
    content: "\f248";
}
.fa-sticky-note:before {
    content: "\f249";
}
.fa-sticky-note-o:before {
    content: "\f24a";
}
.fa-cc-jcb:before {
    content: "\f24b";
}
.fa-cc-diners-club:before {
    content: "\f24c";
}
.fa-clone:before {
    content: "\f24d";
}
.fa-balance-scale:before {
    content: "\f24e";
}
.fa-hourglass-o:before {
    content: "\f250";
}
.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251";
}
.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252";
}
.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253";
}
.fa-hourglass:before {
    content: "\f254";
}
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255";
}
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256";
}
.fa-hand-scissors-o:before {
    content: "\f257";
}
.fa-hand-lizard-o:before {
    content: "\f258";
}
.fa-hand-spock-o:before {
    content: "\f259";
}
.fa-hand-pointer-o:before {
    content: "\f25a";
}
.fa-hand-peace-o:before {
    content: "\f25b";
}
.fa-trademark:before {
    content: "\f25c";
}
.fa-registered:before {
    content: "\f25d";
}
.fa-creative-commons:before {
    content: "\f25e";
}
.fa-gg:before {
    content: "\f260";
}
.fa-gg-circle:before {
    content: "\f261";
}
.fa-tripadvisor:before {
    content: "\f262";
}
.fa-odnoklassniki:before {
    content: "\f263";
}
.fa-odnoklassniki-square:before {
    content: "\f264";
}
.fa-get-pocket:before {
    content: "\f265";
}
.fa-wikipedia-w:before {
    content: "\f266";
}
.fa-safari:before {
    content: "\f267";
}
.fa-chrome:before {
    content: "\f268";
}
.fa-firefox:before {
    content: "\f269";
}
.fa-opera:before {
    content: "\f26a";
}
.fa-internet-explorer:before {
    content: "\f26b";
}
.fa-tv:before,
.fa-television:before {
    content: "\f26c";
}
.fa-contao:before {
    content: "\f26d";
}
.fa-500px:before {
    content: "\f26e";
}
.fa-amazon:before {
    content: "\f270";
}
.fa-calendar-plus-o:before {
    content: "\f271";
}
.fa-calendar-minus-o:before {
    content: "\f272";
}
.fa-calendar-times-o:before {
    content: "\f273";
}
.fa-calendar-check-o:before {
    content: "\f274";
}
.fa-industry:before {
    content: "\f275";
}
.fa-map-pin:before {
    content: "\f276";
}
.fa-map-signs:before {
    content: "\f277";
}
.fa-map-o:before {
    content: "\f278";
}
.fa-map:before {
    content: "\f279";
}
.fa-commenting:before {
    content: "\f27a";
}
.fa-commenting-o:before {
    content: "\f27b";
}
.fa-houzz:before {
    content: "\f27c";
}
.fa-vimeo:before {
    content: "\f27d";
}
.fa-black-tie:before {
    content: "\f27e";
}
.fa-fonticons:before {
    content: "\f280";
}
.fa-reddit-alien:before {
    content: "\f281";
}
.fa-edge:before {
    content: "\f282";
}
.fa-credit-card-alt:before {
    content: "\f283";
}
.fa-codiepie:before {
    content: "\f284";
}
.fa-modx:before {
    content: "\f285";
}
.fa-fort-awesome:before {
    content: "\f286";
}
.fa-usb:before {
    content: "\f287";
}
.fa-product-hunt:before {
    content: "\f288";
}
.fa-mixcloud:before {
    content: "\f289";
}
.fa-scribd:before {
    content: "\f28a";
}
.fa-pause-circle:before {
    content: "\f28b";
}
.fa-pause-circle-o:before {
    content: "\f28c";
}
.fa-stop-circle:before {
    content: "\f28d";
}
.fa-stop-circle-o:before {
    content: "\f28e";
}
.fa-shopping-bag:before {
    content: "\f290";
}
.fa-shopping-basket:before {
    content: "\f291";
}
.fa-hashtag:before {
    content: "\f292";
}
.fa-bluetooth:before {
    content: "\f293";
}
.fa-bluetooth-b:before {
    content: "\f294";
}
.fa-percent:before {
    content: "\f295";
}
.fa-gitlab:before {
    content: "\f296";
}
.fa-wpbeginner:before {
    content: "\f297";
}
.fa-wpforms:before {
    content: "\f298";
}
.fa-envira:before {
    content: "\f299";
}
.fa-universal-access:before {
    content: "\f29a";
}
.fa-wheelchair-alt:before {
    content: "\f29b";
}
.fa-question-circle-o:before {
    content: "\f29c";
}
.fa-blind:before {
    content: "\f29d";
}
.fa-audio-description:before {
    content: "\f29e";
}
.fa-volume-control-phone:before {
    content: "\f2a0";
}
.fa-braille:before {
    content: "\f2a1";
}
.fa-assistive-listening-systems:before {
    content: "\f2a2";
}
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3";
}
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4";
}
.fa-glide:before {
    content: "\f2a5";
}
.fa-glide-g:before {
    content: "\f2a6";
}
.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7";
}
.fa-low-vision:before {
    content: "\f2a8";
}
.fa-viadeo:before {
    content: "\f2a9";
}
.fa-viadeo-square:before {
    content: "\f2aa";
}
.fa-snapchat:before {
    content: "\f2ab";
}
.fa-snapchat-ghost:before {
    content: "\f2ac";
}
.fa-snapchat-square:before {
    content: "\f2ad";
}
.fa-pied-piper:before {
    content: "\f2ae";
}
.fa-first-order:before {
    content: "\f2b0";
}
.fa-yoast:before {
    content: "\f2b1";
}
.fa-themeisle:before {
    content: "\f2b2";
}
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3";
}
.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4";
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/*! jQuery UI - v1.11.4 - 2016-06-06
* http://jqueryui.com
* Includes: core.css, draggable.css, resizable.css, selectable.css, sortable.css, accordion.css, autocomplete.css, button.css, datepicker.css, dialog.css, menu.css, progressbar.css, selectmenu.css, slider.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-helper-hidden {
    display: none;
}
.ui-helper-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}
.ui-helper-reset {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
    content: "";
    display: table;
    border-collapse: collapse;
}
.ui-helper-clearfix:after {
    clear: both;
}
.ui-helper-clearfix {
    min-height: 0;
}
.ui-helper-zfix {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    filter: Alpha(Opacity=0);
}
.ui-front {
    z-index: 100;
}
.ui-state-disabled {
    cursor: default !important;
}
.ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
}
.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.ui-draggable-handle {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-resizable {
    position: relative;
}
.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-resizable-disabled .ui-resizable-handle,
.ui-resizable-autohide .ui-resizable-handle {
    display: none;
}
.ui-resizable-n {
    cursor: n-resize;
    height: 7px;
    width: 100%;
    top: -5px;
    left: 0;
}
.ui-resizable-s {
    cursor: s-resize;
    height: 7px;
    width: 100%;
    bottom: -5px;
    left: 0;
}
.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: -5px;
    top: 0;
    height: 100%;
}
.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: -5px;
    top: 0;
    height: 100%;
}
.ui-resizable-se {
    cursor: se-resize;
    width: 12px;
    height: 12px;
    right: 1px;
    bottom: 1px;
}
.ui-resizable-sw {
    cursor: sw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    bottom: -5px;
}
.ui-resizable-nw {
    cursor: nw-resize;
    width: 9px;
    height: 9px;
    left: -5px;
    top: -5px;
}
.ui-resizable-ne {
    cursor: ne-resize;
    width: 9px;
    height: 9px;
    right: -5px;
    top: -5px;
}
.ui-selectable {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted black;
}
.ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none;
}
.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0 0;
    padding: 0.5em 0.5em 0.5em 0.7em;
    min-height: 0;
    font-size: 100%;
}
.ui-accordion .ui-accordion-icons {
    padding-left: 2.2em;
}
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
    padding-left: 2.2em;
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    position: absolute;
    left: 0.5em;
    top: 50%;
    margin-top: -8px;
}
.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}
.ui-autocomplete {
    position: absolute;
    top: 0;
    left: 0;
    cursor: default;
}
.ui-button {
    display: inline-block;
    position: relative;
    padding: 0;
    line-height: normal;
    margin-right: 0.1em;
    cursor: pointer;
    vertical-align: middle;
    text-align: center;
    overflow: visible;
}
.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
    text-decoration: none;
}
.ui-button-icon-only {
    width: 2.2em;
}
button.ui-button-icon-only {
    width: 2.4em;
}
.ui-button-icons-only {
    width: 3.4em;
}
button.ui-button-icons-only {
    width: 3.7em;
}
.ui-button .ui-button-text {
    display: block;
    line-height: normal;
}
.ui-button-text-only .ui-button-text {
    padding: 0.4em 1em;
}
.ui-button-icon-only .ui-button-text,
.ui-button-icons-only .ui-button-text {
    padding: 0.4em;
    text-indent: -9999999px;
}
.ui-button-text-icon-primary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: 0.4em 1em 0.4em 2.1em;
}
.ui-button-text-icon-secondary .ui-button-text,
.ui-button-text-icons .ui-button-text {
    padding: 0.4em 2.1em 0.4em 1em;
}
.ui-button-text-icons .ui-button-text {
    padding-left: 2.1em;
    padding-right: 2.1em;
}
input.ui-button {
    padding: 0.4em 1em;
}
.ui-button-icon-only .ui-icon,
.ui-button-text-icon-primary .ui-icon,
.ui-button-text-icon-secondary .ui-icon,
.ui-button-text-icons .ui-icon,
.ui-button-icons-only .ui-icon {
    position: absolute;
    top: 50%;
    margin-top: -8px;
}
.ui-button-icon-only .ui-icon {
    left: 50%;
    margin-left: -8px;
}
.ui-button-text-icon-primary .ui-button-icon-primary,
.ui-button-text-icons .ui-button-icon-primary,
.ui-button-icons-only .ui-button-icon-primary {
    left: 0.5em;
}
.ui-button-text-icon-secondary .ui-button-icon-secondary,
.ui-button-text-icons .ui-button-icon-secondary,
.ui-button-icons-only .ui-button-icon-secondary {
    right: 0.5em;
}
.ui-buttonset {
    margin-right: 7px;
}
.ui-buttonset .ui-button {
    margin-left: 0;
    margin-right: -0.3em;
}
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}
.ui-datepicker {
    width: 17em;
    padding: 0.2em 0.2em 0;
    display: none;
}
.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 0.2em 0;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
    top: 1px;
}
.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}
.ui-datepicker .ui-datepicker-next {
    right: 2px;
}
.ui-datepicker .ui-datepicker-prev-hover {
    left: 1px;
}
.ui-datepicker .ui-datepicker-next-hover {
    right: 1px;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
    font-size: 1em;
    margin: 1px 0;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
    width: 45%;
}
.ui-datepicker table {
    width: 100%;
    font-size: 0.9em;
    border-collapse: collapse;
    margin: 0 0 0.4em;
}
.ui-datepicker th {
    padding: 0.7em 0.3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}
.ui-datepicker td {
    border: 0;
    padding: 1px;
}
.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: 0.2em;
    text-align: right;
    text-decoration: none;
}
.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: 0.7em 0 0 0;
    padding: 0 0.2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: 0.5em 0.2em 0.4em;
    cursor: pointer;
    padding: 0.2em 0.6em 0.3em 0.6em;
    width: auto;
    overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
    float: left;
}
.ui-datepicker.ui-datepicker-multi {
    width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
    float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
    width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
    width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
    width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
    border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
    clear: left;
}
.ui-datepicker-row-break {
    clear: both;
    width: 100%;
    font-size: 0;
}
.ui-datepicker-rtl {
    direction: rtl;
}
.ui-datepicker-rtl .ui-datepicker-prev {
    right: 2px;
    left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next {
    left: 2px;
    right: auto;
}
.ui-datepicker-rtl .ui-datepicker-prev:hover {
    right: 1px;
    left: auto;
}
.ui-datepicker-rtl .ui-datepicker-next:hover {
    left: 1px;
    right: auto;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane {
    clear: right;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left;
}
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-rtl .ui-datepicker-group {
    float: right;
}
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header {
    border-right-width: 0;
    border-left-width: 1px;
}
.ui-dialog {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0.2em;
    outline: 0;
}
.ui-dialog .ui-dialog-titlebar {
    padding: 0.4em 1em;
    position: relative;
}
.ui-dialog .ui-dialog-title {
    float: left;
    margin: 0.1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: 0.3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0 0;
    padding: 1px;
    height: 20px;
}
.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: 0.5em 1em;
    background: none;
    overflow: auto;
}
.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0 0;
    background-image: none;
    margin-top: 0.5em;
    padding: 0.3em 1em 0.5em 0.4em;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right;
}
.ui-dialog .ui-dialog-buttonpane button {
    margin: 0.5em 0.4em 0.5em 0;
    cursor: pointer;
}
.ui-dialog .ui-resizable-se {
    width: 12px;
    height: 12px;
    right: -5px;
    bottom: -5px;
    background-position: 16px 16px;
}
.ui-draggable .ui-dialog-titlebar {
    cursor: move;
}
.ui-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    outline: none;
}
.ui-menu .ui-menu {
    position: absolute;
}
.ui-menu .ui-menu-item {
    position: relative;
    margin: 0;
    padding: 3px 1em 3px 0.4em;
    cursor: pointer;
    min-height: 0;
    list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7");
}
.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0 0;
}
.ui-menu .ui-state-focus,
.ui-menu .ui-state-active {
    margin: -1px;
}
.ui-menu-icons {
    position: relative;
}
.ui-menu-icons .ui-menu-item {
    padding-left: 2em;
}
.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.2em;
    margin: auto 0;
}
.ui-menu .ui-menu-icon {
    left: auto;
    right: 0;
}
.ui-progressbar {
    height: 2em;
    text-align: left;
    overflow: hidden;
}
.ui-progressbar .ui-progressbar-value {
    margin: -1px;
    height: 100%;
}
.ui-progressbar .ui-progressbar-overlay {
    background: url("data:image/gif;base64,R0lGODlhKAAoAIABAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAQABACwAAAAAKAAoAAACkYwNqXrdC52DS06a7MFZI+4FHBCKoDeWKXqymPqGqxvJrXZbMx7Ttc+w9XgU2FB3lOyQRWET2IFGiU9m1frDVpxZZc6bfHwv4c1YXP6k1Vdy292Fb6UkuvFtXpvWSzA+HycXJHUXiGYIiMg2R6W459gnWGfHNdjIqDWVqemH2ekpObkpOlppWUqZiqr6edqqWQAAIfkECQEAAQAsAAAAACgAKAAAApSMgZnGfaqcg1E2uuzDmmHUBR8Qil95hiPKqWn3aqtLsS18y7G1SzNeowWBENtQd+T1JktP05nzPTdJZlR6vUxNWWjV+vUWhWNkWFwxl9VpZRedYcflIOLafaa28XdsH/ynlcc1uPVDZxQIR0K25+cICCmoqCe5mGhZOfeYSUh5yJcJyrkZWWpaR8doJ2o4NYq62lAAACH5BAkBAAEALAAAAAAoACgAAAKVDI4Yy22ZnINRNqosw0Bv7i1gyHUkFj7oSaWlu3ovC8GxNso5fluz3qLVhBVeT/Lz7ZTHyxL5dDalQWPVOsQWtRnuwXaFTj9jVVh8pma9JjZ4zYSj5ZOyma7uuolffh+IR5aW97cHuBUXKGKXlKjn+DiHWMcYJah4N0lYCMlJOXipGRr5qdgoSTrqWSq6WFl2ypoaUAAAIfkECQEAAQAsAAAAACgAKAAAApaEb6HLgd/iO7FNWtcFWe+ufODGjRfoiJ2akShbueb0wtI50zm02pbvwfWEMWBQ1zKGlLIhskiEPm9R6vRXxV4ZzWT2yHOGpWMyorblKlNp8HmHEb/lCXjcW7bmtXP8Xt229OVWR1fod2eWqNfHuMjXCPkIGNileOiImVmCOEmoSfn3yXlJWmoHGhqp6ilYuWYpmTqKUgAAIfkECQEAAQAsAAAAACgAKAAAApiEH6kb58biQ3FNWtMFWW3eNVcojuFGfqnZqSebuS06w5V80/X02pKe8zFwP6EFWOT1lDFk8rGERh1TTNOocQ61Hm4Xm2VexUHpzjymViHrFbiELsefVrn6XKfnt2Q9G/+Xdie499XHd2g4h7ioOGhXGJboGAnXSBnoBwKYyfioubZJ2Hn0RuRZaflZOil56Zp6iioKSXpUAAAh+QQJAQABACwAAAAAKAAoAAACkoQRqRvnxuI7kU1a1UU5bd5tnSeOZXhmn5lWK3qNTWvRdQxP8qvaC+/yaYQzXO7BMvaUEmJRd3TsiMAgswmNYrSgZdYrTX6tSHGZO73ezuAw2uxuQ+BbeZfMxsexY35+/Qe4J1inV0g4x3WHuMhIl2jXOKT2Q+VU5fgoSUI52VfZyfkJGkha6jmY+aaYdirq+lQAACH5BAkBAAEALAAAAAAoACgAAAKWBIKpYe0L3YNKToqswUlvznigd4wiR4KhZrKt9Upqip61i9E3vMvxRdHlbEFiEXfk9YARYxOZZD6VQ2pUunBmtRXo1Lf8hMVVcNl8JafV38aM2/Fu5V16Bn63r6xt97j09+MXSFi4BniGFae3hzbH9+hYBzkpuUh5aZmHuanZOZgIuvbGiNeomCnaxxap2upaCZsq+1kAACH5BAkBAAEALAAAAAAoACgAAAKXjI8By5zf4kOxTVrXNVlv1X0d8IGZGKLnNpYtm8Lr9cqVeuOSvfOW79D9aDHizNhDJidFZhNydEahOaDH6nomtJjp1tutKoNWkvA6JqfRVLHU/QUfau9l2x7G54d1fl995xcIGAdXqMfBNadoYrhH+Mg2KBlpVpbluCiXmMnZ2Sh4GBqJ+ckIOqqJ6LmKSllZmsoq6wpQAAAh+QQJAQABACwAAAAAKAAoAAAClYx/oLvoxuJDkU1a1YUZbJ59nSd2ZXhWqbRa2/gF8Gu2DY3iqs7yrq+xBYEkYvFSM8aSSObE+ZgRl1BHFZNr7pRCavZ5BW2142hY3AN/zWtsmf12p9XxxFl2lpLn1rseztfXZjdIWIf2s5dItwjYKBgo9yg5pHgzJXTEeGlZuenpyPmpGQoKOWkYmSpaSnqKileI2FAAACH5BAkBAAEALAAAAAAoACgAAAKVjB+gu+jG4kORTVrVhRlsnn2dJ3ZleFaptFrb+CXmO9OozeL5VfP99HvAWhpiUdcwkpBH3825AwYdU8xTqlLGhtCosArKMpvfa1mMRae9VvWZfeB2XfPkeLmm18lUcBj+p5dnN8jXZ3YIGEhYuOUn45aoCDkp16hl5IjYJvjWKcnoGQpqyPlpOhr3aElaqrq56Bq7VAAAOw==");
    height: 100%;
    filter: alpha(opacity=25);
    opacity: 0.25;
}
.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none;
}
.ui-selectmenu-menu {
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.ui-selectmenu-menu .ui-menu {
    overflow: auto;
    overflow-x: hidden;
    padding-bottom: 1px;
}
.ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    padding: 2px 0.4em;
    margin: 0.5em 0 0 0;
    height: auto;
    border: 0;
}
.ui-selectmenu-open {
    display: block;
}
.ui-selectmenu-button {
    display: inline-block;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}
.ui-selectmenu-button span.ui-icon {
    right: 0.5em;
    left: auto;
    margin-top: -8px;
    position: absolute;
    top: 50%;
}
.ui-selectmenu-button span.ui-selectmenu-text {
    text-align: left;
    padding: 0.4em 2.1em 0.4em 1em;
    display: block;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ui-slider {
    position: relative;
    text-align: left;
}
.ui-slider .ui-slider-handle {
    position: absolute;
    z-index: 2;
    width: 1.2em;
    height: 1.2em;
    cursor: default;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: 0.7em;
    display: block;
    border: 0;
    background-position: 0 0;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
    filter: inherit;
}
.ui-slider-horizontal {
    height: 0.8em;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -0.3em;
    margin-left: -0.6em;
}
.ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}
.ui-slider-horizontal .ui-slider-range-min {
    left: 0;
}
.ui-slider-horizontal .ui-slider-range-max {
    right: 0;
}
.ui-slider-vertical {
    width: 0.8em;
    height: 100px;
}
.ui-slider-vertical .ui-slider-handle {
    left: -0.3em;
    margin-left: 0;
    margin-bottom: -0.6em;
}
.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%;
}
.ui-slider-vertical .ui-slider-range-min {
    bottom: 0;
}
.ui-slider-vertical .ui-slider-range-max {
    top: 0;
}
.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle;
}
.ui-spinner-input {
    border: none;
    background: none;
    color: inherit;
    padding: 0;
    margin: 0.2em 0;
    vertical-align: middle;
    margin-left: 0.4em;
    margin-right: 22px;
}
.ui-spinner-button {
    width: 16px;
    height: 50%;
    font-size: 0.5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0;
}
.ui-spinner a.ui-spinner-button {
    border-top: none;
    border-bottom: none;
    border-right: none;
}
.ui-spinner .ui-icon {
    position: absolute;
    margin-top: -8px;
    top: 50%;
    left: 0;
}
.ui-spinner-up {
    top: 0;
}
.ui-spinner-down {
    bottom: 0;
}
.ui-spinner .ui-icon-triangle-1-s {
    background-position: -65px -16px;
}
.ui-tabs {
    position: relative;
    padding: 0.2em;
}
.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: 0.2em 0.2em 0;
}
.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px 0.2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap;
}
.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: 0.5em 1em;
    text-decoration: none;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: -1px;
    padding-bottom: 1px;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor {
    cursor: text;
}
.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor {
    cursor: pointer;
}
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 1em 1.4em;
    background: none;
}
.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
    border-width: 2px;
}
.ui-widget {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1.1em;
}
.ui-widget .ui-widget {
    font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1em;
}
.ui-widget-content {
    border: 1px solid #aaa;
    background: #fff;
    color: #222;
}
.ui-widget-content a {
    color: #222;
}
.ui-widget-header {
    border: 1px solid #aaa;
    background: #ccc
        url("/img/jqueryui/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50%
        repeat-x;
    color: #222;
    font-weight: bold;
}
.ui-widget-header a {
    color: #222;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 1px solid #d3d3d3;
    background: #e6e6e6 url("/img/jqueryui/ui-bg_glass_75_e6e6e6_1x400.png") 50%
        50% repeat-x;
    font-weight: normal;
    color: #555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
    color: #555;
    text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #999;
    background: #dadada url("/img/jqueryui/ui-bg_glass_75_dadada_1x400.png") 50%
        50% repeat-x;
    font-weight: normal;
    color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
    color: #212121;
    text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #aaa;
    background: #fff url("/img/jqueryui/ui-bg_glass_65_ffffff_1x400.png") 50%
        50% repeat-x;
    font-weight: normal;
    color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #212121;
    text-decoration: none;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #fcefa1;
    background: #fbf9ee url("/img/jqueryui/ui-bg_glass_55_fbf9ee_1x400.png") 50%
        50% repeat-x;
    color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #fef1ec url("/img/jqueryui/ui-bg_glass_95_fef1ec_1x400.png") 50%
        50% repeat-x;
    color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: 0.7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 0.35;
    filter: Alpha(Opacity=35);
    background-image: none;
}
.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35);
}
.ui-icon {
    width: 16px;
    height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_222222_256x240.png");
}
.ui-state-default .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_888888_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_454545_256x240.png");
}
.ui-state-active .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_454545_256x240.png");
}
.ui-state-highlight .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_cd0a0a_256x240.png");
}
.ui-icon-blank {
    background-position: 16px 16px;
}
.ui-icon-carat-1-n {
    background-position: 0 0;
}
.ui-icon-carat-1-ne {
    background-position: -16px 0;
}
.ui-icon-carat-1-e {
    background-position: -32px 0;
}
.ui-icon-carat-1-se {
    background-position: -48px 0;
}
.ui-icon-carat-1-s {
    background-position: -64px 0;
}
.ui-icon-carat-1-sw {
    background-position: -80px 0;
}
.ui-icon-carat-1-w {
    background-position: -96px 0;
}
.ui-icon-carat-1-nw {
    background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
    background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
    background-position: -144px 0;
}
.ui-icon-triangle-1-n {
    background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
    background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
    background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
    background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
    background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
    background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
    background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
    background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
    background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
    background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}
.ui-icon-arrow-4 {
    background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}
.ui-icon-extlink {
    background-position: -32px -80px;
}
.ui-icon-newwin {
    background-position: -48px -80px;
}
.ui-icon-refresh {
    background-position: -64px -80px;
}
.ui-icon-shuffle {
    background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
    background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
    background-position: 0 -96px;
}
.ui-icon-folder-open {
    background-position: -16px -96px;
}
.ui-icon-document {
    background-position: -32px -96px;
}
.ui-icon-document-b {
    background-position: -48px -96px;
}
.ui-icon-note {
    background-position: -64px -96px;
}
.ui-icon-mail-closed {
    background-position: -80px -96px;
}
.ui-icon-mail-open {
    background-position: -96px -96px;
}
.ui-icon-suitcase {
    background-position: -112px -96px;
}
.ui-icon-comment {
    background-position: -128px -96px;
}
.ui-icon-person {
    background-position: -144px -96px;
}
.ui-icon-print {
    background-position: -160px -96px;
}
.ui-icon-trash {
    background-position: -176px -96px;
}
.ui-icon-locked {
    background-position: -192px -96px;
}
.ui-icon-unlocked {
    background-position: -208px -96px;
}
.ui-icon-bookmark {
    background-position: -224px -96px;
}
.ui-icon-tag {
    background-position: -240px -96px;
}
.ui-icon-home {
    background-position: 0 -112px;
}
.ui-icon-flag {
    background-position: -16px -112px;
}
.ui-icon-calendar {
    background-position: -32px -112px;
}
.ui-icon-cart {
    background-position: -48px -112px;
}
.ui-icon-pencil {
    background-position: -64px -112px;
}
.ui-icon-clock {
    background-position: -80px -112px;
}
.ui-icon-disk {
    background-position: -96px -112px;
}
.ui-icon-calculator {
    background-position: -112px -112px;
}
.ui-icon-zoomin {
    background-position: -128px -112px;
}
.ui-icon-zoomout {
    background-position: -144px -112px;
}
.ui-icon-search {
    background-position: -160px -112px;
}
.ui-icon-wrench {
    background-position: -176px -112px;
}
.ui-icon-gear {
    background-position: -192px -112px;
}
.ui-icon-heart {
    background-position: -208px -112px;
}
.ui-icon-star {
    background-position: -224px -112px;
}
.ui-icon-link {
    background-position: -240px -112px;
}
.ui-icon-cancel {
    background-position: 0 -128px;
}
.ui-icon-plus {
    background-position: -16px -128px;
}
.ui-icon-plusthick {
    background-position: -32px -128px;
}
.ui-icon-minus {
    background-position: -48px -128px;
}
.ui-icon-minusthick {
    background-position: -64px -128px;
}
.ui-icon-close {
    background-position: -80px -128px;
}
.ui-icon-closethick {
    background-position: -96px -128px;
}
.ui-icon-key {
    background-position: -112px -128px;
}
.ui-icon-lightbulb {
    background-position: -128px -128px;
}
.ui-icon-scissors {
    background-position: -144px -128px;
}
.ui-icon-clipboard {
    background-position: -160px -128px;
}
.ui-icon-copy {
    background-position: -176px -128px;
}
.ui-icon-contact {
    background-position: -192px -128px;
}
.ui-icon-image {
    background-position: -208px -128px;
}
.ui-icon-video {
    background-position: -224px -128px;
}
.ui-icon-script {
    background-position: -240px -128px;
}
.ui-icon-alert {
    background-position: 0 -144px;
}
.ui-icon-info {
    background-position: -16px -144px;
}
.ui-icon-notice {
    background-position: -32px -144px;
}
.ui-icon-help {
    background-position: -48px -144px;
}
.ui-icon-check {
    background-position: -64px -144px;
}
.ui-icon-bullet {
    background-position: -80px -144px;
}
.ui-icon-radio-on {
    background-position: -96px -144px;
}
.ui-icon-radio-off {
    background-position: -112px -144px;
}
.ui-icon-pin-w {
    background-position: -128px -144px;
}
.ui-icon-pin-s {
    background-position: -144px -144px;
}
.ui-icon-play {
    background-position: 0 -160px;
}
.ui-icon-pause {
    background-position: -16px -160px;
}
.ui-icon-seek-next {
    background-position: -32px -160px;
}
.ui-icon-seek-prev {
    background-position: -48px -160px;
}
.ui-icon-seek-end {
    background-position: -64px -160px;
}
.ui-icon-seek-start {
    background-position: -80px -160px;
}
.ui-icon-seek-first {
    background-position: -80px -160px;
}
.ui-icon-stop {
    background-position: -96px -160px;
}
.ui-icon-eject {
    background-position: -112px -160px;
}
.ui-icon-volume-off {
    background-position: -128px -160px;
}
.ui-icon-volume-on {
    background-position: -144px -160px;
}
.ui-icon-power {
    background-position: 0 -176px;
}
.ui-icon-signal-diag {
    background-position: -16px -176px;
}
.ui-icon-signal {
    background-position: -32px -176px;
}
.ui-icon-battery-0 {
    background-position: -48px -176px;
}
.ui-icon-battery-1 {
    background-position: -64px -176px;
}
.ui-icon-battery-2 {
    background-position: -80px -176px;
}
.ui-icon-battery-3 {
    background-position: -96px -176px;
}
.ui-icon-circle-plus {
    background-position: 0 -192px;
}
.ui-icon-circle-minus {
    background-position: -16px -192px;
}
.ui-icon-circle-close {
    background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
    background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
    background-position: -192px -192px;
}
.ui-icon-circle-check {
    background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
    background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
    background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 4px;
}
.ui-widget-overlay {
    background: #aaa;
    opacity: 0.3;
    filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
    margin: -8px 0 0 -8px;
    padding: 8px;
    background: #aaa;
    opacity: 0.3;
    filter: Alpha(Opacity=30);
    border-radius: 8px;
}

/*! jQuery UI - v1.11.4 - 2016-06-06
* http://jqueryui.com
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-widget {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1.1em;
}
.ui-widget .ui-widget {
    font-size: 1em;
}
.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1em;
}
.ui-widget-content {
    border: 1px solid #aaa;
    background: #fff;
    color: #222;
}
.ui-widget-content a {
    color: #222;
}
.ui-widget-header {
    border: 1px solid #aaa;
    background: #ccc
        url("/img/jqueryui/ui-bg_highlight-soft_75_cccccc_1x100.png") 50% 50%
        repeat-x;
    color: #222;
    font-weight: bold;
}
.ui-widget-header a {
    color: #222;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
    border: 1px solid #d3d3d3;
    background: #e6e6e6 url("/img/jqueryui/ui-bg_glass_75_e6e6e6_1x400.png") 50%
        50% repeat-x;
    font-weight: normal;
    color: #555;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited {
    color: #555;
    text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus {
    border: 1px solid #999;
    background: #dadada url("/img/jqueryui/ui-bg_glass_75_dadada_1x400.png") 50%
        50% repeat-x;
    font-weight: normal;
    color: #212121;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited {
    color: #212121;
    text-decoration: none;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active {
    border: 1px solid #aaa;
    background: #fff url("/img/jqueryui/ui-bg_glass_65_ffffff_1x400.png") 50%
        50% repeat-x;
    font-weight: normal;
    color: #212121;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #212121;
    text-decoration: none;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #fcefa1;
    background: #fbf9ee url("/img/jqueryui/ui-bg_glass_55_fbf9ee_1x400.png") 50%
        50% repeat-x;
    color: #363636;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #363636;
}
.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #cd0a0a;
    background: #fef1ec url("/img/jqueryui/ui-bg_glass_95_fef1ec_1x400.png") 50%
        50% repeat-x;
    color: #cd0a0a;
}
.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
    color: #cd0a0a;
}
.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
    color: #cd0a0a;
}
.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: bold;
}
.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: 0.7;
    filter: Alpha(Opacity=70);
    font-weight: normal;
}
.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: 0.35;
    filter: Alpha(Opacity=35);
    background-image: none;
}
.ui-state-disabled .ui-icon {
    filter: Alpha(Opacity=35);
}
.ui-icon {
    width: 16px;
    height: 16px;
}
.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_222222_256x240.png");
}
.ui-widget-header .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_222222_256x240.png");
}
.ui-state-default .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_888888_256x240.png");
}
.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_454545_256x240.png");
}
.ui-state-active .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_454545_256x240.png");
}
.ui-state-highlight .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_2e83ff_256x240.png");
}
.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url("/img/jqueryui/ui-icons_cd0a0a_256x240.png");
}
.ui-icon-blank {
    background-position: 16px 16px;
}
.ui-icon-carat-1-n {
    background-position: 0 0;
}
.ui-icon-carat-1-ne {
    background-position: -16px 0;
}
.ui-icon-carat-1-e {
    background-position: -32px 0;
}
.ui-icon-carat-1-se {
    background-position: -48px 0;
}
.ui-icon-carat-1-s {
    background-position: -64px 0;
}
.ui-icon-carat-1-sw {
    background-position: -80px 0;
}
.ui-icon-carat-1-w {
    background-position: -96px 0;
}
.ui-icon-carat-1-nw {
    background-position: -112px 0;
}
.ui-icon-carat-2-n-s {
    background-position: -128px 0;
}
.ui-icon-carat-2-e-w {
    background-position: -144px 0;
}
.ui-icon-triangle-1-n {
    background-position: 0 -16px;
}
.ui-icon-triangle-1-ne {
    background-position: -16px -16px;
}
.ui-icon-triangle-1-e {
    background-position: -32px -16px;
}
.ui-icon-triangle-1-se {
    background-position: -48px -16px;
}
.ui-icon-triangle-1-s {
    background-position: -64px -16px;
}
.ui-icon-triangle-1-sw {
    background-position: -80px -16px;
}
.ui-icon-triangle-1-w {
    background-position: -96px -16px;
}
.ui-icon-triangle-1-nw {
    background-position: -112px -16px;
}
.ui-icon-triangle-2-n-s {
    background-position: -128px -16px;
}
.ui-icon-triangle-2-e-w {
    background-position: -144px -16px;
}
.ui-icon-arrow-1-n {
    background-position: 0 -32px;
}
.ui-icon-arrow-1-ne {
    background-position: -16px -32px;
}
.ui-icon-arrow-1-e {
    background-position: -32px -32px;
}
.ui-icon-arrow-1-se {
    background-position: -48px -32px;
}
.ui-icon-arrow-1-s {
    background-position: -64px -32px;
}
.ui-icon-arrow-1-sw {
    background-position: -80px -32px;
}
.ui-icon-arrow-1-w {
    background-position: -96px -32px;
}
.ui-icon-arrow-1-nw {
    background-position: -112px -32px;
}
.ui-icon-arrow-2-n-s {
    background-position: -128px -32px;
}
.ui-icon-arrow-2-ne-sw {
    background-position: -144px -32px;
}
.ui-icon-arrow-2-e-w {
    background-position: -160px -32px;
}
.ui-icon-arrow-2-se-nw {
    background-position: -176px -32px;
}
.ui-icon-arrowstop-1-n {
    background-position: -192px -32px;
}
.ui-icon-arrowstop-1-e {
    background-position: -208px -32px;
}
.ui-icon-arrowstop-1-s {
    background-position: -224px -32px;
}
.ui-icon-arrowstop-1-w {
    background-position: -240px -32px;
}
.ui-icon-arrowthick-1-n {
    background-position: 0 -48px;
}
.ui-icon-arrowthick-1-ne {
    background-position: -16px -48px;
}
.ui-icon-arrowthick-1-e {
    background-position: -32px -48px;
}
.ui-icon-arrowthick-1-se {
    background-position: -48px -48px;
}
.ui-icon-arrowthick-1-s {
    background-position: -64px -48px;
}
.ui-icon-arrowthick-1-sw {
    background-position: -80px -48px;
}
.ui-icon-arrowthick-1-w {
    background-position: -96px -48px;
}
.ui-icon-arrowthick-1-nw {
    background-position: -112px -48px;
}
.ui-icon-arrowthick-2-n-s {
    background-position: -128px -48px;
}
.ui-icon-arrowthick-2-ne-sw {
    background-position: -144px -48px;
}
.ui-icon-arrowthick-2-e-w {
    background-position: -160px -48px;
}
.ui-icon-arrowthick-2-se-nw {
    background-position: -176px -48px;
}
.ui-icon-arrowthickstop-1-n {
    background-position: -192px -48px;
}
.ui-icon-arrowthickstop-1-e {
    background-position: -208px -48px;
}
.ui-icon-arrowthickstop-1-s {
    background-position: -224px -48px;
}
.ui-icon-arrowthickstop-1-w {
    background-position: -240px -48px;
}
.ui-icon-arrowreturnthick-1-w {
    background-position: 0 -64px;
}
.ui-icon-arrowreturnthick-1-n {
    background-position: -16px -64px;
}
.ui-icon-arrowreturnthick-1-e {
    background-position: -32px -64px;
}
.ui-icon-arrowreturnthick-1-s {
    background-position: -48px -64px;
}
.ui-icon-arrowreturn-1-w {
    background-position: -64px -64px;
}
.ui-icon-arrowreturn-1-n {
    background-position: -80px -64px;
}
.ui-icon-arrowreturn-1-e {
    background-position: -96px -64px;
}
.ui-icon-arrowreturn-1-s {
    background-position: -112px -64px;
}
.ui-icon-arrowrefresh-1-w {
    background-position: -128px -64px;
}
.ui-icon-arrowrefresh-1-n {
    background-position: -144px -64px;
}
.ui-icon-arrowrefresh-1-e {
    background-position: -160px -64px;
}
.ui-icon-arrowrefresh-1-s {
    background-position: -176px -64px;
}
.ui-icon-arrow-4 {
    background-position: 0 -80px;
}
.ui-icon-arrow-4-diag {
    background-position: -16px -80px;
}
.ui-icon-extlink {
    background-position: -32px -80px;
}
.ui-icon-newwin {
    background-position: -48px -80px;
}
.ui-icon-refresh {
    background-position: -64px -80px;
}
.ui-icon-shuffle {
    background-position: -80px -80px;
}
.ui-icon-transfer-e-w {
    background-position: -96px -80px;
}
.ui-icon-transferthick-e-w {
    background-position: -112px -80px;
}
.ui-icon-folder-collapsed {
    background-position: 0 -96px;
}
.ui-icon-folder-open {
    background-position: -16px -96px;
}
.ui-icon-document {
    background-position: -32px -96px;
}
.ui-icon-document-b {
    background-position: -48px -96px;
}
.ui-icon-note {
    background-position: -64px -96px;
}
.ui-icon-mail-closed {
    background-position: -80px -96px;
}
.ui-icon-mail-open {
    background-position: -96px -96px;
}
.ui-icon-suitcase {
    background-position: -112px -96px;
}
.ui-icon-comment {
    background-position: -128px -96px;
}
.ui-icon-person {
    background-position: -144px -96px;
}
.ui-icon-print {
    background-position: -160px -96px;
}
.ui-icon-trash {
    background-position: -176px -96px;
}
.ui-icon-locked {
    background-position: -192px -96px;
}
.ui-icon-unlocked {
    background-position: -208px -96px;
}
.ui-icon-bookmark {
    background-position: -224px -96px;
}
.ui-icon-tag {
    background-position: -240px -96px;
}
.ui-icon-home {
    background-position: 0 -112px;
}
.ui-icon-flag {
    background-position: -16px -112px;
}
.ui-icon-calendar {
    background-position: -32px -112px;
}
.ui-icon-cart {
    background-position: -48px -112px;
}
.ui-icon-pencil {
    background-position: -64px -112px;
}
.ui-icon-clock {
    background-position: -80px -112px;
}
.ui-icon-disk {
    background-position: -96px -112px;
}
.ui-icon-calculator {
    background-position: -112px -112px;
}
.ui-icon-zoomin {
    background-position: -128px -112px;
}
.ui-icon-zoomout {
    background-position: -144px -112px;
}
.ui-icon-search {
    background-position: -160px -112px;
}
.ui-icon-wrench {
    background-position: -176px -112px;
}
.ui-icon-gear {
    background-position: -192px -112px;
}
.ui-icon-heart {
    background-position: -208px -112px;
}
.ui-icon-star {
    background-position: -224px -112px;
}
.ui-icon-link {
    background-position: -240px -112px;
}
.ui-icon-cancel {
    background-position: 0 -128px;
}
.ui-icon-plus {
    background-position: -16px -128px;
}
.ui-icon-plusthick {
    background-position: -32px -128px;
}
.ui-icon-minus {
    background-position: -48px -128px;
}
.ui-icon-minusthick {
    background-position: -64px -128px;
}
.ui-icon-close {
    background-position: -80px -128px;
}
.ui-icon-closethick {
    background-position: -96px -128px;
}
.ui-icon-key {
    background-position: -112px -128px;
}
.ui-icon-lightbulb {
    background-position: -128px -128px;
}
.ui-icon-scissors {
    background-position: -144px -128px;
}
.ui-icon-clipboard {
    background-position: -160px -128px;
}
.ui-icon-copy {
    background-position: -176px -128px;
}
.ui-icon-contact {
    background-position: -192px -128px;
}
.ui-icon-image {
    background-position: -208px -128px;
}
.ui-icon-video {
    background-position: -224px -128px;
}
.ui-icon-script {
    background-position: -240px -128px;
}
.ui-icon-alert {
    background-position: 0 -144px;
}
.ui-icon-info {
    background-position: -16px -144px;
}
.ui-icon-notice {
    background-position: -32px -144px;
}
.ui-icon-help {
    background-position: -48px -144px;
}
.ui-icon-check {
    background-position: -64px -144px;
}
.ui-icon-bullet {
    background-position: -80px -144px;
}
.ui-icon-radio-on {
    background-position: -96px -144px;
}
.ui-icon-radio-off {
    background-position: -112px -144px;
}
.ui-icon-pin-w {
    background-position: -128px -144px;
}
.ui-icon-pin-s {
    background-position: -144px -144px;
}
.ui-icon-play {
    background-position: 0 -160px;
}
.ui-icon-pause {
    background-position: -16px -160px;
}
.ui-icon-seek-next {
    background-position: -32px -160px;
}
.ui-icon-seek-prev {
    background-position: -48px -160px;
}
.ui-icon-seek-end {
    background-position: -64px -160px;
}
.ui-icon-seek-start {
    background-position: -80px -160px;
}
.ui-icon-seek-first {
    background-position: -80px -160px;
}
.ui-icon-stop {
    background-position: -96px -160px;
}
.ui-icon-eject {
    background-position: -112px -160px;
}
.ui-icon-volume-off {
    background-position: -128px -160px;
}
.ui-icon-volume-on {
    background-position: -144px -160px;
}
.ui-icon-power {
    background-position: 0 -176px;
}
.ui-icon-signal-diag {
    background-position: -16px -176px;
}
.ui-icon-signal {
    background-position: -32px -176px;
}
.ui-icon-battery-0 {
    background-position: -48px -176px;
}
.ui-icon-battery-1 {
    background-position: -64px -176px;
}
.ui-icon-battery-2 {
    background-position: -80px -176px;
}
.ui-icon-battery-3 {
    background-position: -96px -176px;
}
.ui-icon-circle-plus {
    background-position: 0 -192px;
}
.ui-icon-circle-minus {
    background-position: -16px -192px;
}
.ui-icon-circle-close {
    background-position: -32px -192px;
}
.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}
.ui-icon-circle-triangle-s {
    background-position: -64px -192px;
}
.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}
.ui-icon-circle-triangle-n {
    background-position: -96px -192px;
}
.ui-icon-circle-arrow-e {
    background-position: -112px -192px;
}
.ui-icon-circle-arrow-s {
    background-position: -128px -192px;
}
.ui-icon-circle-arrow-w {
    background-position: -144px -192px;
}
.ui-icon-circle-arrow-n {
    background-position: -160px -192px;
}
.ui-icon-circle-zoomin {
    background-position: -176px -192px;
}
.ui-icon-circle-zoomout {
    background-position: -192px -192px;
}
.ui-icon-circle-check {
    background-position: -208px -192px;
}
.ui-icon-circlesmall-plus {
    background-position: 0 -208px;
}
.ui-icon-circlesmall-minus {
    background-position: -16px -208px;
}
.ui-icon-circlesmall-close {
    background-position: -32px -208px;
}
.ui-icon-squaresmall-plus {
    background-position: -48px -208px;
}
.ui-icon-squaresmall-minus {
    background-position: -64px -208px;
}
.ui-icon-squaresmall-close {
    background-position: -80px -208px;
}
.ui-icon-grip-dotted-vertical {
    background-position: 0 -224px;
}
.ui-icon-grip-dotted-horizontal {
    background-position: -16px -224px;
}
.ui-icon-grip-solid-vertical {
    background-position: -32px -224px;
}
.ui-icon-grip-solid-horizontal {
    background-position: -48px -224px;
}
.ui-icon-gripsmall-diagonal-se {
    background-position: -64px -224px;
}
.ui-icon-grip-diagonal-se {
    background-position: -80px -224px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
    border-top-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
    border-top-right-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
    border-bottom-left-radius: 4px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
    border-bottom-right-radius: 4px;
}
.ui-widget-overlay {
    background: #aaa;
    opacity: 0.3;
    filter: Alpha(Opacity=30);
}
.ui-widget-shadow {
    margin: -8px 0 0 -8px;
    padding: 8px;
    background: #aaa;
    opacity: 0.3;
    filter: Alpha(Opacity=30);
    border-radius: 8px;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.fancybox-opened {
    z-index: 8030;
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer,
.fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image,
.fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

#fancybox-loading,
.fancybox-close,
.fancybox-prev span,
.fancybox-next span {
    background-image: url("/img/fancybox/fancybox_sprite.png");
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url("/img/fancybox/fancybox_loading.gif") center center
        no-repeat;
}

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url("/img/fancybox/blank.gif"); /* helps IE */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    z-index: 8040;
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px;
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px;
}

.fancybox-nav:hover span {
    visibility: visible;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url("/img/fancybox/fancybox_overlay.png");
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050;
}

.fancybox-opened .fancybox-title {
    visibility: visible;
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent; /* Fallback for web browsers that doesn't support RGBa */
    background: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #fff;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff;
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, 0.8);
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
    only screen and (min--moz-device-pixel-ratio: 1.5),
    only screen and (min-device-pixel-ratio: 1.5) {
    #fancybox-loading,
    .fancybox-close,
    .fancybox-prev span,
    .fancybox-next span {
        background-image: url("/img/fancybox/fancybox_sprite@2x.png");
        background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
    }

    #fancybox-loading div {
        background-image: url("/img/fancybox/fancybox_loading@2x.gif");
        background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
    }
}

/* Elfsight (c) elfsight.com */

@font-face {
    font-family: "Iconsfont";
    src: url(data:application/vnd.ms-fontobject;base64,BAcAAGAGAAABAAIAAAAAAAAAAAAAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAH9kmgAAAAAAAAAAAAAAAAAAAAAAAAA4AaQBjAG8AbQBvAG8AbgAAAA4AUgBlAGcAdQBsAGEAcgAAABYAVgBlAHIAcwBpAG8AbgAgADEALgAwAAAADgBpAGMAbwBtAG8AbwBuAAAAAAAAAQAAAAsAgAADADBPUy8yDxIEkAAAALwAAABgY21hcOg85rYAAAEcAAAAXGdhc3AAAAAQAAABeAAAAAhnbHlmJ80DnAAAAYAAAAKIaGVhZAejm9kAAAQIAAAANmhoZWEHwgPJAAAEQAAAACRobXR4FQAAQAAABGQAAAAgbG9jYQIsAZoAAASEAAAAEm1heHAADQBGAAAEmAAAACBuYW1lmUoJ+wAABLgAAAGGcG9zdAADAAAAAAZAAAAAIAADA2YBkAAFAAACmQLMAAAAjwKZAswAAAHrADMBCQAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAOgAA8D/wABAA8AAQAAAAAEAAAAAAAAAAAAAACAAAAAAAAMAAAADAAAAHAABAAMAAAAcAAMAAQAAABwABABAAAAADAAIAAIABAABACDmAugA//3//wAAAAAAIOYA6AD//f//AAH/4xoEGAcAAwABAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAgAA/6sEAAOrABkAMwAAJTI2Nxc1PgM1NC4CIyIOAhUUHgIzETIeAhUUDgIHFycOASMiLgI1ND4CMwIAGS8Y4CxHMhtQi7tqaruLUFCLu2pdo3pGGzJHKwKXGjYcXaN6RkZ6o10rBASI4h9NWWQ1XKR5R0d5pFxdo3pGA0A9aIxPMVtRRBqUWgUGPGiMUE+MaD0AAAIAAP/OBAADawAbADgAAAkBBiInAS4BNTQ+AjMyFhc+ATMyHgIVFAYHJz4BNTQuAiMiDgIHLgMjIg4CFRQWFwkBA7/+cSEfIf5yGicmRF44UH8xM31QOF5EJiMePyUbHTNHKSNJRDsVFTtESSMrRjMcHiIBgAGAAan+JSMjAdsnVTk0YkotTDQxTy1KYjQ5VScOLk0sKUw5IyAyOhobOzEfIzpLKSxKL/41AckAAAAABAAA/6sDAAOrABQAKQA2AEMAAAUiLgI1ND4CMzIeAhUUDgIjESIOAhUUHgIzMj4CNTQuAiMRIiY1NDYzMhYVFAYjESIGFRQWMzI2NTQmIwGAGH6EZjxpi1BQi2k8ZoV9GEJ1VzJVbmkUFGluVTJXdUJCXl5CQl5eQig4OCgoODgoVZrS1z1PjGg9PWiMTzzX0psDwDNXdEIztrOEhLS2MkJ0VzP+IF1DQl5eQkNdAQA5Jyg4OCgnOQAAAAABAED/6wPAA2sAFQAANxQWMzI2NwE+ATU0JicBLgEjIgYVEUAmGhAgEALRDSIiDf0vECAQGiYrGyURBwFoBh0dHB0HAWgHESYa/QAAAQAAAAAAAIAm2R9fDzz1AAsEAAAAAADSQqvDAAAAANJCq8MAAP+rBAADqwAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAACAQAAAAAAAAAAAAAAAIAAAAEAAAABAAAAAMAAAAEAABAAAAAAAAKABQAHgBoAMABHgFEAAAAAQAAAAgARAAEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGljb21vb24AaQBjAG8AbQBvAG8AblZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb21vb24AaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AblJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb21vb24AaQBjAG8AbQBvAG8AbkZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=);
    src: url(data:application/vnd.ms-fontobject;base64,BAcAAGAGAAABAAIAAAAAAAAAAAAAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAH9kmgAAAAAAAAAAAAAAAAAAAAAAAAA4AaQBjAG8AbQBvAG8AbgAAAA4AUgBlAGcAdQBsAGEAcgAAABYAVgBlAHIAcwBpAG8AbgAgADEALgAwAAAADgBpAGMAbwBtAG8AbwBuAAAAAAAAAQAAAAsAgAADADBPUy8yDxIEkAAAALwAAABgY21hcOg85rYAAAEcAAAAXGdhc3AAAAAQAAABeAAAAAhnbHlmJ80DnAAAAYAAAAKIaGVhZAejm9kAAAQIAAAANmhoZWEHwgPJAAAEQAAAACRobXR4FQAAQAAABGQAAAAgbG9jYQIsAZoAAASEAAAAEm1heHAADQBGAAAEmAAAACBuYW1lmUoJ+wAABLgAAAGGcG9zdAADAAAAAAZAAAAAIAADA2YBkAAFAAACmQLMAAAAjwKZAswAAAHrADMBCQAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAOgAA8D/wABAA8AAQAAAAAEAAAAAAAAAAAAAACAAAAAAAAMAAAADAAAAHAABAAMAAAAcAAMAAQAAABwABABAAAAADAAIAAIABAABACDmAugA//3//wAAAAAAIOYA6AD//f//AAH/4xoEGAcAAwABAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAgAA/6sEAAOrABkAMwAAJTI2Nxc1PgM1NC4CIyIOAhUUHgIzETIeAhUUDgIHFycOASMiLgI1ND4CMwIAGS8Y4CxHMhtQi7tqaruLUFCLu2pdo3pGGzJHKwKXGjYcXaN6RkZ6o10rBASI4h9NWWQ1XKR5R0d5pFxdo3pGA0A9aIxPMVtRRBqUWgUGPGiMUE+MaD0AAAIAAP/OBAADawAbADgAAAkBBiInAS4BNTQ+AjMyFhc+ATMyHgIVFAYHJz4BNTQuAiMiDgIHLgMjIg4CFRQWFwkBA7/+cSEfIf5yGicmRF44UH8xM31QOF5EJiMePyUbHTNHKSNJRDsVFTtESSMrRjMcHiIBgAGAAan+JSMjAdsnVTk0YkotTDQxTy1KYjQ5VScOLk0sKUw5IyAyOhobOzEfIzpLKSxKL/41AckAAAAABAAA/6sDAAOrABQAKQA2AEMAAAUiLgI1ND4CMzIeAhUUDgIjESIOAhUUHgIzMj4CNTQuAiMRIiY1NDYzMhYVFAYjESIGFRQWMzI2NTQmIwGAGH6EZjxpi1BQi2k8ZoV9GEJ1VzJVbmkUFGluVTJXdUJCXl5CQl5eQig4OCgoODgoVZrS1z1PjGg9PWiMTzzX0psDwDNXdEIztrOEhLS2MkJ0VzP+IF1DQl5eQkNdAQA5Jyg4OCgnOQAAAAABAED/6wPAA2sAFQAANxQWMzI2NwE+ATU0JicBLgEjIgYVEUAmGhAgEALRDSIiDf0vECAQGiYrGyURBwFoBh0dHB0HAWgHESYa/QAAAQAAAAAAAIAm2R9fDzz1AAsEAAAAAADSQqvDAAAAANJCq8MAAP+rBAADqwAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAACAQAAAAAAAAAAAAAAAIAAAAEAAAABAAAAAMAAAAEAABAAAAAAAAKABQAHgBoAMABHgFEAAAAAQAAAAgARAAEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGljb21vb24AaQBjAG8AbQBvAG8AblZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb21vb24AaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AblJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb21vb24AaQBjAG8AbQBvAG8AbkZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=)
            format("embedded-opentype"),
        url(data:application/x-font-ttf;base64,AAEAAAALAIAAAwAwT1MvMg8SBJAAAAC8AAAAYGNtYXDoPOa2AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZifNA5wAAAGAAAACiGhlYWQHo5vZAAAECAAAADZoaGVhB8IDyQAABEAAAAAkaG10eBUAAEAAAARkAAAAIGxvY2ECLAGaAAAEhAAAABJtYXhwAA0ARgAABJgAAAAgbmFtZZlKCfsAAAS4AAABhnBvc3QAAwAAAAAGQAAAACAAAwNmAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAAPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gLoAP/9//8AAAAAACDmAOgA//3//wAB/+MaBBgHAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP+rBAADqwAZADMAACUyNjcXNT4DNTQuAiMiDgIVFB4CMxEyHgIVFA4CBxcnDgEjIi4CNTQ+AjMCABkvGOAsRzIbUIu7amq7i1BQi7tqXaN6RhsyRysClxo2HF2jekZGeqNdKwQEiOIfTVlkNVykeUdHeaRcXaN6RgNAPWiMTzFbUUQalFoFBjxojFBPjGg9AAACAAD/zgQAA2sAGwA4AAAJAQYiJwEuATU0PgIzMhYXPgEzMh4CFRQGByc+ATU0LgIjIg4CBy4DIyIOAhUUFhcJAQO//nEhHyH+chonJkReOFB/MTN9UDheRCYjHj8lGx0zRykjSUQ7FRU7REkjK0YzHB4iAYABgAGp/iUjIwHbJ1U5NGJKLUw0MU8tSmI0OVUnDi5NLClMOSMgMjoaGzsxHyM6SyksSi/+NQHJAAAAAAQAAP+rAwADqwAUACkANgBDAAAFIi4CNTQ+AjMyHgIVFA4CIxEiDgIVFB4CMzI+AjU0LgIjESImNTQ2MzIWFRQGIxEiBhUUFjMyNjU0JiMBgBh+hGY8aYtQUItpPGaFfRhCdVcyVW5pFBRpblUyV3VCQl5eQkJeXkIoODgoKDg4KFWa0tc9T4xoPT1ojE8819KbA8AzV3RCM7azhIS0tjJCdFcz/iBdQ0JeXkJDXQEAOScoODgoJzkAAAAAAQBA/+sDwANrABUAADcUFjMyNjcBPgE1NCYnAS4BIyIGFRFAJhoQIBAC0Q0iIg39LxAgEBomKxslEQcBaAYdHRwdBwFoBxEmGv0AAAEAAAAAAACAJtkfXw889QALBAAAAAAA0kKrwwAAAADSQqvDAAD/qwQAA6sAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAgEAAAAAAAAAAAAAAACAAAABAAAAAQAAAADAAAABAAAQAAAAAAACgAUAB4AaADAAR4BRAAAAAEAAAAIAEQABAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAHAAAAAQAAAAAAAgAHAGAAAQAAAAAAAwAHADYAAQAAAAAABAAHAHUAAQAAAAAABQALABUAAQAAAAAABgAHAEsAAQAAAAAACgAaAIoAAwABBAkAAQAOAAcAAwABBAkAAgAOAGcAAwABBAkAAwAOAD0AAwABBAkABAAOAHwAAwABBAkABQAWACAAAwABBAkABgAOAFIAAwABBAkACgA0AKRpY29tb29uAGkAYwBvAG0AbwBvAG5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29tb29uAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG5SZWd1bGFyAFIAZQBnAHUAbABhAHJpY29tb29uAGkAYwBvAG0AbwBvAG5Gb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA)
            format("truetype"),
        url(data:application/font-woff;base64,d09GRgABAAAAAAasAAsAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIEkGNtYXAAAAFoAAAAXAAAAFzoPOa2Z2FzcAAAAcQAAAAIAAAACAAAABBnbHlmAAABzAAAAogAAAKIJ80DnGhlYWQAAARUAAAANgAAADYHo5vZaGhlYQAABIwAAAAkAAAAJAfCA8lobXR4AAAEsAAAACAAAAAgFQAAQGxvY2EAAATQAAAAEgAAABICLAGabWF4cAAABOQAAAAgAAAAIAANAEZuYW1lAAAFBAAAAYYAAAGGmUoJ+3Bvc3QAAAaMAAAAIAAAACAAAwAAAAMDZgGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6AADwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAEAAAAAMAAgAAgAEAAEAIOYC6AD//f//AAAAAAAg5gDoAP/9//8AAf/jGgQYBwADAAEAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAACAAD/qwQAA6sAGQAzAAAlMjY3FzU+AzU0LgIjIg4CFRQeAjMRMh4CFRQOAgcXJw4BIyIuAjU0PgIzAgAZLxjgLEcyG1CLu2pqu4tQUIu7al2jekYbMkcrApcaNhxdo3pGRnqjXSsEBIjiH01ZZDVcpHlHR3mkXF2jekYDQD1ojE8xW1FEGpRaBQY8aIxQT4xoPQAAAgAA/84EAANrABsAOAAACQEGIicBLgE1ND4CMzIWFz4BMzIeAhUUBgcnPgE1NC4CIyIOAgcuAyMiDgIVFBYXCQEDv/5xIR8h/nIaJyZEXjhQfzEzfVA4XkQmIx4/JRsdM0cpI0lEOxUVO0RJIytGMxweIgGAAYABqf4lIyMB2ydVOTRiSi1MNDFPLUpiNDlVJw4uTSwpTDkjIDI6Ghs7MR8jOkspLEov/jUByQAAAAAEAAD/qwMAA6sAFAApADYAQwAABSIuAjU0PgIzMh4CFRQOAiMRIg4CFRQeAjMyPgI1NC4CIxEiJjU0NjMyFhUUBiMRIgYVFBYzMjY1NCYjAYAYfoRmPGmLUFCLaTxmhX0YQnVXMlVuaRQUaW5VMld1QkJeXkJCXl5CKDg4KCg4OChVmtLXPU+MaD09aIxPPNfSmwPAM1d0QjO2s4SEtLYyQnRXM/4gXUNCXl5CQ10BADknKDg4KCc5AAAAAAEAQP/rA8ADawAVAAA3FBYzMjY3AT4BNTQmJwEuASMiBhURQCYaECAQAtENIiIN/S8QIBAaJisbJREHAWgGHR0cHQcBaAcRJhr9AAABAAAAAAAAgCbZH18PPPUACwQAAAAAANJCq8MAAAAA0kKrwwAA/6sEAAOrAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAIBAAAAAAAAAAAAAAAAgAAAAQAAAAEAAAAAwAAAAQAAEAAAAAAAAoAFAAeAGgAwAEeAUQAAAABAAAACABEAAQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEABwAAAAEAAAAAAAIABwBgAAEAAAAAAAMABwA2AAEAAAAAAAQABwB1AAEAAAAAAAUACwAVAAEAAAAAAAYABwBLAAEAAAAAAAoAGgCKAAMAAQQJAAEADgAHAAMAAQQJAAIADgBnAAMAAQQJAAMADgA9AAMAAQQJAAQADgB8AAMAAQQJAAUAFgAgAAMAAQQJAAYADgBSAAMAAQQJAAoANACkaWNvbW9vbgBpAGMAbwBtAG8AbwBuVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwaWNvbW9vbgBpAGMAbwBtAG8AbwBuaWNvbW9vbgBpAGMAbwBtAG8AbwBuUmVndWxhcgBSAGUAZwB1AGwAYQByaWNvbW9vbgBpAGMAbwBtAG8AbwBuRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==)
            format("woff"),
        url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+R2VuZXJhdGVkIGJ5IEljb01vb248L21ldGFkYXRhPgo8ZGVmcz4KPGZvbnQgaWQ9Imljb21vb24iIGhvcml6LWFkdi14PSIxMDI0Ij4KPGZvbnQtZmFjZSB1bml0cy1wZXItZW09IjEwMjQiIGFzY2VudD0iOTYwIiBkZXNjZW50PSItNjQiIC8+CjxtaXNzaW5nLWdseXBoIGhvcml6LWFkdi14PSIxMDI0IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjA7IiBob3Jpei1hZHYteD0iNTEyIiBkPSIiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlNjAwOyIgZ2x5cGgtbmFtZT0iaWNvbi1jb21tZW50IiBkPSJNNTEyIDQyLjY2N2MzMi43NjggMCA2NC42NCAyLjk0NCA5NS42OCA4LjA2NGwyMjQuMzItMTM2LjA2NHYyMjYuNjI0YzExNi45MjggODIuMTEyIDE5MiAyMDggMTkyIDM0OS4zNzYgMCAyNDcuNDI0LTIyOS4yNDggNDQ4LTUxMiA0NDhzLTUxMi0yMDAuNTc2LTUxMi00NDhjMC0yNDcuNDI0IDIyOS4yNDgtNDQ4IDUxMi00NDh6TTUxMiA4NzQuNjY3YzI0Ny40MjQgMCA0NDgtMTcxLjkwNCA0NDgtMzg0IDAtMTMwLjExMi03NS43MTItMjQ0LjkyOC0xOTEuMjMyLTMxNC4zNjhsMi4wNDgtMTQ4LjQxNi0xNTAuNjU2IDkwLjU2Yy0zNC42ODgtNy40MjQtNzAuNzg0LTExLjc3Ni0xMDguMTYtMTEuNzc2LTI0Ny40MjQgMC00NDggMTcxLjkwNC00NDggMzg0czIwMC41NzYgMzg0IDQ0OCAzODR6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTYwMTsiIGdseXBoLW5hbWU9Imljb24tbGlrZSIgZD0iTTk1OS4xNjggNDI1LjQ1MWwtMzk4LjcyLTQ3NS4wMDhjLTQ0LjY3Mi00Ny4wNDAtNTMuMDU2LTQ3LjA0MC05Ny43MjggMGwtMzk3Ljg4OCA0NzUuMDA4Yy0zMy45MiA1MC45NDQtNjQuODMyIDEwNS4wODgtNjQuODMyIDE4MC4zNTIgMCAxNDAuMjI0IDEwNS43OTIgMjY4Ljg2NCAyNTYgMjY4Ljg2NCAxMDYuNjI0IDAgMTkwLjU5Mi01OC4zMDQgMjU2LTEyNy40ODggNjguNjA4IDY1LjE1MiAxNDkuMzc2IDEyNy40ODggMjU2IDEyNy40ODggMTUwLjIwOCAwIDI1Ni0xMjguNjQgMjU2LTI2OC44NjQgMC03NS4yNjQtMjQuOTYtMTI5LjQ3Mi02NC44MzItMTgwLjM1MnpNODk2IDQzOC42OTljNDkuNjY0IDYyLjI3MiA2NCAxMDguMzUyIDY0IDE2Ny4xMDQgMCAxMDkuNTY4LTgxLjUzNiAyMDkuMDg4LTE5MiAyMDkuMDg4LTkzLjMxMiAwLTIwMC41NzYtOTYuNjQtMjU2LTE2NS42OTYtNTYuODk2IDcxLjYxNi0xNjIuNjg4IDE2Ni41MjgtMjU2IDE2NS43Ni0xMTMuNDcyLTAuOTYtMTkyLTk5LjU4NC0xOTItMjA5LjE1MiAwLTU4Ljc1MiAxOC4wNDgtMTAxLjY5NiA2NC0xNjUuMjQ4bDM4NC00NTguMTc2IDM4NCA0NTYuMzJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTYwMjsiIGdseXBoLW5hbWU9Imljb24tcGxhY2VtYXJrIiBob3Jpei1hZHYteD0iNzY4IiBkPSJNMzg0LTg1LjMzM2MtNjMuODcyLTAuMzItMzg0IDQ3OS40MjQtMzg0IDY0MCAwIDIxMi4wOTYgMTcxLjkwNCAzODQgMzg0IDM4NHMzODQtMTcxLjkwNCAzODQtMzg0YzAtMTU4LjQtMzIxLjE1Mi02NDAuMzItMzg0LTY0MHpNMzg0IDg3NC42NjdjLTE3Ni43MDQgMC0zMjAtMTQzLjI5Ni0zMjAtMzIwIDAtMTMzLjgyNCAyNjYuODE2LTU0NC4yNTYgMzIwLTU0NCA1Mi4zNTItMC4yNTYgMzIwIDQxMS45NjggMzIwIDU0NCAwIDE3Ni43MDQtMTQzLjI5NiAzMjAtMzIwIDMyMHpNMzg0IDM5NC42NjdjLTg4LjM4NCAwLTE2MCA3MS42MTYtMTYwIDE2MHM3MS42MTYgMTYwIDE2MCAxNjAgMTYwLTcxLjYxNiAxNjAtMTYwLTcxLjYxNi0xNjAtMTYwLTE2MHpNMzg0IDY1MC42NjdjLTUyLjk5MiAwLTk2LTQzLjAwOC05Ni05NiAwLTUzLjA1NiA0My4wMDgtOTYgOTYtOTZzOTYgNDMuMDA4IDk2IDk2LTQzLjAwOCA5Ni05NiA5NnoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlODAwOyIgZ2x5cGgtbmFtZT0iaWNvbi1wbGF5IiBkPSJNNjQgNDIuNjY3YzAtMzUuMDA4IDI5LjUwNC02NCA2NC02NCAyMS41MDQgMCA0My4wMDggMTQuNTI4IDY0IDI0bDcyMC41MTIgMzYwYzE3LjQ3MiA4LjUxMiA0Ny40ODggMjUuOTg0IDQ3LjQ4OCA2NHMtMzAuMDE2IDU1LjQ4OC00Ny40ODggNjRsLTcyMC41MTIgMzYwYy0yMC45OTIgOS40NzItNDIuNDk2IDI0LTY0IDI0LTM0LjQ5NiAwLTY0LTI4Ljk5Mi02NC02NHYtNzY4eiIgLz4KPC9mb250PjwvZGVmcz48L3N2Zz4=)
            format("svg");
    font-weight: normal;
    font-style: normal;
}
.instashow-icon {
    font-family: "Iconsfont";
    font-size: 160%;
}
.instashow-iconspan {
    padding: 2px;
}
.instashow-icon,
.instashow-icon + * {
    display: inline-block;
    vertical-align: middle;
}
.instashow-icon + * {
    margin-left: 0.4em;
}
.instashow-icon-comment::before {
    content: "\e600";
}
.instashow-icon-like::before {
    content: "\e601";
}
.instashow-icon-placemark::before {
    content: "\e602";
}
.instashow-spinner {
    display: block;
    position: relative;
}
.instashow-spinner::before {
    display: none;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 12px solid #ddd;
    border-radius: 50% 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    content: "";
}
.instashow-show .instashow-spinner::before {
    display: block;
    -webkit-animation: instashow-spinner 1.5s infinite;
    animation: instashow-spinner 1.5s infinite;
}
@-webkit-keyframes instashow-spinner {
    0% {
        border-width: initital;
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        border-width: 1px;
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes instashow-spinner {
    0% {
        border-width: initital;
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        border-width: 1px;
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.instashow {
    font-family: "Roboto", Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #444;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}
.instashow,
.instashow * {
    direction: ltr !important;
}
.instashow a {
    text-decoration: none;
    color: #2196f3;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow a:hover {
    color: #444;
}
.instashow,
.instashow div,
.instashow span,
.instashow img,
.instashow p,
.instashow figure,
.instashow ul,
.instashow li,
.instashow a {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
}
.instashow,
.instashow div,
.instashow img,
.instashow p,
.instashow figure,
.instashow ul {
    display: block;
}
.instashow a {
    text-decoration: none;
}
.instashow img {
    max-width: none;
    max-height: none;
}
.instashow-gallery-media {
    display: none;
    box-sizing: border-box;
    float: left;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 900px;
    perspective: 900px;
}
.instashow-gallery-view-active .instashow-gallery-media,
.instashow-gallery-view-active-prev .instashow-gallery-media,
.instashow-gallery-view-active-next .instashow-gallery-media {
    display: block;
}
.instashow-gallery-media-link {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.instashow-gallery-media-video .instashow-gallery-media-link::before {
    display: block;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    font: normal 200%/1 "Iconsfont";
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "\e800";
}
.instashow-gallery-media-video:hover .instashow-gallery-media-link::before {
    opacity: 0.3;
}
.instashow-gallery-media-cover {
    display: block;
    position: absolute;
    visibility: hidden;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.instashow-gallery-media-link:hover .instashow-gallery-media-cover {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-media-link:hover
    .instashow-gallery-media-cover
    ~ .instashow-gallery-media-image {
    -webkit-transform: scaleX(1.1) scaleY(1.1) translateZ(0);
    transform: scaleX(1.1) scaleY(1.1) translateZ(0);
}
.instashow-gallery-media-counter {
    display: block;
    position: absolute;
    visibility: hidden;
    z-index: 3;
    box-sizing: border-box;
    top: 50%;
    right: 0;
    left: 0;
    opacity: 0;
    -webkit-transform: translateY(0%) scale(0.8);
    transform: translateY(0%) scale(0.8);
    font-size: 200%;
    text-align: center;
    line-height: 1;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
span.instashow-gallery-media-counter {
    padding: 3px;
}
.instashow-gallery-media-link:hover .instashow-gallery-media-counter {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}
.instashow-gallery-media-counter .instashow-icon {
    font-size: 160%;
}
.instashow-gallery-media-counter em {
    font-style: normal;
}
.instashow-gallery-media-image {
    display: block;
    position: relative;
    visibility: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: scaleX(1) scaleY(1) translateZ(0);
    transform: scaleX(1) scaleY(1) translateZ(0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.instashow-gallery-media-loaded .instashow-gallery-media-image {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-media-image img {
    display: block;
    position: relative;
    min-width: auto !important;
    min-height: auto !important;
    max-width: none !important;
    max-height: none !important;
}
.instashow-gallery-media-square .instashow-gallery-media-image img {
    width: 100% !important;
    height: 100% !important;
}
.instashow-gallery-media-portrait .instashow-gallery-media-image img {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.instashow-gallery-media-album .instashow-gallery-media-image img {
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.instashow-gallery-media-info {
    display: block;
    position: absolute;
    visibility: hidden;
    z-index: 3;
    width: 80%;
    max-height: 80%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-40%);
    transform: translateX(-50%) translateY(-40%);
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-gallery-media-info-no-description {
    -webkit-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
    font-size: 120%;
}
.instashow-gallery-media-link:hover .instashow-gallery-media-info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-47%);
    transform: translateX(-50%) translateY(-47%);
}
.instashow-gallery-media-info-counter {
    line-height: 1;
}
.instashow-gallery-media-info-counter + .instashow-gallery-media-info-counter {
    margin-left: 16%;
}
.instashow-gallery-media-info-counter em {
    font-style: normal;
}
.instashow-gallery-media-info-counter
    ~ .instashow-gallery-media-info-description {
    margin-top: 12%;
}
.instashow-gallery-media-info-description {
    display: block;
    overflow: hidden;
    font-size: 14px;
}
.instashow-gallery-media-info-cropped::after {
    display: block;
    line-height: 1;
    letter-spacing: 2px;
    content: "...";
}
.instashow-gallery-loader {
    position: absolute;
    z-index: 12;
    visibility: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.instashow-gallery-loader.instashow-show {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-loader .instashow-spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.instashow-gallery-control-arrow {
    position: absolute;
    z-index: 10;
    width: 74px;
    height: 74px;
    top: 50%;
    border-radius: 50% 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-gallery-control-arrow-disabled {
    visibility: hidden;
    opacity: 0;
}
.instashow-gallery-control-arrow::before,
.instashow-gallery-control-arrow::after {
    display: block;
    position: absolute;
    height: 2px;
    width: 12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
}
.instashow-gallery-control-arrow-previous {
    left: 0;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.instashow-gallery-control-arrow-previous::before,
.instashow-gallery-control-arrow-previous::after {
    top: 37px;
    right: 16px;
    border-radius: 0 10px 10px 0;
}
.instashow-gallery-control-arrow-previous::before {
    -webkit-transform-origin: 0 110%;
    transform-origin: 0 110%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-gallery-control-arrow-previous::after {
    -webkit-transform-origin: 0 -10%;
    transform-origin: 0 -10%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-gallery-control-arrow-previous:active {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.9);
    transform: translate3d(-50%, -50%, 0) scale(0.9);
}
.instashow-gallery-control-arrow-next {
    right: 0;
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
}
.instashow-gallery-control-arrow-next::before,
.instashow-gallery-control-arrow-next::after {
    top: 37px;
    left: 16px;
    border-radius: 10px 0 0 10px;
}
.instashow-gallery-control-arrow-next::before {
    -webkit-transform-origin: 100% 110%;
    transform-origin: 100% 110%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-gallery-control-arrow-next::after {
    -webkit-transform-origin: 100% -10%;
    transform-origin: 100% -10%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-gallery-control-arrow-next:active {
    -webkit-transform: translate3d(50%, -50%, 0) scale(0.9);
    transform: translate3d(50%, -50%, 0) scale(0.9);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow {
    right: auto;
    left: 50%;
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-previous {
    top: 0;
    -webkit-transform: rotate(90deg) translate3d(-50%, 50%, 0);
    transform: rotate(90deg) translate3d(-50%, 50%, 0);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-previous:active {
    -webkit-transform: rotate(90deg) translate3d(-50%, 50%, 0) scale(0.9);
    transform: rotate(90deg) translate3d(-50%, 50%, 0) scale(0.9);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-next {
    top: auto;
    bottom: 0;
    -webkit-transform: rotate(90deg) translate3d(50%, 50%, 0);
    transform: rotate(90deg) translate3d(50%, 50%, 0);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-next:active {
    -webkit-transform: rotate(90deg) translate3d(50%, 50%, 0) scale(0.9);
    transform: rotate(90deg) translate3d(50%, 50%, 0) scale(0.9);
}
.instashow-gallery-control-scroll {
    position: absolute;
    visibility: hidden;
    z-index: 10;
    opacity: 0;
    background: rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-gallery-vertical .instashow-gallery-control-scroll {
    width: 3px;
    top: 6px;
    right: 6px;
    bottom: 6px;
}
.instashow-gallery-horizontal .instashow-gallery-control-scroll {
    height: 3px;
    right: 6px;
    bottom: 6px;
    left: 6px;
}
.instashow-gallery:hover .instashow-gallery-control-scroll {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-control-scroll-slider {
    position: absolute;
    background: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.instashow-gallery-vertical .instashow-gallery-control-scroll-slider {
    width: 100%;
}
.instashow-gallery-horizontal .instashow-gallery-control-scroll-slider {
    height: 100%;
}
.instashow-gallery {
    position: relative;
    overflow: hidden;
}
.instashow-gallery-wrapper {
    overflow: hidden;
}
.instashow-gallery-container {
    -webkit-transition: all 0s linear;
    transition: all 0s linear;
}
.instashow-gallery-container::before,
.instashow-gallery-container::after {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-gallery-view {
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}
.instashow-gallery-view::before,
.instashow-gallery-view::after {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-gallery-fade .instashow-gallery-view {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
}
.instashow-gallery-fade .instashow-gallery-view-active {
    visibility: visible;
    pointer-events: all;
}
.instashow-gallery-slide .instashow-gallery-view {
    float: left;
    pointer-events: none;
}
.instashow-gallery-slide .instashow-gallery-view-active,
.instashow-gallery-slide .instashow-gallery-view-active-prev,
.instashow-gallery-slide .instashow-gallery-view-active-next {
    pointer-events: all;
}
.instashow-popup-twilight {
    position: absolute;
    visibility: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-show .instashow-popup-twilight {
    visibility: visible;
    opacity: 1;
}
.instashow-popup-media {
    position: relative;
    overflow: hidden;
    width: 640px;
    border-radius: 4px;
    background: #fff;
}
.instashow-popup-media::before,
.instashow-popup-media::after {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-popup-media-has-comments {
    width: 1040px;
    height: 640px;
}
.instashow-popup-media-picture {
    position: relative;
    overflow: hidden;
    width: 640px;
    min-height: 200px;
}
.instashow-popup-media-has-comments figure.instashow-popup-media-picture {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.instashow-popup-media-has-comments .instashow-popup-media-picture {
    height: 640px;
    float: left;
}
.instashow-popup-media-picture-loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.instashow-popup-media-picture-loaded .instashow-popup-media-picture-loader {
    display: none;
}
.instashow-popup-media-picture-loader .instashow-spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.instashow-popup-media-picture img {
    display: block;
}
.instashow-popup-media-album .instashow-popup-media-picture img {
    width: 100%;
}
.instashow-popup-media-square .instashow-popup-media-picture img {
    width: 100%;
}
.instashow-popup-media-portrait .instashow-popup-media-picture img {
    margin: 0 auto;
}
.instashow-popup-media-has-comments .instashow-popup-media-picture img {
    position: absolute;
}
.instashow-popup-media-has-comments.instashow-popup-media-square
    .instashow-popup-media-picture
    img {
    width: 100%;
    height: 100%;
}
.instashow-popup-media-has-comments.instashow-popup-media-portrait
    .instashow-popup-media-picture
    img {
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.instashow-popup-media-has-comments.instashow-popup-media-album
    .instashow-popup-media-picture
    img {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.instashow-popup-media-video {
    position: relative;
    cursor: pointer;
}
.instashow-popup-media-video video {
    width: 100%;
    height: 100%;
}
.instashow-popup-media-video::before {
    display: block;
    position: absolute;
    visibility: visible;
    top: 50%;
    left: 50%;
    opacity: 0.8;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font: normal 64px/1 "Iconsfont";
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "\e800";
}
.instashow-playing .instashow-popup-media-video::before {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(2);
    transform: translateX(-50%) translateY(-50%) scale(2);
}
div.instashow-popup-media-info {
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
    box-sizing: border-box;
}
.instashow-popup-media-has-comments .instashow-popup-media-info {
    float: left;
    width: 399px;
}
.instashow-popup-media-info-origin::before,
.instashow-popup-media-info-origin::after {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-popup-media-info-author {
    display: block;
    float: left;
    line-height: 1;
    font-weight: bold;
    font-size: 12px;
}
span.instashow-popup-media-info-author-picture {
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    vertical-align: middle;
    width: 37px;
    height: 37px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50% 50%;
}
span.instashow-popup-media-info-author-picture img {
    display: block;
    width: 100%;
    height: 100%;
}
span.instashow-popup-media-info-author-name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
a.instashow-popup-media-info-original {
    display: block;
    float: right;
    margin-top: 8px;
    padding: 5px 8px 6px;
    border: 1px solid #2196f3;
    border-radius: 4px;
    line-height: 1;
    font-size: 12px;
}
.instashow-popup-media-info-meta {
    line-height: 1;
}
.instashow-popup-media-info-meta::before,
.instashow-popup-media-info-meta::after {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-popup-media-info-origin + div.instashow-popup-media-info-meta {
    margin-top: 12px;
}
.instashow-popup-media-info-properties {
    float: left;
    width: 80%;
    white-space: nowrap;
}
.instashow-popup-media-info-properties-item {
    display: inline-block;
    font-size: 12px;
}
.instashow-popup-media-info-properties-item
    + .instashow-popup-media-info-properties-item {
    margin-left: 20px;
}
.instashow-popup-media-info-properties-item em {
    font-style: normal;
}
.instashow-popup-media-info-properties-item-location {
    width: 60%;
}
.instashow-popup-media-info-properties-item-location em {
    overflow: hidden;
    max-width: 90%;
    text-overflow: ellipsis;
}
.instashow-popup-media-info-passed-time {
    float: right;
    width: 20%;
    text-align: right;
    line-height: 1.68;
    font-size: 12px;
}
.instashow-popup-media-info-content {
    word-break: break-all;
}
div + div.instashow-popup-media-info-content {
    margin: 12px -15px 0;
    padding: 12px 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.instashow-popup-media-has-comments .instashow-popup-media-info-content {
    overflow: auto;
    height: 530px;
}
.instashow-popup-media-info-description,
p.instashow-popup-media-info-comments-item {
    line-height: 1.45;
    font-size: 12px;
}
div.instashow-popup-media-info-comments-item {
    margin: 12px 0;
    font-size: 12px;
}
.instashow-popup-media-appearing {
    position: absolute;
    top: 36px;
    left: 100px;
}
.instashow-popup-media-previous,
.instashow-popup-media-next {
    opacity: 0;
    z-index: 1;
}
@media only screen and (min-width: 1840px) {
    .instashow-popup-media-hr {
        width: 840px;
        height: 840px;
    }
    .instashow-popup-media-hr.instashow-popup-media-has-comments {
        width: 1240px;
    }
    .instashow-popup-media-hr .instashow-popup-media-picture {
        width: 840px;
        height: 840px;
    }
}
@media only screen and (max-width: 1280px) {
    .instashow-popup-media {
        width: 430px;
    }
    .instashow-popup-media-has-comments {
        width: 740px;
        height: 430px;
    }
    .instashow-popup-media-picture {
        width: 430px;
    }
    .instashow-popup-media-picture img {
        width: 100%;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-picture img {
        width: auto;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-picture {
        height: 430px;
    }
    .instashow-popup-media-has-comments div.instashow-popup-media-info {
        width: 309px;
    }
    .instashow-popup-media-has-comments
        .instashow-popup-media-info-properties-item
        + .instashow-popup-media-info-properties-item {
        margin-left: 12px;
    }
    .instashow-popup-media-has-comments
        .instashow-popup-media-info-properties-item-location {
        width: 40%;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-info-content {
        height: 320px;
    }
}
@media only screen and (max-width: 1024px) {
    .instashow-popup-media {
        width: auto;
    }
    .instashow-popup-media-has-comments {
        width: auto;
        height: auto;
    }
    .instashow-popup-media-picture {
        width: 100%;
        height: auto !important;
        border-right: none !important;
    }
    .instashow-popup-media-picture img {
        width: 100% !important;
        height: auto !important;
        position: static !important;
        top: auto !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
    .instashow-popup-media-has-comments div.instashow-popup-media-info {
        width: 100%;
    }
    .instashow-popup-media-info-properties-item-location {
        width: 60% !important;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-info-content {
        height: auto;
    }
    .instashow-popup-media-appearing {
        position: absolute;
        top: 36px;
        right: 100px;
        left: 100px;
    }
}
@media only screen and (max-width: 780px) {
    .instashow-popup-media-appearing {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}
@media only screen and (max-width: 480px) {
    span.instashow-popup-media-info-properties-item-location {
        display: block;
        margin-top: 12px;
        margin-left: 0 !important;
        width: auto !important;
    }
}
.instashow-popup-control-close {
    position: absolute;
    z-index: 12;
    width: 32px;
    height: 36px;
    top: 0px;
    right: 68px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-popup-control-close::before,
.instashow-popup-control-close::after {
    display: block;
    position: absolute;
    width: 18px;
    height: 3px;
    top: 7px;
    left: 10px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
}
.instashow-popup-control-close::before {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-popup-control-close::after {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: translateX(-5px) rotate(-45deg);
    transform: translateX(-5px) rotate(-45deg);
}
.instashow-popup-control-close:active {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}
@media only screen and (max-width: 1024px) {
    .instashow-popup-control-close {
        right: auto;
        width: 35px;
        height: 35px;
        top: 48px;
        left: 115px;
        border-radius: 50% 50%;
    }
    .instashow-popup-control-close::before,
    .instashow-popup-control-close::after {
        top: 11px;
        left: 12px;
        width: 16px;
        height: 2px;
    }
    .instashow-popup-control-close::after {
        -webkit-transform: translateX(-5px) rotate(-45deg);
        transform: translateX(-5px) rotate(-45deg);
    }
}
@media only screen and (max-width: 780px) {
    .instashow-popup-control-close {
        top: 15px;
        left: 15px;
    }
}
.instashow-popup-control-arrow {
    position: absolute;
    z-index: 10;
    top: 20px;
    bottom: 20px;
    width: 100px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.instashow-popup-control-arrow.instashow-disabled {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}
.instashow-popup-control-arrow span {
    display: block;
    position: absolute;
    width: 20px;
    height: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-popup-control-arrow span::before,
.instashow-popup-control-arrow span::after {
    display: block;
    position: absolute;
    width: 28px;
    height: 3px;
    top: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
}
.instashow-popup-control-arrow-previous {
    left: 0;
}
.instashow-popup-control-arrow-previous span {
    left: 24px;
}
.instashow-popup-control-arrow-previous span::before,
.instashow-popup-control-arrow-previous span::after {
    border-radius: 0 10px 10px 0;
}
.instashow-popup-control-arrow-previous span::before {
    -webkit-transform-origin: 0 110%;
    transform-origin: 0 110%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-popup-control-arrow-previous span::after {
    -webkit-transform-origin: 0 -10%;
    transform-origin: 0 -10%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-popup-control-arrow-next {
    right: 0;
}
.instashow-popup-control-arrow-next span {
    right: 24px;
}
.instashow-popup-control-arrow-next span::before,
.instashow-popup-control-arrow-next span::after {
    right: 0;
    border-radius: 10px 0 0 10px;
}
.instashow-popup-control-arrow-next span::before {
    -webkit-transform-origin: 100% 110%;
    transform-origin: 100% 110%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-popup-control-arrow-next span::after {
    -webkit-transform-origin: 100% -10%;
    transform-origin: 100% -10%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-popup-control-arrow:hover span {
    -webkit-transform: translateY(-50%) scaleY(0.85);
    transform: translateY(-50%) scaleY(0.85);
}
.instashow-popup-control-arrow:active.instashow-popup-control-arrow-previous
    span {
    -webkit-transform: translateY(-50%) scaleY(0.8) translateX(-30%);
    transform: translateY(-50%) scaleY(0.8) translateX(-30%);
}
.instashow-popup-control-arrow:active.instashow-popup-control-arrow-next span {
    -webkit-transform: translateY(-50%) scaleY(0.8) translateX(30%);
    transform: translateY(-50%) scaleY(0.8) translateX(30%);
}
@media only screen and (max-width: 780px) {
    .instashow-popup-control-arrow {
        display: none !important;
    }
}
.instashow-popup {
    position: fixed;
    visibility: hidden;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
}
.instashow-popup.instashow-show {
    visibility: visible;
}
.instashow-popup-wrapper {
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
div.instashow-popup-container {
    display: inline-block;
    position: relative;
    visibility: hidden;
    box-sizing: border-box;
    left: 50%;
    padding: 36px 100px;
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.instashow-show div.instashow-popup-container {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
@media only screen and (max-width: 780px) {
    div.instashow-popup-container {
        padding: 0;
    }
}
.instashow-gallery .instashow-error {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}
div.instashow-error-panel {
    padding: 26px 27px 27px 92px;
    background: #fff
        url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAAA1CAYAAAGW4ZPmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjQ0OEZFOTU2NjA1QzExRTU5QzgxRjY4QzgzQTJFQjQzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQ0OEZFOTU3NjA1QzExRTU5QzgxRjY4QzgzQTJFQjQzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDQ4RkU5NTQ2MDVDMTFFNTlDODFGNjhDODNBMkVCNDMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NDQ4RkU5NTU2MDVDMTFFNTlDODFGNjhDODNBMkVCNDMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5wtTv1AAAGNElEQVR42mK8evUqAxJ4CcRJQLwVxGGBCv5HUrAFSjMywURYWCDqFBQUYEL/QZKvQKw/f/6ARR48eAA3AiSZCuNoaWkxqKurwyUZoQ5CthPuOJidjOgSQCwBEECMSF7xAuL5QCwOdyQWr/xH9sp/ZC/AvARzLYoXYF4CgqdwSU1NTbBXkEAWyEEvkB2BBMB2SkCdjiIBIgACiBEtVp5DFWMDIBsk0R37HOojXJoYoHL/oWrBGv2RNaioqKAEA4itqqqKboA/yKmgmBZlIA08A9koxkA6kMaVCPABRpSYhArAsC8Qv4ZiXzQ5MAAIIPTogIGVQBwGxKuhNApgQeOjJ+hQ5BSIHn/COHIAuoEiyJreEBkYr2GavsFE2NnZsapEE/8G0sQJ4/38+RM9yYP5IHEkwAkKvf+kxjITGSkDI8gZuLm5GeTl5eH8e/fuMfz48QNDE0iEAybw9etXhmvXruGz6DtKQBAJuGB+IjbViyH76TU0mfwnlMqxhR4sNa+G8lejp3AQAAjAWxXkMAgCQYiBB9SjJrU24dav+Fh9So/Q0A/otVEuskQSokgo1U6yB8zIMuwyu9flFncdz0jdHx0PHa/oUmlcdPQJZYcDCWcNj2f45in+gn7v7q8HJ1oLqFxlb+8da8tmjKFpmsxaCLHhgM1jjBEhBHHOkVLKt5W0I6vdO1JZliYRTElKqZcD36WUhlcURUhhm+QaqQBl3Z9ydZCsCTHARMG1oC4+ZFmG6rremK8HjX3U1VLEs3CDJnS7EZ/U/kGPyw9Kkq+90TeOBsdEQf4Yufm48O2/w5owCyBCBTEM8ABxGTQxaUPFrkLzaDcQfyYYlgQsmgnEaUT6ajY+tbhq8xBoIkkjIW5SoXpCiLXoGFLFRw5YDTUDr0WXgNiSCinPEmoWVoumQWtVagFdqJkoiUEAiN/TqJQQBOIPMB+9omFx9AoWdKCczIpNBXJXD1vzFySGpWeLDkBmC4FUrcfZ0oF2nGA1LDr4+/cvSi2NB2wA+cgWlyyo5gVZAqrCsVXjoH4ryBJQLYzcHccCbPE2v0GuvXXrFsP///+xBg1MDKQGpJZQEUSXap6JgU5g+FnEQowiUPuPj48Pq9yHDx8Ynj17RpRFh/ElcVCL58mTJ2CMDQgICIDVEOi+HQalOmESeszkAhEmaA/hDw0tAZn9FpYYRGlokShyqvsAxNNpYMl0qNkoyTsL2vWkFrgCNRNrPtID4uNUsOQ4em2NLcNaQUeCyAWhUDOIKhnWQFuc00mMD0aoXpKLoCyoZlCx0ALEF4H4HxRfgorxQdVk4TMIIEC3VreSQBCFBw0xEUrRburGW3sAvQjqCbqKoicwIS/yUSz7eYFuvImeoUAfIOs6CAQlNlY02rDmG8/GtLjuv64eOCCz7Mz5ZnfPnO872i2Jp9ka9yPux9x37Ka1Cd/aI/dbUv8+Zp3AUZ3VuGtUBStUpu+5BKSn3V2aR6F5NVpnPShQkNvqtBjKzYoHAE6AVmi9H6p9436A2iTmNbR6j2dgZYrjieJyDAq1cJM7jtg8C5flKa4mxWkLFJgiFN4CC7cVKM4DK1A1j4x2HtaguE2JbYUtplVkEr0iDZadzALOlEgk/iRUfQxkbTAYWBE23+YwJJJn7uc4fNNEqqOOcy6nv7lcTjBTGJgpAjERmgObQ2bc3Dfw+lXdAsKuylQbv6HYyg3ToOcwGHBUcee+q7ujUaEPYFf1/jYCAavTr81ijgkmOsxfZjLOgpoaYUtoAPWyZJhe8U3dMx+F10gkIhrTcKiMSM/4PjAOMVDX6dCoRi96OBwKqc1Hu/OU0mHJZJJls1m2ujpuB49GIxEsHH8AAACAwTjAIREAaDweF8Bxn97fwtnU6/VYv993C0ikdDwpNFPOjKWGXUun06zT6Ygdt1yRg4MDrKqqrNvt/ruOgziTyXgBBRzvMvO9dFpVhMyudHpk1HYuFhRQfZqOhBrwcMEAId5TKz6FUh5ffSvkYFoUZ8Mu8wX5KnLf4t4OGZg2xVWkOB1rFG9s3CXGjlzPGcwNxbFNcXlWkz4pM+JASVFC0QIGodE6KVr3xOzJuAUlm0IJJSaBLHF/YO6bC990f0kCEaN1FKeT/QI7/QOKKTKfYwAAAABJRU5ErkJggg==)
        no-repeat 20px 20px;
    line-height: 1.4;
    font-size: 13px;
}
.instashow-gallery div.instashow-error-panel {
    position: absolute;
    max-width: 600px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 4px;
}
.instashow-error-title {
    font-weight: bold;
}
div.instashow-error-caption {
    margin-top: 3px;
}

/* Elfsight (c) elfsight.com */

@font-face {
    font-family: Iconsfont;
    src: url(data:application/vnd.ms-fontobject;base64,BAcAAGAGAAABAAIAAAAAAAAAAAAAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAH9kmgAAAAAAAAAAAAAAAAAAAAAAAAA4AaQBjAG8AbQBvAG8AbgAAAA4AUgBlAGcAdQBsAGEAcgAAABYAVgBlAHIAcwBpAG8AbgAgADEALgAwAAAADgBpAGMAbwBtAG8AbwBuAAAAAAAAAQAAAAsAgAADADBPUy8yDxIEkAAAALwAAABgY21hcOg85rYAAAEcAAAAXGdhc3AAAAAQAAABeAAAAAhnbHlmJ80DnAAAAYAAAAKIaGVhZAejm9kAAAQIAAAANmhoZWEHwgPJAAAEQAAAACRobXR4FQAAQAAABGQAAAAgbG9jYQIsAZoAAASEAAAAEm1heHAADQBGAAAEmAAAACBuYW1lmUoJ+wAABLgAAAGGcG9zdAADAAAAAAZAAAAAIAADA2YBkAAFAAACmQLMAAAAjwKZAswAAAHrADMBCQAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAOgAA8D/wABAA8AAQAAAAAEAAAAAAAAAAAAAACAAAAAAAAMAAAADAAAAHAABAAMAAAAcAAMAAQAAABwABABAAAAADAAIAAIABAABACDmAugA//3//wAAAAAAIOYA6AD//f//AAH/4xoEGAcAAwABAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAgAA/6sEAAOrABkAMwAAJTI2Nxc1PgM1NC4CIyIOAhUUHgIzETIeAhUUDgIHFycOASMiLgI1ND4CMwIAGS8Y4CxHMhtQi7tqaruLUFCLu2pdo3pGGzJHKwKXGjYcXaN6RkZ6o10rBASI4h9NWWQ1XKR5R0d5pFxdo3pGA0A9aIxPMVtRRBqUWgUGPGiMUE+MaD0AAAIAAP/OBAADawAbADgAAAkBBiInAS4BNTQ+AjMyFhc+ATMyHgIVFAYHJz4BNTQuAiMiDgIHLgMjIg4CFRQWFwkBA7/+cSEfIf5yGicmRF44UH8xM31QOF5EJiMePyUbHTNHKSNJRDsVFTtESSMrRjMcHiIBgAGAAan+JSMjAdsnVTk0YkotTDQxTy1KYjQ5VScOLk0sKUw5IyAyOhobOzEfIzpLKSxKL/41AckAAAAABAAA/6sDAAOrABQAKQA2AEMAAAUiLgI1ND4CMzIeAhUUDgIjESIOAhUUHgIzMj4CNTQuAiMRIiY1NDYzMhYVFAYjESIGFRQWMzI2NTQmIwGAGH6EZjxpi1BQi2k8ZoV9GEJ1VzJVbmkUFGluVTJXdUJCXl5CQl5eQig4OCgoODgoVZrS1z1PjGg9PWiMTzzX0psDwDNXdEIztrOEhLS2MkJ0VzP+IF1DQl5eQkNdAQA5Jyg4OCgnOQAAAAABAED/6wPAA2sAFQAANxQWMzI2NwE+ATU0JicBLgEjIgYVEUAmGhAgEALRDSIiDf0vECAQGiYrGyURBwFoBh0dHB0HAWgHESYa/QAAAQAAAAAAAIAm2R9fDzz1AAsEAAAAAADSQqvDAAAAANJCq8MAAP+rBAADqwAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAACAQAAAAAAAAAAAAAAAIAAAAEAAAABAAAAAMAAAAEAABAAAAAAAAKABQAHgBoAMABHgFEAAAAAQAAAAgARAAEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGljb21vb24AaQBjAG8AbQBvAG8AblZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb21vb24AaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AblJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb21vb24AaQBjAG8AbQBvAG8AbkZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=);
    src: url(data:application/vnd.ms-fontobject;base64,BAcAAGAGAAABAAIAAAAAAAAAAAAAAAAAAAABAJABAAAAAExQAAAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAH9kmgAAAAAAAAAAAAAAAAAAAAAAAAA4AaQBjAG8AbQBvAG8AbgAAAA4AUgBlAGcAdQBsAGEAcgAAABYAVgBlAHIAcwBpAG8AbgAgADEALgAwAAAADgBpAGMAbwBtAG8AbwBuAAAAAAAAAQAAAAsAgAADADBPUy8yDxIEkAAAALwAAABgY21hcOg85rYAAAEcAAAAXGdhc3AAAAAQAAABeAAAAAhnbHlmJ80DnAAAAYAAAAKIaGVhZAejm9kAAAQIAAAANmhoZWEHwgPJAAAEQAAAACRobXR4FQAAQAAABGQAAAAgbG9jYQIsAZoAAASEAAAAEm1heHAADQBGAAAEmAAAACBuYW1lmUoJ+wAABLgAAAGGcG9zdAADAAAAAAZAAAAAIAADA2YBkAAFAAACmQLMAAAAjwKZAswAAAHrADMBCQAAAAAAAAAAAAAAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAEAAAOgAA8D/wABAA8AAQAAAAAEAAAAAAAAAAAAAACAAAAAAAAMAAAADAAAAHAABAAMAAAAcAAMAAQAAABwABABAAAAADAAIAAIABAABACDmAugA//3//wAAAAAAIOYA6AD//f//AAH/4xoEGAcAAwABAAAAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAgAA/6sEAAOrABkAMwAAJTI2Nxc1PgM1NC4CIyIOAhUUHgIzETIeAhUUDgIHFycOASMiLgI1ND4CMwIAGS8Y4CxHMhtQi7tqaruLUFCLu2pdo3pGGzJHKwKXGjYcXaN6RkZ6o10rBASI4h9NWWQ1XKR5R0d5pFxdo3pGA0A9aIxPMVtRRBqUWgUGPGiMUE+MaD0AAAIAAP/OBAADawAbADgAAAkBBiInAS4BNTQ+AjMyFhc+ATMyHgIVFAYHJz4BNTQuAiMiDgIHLgMjIg4CFRQWFwkBA7/+cSEfIf5yGicmRF44UH8xM31QOF5EJiMePyUbHTNHKSNJRDsVFTtESSMrRjMcHiIBgAGAAan+JSMjAdsnVTk0YkotTDQxTy1KYjQ5VScOLk0sKUw5IyAyOhobOzEfIzpLKSxKL/41AckAAAAABAAA/6sDAAOrABQAKQA2AEMAAAUiLgI1ND4CMzIeAhUUDgIjESIOAhUUHgIzMj4CNTQuAiMRIiY1NDYzMhYVFAYjESIGFRQWMzI2NTQmIwGAGH6EZjxpi1BQi2k8ZoV9GEJ1VzJVbmkUFGluVTJXdUJCXl5CQl5eQig4OCgoODgoVZrS1z1PjGg9PWiMTzzX0psDwDNXdEIztrOEhLS2MkJ0VzP+IF1DQl5eQkNdAQA5Jyg4OCgnOQAAAAABAED/6wPAA2sAFQAANxQWMzI2NwE+ATU0JicBLgEjIgYVEUAmGhAgEALRDSIiDf0vECAQGiYrGyURBwFoBh0dHB0HAWgHESYa/QAAAQAAAAAAAIAm2R9fDzz1AAsEAAAAAADSQqvDAAAAANJCq8MAAP+rBAADqwAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAACAQAAAAAAAAAAAAAAAIAAAAEAAAABAAAAAMAAAAEAABAAAAAAAAKABQAHgBoAMABHgFEAAAAAQAAAAgARAAEAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGljb21vb24AaQBjAG8AbQBvAG8AblZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGljb21vb24AaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AblJlZ3VsYXIAUgBlAGcAdQBsAGEAcmljb21vb24AaQBjAG8AbQBvAG8AbkZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=)
            format("embedded-opentype"),
        url(data:application/x-font-ttf;base64,AAEAAAALAIAAAwAwT1MvMg8SBJAAAAC8AAAAYGNtYXDoPOa2AAABHAAAAFxnYXNwAAAAEAAAAXgAAAAIZ2x5ZifNA5wAAAGAAAACiGhlYWQHo5vZAAAECAAAADZoaGVhB8IDyQAABEAAAAAkaG10eBUAAEAAAARkAAAAIGxvY2ECLAGaAAAEhAAAABJtYXhwAA0ARgAABJgAAAAgbmFtZZlKCfsAAAS4AAABhnBvc3QAAwAAAAAGQAAAACAAAwNmAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADoAAPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAQAAAAAwACAACAAQAAQAg5gLoAP/9//8AAAAAACDmAOgA//3//wAB/+MaBBgHAAMAAQAAAAAAAAAAAAAAAAABAAH//wAPAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAIAAP+rBAADqwAZADMAACUyNjcXNT4DNTQuAiMiDgIVFB4CMxEyHgIVFA4CBxcnDgEjIi4CNTQ+AjMCABkvGOAsRzIbUIu7amq7i1BQi7tqXaN6RhsyRysClxo2HF2jekZGeqNdKwQEiOIfTVlkNVykeUdHeaRcXaN6RgNAPWiMTzFbUUQalFoFBjxojFBPjGg9AAACAAD/zgQAA2sAGwA4AAAJAQYiJwEuATU0PgIzMhYXPgEzMh4CFRQGByc+ATU0LgIjIg4CBy4DIyIOAhUUFhcJAQO//nEhHyH+chonJkReOFB/MTN9UDheRCYjHj8lGx0zRykjSUQ7FRU7REkjK0YzHB4iAYABgAGp/iUjIwHbJ1U5NGJKLUw0MU8tSmI0OVUnDi5NLClMOSMgMjoaGzsxHyM6SyksSi/+NQHJAAAAAAQAAP+rAwADqwAUACkANgBDAAAFIi4CNTQ+AjMyHgIVFA4CIxEiDgIVFB4CMzI+AjU0LgIjESImNTQ2MzIWFRQGIxEiBhUUFjMyNjU0JiMBgBh+hGY8aYtQUItpPGaFfRhCdVcyVW5pFBRpblUyV3VCQl5eQkJeXkIoODgoKDg4KFWa0tc9T4xoPT1ojE8819KbA8AzV3RCM7azhIS0tjJCdFcz/iBdQ0JeXkJDXQEAOScoODgoJzkAAAAAAQBA/+sDwANrABUAADcUFjMyNjcBPgE1NCYnAS4BIyIGFRFAJhoQIBAC0Q0iIg39LxAgEBomKxslEQcBaAYdHRwdBwFoBxEmGv0AAAEAAAAAAACAJtkfXw889QALBAAAAAAA0kKrwwAAAADSQqvDAAD/qwQAA6sAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAgEAAAAAAAAAAAAAAACAAAABAAAAAQAAAADAAAABAAAQAAAAAAACgAUAB4AaADAAR4BRAAAAAEAAAAIAEQABAAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAHAAAAAQAAAAAAAgAHAGAAAQAAAAAAAwAHADYAAQAAAAAABAAHAHUAAQAAAAAABQALABUAAQAAAAAABgAHAEsAAQAAAAAACgAaAIoAAwABBAkAAQAOAAcAAwABBAkAAgAOAGcAAwABBAkAAwAOAD0AAwABBAkABAAOAHwAAwABBAkABQAWACAAAwABBAkABgAOAFIAAwABBAkACgA0AKRpY29tb29uAGkAYwBvAG0AbwBvAG5WZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBpY29tb29uAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG5SZWd1bGFyAFIAZQBnAHUAbABhAHJpY29tb29uAGkAYwBvAG0AbwBvAG5Gb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA)
            format("truetype"),
        url(data:application/font-woff;base64,d09GRgABAAAAAAasAAsAAAAABmAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIEkGNtYXAAAAFoAAAAXAAAAFzoPOa2Z2FzcAAAAcQAAAAIAAAACAAAABBnbHlmAAABzAAAAogAAAKIJ80DnGhlYWQAAARUAAAANgAAADYHo5vZaGhlYQAABIwAAAAkAAAAJAfCA8lobXR4AAAEsAAAACAAAAAgFQAAQGxvY2EAAATQAAAAEgAAABICLAGabWF4cAAABOQAAAAgAAAAIAANAEZuYW1lAAAFBAAAAYYAAAGGmUoJ+3Bvc3QAAAaMAAAAIAAAACAAAwAAAAMDZgGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6AADwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEAEAAAAAMAAgAAgAEAAEAIOYC6AD//f//AAAAAAAg5gDoAP/9//8AAf/jGgQYBwADAAEAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAACAAD/qwQAA6sAGQAzAAAlMjY3FzU+AzU0LgIjIg4CFRQeAjMRMh4CFRQOAgcXJw4BIyIuAjU0PgIzAgAZLxjgLEcyG1CLu2pqu4tQUIu7al2jekYbMkcrApcaNhxdo3pGRnqjXSsEBIjiH01ZZDVcpHlHR3mkXF2jekYDQD1ojE8xW1FEGpRaBQY8aIxQT4xoPQAAAgAA/84EAANrABsAOAAACQEGIicBLgE1ND4CMzIWFz4BMzIeAhUUBgcnPgE1NC4CIyIOAgcuAyMiDgIVFBYXCQEDv/5xIR8h/nIaJyZEXjhQfzEzfVA4XkQmIx4/JRsdM0cpI0lEOxUVO0RJIytGMxweIgGAAYABqf4lIyMB2ydVOTRiSi1MNDFPLUpiNDlVJw4uTSwpTDkjIDI6Ghs7MR8jOkspLEov/jUByQAAAAAEAAD/qwMAA6sAFAApADYAQwAABSIuAjU0PgIzMh4CFRQOAiMRIg4CFRQeAjMyPgI1NC4CIxEiJjU0NjMyFhUUBiMRIgYVFBYzMjY1NCYjAYAYfoRmPGmLUFCLaTxmhX0YQnVXMlVuaRQUaW5VMld1QkJeXkJCXl5CKDg4KCg4OChVmtLXPU+MaD09aIxPPNfSmwPAM1d0QjO2s4SEtLYyQnRXM/4gXUNCXl5CQ10BADknKDg4KCc5AAAAAAEAQP/rA8ADawAVAAA3FBYzMjY3AT4BNTQmJwEuASMiBhURQCYaECAQAtENIiIN/S8QIBAaJisbJREHAWgGHR0cHQcBaAcRJhr9AAABAAAAAAAAgCbZH18PPPUACwQAAAAAANJCq8MAAAAA0kKrwwAA/6sEAAOrAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAIBAAAAAAAAAAAAAAAAgAAAAQAAAAEAAAAAwAAAAQAAEAAAAAAAAoAFAAeAGgAwAEeAUQAAAABAAAACABEAAQAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEABwAAAAEAAAAAAAIABwBgAAEAAAAAAAMABwA2AAEAAAAAAAQABwB1AAEAAAAAAAUACwAVAAEAAAAAAAYABwBLAAEAAAAAAAoAGgCKAAMAAQQJAAEADgAHAAMAAQQJAAIADgBnAAMAAQQJAAMADgA9AAMAAQQJAAQADgB8AAMAAQQJAAUAFgAgAAMAAQQJAAYADgBSAAMAAQQJAAoANACkaWNvbW9vbgBpAGMAbwBtAG8AbwBuVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwaWNvbW9vbgBpAGMAbwBtAG8AbwBuaWNvbW9vbgBpAGMAbwBtAG8AbwBuUmVndWxhcgBSAGUAZwB1AGwAYQByaWNvbW9vbgBpAGMAbwBtAG8AbwBuRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==)
            format("woff"),
        url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+R2VuZXJhdGVkIGJ5IEljb01vb248L21ldGFkYXRhPgo8ZGVmcz4KPGZvbnQgaWQ9Imljb21vb24iIGhvcml6LWFkdi14PSIxMDI0Ij4KPGZvbnQtZmFjZSB1bml0cy1wZXItZW09IjEwMjQiIGFzY2VudD0iOTYwIiBkZXNjZW50PSItNjQiIC8+CjxtaXNzaW5nLWdseXBoIGhvcml6LWFkdi14PSIxMDI0IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4MjA7IiBob3Jpei1hZHYteD0iNTEyIiBkPSIiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlNjAwOyIgZ2x5cGgtbmFtZT0iaWNvbi1jb21tZW50IiBkPSJNNTEyIDQyLjY2N2MzMi43NjggMCA2NC42NCAyLjk0NCA5NS42OCA4LjA2NGwyMjQuMzItMTM2LjA2NHYyMjYuNjI0YzExNi45MjggODIuMTEyIDE5MiAyMDggMTkyIDM0OS4zNzYgMCAyNDcuNDI0LTIyOS4yNDggNDQ4LTUxMiA0NDhzLTUxMi0yMDAuNTc2LTUxMi00NDhjMC0yNDcuNDI0IDIyOS4yNDgtNDQ4IDUxMi00NDh6TTUxMiA4NzQuNjY3YzI0Ny40MjQgMCA0NDgtMTcxLjkwNCA0NDgtMzg0IDAtMTMwLjExMi03NS43MTItMjQ0LjkyOC0xOTEuMjMyLTMxNC4zNjhsMi4wNDgtMTQ4LjQxNi0xNTAuNjU2IDkwLjU2Yy0zNC42ODgtNy40MjQtNzAuNzg0LTExLjc3Ni0xMDguMTYtMTEuNzc2LTI0Ny40MjQgMC00NDggMTcxLjkwNC00NDggMzg0czIwMC41NzYgMzg0IDQ0OCAzODR6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTYwMTsiIGdseXBoLW5hbWU9Imljb24tbGlrZSIgZD0iTTk1OS4xNjggNDI1LjQ1MWwtMzk4LjcyLTQ3NS4wMDhjLTQ0LjY3Mi00Ny4wNDAtNTMuMDU2LTQ3LjA0MC05Ny43MjggMGwtMzk3Ljg4OCA0NzUuMDA4Yy0zMy45MiA1MC45NDQtNjQuODMyIDEwNS4wODgtNjQuODMyIDE4MC4zNTIgMCAxNDAuMjI0IDEwNS43OTIgMjY4Ljg2NCAyNTYgMjY4Ljg2NCAxMDYuNjI0IDAgMTkwLjU5Mi01OC4zMDQgMjU2LTEyNy40ODggNjguNjA4IDY1LjE1MiAxNDkuMzc2IDEyNy40ODggMjU2IDEyNy40ODggMTUwLjIwOCAwIDI1Ni0xMjguNjQgMjU2LTI2OC44NjQgMC03NS4yNjQtMjQuOTYtMTI5LjQ3Mi02NC44MzItMTgwLjM1MnpNODk2IDQzOC42OTljNDkuNjY0IDYyLjI3MiA2NCAxMDguMzUyIDY0IDE2Ny4xMDQgMCAxMDkuNTY4LTgxLjUzNiAyMDkuMDg4LTE5MiAyMDkuMDg4LTkzLjMxMiAwLTIwMC41NzYtOTYuNjQtMjU2LTE2NS42OTYtNTYuODk2IDcxLjYxNi0xNjIuNjg4IDE2Ni41MjgtMjU2IDE2NS43Ni0xMTMuNDcyLTAuOTYtMTkyLTk5LjU4NC0xOTItMjA5LjE1MiAwLTU4Ljc1MiAxOC4wNDgtMTAxLjY5NiA2NC0xNjUuMjQ4bDM4NC00NTguMTc2IDM4NCA0NTYuMzJ6IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTYwMjsiIGdseXBoLW5hbWU9Imljb24tcGxhY2VtYXJrIiBob3Jpei1hZHYteD0iNzY4IiBkPSJNMzg0LTg1LjMzM2MtNjMuODcyLTAuMzItMzg0IDQ3OS40MjQtMzg0IDY0MCAwIDIxMi4wOTYgMTcxLjkwNCAzODQgMzg0IDM4NHMzODQtMTcxLjkwNCAzODQtMzg0YzAtMTU4LjQtMzIxLjE1Mi02NDAuMzItMzg0LTY0MHpNMzg0IDg3NC42NjdjLTE3Ni43MDQgMC0zMjAtMTQzLjI5Ni0zMjAtMzIwIDAtMTMzLjgyNCAyNjYuODE2LTU0NC4yNTYgMzIwLTU0NCA1Mi4zNTItMC4yNTYgMzIwIDQxMS45NjggMzIwIDU0NCAwIDE3Ni43MDQtMTQzLjI5NiAzMjAtMzIwIDMyMHpNMzg0IDM5NC42NjdjLTg4LjM4NCAwLTE2MCA3MS42MTYtMTYwIDE2MHM3MS42MTYgMTYwIDE2MCAxNjAgMTYwLTcxLjYxNiAxNjAtMTYwLTcxLjYxNi0xNjAtMTYwLTE2MHpNMzg0IDY1MC42NjdjLTUyLjk5MiAwLTk2LTQzLjAwOC05Ni05NiAwLTUzLjA1NiA0My4wMDgtOTYgOTYtOTZzOTYgNDMuMDA4IDk2IDk2LTQzLjAwOCA5Ni05NiA5NnoiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlODAwOyIgZ2x5cGgtbmFtZT0iaWNvbi1wbGF5IiBkPSJNNjQgNDIuNjY3YzAtMzUuMDA4IDI5LjUwNC02NCA2NC02NCAyMS41MDQgMCA0My4wMDggMTQuNTI4IDY0IDI0bDcyMC41MTIgMzYwYzE3LjQ3MiA4LjUxMiA0Ny40ODggMjUuOTg0IDQ3LjQ4OCA2NHMtMzAuMDE2IDU1LjQ4OC00Ny40ODggNjRsLTcyMC41MTIgMzYwYy0yMC45OTIgOS40NzItNDIuNDk2IDI0LTY0IDI0LTM0LjQ5NiAwLTY0LTI4Ljk5Mi02NC02NHYtNzY4eiIgLz4KPC9mb250PjwvZGVmcz48L3N2Zz4=)
            format("svg");
    font-weight: 400;
    font-style: normal;
}
.instashow-icon {
    font-family: Iconsfont;
    font-size: 160%;
}
.instashow-iconspan {
    padding: 2px;
}
.instashow-icon,
.instashow-icon + * {
    display: inline-block;
    vertical-align: middle;
}
.instashow-icon + * {
    margin-left: 0.4em;
}
.instashow-icon-comment::before {
    content: "\e600";
}
.instashow-icon-like::before {
    content: "\e601";
}
.instashow-icon-placemark::before {
    content: "\e602";
}
.instashow-spinner {
    display: block;
    position: relative;
}
.instashow-spinner::before {
    display: none;
    position: absolute;
    box-sizing: border-box;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 12px solid #ddd;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    -webkit-animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    content: "";
}
.instashow-show .instashow-spinner::before {
    display: block;
    -webkit-animation: instashow-spinner 1.5s infinite;
    animation: instashow-spinner 1.5s infinite;
}
@-webkit-keyframes instashow-spinner {
    0% {
        border-width: initital;
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        border-width: 1px;
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes instashow-spinner {
    0% {
        border-width: initital;
        opacity: 1;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        border-width: 1px;
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
.instashow {
    font-family: Roboto, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #444;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}
.instashow,
.instashow * {
    direction: ltr !important;
}
.instashow a {
    color: #2196f3;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-decoration: none;
}
.instashow a:hover {
    color: #444;
}
.instashow,
.instashow a,
.instashow div,
.instashow figure,
.instashow img,
.instashow li,
.instashow p,
.instashow span,
.instashow ul {
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: none;
    margin: 0;
    padding: 0;
}
.instashow,
.instashow div,
.instashow figure,
.instashow img,
.instashow p,
.instashow ul {
    display: block;
}
.instashow img {
    max-width: none;
    max-height: none;
}
.instashow-gallery-media {
    display: none;
    box-sizing: border-box;
    float: left;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-perspective: 900px;
    perspective: 900px;
}
.instashow-gallery-view-active .instashow-gallery-media,
.instashow-gallery-view-active-next .instashow-gallery-media,
.instashow-gallery-view-active-prev .instashow-gallery-media {
    display: block;
}
.instashow-gallery-media-link {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.instashow-gallery-media-video .instashow-gallery-media-link::before {
    display: block;
    position: absolute;
    z-index: 2;
    top: 10px;
    right: 10px;
    font: 400 200%/1 Iconsfont;
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "\e800";
}
.instashow-gallery-media-counter em,
.instashow-gallery-media-info-counter em {
    font-style: normal;
}
.instashow-gallery-media-video:hover .instashow-gallery-media-link::before {
    opacity: 0.3;
}
.instashow-gallery-media-cover {
    display: block;
    position: absolute;
    visibility: hidden;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.instashow-gallery-media-link:hover .instashow-gallery-media-cover {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-media-link:hover
    .instashow-gallery-media-cover
    ~ .instashow-gallery-media-image {
    -webkit-transform: scaleX(1.1) scaleY(1.1) translateZ(0);
    transform: scaleX(1.1) scaleY(1.1) translateZ(0);
}
.instashow-gallery-media-counter {
    display: block;
    position: absolute;
    visibility: hidden;
    z-index: 3;
    box-sizing: border-box;
    top: 50%;
    right: 0;
    left: 0;
    opacity: 0;
    -webkit-transform: translateY(0) scale(0.8);
    transform: translateY(0) scale(0.8);
    font-size: 200%;
    text-align: center;
    line-height: 1;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
span.instashow-gallery-media-counter {
    padding: 3px;
}
.instashow-gallery-media-link:hover .instashow-gallery-media-counter {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
}
.instashow-gallery-media-counter .instashow-icon {
    font-size: 160%;
}
.instashow-gallery-media-image {
    display: block;
    position: relative;
    visibility: hidden;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transform: scaleX(1) scaleY(1) translateZ(0);
    transform: scaleX(1) scaleY(1) translateZ(0);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.instashow-gallery-media-loaded .instashow-gallery-media-image {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-media-image img {
    display: block;
    position: relative;
    min-width: auto !important;
    min-height: auto !important;
    max-width: none !important;
    max-height: none !important;
}
.instashow-gallery-media-square .instashow-gallery-media-image img {
    width: 100% !important;
    height: 100% !important;
}
.instashow-gallery-media-portrait .instashow-gallery-media-image img {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.instashow-gallery-media-album .instashow-gallery-media-image img {
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.instashow-gallery-media-info {
    display: block;
    position: absolute;
    visibility: hidden;
    z-index: 3;
    width: 80%;
    max-height: 80%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-40%);
    transform: translateX(-50%) translateY(-40%);
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-gallery-media-info-no-description {
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
    font-size: 120%;
}
.instashow-gallery-media-link:hover .instashow-gallery-media-info {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(-47%);
    transform: translateX(-50%) translateY(-47%);
}
.instashow-gallery-media-info-counter {
    line-height: 1;
}
.instashow-gallery-media-info-counter + .instashow-gallery-media-info-counter {
    margin-left: 16%;
}
.instashow-gallery-media-info-counter
    ~ .instashow-gallery-media-info-description {
    margin-top: 12%;
}
.instashow-gallery-media-info-description {
    display: block;
    overflow: hidden;
    font-size: 14px;
}
.instashow-gallery-media-info-cropped::after {
    display: block;
    line-height: 1;
    letter-spacing: 2px;
    content: "...";
}
.instashow-gallery-loader {
    position: absolute;
    z-index: 12;
    visibility: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgba(255, 255, 255, 0.1);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.instashow-gallery-loader.instashow-show {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-loader .instashow-spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.instashow-gallery-control-arrow {
    position: absolute;
    z-index: 10;
    width: 74px;
    height: 74px;
    top: 50%;
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-gallery-control-arrow-disabled {
    visibility: hidden;
    opacity: 0;
}
.instashow-gallery-control-arrow::after,
.instashow-gallery-control-arrow::before {
    display: block;
    position: absolute;
    height: 2px;
    width: 12px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
}
.instashow-gallery-control-arrow-previous {
    left: 0;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.instashow-gallery-control-arrow-previous::after,
.instashow-gallery-control-arrow-previous::before {
    top: 37px;
    right: 16px;
    border-radius: 0 10px 10px 0;
}
.instashow-gallery-control-arrow-previous::before {
    -webkit-transform-origin: 0 110%;
    transform-origin: 0 110%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-gallery-control-arrow-previous::after {
    -webkit-transform-origin: 0 -10%;
    transform-origin: 0 -10%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-gallery-control-arrow-previous:active {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(0.9);
    transform: translate3d(-50%, -50%, 0) scale(0.9);
}
.instashow-gallery-control-arrow-next {
    right: 0;
    -webkit-transform: translate3d(50%, -50%, 0);
    transform: translate3d(50%, -50%, 0);
}
.instashow-gallery-control-arrow-next::after,
.instashow-gallery-control-arrow-next::before {
    top: 37px;
    left: 16px;
    border-radius: 10px 0 0 10px;
}
.instashow-gallery-control-arrow-next::before {
    -webkit-transform-origin: 100% 110%;
    transform-origin: 100% 110%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-gallery-control-arrow-next::after {
    -webkit-transform-origin: 100% -10%;
    transform-origin: 100% -10%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-gallery-control-arrow-next:active {
    -webkit-transform: translate3d(50%, -50%, 0) scale(0.9);
    transform: translate3d(50%, -50%, 0) scale(0.9);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow {
    right: auto;
    left: 50%;
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-previous {
    top: 0;
    -webkit-transform: rotate(90deg) translate3d(-50%, 50%, 0);
    transform: rotate(90deg) translate3d(-50%, 50%, 0);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-previous:active {
    -webkit-transform: rotate(90deg) translate3d(-50%, 50%, 0) scale(0.9);
    transform: rotate(90deg) translate3d(-50%, 50%, 0) scale(0.9);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-next {
    top: auto;
    bottom: 0;
    -webkit-transform: rotate(90deg) translate3d(50%, 50%, 0);
    transform: rotate(90deg) translate3d(50%, 50%, 0);
}
.instashow-gallery-vertical .instashow-gallery-control-arrow-next:active {
    -webkit-transform: rotate(90deg) translate3d(50%, 50%, 0) scale(0.9);
    transform: rotate(90deg) translate3d(50%, 50%, 0) scale(0.9);
}
.instashow-gallery-control-scroll {
    position: absolute;
    visibility: hidden;
    z-index: 10;
    opacity: 0;
    background: rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-gallery-vertical .instashow-gallery-control-scroll {
    width: 3px;
    top: 6px;
    right: 6px;
    bottom: 6px;
}
.instashow-gallery-horizontal .instashow-gallery-control-scroll {
    height: 3px;
    right: 6px;
    bottom: 6px;
    left: 6px;
}
.instashow-gallery:hover .instashow-gallery-control-scroll {
    visibility: visible;
    opacity: 1;
}
.instashow-gallery-control-scroll-slider {
    position: absolute;
    background: #000;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.instashow-gallery-vertical .instashow-gallery-control-scroll-slider {
    width: 100%;
}
.instashow-gallery-horizontal .instashow-gallery-control-scroll-slider {
    height: 100%;
}
.instashow-gallery {
    position: relative;
    overflow: hidden;
}
.instashow-gallery-wrapper {
    overflow: hidden;
}
.instashow-gallery-container {
    -webkit-transition: all 0s linear;
    transition: all 0s linear;
}
.instashow-gallery-container::after,
.instashow-gallery-container::before {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-gallery-view {
    position: relative;
    box-sizing: border-box;
    z-index: 1;
}
.instashow-gallery-view::after,
.instashow-gallery-view::before {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-gallery-fade .instashow-gallery-view {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
}
.instashow-gallery-fade .instashow-gallery-view-active {
    visibility: visible;
    pointer-events: all;
}
.instashow-gallery-slide .instashow-gallery-view {
    float: left;
    pointer-events: none;
}
.instashow-gallery-slide .instashow-gallery-view-active,
.instashow-gallery-slide .instashow-gallery-view-active-next,
.instashow-gallery-slide .instashow-gallery-view-active-prev {
    pointer-events: all;
}
.instashow-popup-twilight {
    position: absolute;
    visibility: hidden;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-show .instashow-popup-twilight {
    visibility: visible;
    opacity: 1;
}
.instashow-popup-media {
    position: relative;
    overflow: hidden;
    width: 640px;
    border-radius: 4px;
    background: #fff;
}
.instashow-popup-media::after,
.instashow-popup-media::before {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-popup-media-has-comments {
    width: 1040px;
    height: 640px;
}
.instashow-popup-media-picture {
    position: relative;
    overflow: hidden;
    width: 640px;
    min-height: 200px;
}
.instashow-popup-media-has-comments figure.instashow-popup-media-picture {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.instashow-popup-media-has-comments .instashow-popup-media-picture {
    height: 640px;
    float: left;
}
.instashow-popup-media-picture-loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.instashow-popup-media-picture-loaded .instashow-popup-media-picture-loader {
    display: none;
}
.instashow-popup-media-picture-loader .instashow-spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.instashow-popup-media-picture img {
    display: block;
}
.instashow-popup-media-album .instashow-popup-media-picture img,
.instashow-popup-media-square .instashow-popup-media-picture img {
    width: 100%;
}
.instashow-popup-media-portrait .instashow-popup-media-picture img {
    margin: 0 auto;
}
.instashow-popup-media-has-comments .instashow-popup-media-picture img {
    position: absolute;
}
.instashow-popup-media-has-comments.instashow-popup-media-square
    .instashow-popup-media-picture
    img {
    width: 100%;
    height: 100%;
}
.instashow-popup-media-has-comments.instashow-popup-media-portrait
    .instashow-popup-media-picture
    img {
    height: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.instashow-popup-media-has-comments.instashow-popup-media-album
    .instashow-popup-media-picture
    img {
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.instashow-popup-media-video {
    position: relative;
    cursor: pointer;
}
.instashow-popup-media-video video {
    width: 100%;
    height: 100%;
}
.instashow-popup-media-video::before {
    display: block;
    position: absolute;
    visibility: visible;
    top: 50%;
    left: 50%;
    opacity: 0.8;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font: 400 64px/1 Iconsfont;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "\e800";
}
.instashow-playing .instashow-popup-media-video::before {
    visibility: visible;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) scale(2);
    transform: translateX(-50%) translateY(-50%) scale(2);
}
div.instashow-popup-media-info {
    box-sizing: border-box;
    padding: 15px;
}
.instashow-popup-media-has-comments .instashow-popup-media-info {
    float: left;
    width: 399px;
}
.instashow-popup-media-info-origin::after,
.instashow-popup-media-info-origin::before {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-popup-media-info-author {
    display: block;
    float: left;
    line-height: 1;
    font-weight: 700;
    font-size: 12px;
}
span.instashow-popup-media-info-author-picture {
    display: inline-block;
    overflow: hidden;
    box-sizing: border-box;
    vertical-align: middle;
    width: 37px;
    height: 37px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
}
span.instashow-popup-media-info-author-picture img {
    display: block;
    width: 100%;
    height: 100%;
}
span.instashow-popup-media-info-author-name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
}
a.instashow-popup-media-info-original {
    display: block;
    float: right;
    margin-top: 8px;
    padding: 5px 8px 6px;
    border: 1px solid #2196f3;
    border-radius: 4px;
    line-height: 1;
    font-size: 12px;
}
.instashow-popup-media-info-meta {
    line-height: 1;
}
.instashow-popup-media-info-meta::after,
.instashow-popup-media-info-meta::before {
    display: table;
    width: 100%;
    height: 0;
    clear: both;
    float: none;
    content: "";
}
.instashow-popup-media-info-origin + div.instashow-popup-media-info-meta {
    margin-top: 12px;
}
.instashow-popup-media-info-properties {
    float: left;
    width: 80%;
    white-space: nowrap;
}
.instashow-popup-media-info-properties-item {
    display: inline-block;
    font-size: 12px;
}
.instashow-popup-media-info-properties-item
    + .instashow-popup-media-info-properties-item {
    margin-left: 20px;
}
.instashow-popup-media-info-properties-item em {
    font-style: normal;
}
.instashow-popup-media-info-properties-item-location {
    width: 60%;
}
.instashow-popup-media-info-properties-item-location em {
    overflow: hidden;
    max-width: 90%;
    text-overflow: ellipsis;
}
.instashow-popup-media-info-passed-time {
    float: right;
    width: 20%;
    text-align: right;
    line-height: 1.68;
    font-size: 12px;
}
.instashow-popup-media-info-content {
    word-break: break-all;
}
div + div.instashow-popup-media-info-content {
    margin: 12px -15px 0;
    padding: 12px 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.instashow-popup-media-has-comments .instashow-popup-media-info-content {
    overflow: auto;
    height: 530px;
}
.instashow-popup-media-info-description,
p.instashow-popup-media-info-comments-item {
    line-height: 1.45;
    font-size: 12px;
}
div.instashow-popup-media-info-comments-item {
    margin: 12px 0;
    font-size: 12px;
}
.instashow-popup-media-appearing {
    position: absolute;
    top: 36px;
    left: 100px;
}
.instashow-popup-media-next,
.instashow-popup-media-previous {
    opacity: 0;
    z-index: 1;
}
@media only screen and (min-width: 1840px) {
    .instashow-popup-media-hr {
        width: 840px;
        height: 840px;
    }
    .instashow-popup-media-hr.instashow-popup-media-has-comments {
        width: 1240px;
    }
    .instashow-popup-media-hr .instashow-popup-media-picture {
        width: 840px;
        height: 840px;
    }
}
@media only screen and (max-width: 1280px) {
    .instashow-popup-media {
        width: 430px;
    }
    .instashow-popup-media-has-comments {
        width: 740px;
        height: 430px;
    }
    .instashow-popup-media-picture {
        width: 430px;
    }
    .instashow-popup-media-picture img {
        width: 100%;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-picture img {
        width: auto;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-picture {
        height: 430px;
    }
    .instashow-popup-media-has-comments div.instashow-popup-media-info {
        width: 309px;
    }
    .instashow-popup-media-has-comments
        .instashow-popup-media-info-properties-item
        + .instashow-popup-media-info-properties-item {
        margin-left: 12px;
    }
    .instashow-popup-media-has-comments
        .instashow-popup-media-info-properties-item-location {
        width: 40%;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-info-content {
        height: 320px;
    }
}
@media only screen and (max-width: 1024px) {
    .instashow-popup-media {
        width: auto;
    }
    .instashow-popup-media-has-comments {
        width: auto;
        height: auto;
    }
    .instashow-popup-media-picture {
        width: 100%;
        height: auto !important;
        border-right: none !important;
    }
    .instashow-popup-media-picture img {
        width: 100% !important;
        height: auto !important;
        position: static !important;
        top: auto !important;
        -webkit-transform: none !important;
        transform: none !important;
    }
    .instashow-popup-media-has-comments div.instashow-popup-media-info {
        width: 100%;
    }
    .instashow-popup-media-info-properties-item-location {
        width: 60% !important;
    }
    .instashow-popup-media-has-comments .instashow-popup-media-info-content {
        height: auto;
    }
    .instashow-popup-media-appearing {
        position: absolute;
        top: 36px;
        right: 100px;
        left: 100px;
    }
}
@media only screen and (max-width: 780px) {
    .instashow-popup-media-appearing {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
}
@media only screen and (max-width: 480px) {
    span.instashow-popup-media-info-properties-item-location {
        display: block;
        margin-top: 12px;
        margin-left: 0 !important;
        width: auto !important;
    }
}
.instashow-popup-control-close {
    position: absolute;
    z-index: 12;
    width: 32px;
    height: 36px;
    top: 0;
    right: 68px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-popup-control-close::after,
.instashow-popup-control-close::before {
    display: block;
    position: absolute;
    width: 18px;
    height: 3px;
    top: 7px;
    left: 10px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
}
.instashow-popup-control-close::before {
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-popup-control-close::after {
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: translateX(-5px) rotate(-45deg);
    transform: translateX(-5px) rotate(-45deg);
}
.instashow-popup-control-close:active {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}
@media only screen and (max-width: 1024px) {
    .instashow-popup-control-close {
        right: auto;
        width: 35px;
        height: 35px;
        top: 48px;
        left: 115px;
        border-radius: 50%;
    }
    .instashow-popup-control-close::after,
    .instashow-popup-control-close::before {
        top: 11px;
        left: 12px;
        width: 16px;
        height: 2px;
    }
    .instashow-popup-control-close::after {
        -webkit-transform: translateX(-5px) rotate(-45deg);
        transform: translateX(-5px) rotate(-45deg);
    }
}
@media only screen and (max-width: 780px) {
    .instashow-popup-control-close {
        top: 15px;
        left: 15px;
    }
}
.instashow-popup-control-arrow {
    position: absolute;
    z-index: 10;
    top: 20px;
    bottom: 20px;
    width: 100px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.instashow-popup-control-arrow.instashow-disabled {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
}
.instashow-popup-control-arrow span {
    display: block;
    position: absolute;
    width: 20px;
    height: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.instashow-popup-control-arrow span::after,
.instashow-popup-control-arrow span::before {
    display: block;
    position: absolute;
    width: 28px;
    height: 3px;
    top: 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
}
.instashow-popup-control-arrow-previous {
    left: 0;
}
.instashow-popup-control-arrow-previous span {
    left: 24px;
}
.instashow-popup-control-arrow-previous span::after,
.instashow-popup-control-arrow-previous span::before {
    border-radius: 0 10px 10px 0;
}
.instashow-popup-control-arrow-previous span::before {
    -webkit-transform-origin: 0 110%;
    transform-origin: 0 110%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-popup-control-arrow-previous span::after {
    -webkit-transform-origin: 0 -10%;
    transform-origin: 0 -10%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-popup-control-arrow-next {
    right: 0;
}
.instashow-popup-control-arrow-next span {
    right: 24px;
}
.instashow-popup-control-arrow-next span::after,
.instashow-popup-control-arrow-next span::before {
    right: 0;
    border-radius: 10px 0 0 10px;
}
.instashow-popup-control-arrow-next span::before {
    -webkit-transform-origin: 100% 110%;
    transform-origin: 100% 110%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.instashow-popup-control-arrow-next span::after {
    -webkit-transform-origin: 100% -10%;
    transform-origin: 100% -10%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.instashow-popup-control-arrow:hover span {
    -webkit-transform: translateY(-50%) scaleY(0.85);
    transform: translateY(-50%) scaleY(0.85);
}
.instashow-popup-control-arrow:active.instashow-popup-control-arrow-previous
    span {
    -webkit-transform: translateY(-50%) scaleY(0.8) translateX(-30%);
    transform: translateY(-50%) scaleY(0.8) translateX(-30%);
}
.instashow-popup-control-arrow:active.instashow-popup-control-arrow-next span {
    -webkit-transform: translateY(-50%) scaleY(0.8) translateX(30%);
    transform: translateY(-50%) scaleY(0.8) translateX(30%);
}
@media only screen and (max-width: 780px) {
    .instashow-popup-control-arrow {
        display: none !important;
    }
}
.instashow-popup {
    position: fixed;
    visibility: hidden;
    z-index: 9999;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: left;
}
.instashow-popup.instashow-show {
    visibility: visible;
}
.instashow-popup-wrapper {
    position: absolute;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
div.instashow-popup-container {
    display: inline-block;
    position: relative;
    visibility: hidden;
    box-sizing: border-box;
    left: 50%;
    padding: 36px 100px;
    opacity: 0;
    -webkit-transform: translateX(-50%) scale(0.9);
    transform: translateX(-50%) scale(0.9);
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}
.instashow-show div.instashow-popup-container {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}
@media only screen and (max-width: 780px) {
    div.instashow-popup-container {
        padding: 0;
    }
}
.instashow-gallery .instashow-error {
    position: absolute;
    z-index: 20;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}
div.instashow-error-panel {
    padding: 26px 27px 27px 92px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADUAAAA1CAYAAAGW4ZPmAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjQ0OEZFOTU2NjA1QzExRTU5QzgxRjY4QzgzQTJFQjQzIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjQ0OEZFOTU3NjA1QzExRTU5QzgxRjY4QzgzQTJFQjQzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NDQ4RkU5NTQ2MDVDMTFFNTlDODFGNjhDODNBMkVCNDMiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NDQ4RkU5NTU2MDVDMTFFNTlDODFGNjhDODNBMkVCNDMiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5wtTv1AAAGNElEQVR42mK8evUqAxJ4CcRJQLwVxGGBCv5HUrAFSjMywURYWCDqFBQUYEL/QZKvQKw/f/6ARR48eAA3AiSZCuNoaWkxqKurwyUZoQ5CthPuOJidjOgSQCwBEECMSF7xAuL5QCwOdyQWr/xH9sp/ZC/AvARzLYoXYF4CgqdwSU1NTbBXkEAWyEEvkB2BBMB2SkCdjiIBIgACiBEtVp5DFWMDIBsk0R37HOojXJoYoHL/oWrBGv2RNaioqKAEA4itqqqKboA/yKmgmBZlIA08A9koxkA6kMaVCPABRpSYhArAsC8Qv4ZiXzQ5MAAIIPTogIGVQBwGxKuhNApgQeOjJ+hQ5BSIHn/COHIAuoEiyJreEBkYr2GavsFE2NnZsapEE/8G0sQJ4/38+RM9yYP5IHEkwAkKvf+kxjITGSkDI8gZuLm5GeTl5eH8e/fuMfz48QNDE0iEAybw9etXhmvXruGz6DtKQBAJuGB+IjbViyH76TU0mfwnlMqxhR4sNa+G8lejp3AQAAjAWxXkMAgCQYiBB9SjJrU24dav+Fh9So/Q0A/otVEuskQSokgo1U6yB8zIMuwyu9flFncdz0jdHx0PHa/oUmlcdPQJZYcDCWcNj2f45in+gn7v7q8HJ1oLqFxlb+8da8tmjKFpmsxaCLHhgM1jjBEhBHHOkVLKt5W0I6vdO1JZliYRTElKqZcD36WUhlcURUhhm+QaqQBl3Z9ydZCsCTHARMG1oC4+ZFmG6rremK8HjX3U1VLEs3CDJnS7EZ/U/kGPyw9Kkq+90TeOBsdEQf4Yufm48O2/w5owCyBCBTEM8ABxGTQxaUPFrkLzaDcQfyYYlgQsmgnEaUT6ajY+tbhq8xBoIkkjIW5SoXpCiLXoGFLFRw5YDTUDr0WXgNiSCinPEmoWVoumQWtVagFdqJkoiUEAiN/TqJQQBOIPMB+9omFx9AoWdKCczIpNBXJXD1vzFySGpWeLDkBmC4FUrcfZ0oF2nGA1LDr4+/cvSi2NB2wA+cgWlyyo5gVZAqrCsVXjoH4ryBJQLYzcHccCbPE2v0GuvXXrFsP///+xBg1MDKQGpJZQEUSXap6JgU5g+FnEQowiUPuPj48Pq9yHDx8Ynj17RpRFh/ElcVCL58mTJ2CMDQgICIDVEOi+HQalOmESeszkAhEmaA/hDw0tAZn9FpYYRGlokShyqvsAxNNpYMl0qNkoyTsL2vWkFrgCNRNrPtID4uNUsOQ4em2NLcNaQUeCyAWhUDOIKhnWQFuc00mMD0aoXpKLoCyoZlCx0ALEF4H4HxRfgorxQdVk4TMIIEC3VreSQBCFBw0xEUrRburGW3sAvQjqCbqKoicwIS/yUSz7eYFuvImeoUAfIOs6CAQlNlY02rDmG8/GtLjuv64eOCCz7Mz5ZnfPnO872i2Jp9ka9yPux9x37Ka1Cd/aI/dbUv8+Zp3AUZ3VuGtUBStUpu+5BKSn3V2aR6F5NVpnPShQkNvqtBjKzYoHAE6AVmi9H6p9436A2iTmNbR6j2dgZYrjieJyDAq1cJM7jtg8C5flKa4mxWkLFJgiFN4CC7cVKM4DK1A1j4x2HtaguE2JbYUtplVkEr0iDZadzALOlEgk/iRUfQxkbTAYWBE23+YwJJJn7uc4fNNEqqOOcy6nv7lcTjBTGJgpAjERmgObQ2bc3Dfw+lXdAsKuylQbv6HYyg3ToOcwGHBUcee+q7ujUaEPYFf1/jYCAavTr81ijgkmOsxfZjLOgpoaYUtoAPWyZJhe8U3dMx+F10gkIhrTcKiMSM/4PjAOMVDX6dCoRi96OBwKqc1Hu/OU0mHJZJJls1m2ujpuB49GIxEsHH8AAACAwTjAIREAaDweF8Bxn97fwtnU6/VYv993C0ikdDwpNFPOjKWGXUun06zT6Ygdt1yRg4MDrKqqrNvt/ruOgziTyXgBBRzvMvO9dFpVhMyudHpk1HYuFhRQfZqOhBrwcMEAId5TKz6FUh5ffSvkYFoUZ8Mu8wX5KnLf4t4OGZg2xVWkOB1rFG9s3CXGjlzPGcwNxbFNcXlWkz4pM+JASVFC0QIGodE6KVr3xOzJuAUlm0IJJSaBLHF/YO6bC990f0kCEaN1FKeT/QI7/QOKKTKfYwAAAABJRU5ErkJggg==)
        20px 20px no-repeat #fff;
    line-height: 1.4;
    font-size: 13px;
}
.instashow-gallery div.instashow-error-panel {
    position: absolute;
    max-width: 600px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    border-radius: 4px;
}
.instashow-error-title {
    font-weight: 700;
}
div.instashow-error-caption {
    margin-top: 3px;
}
/*!
 * Justified Gallery - v3.6.1
 * http://miromannino.github.io/Justified-Gallery/
 * Copyright (c) 2015 Miro Mannino
 * Licensed under the MIT license.
 */
@-webkit-keyframes justified-gallery-show-caption-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}
@-moz-keyframes justified-gallery-show-caption-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}
@-o-keyframes justified-gallery-show-caption-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}
@keyframes justified-gallery-show-caption-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.7;
    }
}
@-webkit-keyframes justified-gallery-show-entry-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-moz-keyframes justified-gallery-show-entry-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@-o-keyframes justified-gallery-show-entry-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes justified-gallery-show-entry-animation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.justified-gallery {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.justified-gallery > a,
.justified-gallery > div {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
}
.justified-gallery > a > img,
.justified-gallery > div > img,
.justified-gallery > a > a > img,
.justified-gallery > div > a > img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    padding: 0;
    border: 0;
}
.justified-gallery > a > .caption,
.justified-gallery > div > .caption {
    display: none;
    position: absolute;
    bottom: 0;
    padding: 5px;
    background-color: #000;
    left: 0;
    right: 0;
    margin: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    font-family: sans-serif;
}
.justified-gallery > a > .caption.caption-visible,
.justified-gallery > div > .caption.caption-visible {
    display: initial;
    opacity: 0.7;
    filter: "alpha(opacity=70)";
    -webkit-animation: justified-gallery-show-caption-animation 500ms 0 ease;
    -moz-animation: justified-gallery-show-caption-animation 500ms 0 ease;
    -ms-animation: justified-gallery-show-caption-animation 500ms 0 ease;
}
.justified-gallery > .entry-visible {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-animation: justified-gallery-show-entry-animation 500ms 0 ease;
    -moz-animation: justified-gallery-show-entry-animation 500ms 0 ease;
    -ms-animation: justified-gallery-show-entry-animation 500ms 0 ease;
}
.justified-gallery > .jg-filtered {
    display: none;
}
.justified-gallery > .spinner {
    position: absolute;
    bottom: 0;
    margin-left: -24px;
    padding: 10px 0;
    left: 50%;
    opacity: initial;
    filter: initial;
    overflow: initial;
}
.justified-gallery > .spinner > span {
    display: inline-block;
    opacity: 0;
    filter: alpha(opacity=0);
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background-color: #000;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}
.lg-sub-html,
.lg-toolbar {
    background-color: rgba(0, 0, 0, 0.45);
}
#lg-counter,
.lg-outer .lg-video-cont {
    vertical-align: middle;
    display: inline-block;
}
@font-face {
    font-family: lg;
    src: url(../fonts/lg.eot?n1z373);
    src: url(../fonts/lg.eot?#iefixn1z373) format("embedded-opentype"),
        url(../fonts/lg.woff?n1z373) format("woff"),
        url(../fonts/lg.ttf?n1z373) format("truetype"),
        url(../fonts/lg.svg?n1z373#lg) format("svg");
    font-weight: 400;
    font-style: normal;
}
.lg-icon {
    font-family: lg;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.lg-actions .lg-next,
.lg-actions .lg-prev {
    background-color: rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    color: #999;
    cursor: pointer;
    display: block;
    font-size: 22px;
    margin-top: -10px;
    padding: 8px 10px 9px;
    position: absolute;
    top: 50%;
    z-index: 1080;
}
.lg-actions .lg-next.disabled,
.lg-actions .lg-prev.disabled {
    pointer-events: none;
    opacity: 0.5;
}
.lg-actions .lg-next:hover,
.lg-actions .lg-prev:hover {
    color: #fff;
}
.lg-actions .lg-next {
    right: 20px;
}
.lg-actions .lg-next:before {
    content: "\e095";
}
.lg-actions .lg-prev {
    left: 20px;
}
.lg-actions .lg-prev:after {
    content: "\e094";
}
@-webkit-keyframes lg-right-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: -30px;
    }
}
@-moz-keyframes lg-right-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: -30px;
    }
}
@-ms-keyframes lg-right-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: -30px;
    }
}
@keyframes lg-right-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: -30px;
    }
}
@-webkit-keyframes lg-left-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 30px;
    }
}
@-moz-keyframes lg-left-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 30px;
    }
}
@-ms-keyframes lg-left-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 30px;
    }
}
@keyframes lg-left-end {
    0%,
    100% {
        left: 0;
    }
    50% {
        left: 30px;
    }
}
.lg-outer.lg-right-end .lg-object {
    -webkit-animation: lg-right-end 0.3s;
    -o-animation: lg-right-end 0.3s;
    animation: lg-right-end 0.3s;
    position: relative;
}
.lg-outer.lg-left-end .lg-object {
    -webkit-animation: lg-left-end 0.3s;
    -o-animation: lg-left-end 0.3s;
    animation: lg-left-end 0.3s;
    position: relative;
}
.lg-toolbar {
    z-index: 1082;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.lg-toolbar .lg-icon {
    color: #999;
    cursor: pointer;
    float: right;
    font-size: 24px;
    height: 47px;
    line-height: 27px;
    padding: 10px 0;
    text-align: center;
    width: 50px;
    text-decoration: none !important;
    outline: 0;
    -webkit-transition: color 0.2s linear;
    -o-transition: color 0.2s linear;
    transition: color 0.2s linear;
}
.lg-toolbar .lg-icon:hover {
    color: #fff;
}
.lg-toolbar .lg-close:after {
    content: "\e070";
}
.lg-toolbar .lg-download:after {
    content: "\e0f2";
}
.lg-sub-html {
    bottom: 0;
    color: #eee;
    font-size: 16px;
    left: 0;
    padding: 10px 40px;
    position: fixed;
    right: 0;
    text-align: center;
    z-index: 1080;
}
.lg-sub-html h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
}
.lg-sub-html p {
    font-size: 12px;
    margin: 5px 0 0;
}
#lg-counter {
    color: #999;
    font-size: 16px;
    padding-left: 20px;
    padding-top: 12px;
}
.lg-next,
.lg-prev,
.lg-toolbar {
    opacity: 1;
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    -moz-transition: -moz-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    -o-transition: -o-transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
    transition: transform 0.35s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.35s cubic-bezier(0, 0, 0.25, 1) 0s, color 0.2s linear;
}
.lg-hide-items .lg-prev {
    opacity: 0;
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
}
.lg-hide-items .lg-next {
    opacity: 0;
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
}
.lg-hide-items .lg-toolbar {
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-object {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
    -webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
body:not(.lg-from-hash)
    .lg-outer.lg-start-zoom
    .lg-item.lg-complete
    .lg-object {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    opacity: 1;
}
.lg-outer .lg-thumb-outer {
    background-color: #0d0a0a;
    bottom: 0;
    position: absolute;
    width: 100%;
    z-index: 1080;
    max-height: 350px;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
}
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
}
.lg-outer.lg-thumb-open .lg-thumb-outer {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.lg-outer .lg-thumb {
    padding: 10px 0;
    height: 100%;
    margin-bottom: -5px;
}
.lg-outer .lg-thumb-item {
    cursor: pointer;
    float: left;
    overflow: hidden;
    height: 100%;
    border: 2px solid #fff;
    border-radius: 4px;
    margin-bottom: 5px;
}
@media (min-width: 1025px) {
    .lg-outer .lg-thumb-item {
        -webkit-transition: border-color 0.25s ease;
        -o-transition: border-color 0.25s ease;
        transition: border-color 0.25s ease;
    }
}
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: #a90707;
}
.lg-outer .lg-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.lg-outer.lg-has-thumb .lg-item {
    padding-bottom: 120px;
}
.lg-outer.lg-can-toggle .lg-item {
    padding-bottom: 0;
}
.lg-outer.lg-pull-caption-up .lg-sub-html {
    -webkit-transition: bottom 0.25s ease;
    -o-transition: bottom 0.25s ease;
    transition: bottom 0.25s ease;
}
.lg-outer.lg-pull-caption-up.lg-thumb-open .lg-sub-html {
    bottom: 100px;
}
.lg-outer .lg-toogle-thumb {
    background-color: #0d0a0a;
    border-radius: 2px 2px 0 0;
    color: #999;
    cursor: pointer;
    font-size: 24px;
    height: 39px;
    line-height: 27px;
    padding: 5px 0;
    position: absolute;
    right: 20px;
    text-align: center;
    top: -39px;
    width: 50px;
}
.lg-outer .lg-toogle-thumb:after {
    content: "\e1ff";
}
.lg-outer .lg-toogle-thumb:hover {
    color: #fff;
}
.lg-outer .lg-video-cont {
    max-width: 1140px;
    max-height: 100%;
    width: 100%;
    padding: 0 5px;
}
.lg-outer .lg-video {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}
.lg-outer .lg-video .lg-object {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
.lg-outer .lg-video .lg-video-play {
    width: 84px;
    height: 59px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -42px;
    margin-top: -30px;
    z-index: 1080;
    cursor: pointer;
}
.lg-outer .lg-has-vimeo .lg-video-play {
    background: url(../img/vimeo-play.png) no-repeat;
}
.lg-outer .lg-has-vimeo:hover .lg-video-play {
    background: url(../img/vimeo-play.png) 0 -58px no-repeat;
}
.lg-outer .lg-has-html5 .lg-video-play {
    background: url(../img/video-play.png) no-repeat;
    height: 64px;
    margin-left: -32px;
    margin-top: -32px;
    width: 64px;
    opacity: 0.8;
}
.lg-outer .lg-has-html5:hover .lg-video-play {
    opacity: 1;
}
.lg-outer .lg-has-youtube .lg-video-play {
    background: url(../img/youtube-play.png) no-repeat;
}
.lg-outer .lg-has-youtube:hover .lg-video-play {
    background: url(../img/youtube-play.png) 0 -60px no-repeat;
}
.lg-outer .lg-video-object {
    width: 100% !important;
    height: 100% !important;
    position: absolute;
    top: 0;
    left: 0;
}
.lg-outer .lg-has-video .lg-video-object {
    visibility: hidden;
}
.lg-outer .lg-has-video.lg-video-playing .lg-object,
.lg-outer .lg-has-video.lg-video-playing .lg-video-play {
    display: none;
}
.lg-outer .lg-has-video.lg-video-playing .lg-video-object {
    visibility: visible;
}
.lg-progress-bar {
    background-color: #333;
    height: 5px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1083;
    opacity: 0;
    -webkit-transition: opacity 80ms ease 0s;
    -moz-transition: opacity 80ms ease 0s;
    -o-transition: opacity 80ms ease 0s;
    transition: opacity 80ms ease 0s;
}
.lg-progress-bar .lg-progress {
    background-color: #a90707;
    height: 5px;
    width: 0;
}
.lg-progress-bar.lg-start .lg-progress {
    width: 100%;
}
.lg-show-autoplay .lg-progress-bar {
    opacity: 1;
}
.lg-autoplay-button:after {
    content: "\e01d";
}
.lg-show-autoplay .lg-autoplay-button:after {
    content: "\e01a";
}
.lg-outer.lg-css3.lg-zoom-dragging .lg-item.lg-complete.lg-zoomable .lg-image,
.lg-outer.lg-css3.lg-zoom-dragging
    .lg-item.lg-complete.lg-zoomable
    .lg-img-wrap {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-img-wrap {
    -webkit-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
        top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -moz-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
        top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -o-transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
        top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    transition: left 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
        top 0.3s cubic-bezier(0, 0, 0.25, 1) 0s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.lg-outer .lg-item.lg-complete.lg-zoomable .lg-image {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.15s !important;
    -moz-transition: -moz-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.15s !important;
    -o-transition: -o-transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.15s !important;
    transition: transform 0.3s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.15s !important;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
#lg-zoom-in:after {
    content: "\e311";
}
#lg-actual-size {
    font-size: 20px;
}
#lg-actual-size:after {
    content: "\e033";
}
#lg-zoom-out {
    opacity: 0.5;
    pointer-events: none;
}
#lg-zoom-out:after {
    content: "\e312";
}
.lg-zoomed #lg-zoom-out {
    opacity: 1;
    pointer-events: auto;
}
.lg-outer .lg-pager-outer {
    bottom: 60px;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    z-index: 1080;
    height: 10px;
}
.lg-outer .lg-pager-outer.lg-pager-hover .lg-pager-cont {
    overflow: visible;
}
.lg-outer .lg-pager-cont {
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    position: relative;
    vertical-align: top;
    margin: 0 5px;
}
.lg-outer .lg-pager-cont:hover .lg-pager-thumb-cont {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.lg-outer .lg-pager-cont.lg-pager-active .lg-pager {
    box-shadow: 0 0 0 2px #fff inset;
}
.lg-outer .lg-pager-thumb-cont {
    background-color: #fff;
    color: #fff;
    bottom: 100%;
    height: 83px;
    left: 0;
    margin-bottom: 20px;
    margin-left: -60px;
    opacity: 0;
    padding: 5px;
    position: absolute;
    width: 120px;
    border-radius: 3px;
    -webkit-transition: opacity 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
    -moz-transition: opacity 0.15s ease 0s, -moz-transform 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s, -o-transform 0.15s ease 0s;
    transition: opacity 0.15s ease 0s, transform 0.15s ease 0s;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
}
.lg-outer .lg-pager-thumb-cont img {
    width: 100%;
    height: 100%;
}
.lg-outer .lg-pager {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.7) inset;
    display: block;
    height: 12px;
    -webkit-transition: box-shadow 0.3s ease 0s;
    -o-transition: box-shadow 0.3s ease 0s;
    transition: box-shadow 0.3s ease 0s;
    width: 12px;
}
.lg-outer .lg-pager:focus,
.lg-outer .lg-pager:hover {
    box-shadow: 0 0 0 8px #fff inset;
}
.lg-outer .lg-caret {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px dashed;
    bottom: -10px;
    display: inline-block;
    height: 0;
    left: 50%;
    margin-left: -5px;
    position: absolute;
    vertical-align: middle;
    width: 0;
}
.lg-outer,
.lg-outer .lg,
.lg-outer .lg-inner {
    width: 100%;
    height: 100%;
}
.lg-fullscreen:after {
    content: "\e20c";
}
.lg-fullscreen-on .lg-fullscreen:after {
    content: "\e20d";
}
.group:after,
.group:before {
    display: table;
    content: "";
    line-height: 0;
}
.group:after {
    clear: both;
}
.lg-outer {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}
.lg-outer * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.lg-outer.lg-visible {
    opacity: 1;
}
.lg-outer.lg-css3 .lg-item.lg-current,
.lg-outer.lg-css3 .lg-item.lg-next-slide,
.lg-outer.lg-css3 .lg-item.lg-prev-slide {
    -webkit-transition-duration: inherit !important;
    transition-duration: inherit !important;
    -webkit-transition-timing-function: inherit !important;
    transition-timing-function: inherit !important;
}
.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important;
    opacity: 1;
}
.lg-outer.lg-grab img.lg-object {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.lg-outer.lg-grabbing img.lg-object {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: -o-grabbing;
    cursor: -ms-grabbing;
    cursor: grabbing;
}
.lg-outer .lg {
    position: relative;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    max-height: 100%;
}
.lg-outer .lg-inner {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
}
.lg-outer .lg-item {
    background: url(../img/loading.gif) center center no-repeat;
    display: none !important;
}
.lg-outer.lg-css .lg-current,
.lg-outer.lg-css3 .lg-current,
.lg-outer.lg-css3 .lg-next-slide,
.lg-outer.lg-css3 .lg-prev-slide {
    display: inline-block !important;
}
.lg-outer .lg-img-wrap,
.lg-outer .lg-item {
    display: inline-block;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
}
.lg-outer .lg-img-wrap:before,
.lg-outer .lg-item:before {
    content: "";
    display: inline-block;
    height: 50%;
    width: 1px;
    margin-right: -1px;
}
.lg-outer .lg-img-wrap {
    position: absolute;
    padding: 0 5px;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.lg-outer .lg-item.lg-complete {
    background-image: none;
}
.lg-outer .lg-item.lg-current {
    z-index: 1060;
}
.lg-outer .lg-image {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    max-height: 100%;
    width: auto !important;
    height: auto !important;
}
.lg-outer.lg-show-after-load .lg-item .lg-object,
.lg-outer.lg-show-after-load .lg-item .lg-video-play {
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-object,
.lg-outer.lg-show-after-load .lg-item.lg-complete .lg-video-play {
    opacity: 1;
}
.lg-outer .lg-empty-html,
.lg-outer.lg-hide-download #lg-download {
    display: none;
}
.lg-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1040;
    background-color: #000;
    opacity: 0;
    -webkit-transition: opacity 0.15s ease 0s;
    -o-transition: opacity 0.15s ease 0s;
    transition: opacity 0.15s ease 0s;
}
.lg-backdrop.in {
    opacity: 1;
}
.lg-css3.lg-no-trans .lg-current,
.lg-css3.lg-no-trans .lg-next-slide,
.lg-css3.lg-no-trans .lg-prev-slide {
    -webkit-transition: none 0s ease 0s !important;
    -moz-transition: none 0s ease 0s !important;
    -o-transition: none 0s ease 0s !important;
    transition: none 0s ease 0s !important;
}
.lg-css3.lg-use-css3 .lg-item,
.lg-css3.lg-use-left .lg-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
}
.lg-css3.lg-fade .lg-item {
    opacity: 0;
}
.lg-css3.lg-fade .lg-item.lg-current {
    opacity: 1;
}
.lg-css3.lg-fade .lg-item.lg-current,
.lg-css3.lg-fade .lg-item.lg-next-slide,
.lg-css3.lg-fade .lg-item.lg-prev-slide {
    -webkit-transition: opacity 0.1s ease 0s;
    -moz-transition: opacity 0.1s ease 0s;
    -o-transition: opacity 0.1s ease 0s;
    transition: opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item {
    opacity: 0;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
}
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
    -webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.1s ease 0s;
    -moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.1s ease 0s;
    -o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.1s ease 0s;
    transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.1s ease 0s;
}
.lg-css3.lg-slide.lg-use-left .lg-item {
    opacity: 0;
    position: absolute;
    left: 0;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    left: -100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide {
    left: 100%;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current {
    left: 0;
    opacity: 1;
}
.lg-css3.lg-slide.lg-use-left .lg-item.lg-current,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-next-slide,
.lg-css3.lg-slide.lg-use-left .lg-item.lg-prev-slide {
    -webkit-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.1s ease 0s;
    -moz-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s,
        opacity 0.1s ease 0s;
    -o-transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
    transition: left 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
}
.select2-container {
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    position: relative;
    vertical-align: middle;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    display: block;
    padding-left: 8px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select2-container .select2-selection--single .select2-selection__clear {
    position: relative;
}
.select2-container[dir="rtl"]
    .select2-selection--single
    .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px;
}
.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none;
}
.select2-container .select2-selection--multiple .select2-selection__rendered {
    display: inline-block;
    overflow: hidden;
    padding-left: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.select2-container .select2-search--inline {
    float: left;
}
.select2-container .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    font-size: 100%;
    margin-top: 5px;
    padding: 0;
}
.select2-container
    .select2-search--inline
    .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.select2-dropdown {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}
.select2-results {
    display: block;
}
.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}
.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
}
.select2-results__option[aria-selected] {
    cursor: pointer;
}
.select2-container--open .select2-dropdown {
    left: 0;
}
.select2-container--open .select2-dropdown--above {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-search--dropdown {
    display: block;
    padding: 4px;
}
.select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
}
.select2-search--dropdown.select2-search--hide {
    display: none;
}
.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}
.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 4px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__placeholder {
    color: #999;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.select2-container--default[dir="rtl"]
    .select2-selection--single
    .select2-selection__clear {
    float: left;
}
.select2-container--default[dir="rtl"]
    .select2-selection--single
    .select2-selection__arrow {
    left: 1px;
    right: auto;
}
.select2-container--default.select2-container--disabled
    .select2-selection--single {
    background-color: #eee;
    cursor: default;
}
.select2-container--default.select2-container--disabled
    .select2-selection--single
    .select2-selection__clear {
    display: none;
}
.select2-container--default.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}
.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__rendered
    li {
    list-style: none;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__placeholder {
    color: #999;
    margin-top: 5px;
    float: left;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}
.select2-container--default
    .select2-selection--multiple
    .select2-selection__choice__remove:hover {
    color: #333;
}
.select2-container--default[dir="rtl"]
    .select2-selection--multiple
    .select2-selection__choice,
.select2-container--default[dir="rtl"]
    .select2-selection--multiple
    .select2-selection__placeholder,
.select2-container--default[dir="rtl"]
    .select2-selection--multiple
    .select2-search--inline {
    float: right;
}
.select2-container--default[dir="rtl"]
    .select2-selection--multiple
    .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}
.select2-container--default[dir="rtl"]
    .select2-selection--multiple
    .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}
.select2-container--default.select2-container--focus
    .select2-selection--multiple {
    border: solid black 1px;
    outline: 0;
}
.select2-container--default.select2-container--disabled
    .select2-selection--multiple {
    background-color: #eee;
    cursor: default;
}
.select2-container--default.select2-container--disabled
    .select2-selection__choice__remove {
    display: none;
}
.select2-container--default.select2-container--open.select2-container--above
    .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--above
    .select2-selection--multiple {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below
    .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
    .select2-selection--multiple {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
}
.select2-container--default .select2-search--inline .select2-search__field {
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
}
.select2-container--default .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}
.select2-container--default .select2-results__option[role="group"] {
    padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled="true"] {
    color: #999;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #ddd;
}
.select2-container--default .select2-results__option .select2-results__option {
    padding-left: 1em;
}
.select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__group {
    padding-left: 0;
}
.select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__option {
    margin-left: -1em;
    padding-left: 2em;
}
.select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option {
    margin-left: -2em;
    padding-left: 3em;
}
.select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option {
    margin-left: -3em;
    padding-left: 4em;
}
.select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option {
    margin-left: -4em;
    padding-left: 5em;
}
.select2-container--default
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option
    .select2-results__option {
    margin-left: -5em;
    padding-left: 6em;
}
.select2-container--default
    .select2-results__option--highlighted[aria-selected] {
    background-color: #5897fb;
    color: white;
}
.select2-container--default .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}
.select2-container--classic .select2-selection--single {
    background-color: #f7f7f7;
    border: 1px solid #aaa;
    border-radius: 4px;
    outline: 0;
    background-image: -webkit-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: -o-linear-gradient(top, #fff 50%, #eee 100%);
    background-image: linear-gradient(to bottom, #fff 50%, #eee 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb;
}
.select2-container--classic
    .select2-selection--single
    .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}
.select2-container--classic
    .select2-selection--single
    .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px;
}
.select2-container--classic
    .select2-selection--single
    .select2-selection__placeholder {
    color: #999;
}
.select2-container--classic
    .select2-selection--single
    .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #ccc 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #ccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0);
}
.select2-container--classic
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
}
.select2-container--classic[dir="rtl"]
    .select2-selection--single
    .select2-selection__clear {
    float: left;
}
.select2-container--classic[dir="rtl"]
    .select2-selection--single
    .select2-selection__arrow {
    border: none;
    border-right: 1px solid #aaa;
    border-radius: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    left: 1px;
    right: auto;
}
.select2-container--classic.select2-container--open .select2-selection--single {
    border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open
    .select2-selection--single
    .select2-selection__arrow {
    background: transparent;
    border: none;
}
.select2-container--classic.select2-container--open
    .select2-selection--single
    .select2-selection__arrow
    b {
    border-color: transparent transparent #888 transparent;
    border-width: 0 4px 5px 4px;
}
.select2-container--classic.select2-container--open.select2-container--above
    .select2-selection--single {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: -o-linear-gradient(top, #fff 0%, #eee 50%);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0);
}
.select2-container--classic.select2-container--open.select2-container--below
    .select2-selection--single {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-image: -webkit-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: -o-linear-gradient(top, #eee 50%, #fff 100%);
    background-image: linear-gradient(to bottom, #eee 50%, #fff 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0);
}
.select2-container--classic .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    outline: 0;
}
.select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb;
}
.select2-container--classic
    .select2-selection--multiple
    .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px;
}
.select2-container--classic
    .select2-selection--multiple
    .select2-selection__clear {
    display: none;
}
.select2-container--classic
    .select2-selection--multiple
    .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px;
}
.select2-container--classic
    .select2-selection--multiple
    .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px;
}
.select2-container--classic
    .select2-selection--multiple
    .select2-selection__choice__remove:hover {
    color: #555;
}
.select2-container--classic[dir="rtl"]
    .select2-selection--multiple
    .select2-selection__choice {
    float: right;
}
.select2-container--classic[dir="rtl"]
    .select2-selection--multiple
    .select2-selection__choice {
    margin-left: 5px;
    margin-right: auto;
}
.select2-container--classic[dir="rtl"]
    .select2-selection--multiple
    .select2-selection__choice__remove {
    margin-left: 2px;
    margin-right: auto;
}
.select2-container--classic.select2-container--open
    .select2-selection--multiple {
    border: 1px solid #5897fb;
}
.select2-container--classic.select2-container--open.select2-container--above
    .select2-selection--multiple {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--classic.select2-container--open.select2-container--below
    .select2-selection--multiple {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select2-container--classic .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa;
    outline: 0;
}
.select2-container--classic .select2-search--inline .select2-search__field {
    outline: 0;
    box-shadow: none;
}
.select2-container--classic .select2-dropdown {
    background-color: #fff;
    border: 1px solid transparent;
}
.select2-container--classic .select2-dropdown--above {
    border-bottom: none;
}
.select2-container--classic .select2-dropdown--below {
    border-top: none;
}
.select2-container--classic .select2-results > .select2-results__options {
    max-height: 200px;
    overflow-y: auto;
}
.select2-container--classic .select2-results__option[role="group"] {
    padding: 0;
}
.select2-container--classic .select2-results__option[aria-disabled="true"] {
    color: grey;
}
.select2-container--classic
    .select2-results__option--highlighted[aria-selected] {
    background-color: #3875d7;
    color: #fff;
}
.select2-container--classic .select2-results__group {
    cursor: default;
    display: block;
    padding: 6px;
}
.select2-container--classic.select2-container--open .select2-dropdown {
    border-color: #5897fb;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list {
    background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    font-weight: normal;
    font-style: normal;

    src: url("./fonts/slick.eot");
    src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"),
        url("./fonts/slick.woff") format("woff"),
        url("./fonts/slick.ttf") format("truetype"),
        url("./fonts/slick.svg#slick") format("svg");
}
/* Arrows */
.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;

    opacity: 0.75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}
[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}
.slick-prev:before {
    content: "←";
}
[dir="rtl"] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}
[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}
.slick-next:before {
    content: "→";
}
[dir="rtl"] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: "•";
    text-align: center;

    opacity: 0.25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: black;
}

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus {
    outline: none;
}
.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
}
.slick-track:before,
.slick-track:after {
    display: table;

    content: "";
}
.slick-track:after {
    clear: both;
}
.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir="rtl"] .slick-slide {
    float: right;
}
.slick-slide img {
    display: block;
}
.slick-slide.slick-loading img {
    display: none;
}
.slick-slide.dragging img {
    pointer-events: none;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-loading .slick-slide {
    visibility: hidden;
}
.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset "UTF-8";

/*!
 * Bootstrap v3.4.1 (https://getbootstrap.com/)
 * Copyright 2011-2019 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

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

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

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

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

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

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

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

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

small {
    font-size: 80%;
}

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

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

figure {
    margin: 1em 40px;
}

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

pre {
    overflow: auto;
}

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

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

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

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

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

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

input {
    line-height: normal;
}

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

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

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

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

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

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

@media print {
    *,
    *:before,
    *:after {
        color: #000 !important;
        text-shadow: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .navbar {
        display: none;
    }

    .btn > .caret,
    .dropup > .btn > .caret {
        border-top-color: #000 !important;
    }

    .label {
        border: 1px solid #000;
    }

    .table {
        border-collapse: collapse !important;
    }

    .table td,
    .table th {
        background-color: #fff !important;
    }

    .table-bordered th,
    .table-bordered td {
        border: 1px solid #ddd !important;
    }
}

@font-face {
    font-family: "Glyphicons Halflings";
    src: url(/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1);
    src: url(/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.eot?f4769f9bdb7466be65088239c12046d1)
            format("embedded-opentype"),
        url(/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff2?448c34a56d699c29117adc64c43affeb)
            format("woff2"),
        url(/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.woff?fa2772327f55d8198301fdb8bcfc8158)
            format("woff"),
        url(/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.ttf?e18bbf611f2a2e43afc071aa2f4e1512)
            format("truetype"),
        url(/fonts/vendor/bootstrap-sass/bootstrap/glyphicons-halflings-regular.svg?89889688147bd7575d6327160d64e760)
            format("svg");
}

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

.glyphicon-asterisk:before {
    content: "*";
}

.glyphicon-plus:before {
    content: "+";
}

.glyphicon-euro:before,
.glyphicon-eur:before {
    content: "\20AC";
}

.glyphicon-minus:before {
    content: "\2212";
}

.glyphicon-cloud:before {
    content: "\2601";
}

.glyphicon-envelope:before {
    content: "\2709";
}

.glyphicon-pencil:before {
    content: "\270F";
}

.glyphicon-glass:before {
    content: "\E001";
}

.glyphicon-music:before {
    content: "\E002";
}

.glyphicon-search:before {
    content: "\E003";
}

.glyphicon-heart:before {
    content: "\E005";
}

.glyphicon-star:before {
    content: "\E006";
}

.glyphicon-star-empty:before {
    content: "\E007";
}

.glyphicon-user:before {
    content: "\E008";
}

.glyphicon-film:before {
    content: "\E009";
}

.glyphicon-th-large:before {
    content: "\E010";
}

.glyphicon-th:before {
    content: "\E011";
}

.glyphicon-th-list:before {
    content: "\E012";
}

.glyphicon-ok:before {
    content: "\E013";
}

.glyphicon-remove:before {
    content: "\E014";
}

.glyphicon-zoom-in:before {
    content: "\E015";
}

.glyphicon-zoom-out:before {
    content: "\E016";
}

.glyphicon-off:before {
    content: "\E017";
}

.glyphicon-signal:before {
    content: "\E018";
}

.glyphicon-cog:before {
    content: "\E019";
}

.glyphicon-trash:before {
    content: "\E020";
}

.glyphicon-home:before {
    content: "\E021";
}

.glyphicon-file:before {
    content: "\E022";
}

.glyphicon-time:before {
    content: "\E023";
}

.glyphicon-road:before {
    content: "\E024";
}

.glyphicon-download-alt:before {
    content: "\E025";
}

.glyphicon-download:before {
    content: "\E026";
}

.glyphicon-upload:before {
    content: "\E027";
}

.glyphicon-inbox:before {
    content: "\E028";
}

.glyphicon-play-circle:before {
    content: "\E029";
}

.glyphicon-repeat:before {
    content: "\E030";
}

.glyphicon-refresh:before {
    content: "\E031";
}

.glyphicon-list-alt:before {
    content: "\E032";
}

.glyphicon-lock:before {
    content: "\E033";
}

.glyphicon-flag:before {
    content: "\E034";
}

.glyphicon-headphones:before {
    content: "\E035";
}

.glyphicon-volume-off:before {
    content: "\E036";
}

.glyphicon-volume-down:before {
    content: "\E037";
}

.glyphicon-volume-up:before {
    content: "\E038";
}

.glyphicon-qrcode:before {
    content: "\E039";
}

.glyphicon-barcode:before {
    content: "\E040";
}

.glyphicon-tag:before {
    content: "\E041";
}

.glyphicon-tags:before {
    content: "\E042";
}

.glyphicon-book:before {
    content: "\E043";
}

.glyphicon-bookmark:before {
    content: "\E044";
}

.glyphicon-print:before {
    content: "\E045";
}

.glyphicon-camera:before {
    content: "\E046";
}

.glyphicon-font:before {
    content: "\E047";
}

.glyphicon-bold:before {
    content: "\E048";
}

.glyphicon-italic:before {
    content: "\E049";
}

.glyphicon-text-height:before {
    content: "\E050";
}

.glyphicon-text-width:before {
    content: "\E051";
}

.glyphicon-align-left:before {
    content: "\E052";
}

.glyphicon-align-center:before {
    content: "\E053";
}

.glyphicon-align-right:before {
    content: "\E054";
}

.glyphicon-align-justify:before {
    content: "\E055";
}

.glyphicon-list:before {
    content: "\E056";
}

.glyphicon-indent-left:before {
    content: "\E057";
}

.glyphicon-indent-right:before {
    content: "\E058";
}

.glyphicon-facetime-video:before {
    content: "\E059";
}

.glyphicon-picture:before {
    content: "\E060";
}

.glyphicon-map-marker:before {
    content: "\E062";
}

.glyphicon-adjust:before {
    content: "\E063";
}

.glyphicon-tint:before {
    content: "\E064";
}

.glyphicon-edit:before {
    content: "\E065";
}

.glyphicon-share:before {
    content: "\E066";
}

.glyphicon-check:before {
    content: "\E067";
}

.glyphicon-move:before {
    content: "\E068";
}

.glyphicon-step-backward:before {
    content: "\E069";
}

.glyphicon-fast-backward:before {
    content: "\E070";
}

.glyphicon-backward:before {
    content: "\E071";
}

.glyphicon-play:before {
    content: "\E072";
}

.glyphicon-pause:before {
    content: "\E073";
}

.glyphicon-stop:before {
    content: "\E074";
}

.glyphicon-forward:before {
    content: "\E075";
}

.glyphicon-fast-forward:before {
    content: "\E076";
}

.glyphicon-step-forward:before {
    content: "\E077";
}

.glyphicon-eject:before {
    content: "\E078";
}

.glyphicon-chevron-left:before {
    content: "\E079";
}

.glyphicon-chevron-right:before {
    content: "\E080";
}

.glyphicon-plus-sign:before {
    content: "\E081";
}

.glyphicon-minus-sign:before {
    content: "\E082";
}

.glyphicon-remove-sign:before {
    content: "\E083";
}

.glyphicon-ok-sign:before {
    content: "\E084";
}

.glyphicon-question-sign:before {
    content: "\E085";
}

.glyphicon-info-sign:before {
    content: "\E086";
}

.glyphicon-screenshot:before {
    content: "\E087";
}

.glyphicon-remove-circle:before {
    content: "\E088";
}

.glyphicon-ok-circle:before {
    content: "\E089";
}

.glyphicon-ban-circle:before {
    content: "\E090";
}

.glyphicon-arrow-left:before {
    content: "\E091";
}

.glyphicon-arrow-right:before {
    content: "\E092";
}

.glyphicon-arrow-up:before {
    content: "\E093";
}

.glyphicon-arrow-down:before {
    content: "\E094";
}

.glyphicon-share-alt:before {
    content: "\E095";
}

.glyphicon-resize-full:before {
    content: "\E096";
}

.glyphicon-resize-small:before {
    content: "\E097";
}

.glyphicon-exclamation-sign:before {
    content: "\E101";
}

.glyphicon-gift:before {
    content: "\E102";
}

.glyphicon-leaf:before {
    content: "\E103";
}

.glyphicon-fire:before {
    content: "\E104";
}

.glyphicon-eye-open:before {
    content: "\E105";
}

.glyphicon-eye-close:before {
    content: "\E106";
}

.glyphicon-warning-sign:before {
    content: "\E107";
}

.glyphicon-plane:before {
    content: "\E108";
}

.glyphicon-calendar:before {
    content: "\E109";
}

.glyphicon-random:before {
    content: "\E110";
}

.glyphicon-comment:before {
    content: "\E111";
}

.glyphicon-magnet:before {
    content: "\E112";
}

.glyphicon-chevron-up:before {
    content: "\E113";
}

.glyphicon-chevron-down:before {
    content: "\E114";
}

.glyphicon-retweet:before {
    content: "\E115";
}

.glyphicon-shopping-cart:before {
    content: "\E116";
}

.glyphicon-folder-close:before {
    content: "\E117";
}

.glyphicon-folder-open:before {
    content: "\E118";
}

.glyphicon-resize-vertical:before {
    content: "\E119";
}

.glyphicon-resize-horizontal:before {
    content: "\E120";
}

.glyphicon-hdd:before {
    content: "\E121";
}

.glyphicon-bullhorn:before {
    content: "\E122";
}

.glyphicon-bell:before {
    content: "\E123";
}

.glyphicon-certificate:before {
    content: "\E124";
}

.glyphicon-thumbs-up:before {
    content: "\E125";
}

.glyphicon-thumbs-down:before {
    content: "\E126";
}

.glyphicon-hand-right:before {
    content: "\E127";
}

.glyphicon-hand-left:before {
    content: "\E128";
}

.glyphicon-hand-up:before {
    content: "\E129";
}

.glyphicon-hand-down:before {
    content: "\E130";
}

.glyphicon-circle-arrow-right:before {
    content: "\E131";
}

.glyphicon-circle-arrow-left:before {
    content: "\E132";
}

.glyphicon-circle-arrow-up:before {
    content: "\E133";
}

.glyphicon-circle-arrow-down:before {
    content: "\E134";
}

.glyphicon-globe:before {
    content: "\E135";
}

.glyphicon-wrench:before {
    content: "\E136";
}

.glyphicon-tasks:before {
    content: "\E137";
}

.glyphicon-filter:before {
    content: "\E138";
}

.glyphicon-briefcase:before {
    content: "\E139";
}

.glyphicon-fullscreen:before {
    content: "\E140";
}

.glyphicon-dashboard:before {
    content: "\E141";
}

.glyphicon-paperclip:before {
    content: "\E142";
}

.glyphicon-heart-empty:before {
    content: "\E143";
}

.glyphicon-link:before {
    content: "\E144";
}

.glyphicon-phone:before {
    content: "\E145";
}

.glyphicon-pushpin:before {
    content: "\E146";
}

.glyphicon-usd:before {
    content: "\E148";
}

.glyphicon-gbp:before {
    content: "\E149";
}

.glyphicon-sort:before {
    content: "\E150";
}

.glyphicon-sort-by-alphabet:before {
    content: "\E151";
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\E152";
}

.glyphicon-sort-by-order:before {
    content: "\E153";
}

.glyphicon-sort-by-order-alt:before {
    content: "\E154";
}

.glyphicon-sort-by-attributes:before {
    content: "\E155";
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\E156";
}

.glyphicon-unchecked:before {
    content: "\E157";
}

.glyphicon-expand:before {
    content: "\E158";
}

.glyphicon-collapse-down:before {
    content: "\E159";
}

.glyphicon-collapse-up:before {
    content: "\E160";
}

.glyphicon-log-in:before {
    content: "\E161";
}

.glyphicon-flash:before {
    content: "\E162";
}

.glyphicon-log-out:before {
    content: "\E163";
}

.glyphicon-new-window:before {
    content: "\E164";
}

.glyphicon-record:before {
    content: "\E165";
}

.glyphicon-save:before {
    content: "\E166";
}

.glyphicon-open:before {
    content: "\E167";
}

.glyphicon-saved:before {
    content: "\E168";
}

.glyphicon-import:before {
    content: "\E169";
}

.glyphicon-export:before {
    content: "\E170";
}

.glyphicon-send:before {
    content: "\E171";
}

.glyphicon-floppy-disk:before {
    content: "\E172";
}

.glyphicon-floppy-saved:before {
    content: "\E173";
}

.glyphicon-floppy-remove:before {
    content: "\E174";
}

.glyphicon-floppy-save:before {
    content: "\E175";
}

.glyphicon-floppy-open:before {
    content: "\E176";
}

.glyphicon-credit-card:before {
    content: "\E177";
}

.glyphicon-transfer:before {
    content: "\E178";
}

.glyphicon-cutlery:before {
    content: "\E179";
}

.glyphicon-header:before {
    content: "\E180";
}

.glyphicon-compressed:before {
    content: "\E181";
}

.glyphicon-earphone:before {
    content: "\E182";
}

.glyphicon-phone-alt:before {
    content: "\E183";
}

.glyphicon-tower:before {
    content: "\E184";
}

.glyphicon-stats:before {
    content: "\E185";
}

.glyphicon-sd-video:before {
    content: "\E186";
}

.glyphicon-hd-video:before {
    content: "\E187";
}

.glyphicon-subtitles:before {
    content: "\E188";
}

.glyphicon-sound-stereo:before {
    content: "\E189";
}

.glyphicon-sound-dolby:before {
    content: "\E190";
}

.glyphicon-sound-5-1:before {
    content: "\E191";
}

.glyphicon-sound-6-1:before {
    content: "\E192";
}

.glyphicon-sound-7-1:before {
    content: "\E193";
}

.glyphicon-copyright-mark:before {
    content: "\E194";
}

.glyphicon-registration-mark:before {
    content: "\E195";
}

.glyphicon-cloud-download:before {
    content: "\E197";
}

.glyphicon-cloud-upload:before {
    content: "\E198";
}

.glyphicon-tree-conifer:before {
    content: "\E199";
}

.glyphicon-tree-deciduous:before {
    content: "\E200";
}

.glyphicon-cd:before {
    content: "\E201";
}

.glyphicon-save-file:before {
    content: "\E202";
}

.glyphicon-open-file:before {
    content: "\E203";
}

.glyphicon-level-up:before {
    content: "\E204";
}

.glyphicon-copy:before {
    content: "\E205";
}

.glyphicon-paste:before {
    content: "\E206";
}

.glyphicon-alert:before {
    content: "\E209";
}

.glyphicon-equalizer:before {
    content: "\E210";
}

.glyphicon-king:before {
    content: "\E211";
}

.glyphicon-queen:before {
    content: "\E212";
}

.glyphicon-pawn:before {
    content: "\E213";
}

.glyphicon-bishop:before {
    content: "\E214";
}

.glyphicon-knight:before {
    content: "\E215";
}

.glyphicon-baby-formula:before {
    content: "\E216";
}

.glyphicon-tent:before {
    content: "\26FA";
}

.glyphicon-blackboard:before {
    content: "\E218";
}

.glyphicon-bed:before {
    content: "\E219";
}

.glyphicon-apple:before {
    content: "\F8FF";
}

.glyphicon-erase:before {
    content: "\E221";
}

.glyphicon-hourglass:before {
    content: "\231B";
}

.glyphicon-lamp:before {
    content: "\E223";
}

.glyphicon-duplicate:before {
    content: "\E224";
}

.glyphicon-piggy-bank:before {
    content: "\E225";
}

.glyphicon-scissors:before {
    content: "\E226";
}

.glyphicon-bitcoin:before {
    content: "\E227";
}

.glyphicon-btc:before {
    content: "\E227";
}

.glyphicon-xbt:before {
    content: "\E227";
}

.glyphicon-yen:before {
    content: "\A5";
}

.glyphicon-jpy:before {
    content: "\A5";
}

.glyphicon-ruble:before {
    content: "\20BD";
}

.glyphicon-rub:before {
    content: "\20BD";
}

.glyphicon-scale:before {
    content: "\E230";
}

.glyphicon-ice-lolly:before {
    content: "\E231";
}

.glyphicon-ice-lolly-tasted:before {
    content: "\E232";
}

.glyphicon-education:before {
    content: "\E233";
}

.glyphicon-option-horizontal:before {
    content: "\E234";
}

.glyphicon-option-vertical:before {
    content: "\E235";
}

.glyphicon-menu-hamburger:before {
    content: "\E236";
}

.glyphicon-modal-window:before {
    content: "\E237";
}

.glyphicon-oil:before {
    content: "\E238";
}

.glyphicon-grain:before {
    content: "\E239";
}

.glyphicon-sunglasses:before {
    content: "\E240";
}

.glyphicon-text-size:before {
    content: "\E241";
}

.glyphicon-text-color:before {
    content: "\E242";
}

.glyphicon-text-background:before {
    content: "\E243";
}

.glyphicon-object-align-top:before {
    content: "\E244";
}

.glyphicon-object-align-bottom:before {
    content: "\E245";
}

.glyphicon-object-align-horizontal:before {
    content: "\E246";
}

.glyphicon-object-align-left:before {
    content: "\E247";
}

.glyphicon-object-align-vertical:before {
    content: "\E248";
}

.glyphicon-object-align-right:before {
    content: "\E249";
}

.glyphicon-triangle-right:before {
    content: "\E250";
}

.glyphicon-triangle-left:before {
    content: "\E251";
}

.glyphicon-triangle-bottom:before {
    content: "\E252";
}

.glyphicon-triangle-top:before {
    content: "\E253";
}

.glyphicon-console:before {
    content: "\E254";
}

.glyphicon-superscript:before {
    content: "\E255";
}

.glyphicon-subscript:before {
    content: "\E256";
}

.glyphicon-menu-left:before {
    content: "\E257";
}

.glyphicon-menu-right:before {
    content: "\E258";
}

.glyphicon-menu-down:before {
    content: "\E259";
}

.glyphicon-menu-up:before {
    content: "\E260";
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.428571429;
    color: #333333;
    background-color: #fff;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a {
    color: #337ab7;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #23527c;
    text-decoration: underline;
}

a:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 6px;
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.img-circle {
    border-radius: 50%;
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

[role="button"] {
    cursor: pointer;
}

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: #777777;
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

h1 small,
h1 .small,
.h1 small,
.h1 .small,
h2 small,
h2 .small,
.h2 small,
.h2 .small,
h3 small,
h3 .small,
.h3 small,
.h3 .small {
    font-size: 65%;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-top: 10px;
    margin-bottom: 10px;
}

h4 small,
h4 .small,
.h4 small,
.h4 .small,
h5 small,
h5 .small,
.h5 small,
.h5 .small,
h6 small,
h6 .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;
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px;
    }
}

small,
.small {
    font-size: 85%;
}

mark,
.mark {
    padding: 0.2em;
    background-color: #fcf8e3;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
}

.text-nowrap {
    white-space: nowrap;
}

.text-lowercase {
    text-transform: lowercase;
}

.text-uppercase,
.initialism {
    text-transform: uppercase;
}

.text-capitalize {
    text-transform: capitalize;
}

.text-muted {
    color: #777777;
}

.text-primary {
    color: #337ab7;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #286090;
}

.text-success {
    color: #3c763d;
}

a.text-success:hover,
a.text-success:focus {
    color: #2b542c;
}

.text-info {
    color: #31708f;
}

a.text-info:hover,
a.text-info:focus {
    color: #245269;
}

.text-warning {
    color: #8a6d3b;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #66512c;
}

.text-danger {
    color: #a94442;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #843534;
}

.bg-primary {
    color: #fff;
}

.bg-primary {
    background-color: #337ab7;
}

a.bg-primary:hover,
a.bg-primary:focus {
    background-color: #286090;
}

.bg-success {
    background-color: #dff0d8;
}

a.bg-success:hover,
a.bg-success:focus {
    background-color: #c1e2b3;
}

.bg-info {
    background-color: #d9edf7;
}

a.bg-info:hover,
a.bg-info:focus {
    background-color: #afd9ee;
}

.bg-warning {
    background-color: #fcf8e3;
}

a.bg-warning:hover,
a.bg-warning:focus {
    background-color: #f7ecb5;
}

.bg-danger {
    background-color: #f2dede;
}

a.bg-danger:hover,
a.bg-danger:focus {
    background-color: #e4b9b9;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eeeeee;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
}

ul ul,
ul ol,
ol ul,
ol ol {
    margin-bottom: 0;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px;
}

.list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
}

dl {
    margin-top: 0;
    margin-bottom: 20px;
}

dt,
dd {
    line-height: 1.428571429;
}

dt {
    font-weight: 700;
}

dd {
    margin-left: 0;
}

.dl-horizontal dd:before,
.dl-horizontal dd:after {
    display: table;
    content: " ";
}

.dl-horizontal dd:after {
    clear: both;
}

@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;
    }
}

abbr[title],
abbr[data-original-title] {
    cursor: help;
}

.initialism {
    font-size: 90%;
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eeeeee;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
    margin-bottom: 0;
}

blockquote footer,
blockquote small,
blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.428571429;
    color: #777777;
}

blockquote footer:before,
blockquote small:before,
blockquote .small:before {
    content: "\2014\A0";
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    text-align: right;
    border-right: 5px solid #eeeeee;
    border-left: 0;
}

.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
    content: "";
}

.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
    content: "\A0\2014";
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.428571429;
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px;
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    box-shadow: none;
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.428571429;
    color: #333333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll;
}

.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

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

.container:after {
    clear: both;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}

.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.container-fluid:before,
.container-fluid:after {
    display: table;
    content: " ";
}

.container-fluid:after {
    clear: both;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

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

.row:after {
    clear: both;
}

.row-no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row-no-gutters [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 768px) {
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-1 {
        width: 8.3333333333%;
    }

    .col-sm-2 {
        width: 16.6666666667%;
    }

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

    .col-sm-4 {
        width: 33.3333333333%;
    }

    .col-sm-5 {
        width: 41.6666666667%;
    }

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

    .col-sm-7 {
        width: 58.3333333333%;
    }

    .col-sm-8 {
        width: 66.6666666667%;
    }

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

    .col-sm-10 {
        width: 83.3333333333%;
    }

    .col-sm-11 {
        width: 91.6666666667%;
    }

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

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

    .col-sm-pull-1 {
        right: 8.3333333333%;
    }

    .col-sm-pull-2 {
        right: 16.6666666667%;
    }

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

    .col-sm-pull-4 {
        right: 33.3333333333%;
    }

    .col-sm-pull-5 {
        right: 41.6666666667%;
    }

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

    .col-sm-pull-7 {
        right: 58.3333333333%;
    }

    .col-sm-pull-8 {
        right: 66.6666666667%;
    }

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

    .col-sm-pull-10 {
        right: 83.3333333333%;
    }

    .col-sm-pull-11 {
        right: 91.6666666667%;
    }

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

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

    .col-sm-push-1 {
        left: 8.3333333333%;
    }

    .col-sm-push-2 {
        left: 16.6666666667%;
    }

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

    .col-sm-push-4 {
        left: 33.3333333333%;
    }

    .col-sm-push-5 {
        left: 41.6666666667%;
    }

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

    .col-sm-push-7 {
        left: 58.3333333333%;
    }

    .col-sm-push-8 {
        left: 66.6666666667%;
    }

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

    .col-sm-push-10 {
        left: 83.3333333333%;
    }

    .col-sm-push-11 {
        left: 91.6666666667%;
    }

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

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

    .col-sm-offset-1 {
        margin-left: 8.3333333333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.6666666667%;
    }

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

    .col-sm-offset-4 {
        margin-left: 33.3333333333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.6666666667%;
    }

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

    .col-sm-offset-7 {
        margin-left: 58.3333333333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.6666666667%;
    }

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

    .col-sm-offset-10 {
        margin-left: 83.3333333333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.6666666667%;
    }

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

@media (min-width: 992px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

    .col-md-1 {
        width: 8.3333333333%;
    }

    .col-md-2 {
        width: 16.6666666667%;
    }

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

    .col-md-4 {
        width: 33.3333333333%;
    }

    .col-md-5 {
        width: 41.6666666667%;
    }

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

    .col-md-7 {
        width: 58.3333333333%;
    }

    .col-md-8 {
        width: 66.6666666667%;
    }

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

    .col-md-10 {
        width: 83.3333333333%;
    }

    .col-md-11 {
        width: 91.6666666667%;
    }

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

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

    .col-md-pull-1 {
        right: 8.3333333333%;
    }

    .col-md-pull-2 {
        right: 16.6666666667%;
    }

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

    .col-md-pull-4 {
        right: 33.3333333333%;
    }

    .col-md-pull-5 {
        right: 41.6666666667%;
    }

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

    .col-md-pull-7 {
        right: 58.3333333333%;
    }

    .col-md-pull-8 {
        right: 66.6666666667%;
    }

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

    .col-md-pull-10 {
        right: 83.3333333333%;
    }

    .col-md-pull-11 {
        right: 91.6666666667%;
    }

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

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

    .col-md-push-1 {
        left: 8.3333333333%;
    }

    .col-md-push-2 {
        left: 16.6666666667%;
    }

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

    .col-md-push-4 {
        left: 33.3333333333%;
    }

    .col-md-push-5 {
        left: 41.6666666667%;
    }

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

    .col-md-push-7 {
        left: 58.3333333333%;
    }

    .col-md-push-8 {
        left: 66.6666666667%;
    }

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

    .col-md-push-10 {
        left: 83.3333333333%;
    }

    .col-md-push-11 {
        left: 91.6666666667%;
    }

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

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

    .col-md-offset-1 {
        margin-left: 8.3333333333%;
    }

    .col-md-offset-2 {
        margin-left: 16.6666666667%;
    }

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

    .col-md-offset-4 {
        margin-left: 33.3333333333%;
    }

    .col-md-offset-5 {
        margin-left: 41.6666666667%;
    }

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

    .col-md-offset-7 {
        margin-left: 58.3333333333%;
    }

    .col-md-offset-8 {
        margin-left: 66.6666666667%;
    }

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

    .col-md-offset-10 {
        margin-left: 83.3333333333%;
    }

    .col-md-offset-11 {
        margin-left: 91.6666666667%;
    }

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

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

    .col-lg-1 {
        width: 8.3333333333%;
    }

    .col-lg-2 {
        width: 16.6666666667%;
    }

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

    .col-lg-4 {
        width: 33.3333333333%;
    }

    .col-lg-5 {
        width: 41.6666666667%;
    }

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

    .col-lg-7 {
        width: 58.3333333333%;
    }

    .col-lg-8 {
        width: 66.6666666667%;
    }

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

    .col-lg-10 {
        width: 83.3333333333%;
    }

    .col-lg-11 {
        width: 91.6666666667%;
    }

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

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

    .col-lg-pull-1 {
        right: 8.3333333333%;
    }

    .col-lg-pull-2 {
        right: 16.6666666667%;
    }

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

    .col-lg-pull-4 {
        right: 33.3333333333%;
    }

    .col-lg-pull-5 {
        right: 41.6666666667%;
    }

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

    .col-lg-pull-7 {
        right: 58.3333333333%;
    }

    .col-lg-pull-8 {
        right: 66.6666666667%;
    }

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

    .col-lg-pull-10 {
        right: 83.3333333333%;
    }

    .col-lg-pull-11 {
        right: 91.6666666667%;
    }

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

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

    .col-lg-push-1 {
        left: 8.3333333333%;
    }

    .col-lg-push-2 {
        left: 16.6666666667%;
    }

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

    .col-lg-push-4 {
        left: 33.3333333333%;
    }

    .col-lg-push-5 {
        left: 41.6666666667%;
    }

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

    .col-lg-push-7 {
        left: 58.3333333333%;
    }

    .col-lg-push-8 {
        left: 66.6666666667%;
    }

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

    .col-lg-push-10 {
        left: 83.3333333333%;
    }

    .col-lg-push-11 {
        left: 91.6666666667%;
    }

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

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

    .col-lg-offset-1 {
        margin-left: 8.3333333333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.6666666667%;
    }

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

    .col-lg-offset-4 {
        margin-left: 33.3333333333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.6666666667%;
    }

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

    .col-lg-offset-7 {
        margin-left: 58.3333333333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.6666666667%;
    }

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

    .col-lg-offset-10 {
        margin-left: 83.3333333333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.6666666667%;
    }

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

table {
    background-color: transparent;
}

table col[class*="col-"] {
    position: static;
    display: table-column;
    float: none;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    display: table-cell;
    float: none;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777777;
    text-align: left;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table > thead > tr > th,
.table > thead > tr > td,
.table > tbody > tr > th,
.table > tbody > tr > td,
.table > tfoot > tr > th,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.428571429;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd;
}

.table > caption + thead > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > th,
.table > thead:first-child > tr:first-child > td {
    border-top: 0;
}

.table > tbody + tbody {
    border-top: 2px solid #ddd;
}

.table .table {
    background-color: #fff;
}

.table-condensed > thead > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > th,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > th,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > tfoot > tr > td {
    border: 1px solid #ddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

.table > thead > tr > td.active,
.table > thead > tr > th.active,
.table > thead > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr > td.active,
.table > tbody > tr > th.active,
.table > tbody > tr.active > td,
.table > tbody > tr.active > th,
.table > tfoot > tr > td.active,
.table > tfoot > tr > th.active,
.table > tfoot > tr.active > td,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > thead > tr > th.success,
.table > thead > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr > td.success,
.table > tbody > tr > th.success,
.table > tbody > tr.success > td,
.table > tbody > tr.success > th,
.table > tfoot > tr > td.success,
.table > tfoot > tr > th.success,
.table > tfoot > tr.success > td,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > thead > tr > th.info,
.table > thead > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr > td.info,
.table > tbody > tr > th.info,
.table > tbody > tr.info > td,
.table > tbody > tr.info > th,
.table > tfoot > tr > td.info,
.table > tfoot > tr > th.info,
.table > tfoot > tr.info > td,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > thead > tr > th.warning,
.table > thead > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr > td.warning,
.table > tbody > tr > th.warning,
.table > tbody > tr.warning > td,
.table > tbody > tr.warning > th,
.table > tfoot > tr > td.warning,
.table > tfoot > tr > th.warning,
.table > tfoot > tr.warning > td,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > thead > tr > th.danger,
.table > thead > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr > td.danger,
.table > tbody > tr > th.danger,
.table > tbody > tr.danger > td,
.table > tbody > tr.danger > th,
.table > tfoot > tr > td.danger,
.table > tfoot > tr > th.danger,
.table > tfoot > tr.danger > td,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

.table-responsive {
    min-height: 0.01%;
    overflow-x: auto;
}

@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 > thead > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }

    .table-responsive > .table-bordered {
        border: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333333;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

input[type="search"] {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal;
}

input[type="radio"][disabled],
input[type="radio"].disabled,
fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled,
fieldset[disabled] input[type="checkbox"] {
    cursor: not-allowed;
}

input[type="file"] {
    display: block;
}

input[type="range"] {
    display: block;
    width: 100%;
}

select[multiple],
select[size] {
    height: auto;
}

input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075),
        0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #999;
}

.form-control::-webkit-input-placeholder {
    color: #999;
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #eeeeee;
    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[type="date"].input-sm,
    .input-group-sm > .input-group-btn > input[type="date"].btn,
    .input-group-sm input[type="date"],
    input[type="time"].input-sm,
    .input-group-sm > .input-group-btn > input[type="time"].btn,
    .input-group-sm input[type="time"],
    input[type="datetime-local"].input-sm,
    .input-group-sm > .input-group-btn > input[type="datetime-local"].btn,
    .input-group-sm input[type="datetime-local"],
    input[type="month"].input-sm,
    .input-group-sm > .input-group-btn > input[type="month"].btn,
    .input-group-sm input[type="month"] {
        line-height: 30px;
    }

    input[type="date"].input-lg,
    .input-group-lg > .input-group-btn > input[type="date"].btn,
    .input-group-lg input[type="date"],
    input[type="time"].input-lg,
    .input-group-lg > .input-group-btn > input[type="time"].btn,
    .input-group-lg input[type="time"],
    input[type="datetime-local"].input-lg,
    .input-group-lg > .input-group-btn > input[type="datetime-local"].btn,
    .input-group-lg input[type="datetime-local"],
    input[type="month"].input-lg,
    .input-group-lg > .input-group-btn > input[type="month"].btn,
    .input-group-lg input[type="month"] {
        line-height: 46px;
    }
}

.form-group {
    margin-bottom: 15px;
}

.radio,
.checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.radio.disabled label,
fieldset[disabled] .radio label,
.checkbox.disabled label,
fieldset[disabled] .checkbox label {
    cursor: not-allowed;
}

.radio label,
.checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
    margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer;
}

.radio-inline.disabled,
fieldset[disabled] .radio-inline,
.checkbox-inline.disabled,
fieldset[disabled] .checkbox-inline {
    cursor: not-allowed;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px;
}

.form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
}

.form-control-static.input-lg,
.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,
.form-control-static.input-sm,
.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-right: 0;
    padding-left: 0;
}

.input-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

select.input-sm,
.input-group-sm > select.form-control,
.input-group-sm > select.input-group-addon,
.input-group-sm > .input-group-btn > select.btn {
    height: 30px;
    line-height: 30px;
}

textarea.input-sm,
.input-group-sm > textarea.form-control,
.input-group-sm > textarea.input-group-addon,
.input-group-sm > .input-group-btn > textarea.btn,
select[multiple].input-sm,
.input-group-sm > select[multiple].form-control,
.input-group-sm > select[multiple].input-group-addon,
.input-group-sm > .input-group-btn > select[multiple].btn {
    height: auto;
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px;
}

.form-group-sm textarea.form-control,
.form-group-sm select[multiple].form-control {
    height: auto;
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.input-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

select.input-lg,
.input-group-lg > select.form-control,
.input-group-lg > select.input-group-addon,
.input-group-lg > .input-group-btn > select.btn {
    height: 46px;
    line-height: 46px;
}

textarea.input-lg,
.input-group-lg > textarea.form-control,
.input-group-lg > textarea.input-group-addon,
.input-group-lg > .input-group-btn > textarea.btn,
select[multiple].input-lg,
.input-group-lg > select[multiple].form-control,
.input-group-lg > select[multiple].input-group-addon,
.input-group-lg > .input-group-btn > select[multiple].btn {
    height: auto;
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px;
}

.form-group-lg textarea.form-control,
.form-group-lg select[multiple].form-control {
    height: auto;
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

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

.input-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-group-lg + .form-control-feedback,
.form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px;
}

.input-sm + .form-control-feedback,
.input-group-sm > .form-control + .form-control-feedback,
.input-group-sm > .input-group-addon + .form-control-feedback,
.input-group-sm > .input-group-btn > .btn + .form-control-feedback,
.input-group-sm + .form-control-feedback,
.form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px;
}

.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline,
.has-success.radio label,
.has-success.checkbox label,
.has-success.radio-inline label,
.has-success.checkbox-inline label {
    color: #3c763d;
}

.has-success .form-control {
    border-color: #3c763d;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-success .form-control:focus {
    border-color: #2b542c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}

.has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d;
}

.has-success .form-control-feedback {
    color: #3c763d;
}

.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline,
.has-warning.radio label,
.has-warning.checkbox label,
.has-warning.radio-inline label,
.has-warning.checkbox-inline label {
    color: #8a6d3b;
}

.has-warning .form-control {
    border-color: #8a6d3b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-warning .form-control:focus {
    border-color: #66512c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b;
}

.has-warning .form-control-feedback {
    color: #8a6d3b;
}

.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline,
.has-error.radio label,
.has-error.checkbox label,
.has-error.radio-inline label,
.has-error.checkbox-inline label {
    color: #a94442;
}

.has-error .form-control {
    border-color: #a94442;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}

.has-error .form-control:focus {
    border-color: #843534;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}

.has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442;
}

.has-error .form-control-feedback {
    color: #a94442;
}

.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-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .form-inline .form-control-static {
        display: inline-block;
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle;
    }

    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn,
    .form-inline .input-group .form-control {
        width: auto;
    }

    .form-inline .input-group > .form-control {
        width: 100%;
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio,
    .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .form-inline .radio label,
    .form-inline .checkbox label {
        padding-left: 0;
    }

    .form-inline .radio input[type="radio"],
    .form-inline .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0;
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0;
    }
}

.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0;
}

.form-horizontal .radio,
.form-horizontal .checkbox {
    min-height: 27px;
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px;
}

.form-horizontal .form-group:before,
.form-horizontal .form-group:after {
    display: table;
    content: " ";
}

.form-horizontal .form-group:after {
    clear: both;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right;
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px;
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px;
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.btn:focus,
.btn.focus,
.btn:active:focus,
.btn:active.focus,
.btn.active:focus,
.btn.active.focus {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover,
.btn:focus,
.btn.focus {
    color: #333;
    text-decoration: none;
}

.btn:active,
.btn.active {
    background-image: none;
    outline: 0;
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    filter: alpha(opacity=65);
    opacity: 0.65;
    box-shadow: none;
}

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

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.btn-default:focus,
.btn-default.focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c;
}

.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open > .btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    background-image: none;
    border-color: #adadad;
}

.btn-default:active:hover,
.btn-default:active:focus,
.btn-default:active.focus,
.btn-default.active:hover,
.btn-default.active:focus,
.btn-default.active.focus,
.open > .btn-default.dropdown-toggle:hover,
.open > .btn-default.dropdown-toggle:focus,
.open > .btn-default.dropdown-toggle.focus {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c;
}

.btn-default.disabled:hover,
.btn-default.disabled:focus,
.btn-default.disabled.focus,
.btn-default[disabled]:hover,
.btn-default[disabled]:focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default:hover,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default.focus {
    background-color: #fff;
    border-color: #ccc;
}

.btn-default .badge {
    color: #fff;
    background-color: #333;
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
}

.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}

.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

.btn-primary:active,
.btn-primary.active,
.open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    background-image: none;
    border-color: #204d74;
}

.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus,
.open > .btn-primary.dropdown-toggle:hover,
.open > .btn-primary.dropdown-toggle:focus,
.open > .btn-primary.dropdown-toggle.focus {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40;
}

.btn-primary.disabled:hover,
.btn-primary.disabled:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled]:hover,
.btn-primary[disabled]:focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary:hover,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary.focus {
    background-color: #337ab7;
    border-color: #2e6da4;
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff;
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success:focus,
.btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625;
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439;
}

.btn-success:active,
.btn-success.active,
.open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    background-image: none;
    border-color: #398439;
}

.btn-success:active:hover,
.btn-success:active:focus,
.btn-success:active.focus,
.btn-success.active:hover,
.btn-success.active:focus,
.btn-success.active.focus,
.open > .btn-success.dropdown-toggle:hover,
.open > .btn-success.dropdown-toggle:focus,
.open > .btn-success.dropdown-toggle.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625;
}

.btn-success.disabled:hover,
.btn-success.disabled:focus,
.btn-success.disabled.focus,
.btn-success[disabled]:hover,
.btn-success[disabled]:focus,
.btn-success[disabled].focus,
fieldset[disabled] .btn-success:hover,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success.focus {
    background-color: #5cb85c;
    border-color: #4cae4c;
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff;
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info:focus,
.btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85;
}

.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}

.btn-info:active,
.btn-info.active,
.open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    background-image: none;
    border-color: #269abc;
}

.btn-info:active:hover,
.btn-info:active:focus,
.btn-info:active.focus,
.btn-info.active:hover,
.btn-info.active:focus,
.btn-info.active.focus,
.open > .btn-info.dropdown-toggle:hover,
.open > .btn-info.dropdown-toggle:focus,
.open > .btn-info.dropdown-toggle.focus {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85;
}

.btn-info.disabled:hover,
.btn-info.disabled:focus,
.btn-info.disabled.focus,
.btn-info[disabled]:hover,
.btn-info[disabled]:focus,
.btn-info[disabled].focus,
fieldset[disabled] .btn-info:hover,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info.focus {
    background-color: #5bc0de;
    border-color: #46b8da;
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff;
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning:focus,
.btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d;
}

.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512;
}

.btn-warning:active,
.btn-warning.active,
.open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    background-image: none;
    border-color: #d58512;
}

.btn-warning:active:hover,
.btn-warning:active:focus,
.btn-warning:active.focus,
.btn-warning.active:hover,
.btn-warning.active:focus,
.btn-warning.active.focus,
.open > .btn-warning.dropdown-toggle:hover,
.open > .btn-warning.dropdown-toggle:focus,
.open > .btn-warning.dropdown-toggle.focus {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d;
}

.btn-warning.disabled:hover,
.btn-warning.disabled:focus,
.btn-warning.disabled.focus,
.btn-warning[disabled]:hover,
.btn-warning[disabled]:focus,
.btn-warning[disabled].focus,
fieldset[disabled] .btn-warning:hover,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning.focus {
    background-color: #f0ad4e;
    border-color: #eea236;
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff;
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925;
}

.btn-danger:active,
.btn-danger.active,
.open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    background-image: none;
    border-color: #ac2925;
}

.btn-danger:active:hover,
.btn-danger:active:focus,
.btn-danger:active.focus,
.btn-danger.active:hover,
.btn-danger.active:focus,
.btn-danger.active.focus,
.open > .btn-danger.dropdown-toggle:hover,
.open > .btn-danger.dropdown-toggle:focus,
.open > .btn-danger.dropdown-toggle.focus {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19;
}

.btn-danger.disabled:hover,
.btn-danger.disabled:focus,
.btn-danger.disabled.focus,
.btn-danger[disabled]:hover,
.btn-danger[disabled]:focus,
.btn-danger[disabled].focus,
fieldset[disabled] .btn-danger:hover,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger.focus {
    background-color: #d9534f;
    border-color: #d43f3a;
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff;
}

.btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link.active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    box-shadow: none;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active {
    border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent;
}

.btn-link[disabled]:hover,
.btn-link[disabled]:focus,
fieldset[disabled] .btn-link:hover,
fieldset[disabled] .btn-link:focus {
    color: #777777;
    text-decoration: none;
}

.btn-lg,
.btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px;
}

.btn-sm,
.btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px;
}

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

.btn-block {
    display: block;
    width: 100%;
}

.btn-block + .btn-block {
    margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
    width: 100%;
}

.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}

.fade.in {
    opacity: 1;
}

.collapse {
    display: none;
}

.collapse.in {
    display: block;
}

tr.collapse.in {
    display: table-row;
}

tbody.collapse.in {
    display: table-row-group;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropup,
.dropdown {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

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

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.428571429;
    color: #333333;
    white-space: nowrap;
}

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

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

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

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

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

.open > a {
    outline: 0;
}

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

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

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

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

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

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

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px;
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto;
    }

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

.btn-group,
.btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.btn-group > .btn,
.btn-group-vertical > .btn {
    position: relative;
    float: left;
}

.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
    z-index: 2;
}

.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
    margin-left: -1px;
}

.btn-toolbar {
    margin-left: -5px;
}

.btn-toolbar:before,
.btn-toolbar:after {
    display: table;
    content: " ";
}

.btn-toolbar:after {
    clear: both;
}

.btn-toolbar .btn,
.btn-toolbar .btn-group,
.btn-toolbar .input-group {
    float: left;
}

.btn-toolbar > .btn,
.btn-toolbar > .btn-group,
.btn-toolbar > .input-group {
    margin-left: 5px;
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0;
}

.btn-group > .btn:first-child {
    margin-left: 0;
}

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

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

.btn-group > .btn-group {
    float: left;
}

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

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

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

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

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

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

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

.btn-group.open .dropdown-toggle.btn-link {
    box-shadow: none;
}

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

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

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

.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group,
.btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%;
}

.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
    display: table;
    content: " ";
}

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

.btn-group-vertical > .btn-group > .btn {
    float: none;
}

.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0;
}

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

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

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

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

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
.btn-group-vertical
    > .btn-group:first-child:not(:last-child)
    > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}

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

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
}

.btn-group-justified > .btn,
.btn-group-justified > .btn-group {
    display: table-cell;
    float: none;
    width: 1%;
}

.btn-group-justified > .btn-group .btn {
    width: 100%;
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto;
}

[data-toggle="buttons"] > .btn input[type="radio"],
[data-toggle="buttons"] > .btn input[type="checkbox"],
[data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
[data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none;
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate;
}

.input-group[class*="col-"] {
    float: none;
    padding-right: 0;
    padding-left: 0;
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.input-group .form-control:focus {
    z-index: 3;
}

.input-group-addon,
.input-group-btn,
.input-group .form-control {
    display: table-cell;
}

.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0;
}

.input-group-addon,
.input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555555;
    text-align: center;
    background-color: #eeeeee;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.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: 3px;
}

.input-group-addon.input-lg,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px;
}

.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
    margin-top: 0;
}

.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group-addon:first-child {
    border-right: 0;
}

.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group-addon:last-child {
    border-left: 0;
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap;
}

.input-group-btn > .btn {
    position: relative;
}

.input-group-btn > .btn + .btn {
    margin-left: -1px;
}

.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
    z-index: 2;
}

.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
    margin-right: -1px;
}

.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px;
}

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

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

.nav:after {
    clear: both;
}

.nav > li {
    position: relative;
    display: block;
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}

.nav > li.disabled > a {
    color: #777777;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
    color: #777777;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    background-color: #eeeeee;
    border-color: #337ab7;
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5;
}

.nav > li > a > img {
    max-width: none;
}

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

.nav-tabs > li {
    float: left;
    margin-bottom: -1px;
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.428571429;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
}

.nav-tabs > li > a:hover {
    border-color: #eeeeee #eeeeee #ddd;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
}

.nav-pills > li {
    float: left;
}

.nav-pills > li > a {
    border-radius: 4px;
}

.nav-pills > li + li {
    margin-left: 2px;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #337ab7;
}

.nav-stacked > li {
    float: none;
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0;
}

.nav-justified,
.nav-tabs.nav-justified {
    width: 100%;
}

.nav-justified > li,
.nav-tabs.nav-justified > li {
    float: none;
}

.nav-justified > li > a,
.nav-tabs.nav-justified > li > a {
    margin-bottom: 5px;
    text-align: center;
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto;
}

@media (min-width: 768px) {
    .nav-justified > li,
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%;
    }

    .nav-justified > li > a,
    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0;
    }
}

.nav-tabs-justified,
.nav-tabs.nav-justified {
    border-bottom: 0;
}

.nav-tabs-justified > li > a,
.nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px;
}

.nav-tabs-justified > .active > a,
.nav-tabs.nav-justified > .active > a,
.nav-tabs-justified > .active > a:hover,
.nav-tabs-justified > .active > a:focus {
    border: 1px solid #ddd;
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a,
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0;
    }

    .nav-tabs-justified > .active > a,
    .nav-tabs.nav-justified > .active > a,
    .nav-tabs-justified > .active > a:hover,
    .nav-tabs-justified > .active > a:focus {
        border-bottom-color: #fff;
    }
}

.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
}

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

.navbar:after {
    clear: both;
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px;
    }
}

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

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

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

.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}

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

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

.navbar-collapse.in {
    overflow-y: auto;
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none;
    }

    .navbar-collapse.collapse {
        display: block !important;
        height: auto !important;
        padding-bottom: 0;
        overflow: visible !important;
    }

    .navbar-collapse.in {
        overflow-y: visible;
    }

    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
        padding-right: 0;
        padding-left: 0;
    }
}

.navbar-fixed-top,
.navbar-fixed-bottom {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-fixed-top .navbar-collapse,
.navbar-fixed-bottom .navbar-collapse {
    max-height: 340px;
}

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

@media (min-width: 768px) {
    .navbar-fixed-top,
    .navbar-fixed-bottom {
        border-radius: 0;
    }
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px;
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0;
}

.container > .navbar-header,
.container > .navbar-collapse,
.container-fluid > .navbar-header,
.container-fluid > .navbar-collapse {
    margin-right: -15px;
    margin-left: -15px;
}

@media (min-width: 768px) {
    .container > .navbar-header,
    .container > .navbar-collapse,
    .container-fluid > .navbar-header,
    .container-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0;
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px;
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0;
    }
}

.navbar-brand {
    float: left;
    height: 50px;
    padding: 15px 15px;
    font-size: 18px;
    line-height: 20px;
}

.navbar-brand:hover,
.navbar-brand:focus {
    text-decoration: none;
}

.navbar-brand > img {
    display: block;
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand,
    .navbar > .container-fluid .navbar-brand {
        margin-left: -15px;
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-right: 15px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}

.navbar-toggle:focus {
    outline: 0;
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-nav {
    margin: 7.5px -15px;
}

.navbar-nav > li > a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }

    .navbar-nav .open .dropdown-menu > li > a,
    .navbar-nav .open .dropdown-menu .dropdown-header {
        padding: 5px 15px 5px 25px;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
    }

    .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-nav .open .dropdown-menu > li > a:focus {
        background-image: none;
    }
}

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

    .navbar-nav > li {
        float: left;
    }

    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.navbar-form {
    padding: 10px 15px;
    margin-right: -15px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.1);
    margin-top: 8px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle;
    }

    .navbar-form .form-control-static {
        display: inline-block;
    }

    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle;
    }

    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn,
    .navbar-form .input-group .form-control {
        width: auto;
    }

    .navbar-form .input-group > .form-control {
        width: 100%;
    }

    .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio,
    .navbar-form .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle;
    }

    .navbar-form .radio label,
    .navbar-form .checkbox label {
        padding-left: 0;
    }

    .navbar-form .radio input[type="radio"],
    .navbar-form .checkbox input[type="checkbox"] {
        position: relative;
        margin-left: 0;
    }

    .navbar-form .has-feedback .form-control-feedback {
        top: 0;
    }
}

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px;
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        box-shadow: none;
    }
}

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

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

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px;
}

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

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

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px;
    }
}

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

    .navbar-right {
        float: right !important;
        margin-right: -15px;
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0;
    }
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7;
}

.navbar-default .navbar-brand {
    color: #777;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #5e5e5e;
    background-color: transparent;
}

.navbar-default .navbar-text {
    color: #777;
}

.navbar-default .navbar-nav > li > a {
    color: #777;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
    color: #333;
    background-color: transparent;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #555;
    background-color: #e7e7e7;
}

.navbar-default .navbar-nav > .disabled > a,
.navbar-default .navbar-nav > .disabled > a:hover,
.navbar-default .navbar-nav > .disabled > a:focus {
    color: #ccc;
    background-color: transparent;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus {
    color: #555;
    background-color: #e7e7e7;
}

@media (max-width: 767px) {
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: #777;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #333;
        background-color: transparent;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #555;
        background-color: #e7e7e7;
    }

    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #ccc;
        background-color: transparent;
    }
}

.navbar-default .navbar-toggle {
    border-color: #ddd;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #ddd;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7;
}

.navbar-default .navbar-link {
    color: #777;
}

.navbar-default .navbar-link:hover {
    color: #333;
}

.navbar-default .btn-link {
    color: #777;
}

.navbar-default .btn-link:hover,
.navbar-default .btn-link:focus {
    color: #333;
}

.navbar-default .btn-link[disabled]:hover,
.navbar-default .btn-link[disabled]:focus,
fieldset[disabled] .navbar-default .btn-link:hover,
fieldset[disabled] .navbar-default .btn-link:focus {
    color: #ccc;
}

.navbar-inverse {
    background-color: #222;
    border-color: #090909;
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d;
}

.navbar-inverse .navbar-brand:hover,
.navbar-inverse .navbar-brand:focus {
    color: #fff;
    background-color: transparent;
}

.navbar-inverse .navbar-text {
    color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a {
    color: #9d9d9d;
}

.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
    color: #fff;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #fff;
    background-color: #090909;
}

.navbar-inverse .navbar-nav > .disabled > a,
.navbar-inverse .navbar-nav > .disabled > a:hover,
.navbar-inverse .navbar-nav > .disabled > a:focus {
    color: #444;
    background-color: transparent;
}

.navbar-inverse .navbar-nav > .open > a,
.navbar-inverse .navbar-nav > .open > a:hover,
.navbar-inverse .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: #090909;
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #090909;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
        color: #9d9d9d;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
        color: #fff;
        background-color: transparent;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
        color: #fff;
        background-color: #090909;
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
    .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
        color: #444;
        background-color: transparent;
    }
}

.navbar-inverse .navbar-toggle {
    border-color: #333;
}

.navbar-inverse .navbar-toggle:hover,
.navbar-inverse .navbar-toggle:focus {
    background-color: #333;
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010;
}

.navbar-inverse .navbar-link {
    color: #9d9d9d;
}

.navbar-inverse .navbar-link:hover {
    color: #fff;
}

.navbar-inverse .btn-link {
    color: #9d9d9d;
}

.navbar-inverse .btn-link:hover,
.navbar-inverse .btn-link:focus {
    color: #fff;
}

.navbar-inverse .btn-link[disabled]:hover,
.navbar-inverse .btn-link[disabled]:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus {
    color: #444;
}

.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.breadcrumb > li {
    display: inline-block;
}

.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\A0";
}

.breadcrumb > .active {
    color: #777777;
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px;
}

.pagination > li {
    display: inline;
}

.pagination > li > a,
.pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.428571429;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
}

.pagination > li > a:hover,
.pagination > li > a:focus,
.pagination > li > span:hover,
.pagination > li > span:focus {
    z-index: 2;
    color: #23527c;
    background-color: #eeeeee;
    border-color: #ddd;
}

.pagination > li:first-child > a,
.pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.pagination > li:last-child > a,
.pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.pagination > .active > a,
.pagination > .active > a:hover,
.pagination > .active > a:focus,
.pagination > .active > span,
.pagination > .active > span:hover,
.pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
    color: #777777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd;
}

.pagination-lg > li > a,
.pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}

.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.pagination-sm > li > a,
.pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}

.pagination-sm > li:first-child > a,
.pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.pagination-sm > li:last-child > a,
.pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none;
}

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

.pager:after {
    clear: both;
}

.pager li {
    display: inline;
}

.pager li > a,
.pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
}

.pager li > a:hover,
.pager li > a:focus {
    text-decoration: none;
    background-color: #eeeeee;
}

.pager .next > a,
.pager .next > span {
    float: right;
}

.pager .previous > a,
.pager .previous > span {
    float: left;
}

.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
    color: #777777;
    cursor: not-allowed;
    background-color: #fff;
}

.label {
    display: inline;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25em;
}

.label:empty {
    display: none;
}

.btn .label {
    position: relative;
    top: -1px;
}

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

.label-default {
    background-color: #777777;
}

.label-default[href]:hover,
.label-default[href]:focus {
    background-color: #5e5e5e;
}

.label-primary {
    background-color: #337ab7;
}

.label-primary[href]:hover,
.label-primary[href]:focus {
    background-color: #286090;
}

.label-success {
    background-color: #5cb85c;
}

.label-success[href]:hover,
.label-success[href]:focus {
    background-color: #449d44;
}

.label-info {
    background-color: #5bc0de;
}

.label-info[href]:hover,
.label-info[href]:focus {
    background-color: #31b0d5;
}

.label-warning {
    background-color: #f0ad4e;
}

.label-warning[href]:hover,
.label-warning[href]:focus {
    background-color: #ec971f;
}

.label-danger {
    background-color: #d9534f;
}

.label-danger[href]:hover,
.label-danger[href]:focus {
    background-color: #c9302c;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #777777;
    border-radius: 10px;
}

.badge:empty {
    display: none;
}

.btn .badge {
    position: relative;
    top: -1px;
}

.btn-xs .badge,
.btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px;
}

.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
    color: #337ab7;
    background-color: #fff;
}

.list-group-item > .badge {
    float: right;
}

.list-group-item > .badge + .badge {
    margin-right: 5px;
}

.nav-pills > li > a > .badge {
    margin-left: 3px;
}

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

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eeeeee;
}

.jumbotron h1,
.jumbotron .h1 {
    color: inherit;
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200;
}

.jumbotron > hr {
    border-top-color: #d5d5d5;
}

.container .jumbotron,
.container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px;
}

.jumbotron .container {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px;
    }

    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px;
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.428571429;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border 0.2s ease-in-out;
}

.thumbnail > img,
.thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
}

.thumbnail .caption {
    padding: 9px;
    color: #333333;
}

a.thumbnail:hover,
a.thumbnail:focus,
a.thumbnail.active {
    border-color: #337ab7;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert h4 {
    margin-top: 0;
    color: inherit;
}

.alert .alert-link {
    font-weight: bold;
}

.alert > p,
.alert > ul {
    margin-bottom: 0;
}

.alert > p + p {
    margin-top: 5px;
}

.alert-dismissable,
.alert-dismissible {
    padding-right: 35px;
}

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

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-success hr {
    border-top-color: #c9e2b3;
}

.alert-success .alert-link {
    color: #2b542c;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.alert-info hr {
    border-top-color: #a6e1ec;
}

.alert-info .alert-link {
    color: #245269;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-warning hr {
    border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
    color: #66512c;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-danger hr {
    border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
    color: #843534;
}

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

    to {
        background-position: 0 0;
    }
}

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

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

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

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

.progress-bar-success {
    background-color: #5cb85c;
}

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

.progress-bar-info {
    background-color: #5bc0de;
}

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

.progress-bar-warning {
    background-color: #f0ad4e;
}

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

.progress-bar-danger {
    background-color: #d9534f;
}

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

.media {
    margin-top: 15px;
}

.media:first-child {
    margin-top: 0;
}

.media,
.media-body {
    overflow: hidden;
    zoom: 1;
}

.media-body {
    width: 10000px;
}

.media-object {
    display: block;
}

.media-object.img-thumbnail {
    max-width: none;
}

.media-right,
.media > .pull-right {
    padding-left: 10px;
}

.media-left,
.media > .pull-left {
    padding-right: 10px;
}

.media-left,
.media-right,
.media-body {
    display: table-cell;
    vertical-align: top;
}

.media-middle {
    vertical-align: middle;
}

.media-bottom {
    vertical-align: bottom;
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px;
}

.media-list {
    padding-left: 0;
    list-style: none;
}

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

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}

.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
    color: #777777;
    cursor: not-allowed;
    background-color: #eeeeee;
}

.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
    color: inherit;
}

.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
    color: #777777;
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

.list-group-item.active .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit;
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #c7ddef;
}

a.list-group-item,
button.list-group-item {
    color: #555;
}

a.list-group-item .list-group-item-heading,
button.list-group-item .list-group-item-heading {
    color: #333;
}

a.list-group-item:hover,
a.list-group-item:focus,
button.list-group-item:hover,
button.list-group-item:focus {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5;
}

button.list-group-item {
    width: 100%;
    text-align: left;
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8;
}

a.list-group-item-success,
button.list-group-item-success {
    color: #3c763d;
}

a.list-group-item-success .list-group-item-heading,
button.list-group-item-success .list-group-item-heading {
    color: inherit;
}

a.list-group-item-success:hover,
a.list-group-item-success:focus,
button.list-group-item-success:hover,
button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6;
}

a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus,
button.list-group-item-success.active,
button.list-group-item-success.active:hover,
button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d;
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7;
}

a.list-group-item-info,
button.list-group-item-info {
    color: #31708f;
}

a.list-group-item-info .list-group-item-heading,
button.list-group-item-info .list-group-item-heading {
    color: inherit;
}

a.list-group-item-info:hover,
a.list-group-item-info:focus,
button.list-group-item-info:hover,
button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3;
}

a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus,
button.list-group-item-info.active,
button.list-group-item-info.active:hover,
button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f;
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
}

a.list-group-item-warning,
button.list-group-item-warning {
    color: #8a6d3b;
}

a.list-group-item-warning .list-group-item-heading,
button.list-group-item-warning .list-group-item-heading {
    color: inherit;
}

a.list-group-item-warning:hover,
a.list-group-item-warning:focus,
button.list-group-item-warning:hover,
button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc;
}

a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus,
button.list-group-item-warning.active,
button.list-group-item-warning.active:hover,
button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b;
}

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

a.list-group-item-danger,
button.list-group-item-danger {
    color: #a94442;
}

a.list-group-item-danger .list-group-item-heading,
button.list-group-item-danger .list-group-item-heading {
    color: inherit;
}

a.list-group-item-danger:hover,
a.list-group-item-danger:focus,
button.list-group-item-danger:hover,
button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc;
}

a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus,
button.list-group-item-danger.active,
button.list-group-item-danger.active:hover,
button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442;
}

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

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

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

.panel-body {
    padding: 15px;
}

.panel-body:before,
.panel-body:after {
    display: table;
    content: " ";
}

.panel-body:after {
    clear: both;
}

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

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit;
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
    color: inherit;
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel > .list-group,
.panel > .panel-collapse > .list-group {
    margin-bottom: 0;
}

.panel > .list-group .list-group-item,
.panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0;
}

.panel > .list-group:first-child .list-group-item:first-child,
.panel
    > .panel-collapse
    > .list-group:first-child
    .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel > .list-group:last-child .list-group-item:last-child,
.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel
    > .panel-heading
    + .panel-collapse
    > .list-group
    .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0;
}

.list-group + .panel-footer {
    border-top-width: 0;
}

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

.panel > .table caption,
.panel > .table-responsive > .table caption,
.panel > .panel-collapse > .table caption {
    padding-right: 15px;
    padding-left: 15px;
}

.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > thead:first-child
    > tr:first-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > tbody:first-child
    > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > thead:first-child
    > tr:first-child
    td:first-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > thead:first-child
    > tr:first-child
    th:first-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > tbody:first-child
    > tr:first-child
    td:first-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > tbody:first-child
    > tr:first-child
    th:first-child {
    border-top-left-radius: 3px;
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > thead:first-child
    > tr:first-child
    td:last-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > thead:first-child
    > tr:first-child
    th:last-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > tbody:first-child
    > tr:first-child
    td:last-child,
.panel
    > .table-responsive:first-child
    > .table:first-child
    > tbody:first-child
    > tr:first-child
    th:last-child {
    border-top-right-radius: 3px;
}

.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tbody:last-child
    > tr:last-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tfoot:last-child
    > tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tbody:last-child
    > tr:last-child
    td:first-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tbody:last-child
    > tr:last-child
    th:first-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tfoot:last-child
    > tr:last-child
    td:first-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tfoot:last-child
    > tr:last-child
    th:first-child {
    border-bottom-left-radius: 3px;
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tbody:last-child
    > tr:last-child
    td:last-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tbody:last-child
    > tr:last-child
    th:last-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tfoot:last-child
    > tr:last-child
    td:last-child,
.panel
    > .table-responsive:last-child
    > .table:last-child
    > tfoot:last-child
    > tr:last-child
    th:last-child {
    border-bottom-right-radius: 3px;
}

.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive,
.panel > .table + .panel-body,
.panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd;
}

.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0;
}

.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
    border: 0;
}

.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
}

.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
}

.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0;
}

.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0;
}

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

.panel-group {
    margin-bottom: 20px;
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px;
}

.panel-group .panel + .panel {
    margin-top: 5px;
}

.panel-group .panel-heading {
    border-bottom: 0;
}

.panel-group .panel-heading + .panel-collapse > .panel-body,
.panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #ddd;
}

.panel-group .panel-footer {
    border-top: 0;
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd;
}

.panel-default {
    border-color: #ddd;
}

.panel-default > .panel-heading {
    color: #333333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd;
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333333;
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd;
}

.panel-primary {
    border-color: #337ab7;
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7;
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #337ab7;
}

.panel-primary > .panel-heading .badge {
    color: #337ab7;
    background-color: #fff;
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #337ab7;
}

.panel-success {
    border-color: #d6e9c6;
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6;
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d;
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6;
}

.panel-info {
    border-color: #bce8f1;
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1;
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f;
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1;
}

.panel-warning {
    border-color: #faebcc;
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc;
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b;
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc;
}

.panel-danger {
    border-color: #ebccd1;
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1;
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442;
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1;
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%;
}

.embed-responsive-4by3 {
    padding-bottom: 75%;
}

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

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, 0.15);
}

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

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

.close {
    float: right;
    font-size: 21px;
    font-weight: bold;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: 0.2;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: 0.5;
}

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

.modal-open {
    overflow: hidden;
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

.modal.fade .modal-dialog {
    transform: translate(0, -25%);
    transition: transform 0.3s ease-out;
}

.modal.in .modal-dialog {
    transform: translate(0, 0);
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-content {
    position: relative;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    outline: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0;
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
}

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

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

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

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

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

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5;
}

.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.modal-footer:after {
    clear: both;
}

.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0;
}

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

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto;
    }

    .modal-content {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    }

    .modal-sm {
        width: 300px;
    }
}

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

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

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: 0.9;
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px;
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px;
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

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

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

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

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
}

.popover > .arrow {
    border-width: 11px;
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow:after {
    content: "";
    border-width: 10px;
}

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

.popover.top > .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0;
}

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

.popover.right > .arrow:after {
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0;
}

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

.popover.bottom > .arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff;
}

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

.popover.left > .arrow:after {
    right: 1px;
    bottom: -10px;
    content: " ";
    border-right-width: 0;
    border-left-color: #fff;
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
}

.popover-content {
    padding: 9px 14px;
}

.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner > .item {
    position: relative;
    display: none;
    transition: 0.6s ease-in-out left;
}

.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
    line-height: 1;
}

@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-inner > .item {
        transition: transform 0.6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        perspective: 1000px;
    }

    .carousel-inner > .item.next,
    .carousel-inner > .item.active.right {
        transform: translate3d(100%, 0, 0);
        left: 0;
    }

    .carousel-inner > .item.prev,
    .carousel-inner > .item.active.left {
        transform: translate3d(-100%, 0, 0);
        left: 0;
    }

    .carousel-inner > .item.next.left,
    .carousel-inner > .item.prev.right,
    .carousel-inner > .item.active {
        transform: translate3d(0, 0, 0);
        left: 0;
    }
}

.carousel-inner > .active,
.carousel-inner > .next,
.carousel-inner > .prev {
    display: block;
}

.carousel-inner > .active {
    left: 0;
}

.carousel-inner > .next,
.carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%;
}

.carousel-inner > .next {
    left: 100%;
}

.carousel-inner > .prev {
    left: -100%;
}

.carousel-inner > .next.left,
.carousel-inner > .prev.right {
    left: 0;
}

.carousel-inner > .active.left {
    left: -100%;
}

.carousel-inner > .active.right {
    left: 100%;
}

.carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
    background-color: rgba(0, 0, 0, 0);
    filter: alpha(opacity=50);
    opacity: 0.5;
}

.carousel-control.left {
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.0001) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
    background-repeat: repeat-x;
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.0001) 0%,
        rgba(0, 0, 0, 0.5) 100%
    );
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
    background-repeat: repeat-x;
}

.carousel-control:hover,
.carousel-control:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    filter: alpha(opacity=90);
    opacity: 0.9;
}

.carousel-control .icon-prev,
.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;
}

.carousel-control .icon-prev,
.carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px;
}

.carousel-control .icon-next,
.carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px;
}

.carousel-control .icon-prev,
.carousel-control .icon-next {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1;
}

.carousel-control .icon-prev:before {
    content: "\2039";
}

.carousel-control .icon-next:before {
    content: "\203A";
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px;
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff;
}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.carousel-caption .btn {
    text-shadow: none;
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left,
    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-prev,
    .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px;
    }

    .carousel-control .glyphicon-chevron-left,
    .carousel-control .icon-prev {
        margin-left: -10px;
    }

    .carousel-control .glyphicon-chevron-right,
    .carousel-control .icon-next {
        margin-right: -10px;
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px;
    }

    .carousel-indicators {
        bottom: 20px;
    }
}

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

.clearfix:after {
    clear: both;
}

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

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

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

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

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

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

.visible-xs {
    display: none !important;
}

.visible-sm {
    display: none !important;
}

.visible-md {
    display: none !important;
}

.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table !important;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important;
    }
}

@media (max-width: 767px) {
    .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;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .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;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table !important;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (max-width: 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;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

.visible-print {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table !important;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }
}

.visible-print-block {
    display: none !important;
}

@media print {
    .visible-print-block {
        display: block !important;
    }
}

.visible-print-inline {
    display: none !important;
}

@media print {
    .visible-print-inline {
        display: inline !important;
    }
}

.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important;
    }
}

@media print {
    .hidden-print {
        display: none !important;
    }
}

/*
    Please use the bootstrap default
    variables for the sake of consistency. :)
    - Callum

    (Can be found in node_modules/bootstrap-sass/assets/stylesheets/bootstrap/_variables.scss)

    Bootstrap media query variables:
    $screen-sm-min  768px
    $screen-md-min  992px
    $screen-lg-min  1200px

    Bootstrap also provides these if you need them:
    $screen-xs-max  767px
    $screen-sm-max  991px
    $screen-md-max  1199px
 */

/* NAVBAR */

.kcTitle {
    color: #b6af9f;
    padding-left: 0px !important;
}

.grey .kcTitle {
    color: #ffffff;
    padding-left: 0px !important;
}

@media (max-width: 999px) {
    #desktopNavs {
        display: none;
    }

    #mobileNavs {
        padding: 0;
        margin-bottom: 0px;
    }

    #mobileNavs #mobileNavLogo {
        text-align: right;
    }

    #mobileNavs #mobileNavLogo img {
        max-height: 38px;
    }
}

@media (max-width: 999px) and (max-width: 310px) {
    #mobileNavs #mobileNavLogo img {
        width: 100%;
    }
}

@media (max-width: 999px) {
    #mobileNavs #mobileSlideContainer {
        padding: 0px;
    }
}

@media (max-width: 999px) {
    #mobileNavs #menuButton {
        background-color: #252525;
        color: #fff;
        font-size: 18px;
        padding: 3px 0;
        text-transform: uppercase;
        text-align: center;
    }
}

@media (max-width: 999px) {
    #mobileNavs #menuButton:focus {
        background-color: #252525 !important;
    }
}

@media (max-width: 999px) {
    .navbar .container .toolbar {
        position: relative;
        padding: 0px;
    }
}

@media (max-width: 999px) {
    .custom-breadcrumb {
        margin: 0px;
        overflow-x: scroll;
    }

    .custom-breadcrumb ul {
        white-space: nowrap;
    }
}

@media (max-width: 999px) {
    #topbarContainer {
        background-color: #a83532;
        padding: 10px;
    }
}

@media (max-width: 999px) {
    .subMenuHeader {
        background-color: #a83532;
    }

    .subMenuHeader a {
        color: #fff;
    }
}

@media (max-width: 999px) {
    #menuDropdown {
        line-height: 2em;
        margin-top: 10px;
        margin-bottom: 5px;
        padding: 0px;
    }

    #menuDropdown .col-xs-4 {
        line-height: 1.2em;
        padding: 8px 0 10px 14px;
    }
}

.navbar-brand-medium {
    display: none;
}

@media (min-width: 1000px) and (max-width: 1271px) {
    .navbar-brand {
        display: none;
    }

    .navbar-brand-medium {
        display: block;
        background: url(/images/dgm-logo.png?c920a9ce5b419de07915dce285661a52)
            no-repeat center top 100%;
        height: 99px;
    }

    .navbar-brand-medium:hover {
        background-position: center top;
    }

  .navbar-left {
    padding-top: 0px !important;
    margin-top: 0px !important;
  }

  .navbar-right {
    padding-top: 0.5em !important;
    margin-top: 0px !important;
  }
}

@media (min-width: 1000px) {
    #mobileNavs {
        display: none;
    }
}

#desktopNavs .navbar a {
    font-weight: 500;
}

#desktopNavs .navbar a:focus {
    background-color: transparent;
}

#desktopNavs .navbar #app-navbar-collapse li {
    border-bottom: transparent solid 3px;
}

#desktopNavs .navbar #app-navbar-collapse li:hover {
    border-bottom: #a83532 solid 3px;
}

#desktopNavs .navbar #app-navbar-collapse li a:hover {
    background-color: transparent;
}

#desktopNavs .navbar .active a {
    color: #a83532;
}

#desktopNavs .navbar .navbar-brand {
    background: url(/images/dgm-logo.png?c920a9ce5b419de07915dce285661a52)
        no-repeat right top 100%;
    width: 27%;
    padding: 0px;
    height: 99px;
    margin-top: 13px;
}

#desktopNavs .navbar .navbar-brand:hover {
    background-position: right top;
}

@media (max-width: 1219px) {
    .navbar-left,
    .navbar-right {
        margin-top: 50px;
    }
}

@media (min-width: 1220px) {
    .navbar-left,
    .navbar-right {
        margin-top: 0px;
    }
}

.navbar-right {
    padding-top: 38px;
    padding-right: 0px;
    padding-left: 0px;
}

.navbar-left {
    padding-top: 30px;
    padding-left: 0px;
}

.navbar-left-custom {
    width: 500px;
}

.navbar-right-custom {
    padding-left: 0px;
}

.navbar-nav {
    margin-right: 0;
}

.navbar-nav .large-text {
    width: 100px;
    text-align: center;
}

.navbar-nav .small-text {
    width: 95px;
    text-align: center;
}

.navbar-nav .small-text.music {
  padding-top: 0.5em;
}

.navbar-nav a {
    color: #000000;
    text-transform: uppercase;
    margin: 0 auto;
    width: 100%;
    display: table-cell;
    list-style: none;
    padding: 0;
    font-size: 17px;
    line-height: 15px !important;
    letter-spacing: -0.5px;
}

.navbar .navbar-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    position: relative;
}

.navbar .navbar-container .toolbar {
    position: absolute;
    top: 5px;
}

@media (min-width: 1000px) {
    .navbar .navbar-container .toolbar {
        right: 0;
    }
}

@media (max-width: 999px) {
    .navbar .navbar-container .toolbar {
        left: 10px;
    }
}

.navbar .navbar-container .toolbar li {
    display: inline-block;
    margin: 0 2px;
}

@media (max-height: 991px) and (min-height: 340px) {
    .navbar .navbar-container .toolbar li {
        margin-right: 10px;
    }
}

.navbar .navbar-container .toolbar li a {
    display: block;
    width: 24px;
    height: 24px;
}

.navbar .navbar-container .toolbar .youtube {
    background: url(/images/youtube.png?2ea4d4bf0a122fba8524f3b5de01da0b)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .youtube:hover {
    background-position: top 100% left;
}

.navbar .navbar-container .toolbar .instagram {
    background: url(/images/instagram.png?06938e1e010443576878a822545a4a2f)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .instagram:hover {
    background-position: top 100% left;
}

.navbar .navbar-container .toolbar .facebook {
    background: url(/images/facebook.png?501ba9bc45a944446b35c5f64238477d)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .facebook:hover {
    background-position: top 100% left;
}

.navbar .navbar-container .toolbar .twitter {
    background: url(/images/twitter.png?91b7724002a85e57aa19b55c275fb36f)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .twitter:hover {
    background-position: top 100% left;
}

.navbar .navbar-container .toolbar .login {
    background: url(/images/login.png?8313c69ebad138d7308afe5c0d68ed46)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .login:hover {
    background-position: top 100% left;
}

.navbar .navbar-container .toolbar .basket {
    background: url(/images/basket.png?bbb6d0f70318645cb70b101fc1516e06)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .basket:hover {
    background-position: top 100% left;
}

.navbar .navbar-container .toolbar .profile {
    background: url(/images/profile.png?8a39cabd79492bf88d6dbcd8361a2318)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .profile:hover {
    background-position: top 100% left;
}

.navbar .navbar-container .toolbar .sep {
    margin: 0 2px;
    border-left: 1px solid #252525;
    width: 1px;
    height: 24px;
}

.navbar .navbar-container .toolbar .login-white {
    background: url(/images/login-mobile.png?537feca267e6191a9f2dc34cc673e831)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .profile-white {
    background: url(/images/profile-mobile.png?058cb0d614c23b6d477ef8385510750c)
        no-repeat;
    background-position: top left;
}

.navbar .navbar-container .toolbar .basket-white {
    background: url(/images/basket.png?bbb6d0f70318645cb70b101fc1516e06)
        no-repeat;
    background-position: top left;
}

/* FOOTER */

.footer {
    text-align: center;
}

@media (max-width: 767px) {
    .footer {
        margin-top: 10px;
    }
}

@media (min-width: 768px) {
    .footer {
        margin-top: 20px;
    }
}

@media (min-width: 992px) {
    .footer {
        margin-top: 50px;
    }
}

.footer #email-box form {
    height: 42px;
}

.footer #email-box input {
    height: 100%;
}

.footer #email-box button {
    height: 100%;
    margin-left: -10px;
}

@media (max-width: 400px) {
    .footer #email-box {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer #footer-right {
        padding-left: 30px;
        padding-right: 0px;
    }
}

.footer #footerSubscribeResult {
    display: none;
    margin-top: 10px;
}

.footer #follow-us-link {
    display: none;
    padding-top: 15px;
}

@media (min-width: 992px) {
    .footer #follow-us-link {
        display: inherit;
    }
}

.footer #follow-us-link h2 {
    margin-top: 0;
    text-transform: uppercase;
    color: #a83532;
}

.footer #follow-us-link img {
    padding-top: 5px;
}

.footer #social-links {
    margin-top: 10px;
}

@media (max-width: 450px) {
    .footer #social-links {
        padding: 0 !important;
    }
}

@media (min-width: 992px) {
    .footer #social-links {
        margin-top: 0px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .footer #social-links {
        padding: 0 !important;
    }
}

.footer #social-links li {
    width: 56px;
    height: 56px;
    display: inline-block;
    margin: 0 10px;
}

@media (max-width: 450px) {
    .footer #social-links li {
        margin: 0 !important;
    }
}

.footer #social-links #footer-facebook {
    background: url(/images/social-facebook.png?456f22d1434a91663b6bd65a66a7a28e)
        no-repeat left top/100%;
}

.footer #social-links #footer-twitter {
    background: url(/images/social-twitter.png?c97fef5a1825f78533f19a2463c9f7fe)
        no-repeat left top/100%;
}

.footer #social-links #footer-instagram {
    background: url(/images/social-instagram.png?d3dd08c61e4a5c77fcc1ade0f1f03177)
        no-repeat left top/100%;
}

.footer #social-links #footer-youtube {
    background: url(/images/social-youtube.png?aa7418caeeafaca653f30033ceb613ab)
        no-repeat left top/100%;
}

.footer #social-links #footer-google {
    background: url(/images/social-google.png?9545d58162b3258b50460c6afa355ac3)
        no-repeat left top/100%;
}

.footer #social-links #footer-facebook:hover,
.footer #social-links #footer-twitter:hover,
.footer #social-links #footer-instagram:hover,
.footer #social-links #footer-youtube:hover,
.footer #social-links #footer-google:hover {
    background-position: 0 100%;
}

.footer #quote {
    font-style: italic;
    margin-top: 50px;
}

.footer #quote p {
    margin: 0;
    font-size: 20px;
}

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

.footer #blackSection {
    background-color: #252525;
    color: #fff;
    padding: 50px 0px;
    font-size: 15px;
}

.footer #blackSection .link {
    display: inline-block;
}

.footer #blackSection .link a {
    color: #fff;
}

.footer #blackSection .link a:hover {
    text-decoration: underline;
}

.footer #blackSection .link span {
    color: #a83532;
    margin: 0px 5px;
}

.footer #blackSection .copyright {
    display: inline-block;
    color: #a83532;
}

/* The mobile-only list of news articles.
All the articles are in col-xs-12 boxes, so :nth-of-type(1) is the first box, etc. */

@media (min-width: 768px) {
    #mob-news-header {
        display: none;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    #mob-news-header {
        height: 292px;
    }
}

@media (max-width: 480px) {
    #mob-news-header {
        height: 154px;
    }
}

#mob-news-header img {
    width: 100%;
    height: 50%;
}

#mob-news-header .news-banner-content {
    height: 50%;
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

#mob-news-header .news-banner-content a {
    width: 100%;
    display: block;
    height: 100%;
    text-align: center;
}

#mob-news-header .news-banner-content a img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100% !important;
    padding-bottom: 0 !important;
    width: 100% !important;
}

@media (min-width: 768px) {
    #mob-news-header-full {
        display: none;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    #mob-news-header-full {
        height: 146px;
    }
}

@media (max-width: 480px) {
    #mob-news-header-full {
        height: 77px;
    }
}

#mob-news-header-full img {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
    #mob-frontpage-news-articles,
    #mob-artist-about-grid {
        display: none;
    }
}

#mob-frontpage-news-articles .text-content,
#mob-artist-about-grid .text-content {
    padding: 10px;
    width: 100%;
}

#mob-frontpage-news-articles .content-box,
#mob-artist-about-grid .content-box {
    height: 100%;
}

#mob-frontpage-news-articles .title,
#mob-artist-about-grid .title {
    padding-bottom: 5px;
}

#mob-frontpage-news-articles .col-xs-12,
#mob-artist-about-grid .col-xs-12 {
    padding: 10px 0px;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1),
#mob-artist-about-grid .col-xs-12:nth-of-type(1) {
    height: 450px;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(1) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(1) .youtube-embed {
    width: 100%;
    height: 65%;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(1) .youtube-embed {
    margin-bottom: -5px;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) .title,
#mob-artist-about-grid .col-xs-12:nth-of-type(1) .title {
    color: #ffffff;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(1) .text-content {
    height: 35%;
    position: absolute;
    bottom: 0;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) .content-box,
#mob-artist-about-grid .col-xs-12:nth-of-type(1) .content-box {
    position: relative;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(2),
#mob-frontpage-news-articles .col-xs-12:nth-of-type(3),
#mob-artist-about-grid .col-xs-12:nth-of-type(2),
#mob-artist-about-grid .col-xs-12:nth-of-type(3) {
    height: 250px;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(2) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(2) .youtube-embed,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(3) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(3) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(2) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(2) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(3) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(3) .youtube-embed {
    float: left;
    width: 40%;
    height: 100%;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(2) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(3) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(2) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(3) .text-content {
    float: right;
    height: 100%;
    width: 60%;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(4),
#mob-frontpage-news-articles .col-xs-12:nth-of-type(5),
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6),
#mob-frontpage-news-articles .col-xs-12:nth-of-type(7),
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8),
#mob-artist-about-grid .col-xs-12:nth-of-type(4),
#mob-artist-about-grid .col-xs-12:nth-of-type(5),
#mob-artist-about-grid .col-xs-12:nth-of-type(6),
#mob-artist-about-grid .col-xs-12:nth-of-type(7),
#mob-artist-about-grid .col-xs-12:nth-of-type(8) {
    height: 150px;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(4) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(5) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(7) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(4) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(5) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(6) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(7) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(8) .text-content {
    height: 100%;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(4) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(4) .youtube-embed,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(5) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(5) .youtube-embed,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6) .youtube-embed,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(7) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(7) .youtube-embed,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8) img,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(4) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(4) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(5) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(5) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(6) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(6) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(7) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(7) .youtube-embed,
#mob-artist-about-grid .col-xs-12:nth-of-type(8) img,
#mob-artist-about-grid .col-xs-12:nth-of-type(8) .youtube-embed {
    float: left;
    width: 25%;
    height: 100%;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(4) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(5) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(7) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(4) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(5) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(6) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(7) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(8) .text-content {
    float: right;
    height: 100%;
    width: 75%;
}

/* COLOURS */

#mob-frontpage-news-articles {
    margin-bottom: 30px;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) .title {
    color: #ffffff;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(1) .summary {
    color: #daa281;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(2) .title {
    color: #252525;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(2) .summary {
    color: #252525;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(2) .text-content {
    background-color: #cbcbbf;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(3) .title {
    color: #252525;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(3) .summary {
    color: #252525;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(3) .text-content {
    background-color: #daa281;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(4) .text-content {
    background-color: #a83532;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(4) .title {
    color: #ffffff;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(4) .summary {
    color: #daa281;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(5) .title,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(5) .summary,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6) .title,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6) .summary {
    color: #252525;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(5) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(6) .text-content {
    background-color: #cbcbbf;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(7) .text-content,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8) .text-content {
    background-color: #311919;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(7) .title,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8) .title {
    color: #ffffff;
}

#mob-frontpage-news-articles .col-xs-12:nth-of-type(7) .summary,
#mob-frontpage-news-articles .col-xs-12:nth-of-type(8) .summary {
    color: #daa281;
}

/* DESKTOP NEWS GRID */

#frontpage-news-articles {
    max-width: 1035px !important;
}

@media (max-width: 767px) {
    #frontpage-news-articles {
        display: none;
    }
}

#frontpage-news-articles .text-content {
    height: 100%;
}

#frontpage-news-articles .text-content .title {
    max-height: 40%;
    padding: 5px;
    margin-bottom: 2px;
}

#frontpage-news-articles .text-content .summary {
    max-height: 60%;
    padding: 5px;
    font-style: italic;
}

#frontpage-news-articles .row:first-of-type {
    height: 376px;
    padding: 0px;
    margin-bottom: 20px;
}

#frontpage-news-articles .row:first-of-type .col-sm-3:first-of-type {
    height: 100%;
    padding: 0px 10px 0px 0px;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box {
    height: 100%;
    padding: 0px;
}

@media only screen and (max-width: 768px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-3:first-of-type
        .content-box
        .title {
        font-size: 22px;
        line-height: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-3:first-of-type
        .content-box
        .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-3:first-of-type
        .content-box
        .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-3:first-of-type
        .content-box
        .title {
        font-size: 22px;
        line-height: 22px;
    }
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    img {
    width: 100%;
    height: 70%;
    padding-bottom: 20px;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    .text-content {
    height: 30%;
    background-color: #311919;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    .text-content
    .date,
#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    .text-content
    .summary,
#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    .text-content
    .text-content-hover
    > a {
    color: #daa281 !important;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    .text-content
    .title {
    color: #ffffff;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    .text-content
    .fa-stack {
    background: #daa281;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:first-of-type
    .content-box
    .text-content
    .fa {
    color: #311919;
}

#frontpage-news-articles .row:first-of-type .col-sm-6:nth-of-type(2) {
    height: 100%;
    padding: 0px 10px;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box {
    /* Background image is set inline */
    height: 100%;
    position: relative;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    img,
#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    .youtube-embed {
    width: 100%;
    height: 65%;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    .text-content {
    height: 35%;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    .text-content
    .title {
    color: #ffffff;
    padding-top: 0;
    text-shadow: 2px 2px #252525;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-6:nth-of-type(2)
        .content-box
        .text-content
        .title {
        font-size: 30px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-6:nth-of-type(2)
        .content-box
        .text-content
        .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-6:nth-of-type(2)
        .content-box
        .text-content
        .title {
        font-size: 25px;
        line-height: 25px;
    }
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-6:nth-of-type(2)
        .content-box
        .text-content
        .title {
        font-size: 30px;
        line-height: 30px;
    }
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    .text-content
    .summary,
#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    .text-content
    .text-content-hover
    > a {
    color: #daa281 !important;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    .text-content
    .fa-stack {
    background: #daa281;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-6:nth-of-type(2)
    .content-box
    .text-content
    .fa {
    color: #252525;
}

#frontpage-news-articles .row:first-of-type .col-sm-3:last-of-type {
    height: 100%;
    padding: 0px 0px 0px 10px;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box {
    height: 100%;
    padding: 0px;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    img,
#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .youtube-embed {
    width: 100%;
    height: 65%;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .youtube-embed {
    margin-bottom: -5px;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .text-content {
    height: 35%;
    background-color: #cbcbbf;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .text-content
    .date,
#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .text-content
    .summary,
#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .text-content
    .text-content-hover
    > a {
    color: #252525 !important;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .text-content
    .title {
    color: #252525;
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles
        .row:first-of-type
        .col-sm-3:last-of-type
        .content-box
        .text-content
        .title {
        font-size: 25px;
        line-height: 25px;
    }
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .text-content
    .fa-stack {
    background: #252525;
}

#frontpage-news-articles
    .row:first-of-type
    .col-sm-3:last-of-type
    .content-box
    .text-content
    .fa {
    color: #cbcbbf;
}

#frontpage-news-articles .row:last-of-type {
    height: 376px;
    padding: 0px;
}

#frontpage-news-articles .row:last-of-type .col-sm-9:first-of-type {
    height: 100%;
    padding: 0px 10px 0px 0px;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type {
    /* Box 4 is also row 2-1 - the wide news article */
    height: 33.33%;
    padding: 0px 10px 0px 0px;
    margin: 0px -9px 10px 0px;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12 {
    padding: 0px;
    height: 100%;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .content-box {
    height: 100%;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .text-content {
    float: right;
    height: 100%;
    width: 67.5%;
    padding-left: 20px;
    background-color: #daa281;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .text-content
    .date,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .text-content
    .summary,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .text-content
    .title,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .text-content
    .text-content-hover
    > a {
    color: #252525 !important;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .text-content
    .fa-stack {
    background: #252525;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .text-content
    .fa {
    color: #daa281;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    img,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .youtube-embed {
    float: left;
    width: 32.5%;
    height: 100%;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-12
    .youtube-embed {
    margin-bottom: -5px;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type {
    height: 63.67%;
    padding: 10px 0px 0px 0px;
    margin-left: 0px;
    margin-right: -9px;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type {
    height: 100%;
    padding: 0px 10px 0px 0px;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box {
    /* Bottom left of the grid */
    height: 100%;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    img,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .youtube-embed {
    width: 100%;
    height: 53.3%;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .youtube-embed {
    margin-bottom: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:first-of-type
        .content-box
        .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:first-of-type
        .content-box
        .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:first-of-type
        .content-box
        .title {
        font-size: 22px;
        line-height: 22px;
    }
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .text-content {
    height: 46.7%;
    background-color: #a83532;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .text-content
    .date,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .text-content
    .summary,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .text-content
    .text-content-hover
    > a {
    color: #ffffff !important;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .text-content
    .title {
    color: #daa281;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .text-content
    .fa-stack {
    background: #ffffff;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:first-of-type
    .content-box
    .text-content
    .fa {
    color: #a83532;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2) {
    height: 100%;
    padding: 0px 10px;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box {
    /* Bottom second-from-left of the grid */
    height: 100%;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    img,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .youtube-embed {
    width: 100%;
    height: 53.3%;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .youtube-embed {
    margin-bottom: -5px;
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:nth-of-type(2)
        .content-box
        .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:nth-of-type(2)
        .content-box
        .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:nth-of-type(2)
        .content-box
        .title {
        font-size: 22px;
        line-height: 22px;
    }
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .text-content {
    height: 46.7%;
    background-color: #cbcbbf;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .text-content
    .date,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .text-content
    .summary,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .text-content
    .text-content-hover
    > a {
    color: #252525 !important;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .text-content
    .title {
    color: #252525;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .text-content
    .fa-stack {
    background: #252525;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:nth-of-type(2)
    .content-box
    .text-content
    .fa {
    color: #cbcbbf;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type {
    height: 100%;
    padding: 0px 10px 0px 10px;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:first-of-type {
    /*Just above bottom second-from-right of the grid */
    height: 46.3%;
    margin-bottom: 18px;
    background-color: #cbcbbf;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:first-of-type
    .title {
    color: #252525;
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:last-of-type
        .content-box:first-of-type
        .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:last-of-type
        .content-box:first-of-type
        .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:last-of-type
        .content-box:first-of-type
        .title {
        font-size: 22px;
        line-height: 22px;
    }
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:first-of-type
    .date,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:first-of-type
    .summary,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:first-of-type
    .text-content-hover
    > a {
    color: #252525 !important;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:first-of-type
    .fa-stack {
    background: #252525;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:first-of-type
    .fa {
    color: #cbcbbf;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:last-of-type {
    /*Bottom second-from-right of the grid */
    height: 46.3%;
    background-color: #311919;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:last-of-type
    .title {
    color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:last-of-type
        .content-box:last-of-type
        .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:last-of-type
        .content-box:last-of-type
        .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles
        .row:last-of-type
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4:last-of-type
        .content-box:last-of-type
        .title {
        font-size: 22px;
        line-height: 22px;
    }
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:last-of-type
    .date,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:last-of-type
    .summary,
#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:last-of-type
    .text-content-hover
    > a {
    color: #daa281 !important;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:last-of-type
    .fa-stack {
    background: #daa281;
}

#frontpage-news-articles
    .row:last-of-type
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4:last-of-type
    .content-box:last-of-type
    .fa {
    color: #311919;
}

#frontpage-news-articles .row:last-of-type .col-sm-3:last-of-type {
    height: 100%;
    padding: 0px 0px 0px 10px;
}

#music-grid-outer-container {
    background: repeat
        url(/images/music-grid-background.png?753b0506ca30748f9f920c2a7bd3749e);
}

@media (min-width: 768px) {
    #music-grid-outer-container {
        padding: 10px;
    }
}

#mob-music-header {
    margin-top: 50px;
}

@media (min-width: 768px) {
    #mob-music-header {
        display: none;
    }
}

@media (max-width: 767px) {
    #mob-music-header {
        height: 77px;
        margin-top: 0;
    }
}

#mob-music-header img {
    width: 100%;
    height: 100%;
}

#homepage-music-grid {
    max-width: 1035px !important;
    padding: 0px;
}

@media (min-width: 768px) {
    #homepage-music-grid {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    #homepage-music-grid {
        margin-bottom: 15px;
        margin-top: 15px;
    }
}

@media (min-width: 768px) {
    #homepage-music-grid {
        margin-top: 50px;
        height: 775px;
    }
}

@media (min-width: 768px) {
    #homepage-music-grid .left-hand-col {
        height: 100%;
        padding: 0px 10px 0px 0px;
    }
}

@media (max-width: 767px) {
    #homepage-music-grid .left-hand-col {
        padding: 0px;
    }
}

#homepage-music-grid .left-hand-col #desktop-first-featured {
    padding: 0px;
    margin-bottom: 20px;
    height: 510px;
}

@media (max-width: 767px) {
    #homepage-music-grid .left-hand-col #desktop-first-featured {
        display: none;
    }
}

#homepage-music-grid .left-hand-col #desktop-first-featured img {
    width: 100%;
    height: 100%;
}

#homepage-music-grid .left-hand-col #second-featured-album {
    /* Shown on all devices */
}

@media (min-width: 768px) {
    #homepage-music-grid .left-hand-col #second-featured-album {
        height: 260px;
        margin-bottom: 20px;
        padding: 0px;
    }
}

@media (min-width: 768px) {
    #homepage-music-grid
        .left-hand-col
        #second-featured-album
        .music-content-box
        .text-content {
        padding-top: 90px;
        padding-left: 15px;
        background-color: #daa281;
    }

    #homepage-music-grid
        .left-hand-col
        #second-featured-album
        .music-content-box
        .text-content
        .title {
        font-size: 18px !important;
        line-height: 18px !important;
        color: #252525;
    }

    #homepage-music-grid
        .left-hand-col
        #second-featured-album
        .music-content-box
        .text-content
        .summary {
        color: #252525;
    }
}

@media (min-width: 768px) {
    #homepage-music-grid .right-hand-col {
        height: 100%;
        padding: 0px 0px 0px 10px;
    }
}

#homepage-music-grid .right-hand-col .row {
    /* The row with the banner and 'Music' image that isn't displayed on mobile */
    padding: 0px;
    margin: 0px;
    height: 370px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    #homepage-music-grid .right-hand-col .row {
        display: none;
    }
}

#homepage-music-grid .right-hand-col .row #desktop-banner-box {
    padding: 0px 10px 0px 0px;
    height: 100%;
}

#homepage-music-grid
    .right-hand-col
    .row
    #desktop-banner-box
    .music-content-box {
    padding: 0px;
    height: 100%;
    width: 100%;
}

#homepage-music-grid
    .right-hand-col
    .row
    #desktop-banner-box
    .music-content-box
    img {
    height: 45%;
    width: 100%;
}

#homepage-music-grid
    .right-hand-col
    .row
    #desktop-banner-box
    .music-content-box
    .text-content {
    height: 55%;
    width: 100%;
    background-color: #252525;
    padding: 20px 10px 10px 10px;
}

#homepage-music-grid
    .right-hand-col
    .row
    #desktop-banner-box
    .music-content-box
    .text-content
    .title {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px !important;
    margin-top: 5px !important;
    color: #ffffff;
}

#homepage-music-grid
    .right-hand-col
    .row
    #desktop-banner-box
    .music-content-box
    .text-content
    .summary {
    font-size: 16px;
    font-style: italic;
    text-align: center;
    color: #ffffff;
}

#homepage-music-grid .right-hand-col .row .col-sm-6:last-of-type {
    /* 'Contains the 'Music' image */
    height: 100%;
    padding: 0px 0px 0px 10px;
}

#homepage-music-grid .right-hand-col .row .col-sm-6:last-of-type img {
    width: 100%;
    height: 100%;
}

#on-this-day-section {
    background-color: #ffffff;
}

@media (min-width: 768px) {
    #on-this-day-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

#on-this-day-grid {
    padding: 0px;
    max-width: 1035px !important;
}

#on-this-day-grid .content-box {
    height: 100%;
}

#on-this-day-grid .text-content .title {
    max-height: 40%;
    padding: 5px;
    margin-bottom: 2px;
}

#on-this-day-grid .text-content .summary {
    max-height: 60%;
    font-style: italic;
}

@media (max-width: 767px) {
    #on-this-day-grid .col-sm-9:first-of-type {
        padding: 0px 15px;
    }
}

@media (min-width: 768px) {
    #on-this-day-grid .col-sm-9:first-of-type {
        padding: 0px 10px 0px 0px;
    }
}

@media (min-width: 768px) {
    #on-this-day-grid .col-sm-9:first-of-type .row:first-of-type {
        margin: 0px 0px 20px 0px;
        height: 376px;
    }
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-xs-12:first-of-type {
    /* Header on mobile */
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:first-of-type
        .col-xs-12:first-of-type {
        display: none;
    }
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-xs-12:first-of-type
    .header-container {
    text-align: center;
    margin: auto;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-xs-12:first-of-type
    .content-box {
    width: 40%;
    text-align: center;
    margin: auto;
}

@media (max-width: 370px) {
    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:first-of-type
        .col-xs-12:first-of-type
        .content-box {
        width: 50%;
    }
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-xs-12:first-of-type
    .content-box
    .left {
    float: left;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-xs-12:first-of-type
    .content-box
    .right
    .date {
    padding-top: 6px;
    font-size: 30px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -2px;
}

#on-this-day-grid .col-sm-9:first-of-type .row:first-of-type .col-sm-4 {
    /* Top left on desktop, with the square image and the date */
    height: 100%;
    padding: 0px 10px 0px 0px;
}

@media (max-width: 767px) {
    #on-this-day-grid .col-sm-9:first-of-type .row:first-of-type .col-sm-4 {
        display: none;
    }
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-4
    .header-img {
    width: 100%;
    height: 65.16%;
    margin-bottom: 20px;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-4
    .content-box {
    height: 29.5%;
    width: 100%;
    background-color: #a83532;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-4
    .content-box
    .left {
    float: left;
    height: 100%;
    width: 33%;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-4
    .content-box
    .left
    .calendar-img {
    padding-left: 10%;
    padding-top: 25%;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-4
    .content-box
    .right {
    float: right;
    height: 100%;
    width: 67%;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .col-sm-4
    .content-box
    .right
    .date {
    color: #ffffff;
    text-align: center;
    font-weight: 500;
    letter-spacing: -2px;
    padding-right: 5%;
}

@media (max-width: 1200px) {
    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:first-of-type
        .col-sm-4
        .content-box
        .right
        .date {
        padding-top: 14%;
        padding-left: 5%;
        font-size: 40px;
        line-height: 40px;
    }
}

@media (min-width: 1200px) {
    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:first-of-type
        .col-sm-4
        .content-box
        .right
        .date {
        padding-top: 20%;
        font-size: 45px;
        line-height: 45px;
    }
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .mob-featured-album-col
    .text-content {
    background-color: #cbcbbf;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .mob-featured-album-col
    .text-content
    .title,
#on-this-day-grid
    .col-sm-9:first-of-type
    .row:first-of-type
    .mob-featured-album-col
    .text-content
    .summary {
    color: #252525;
}

#on-this-day-grid .col-sm-9:first-of-type .row:last-of-type {
    /* Row with tour dates and news articles */
    margin: 0px;
}

#on-this-day-grid .col-sm-9:first-of-type .row:last-of-type .col-sm-8,
#on-this-day-grid .col-sm-9:first-of-type .row:last-of-type .col-sm-4 {
    /* Applies to both the tour dates and articles, on desktop only */
}

@media (min-width: 767px) {
    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-8
        .col-xs-12:first-of-type,
    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4
        .col-xs-12:first-of-type {
        height: 113px;
        padding: 0px;
        margin-bottom: 20px;
    }

    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-8
        .col-xs-12:last-of-type,
    #on-this-day-grid
        .col-sm-9:first-of-type
        .row:last-of-type
        .col-sm-4
        .col-xs-12:last-of-type {
        height: 113px;
        padding: 0px;
    }
}

#on-this-day-grid .col-sm-9:first-of-type .row:last-of-type .col-sm-8 {
    /* The tour dates */
    padding: 0px 10px 0px 0px;
}

@media (max-width: 767px) {
    #on-this-day-grid .col-sm-9:first-of-type .row:last-of-type .col-sm-8 {
        padding: 0px;
    }
}

#on-this-day-grid .col-sm-9:first-of-type .row:last-of-type .col-sm-8 .title {
    padding: 0px;
    margin-bottom: 10px;
}

#on-this-day-grid .col-sm-9:first-of-type .row:last-of-type .col-sm-4 {
    /* The news articles */
    padding: 0px 0px 0px 10px;
}

@media (max-width: 767px) {
    #on-this-day-grid .col-sm-9:first-of-type .row:last-of-type .col-sm-4 {
        padding: 0px;
    }
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4
    .mob-small-news-col:first-of-type
    .content-box {
    background-color: #daa281;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4
    .mob-small-news-col:first-of-type
    .fa {
    color: #daa281;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4
    .mob-small-news-col:last-of-type
    .content-box {
    background-color: #cbcbbf;
}

#on-this-day-grid
    .col-sm-9:first-of-type
    .row:last-of-type
    .col-sm-4
    .mob-small-news-col:last-of-type
    .fa {
    color: #cbcbbf;
}

#on-this-day-grid .col-sm-3:last-of-type {
    padding: 0px 0px 0px 10px;
    /* News article (only displayed if there's no album) */
}

@media (max-width: 767px) {
    #on-this-day-grid .col-sm-3:last-of-type {
        padding: 0px 15px;
        margin-bottom: 20px;
    }
}

#on-this-day-grid .col-sm-3:last-of-type .diary-col {
    /* The diary entry */
    padding: 0px;
}

@media (max-width: 767px) {
    #on-this-day-grid .col-sm-3:last-of-type .diary-col {
        height: 170px;
        margin-bottom: 13px;
    }
}

@media (min-width: 768px) {
    #on-this-day-grid .col-sm-3:last-of-type .diary-col {
        height: 376px;
        margin-bottom: 20px;
    }
}

#on-this-day-grid .col-sm-3:last-of-type .album-image-col {
    /* Featured album image (desktop only) */
    padding: 0px;
    height: 245px;
}

@media (max-width: 767px) {
    #on-this-day-grid .col-sm-3:last-of-type .album-image-col {
        display: none;
    }
}

#on-this-day-grid .col-sm-3:last-of-type .album-image-col img {
    width: 100%;
    height: 100%;
}

#on-this-day-grid .col-sm-3:last-of-type .mob-small-news-col {
    padding: 0px;
}

#on-this-day-grid .col-sm-3:last-of-type .mob-small-news-col .content-box {
    background-color: #daa281;
}

#on-this-day-grid .col-sm-3:last-of-type .mob-small-news-col .fa {
    color: #daa281;
}

/* MOBILE-ONLY LIST */

/* The bits that apply to both the initial load and the extra articles load */

@media (min-width: 768px) {
    .mob-news-articles,
    .mob-more-news-articles,
    .mob-biographies,
    .mob-more-biographies,
    .mob-more-diaries {
        display: none;
    }
}

.mob-news-articles .date,
.mob-news-articles .category,
.mob-more-news-articles .date,
.mob-more-news-articles .category,
.mob-biographies .date,
.mob-biographies .category,
.mob-more-biographies .date,
.mob-more-biographies .category,
.mob-more-diaries .date,
.mob-more-diaries .category {
    display: none;
}

.mob-news-articles .news-text,
.mob-news-articles .diary-text,
.mob-more-news-articles .news-text,
.mob-more-news-articles .diary-text,
.mob-biographies .news-text,
.mob-biographies .diary-text,
.mob-more-biographies .news-text,
.mob-more-biographies .diary-text,
.mob-more-diaries .news-text,
.mob-more-diaries .diary-text {
    padding: 10px;
}

.mob-news-articles .news-box,
.mob-news-articles .biography-box,
.mob-news-articles .diary-box,
.mob-more-news-articles .news-box,
.mob-more-news-articles .biography-box,
.mob-more-news-articles .diary-box,
.mob-biographies .news-box,
.mob-biographies .biography-box,
.mob-biographies .diary-box,
.mob-more-biographies .news-box,
.mob-more-biographies .biography-box,
.mob-more-biographies .diary-box,
.mob-more-diaries .news-box,
.mob-more-diaries .biography-box,
.mob-more-diaries .diary-box {
    height: 100%;
}

.mob-news-articles .title,
.mob-more-news-articles .title,
.mob-biographies .title,
.mob-more-biographies .title,
.mob-more-diaries .title {
    padding-bottom: 3px;
    word-wrap: break-word;
}

.mob-news-articles .summary,
.mob-more-news-articles .summary,
.mob-biographies .summary,
.mob-more-biographies .summary,
.mob-more-diaries .summary {
    word-wrap: break-word;
}

.mob-news-articles .small-title,
.mob-more-news-articles .small-title,
.mob-biographies .small-title,
.mob-more-biographies .small-title,
.mob-more-diaries .small-title {
    font-size: 16px;
    line-height: 16px;
}

.mob-news-articles .very-small-title,
.mob-more-news-articles .very-small-title,
.mob-biographies .very-small-title,
.mob-more-biographies .very-small-title,
.mob-more-diaries .very-small-title {
    font-size: 14px;
    line-height: 14px;
}

.mob-news-articles .col-xs-12,
.mob-more-news-articles .col-xs-12,
.mob-biographies .col-xs-12,
.mob-more-biographies .col-xs-12,
.mob-more-diaries .col-xs-12 {
    padding: 0px;
    margin-bottom: 15px;
}

/* The bits that apply only to the extra articles loaded */

.mob-more-news-articles .col-xs-12,
.mob-more-biographies .col-xs-12,
.mob-more-diaries .col-xs-12 {
    height: 95px;
}

.mob-more-news-articles .col-xs-12 img,
.mob-more-news-articles .col-xs-12 .youtube-embed,
.mob-more-biographies .col-xs-12 img,
.mob-more-biographies .col-xs-12 .youtube-embed,
.mob-more-diaries .col-xs-12 img,
.mob-more-diaries .col-xs-12 .youtube-embed {
    float: left;
    width: 25%;
    height: 100%;
}

.mob-more-news-articles .col-xs-12 .news-text,
.mob-more-news-articles .col-xs-12 .diary-text,
.mob-more-biographies .col-xs-12 .news-text,
.mob-more-biographies .col-xs-12 .diary-text,
.mob-more-diaries .col-xs-12 .news-text,
.mob-more-diaries .col-xs-12 .diary-text {
    float: right;
    height: 100%;
    width: 75%;
}

/* The bits that apply to just the initial load */

.mob-news-articles,
.mob-biographies {
    /* COLOURS */
}

.mob-news-articles .col-xs-12:nth-of-type(1),
.mob-biographies .col-xs-12:nth-of-type(1) {
    height: 495px;
}

.mob-news-articles .col-xs-12:nth-of-type(1) img,
.mob-news-articles .col-xs-12:nth-of-type(1) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(1) img,
.mob-biographies .col-xs-12:nth-of-type(1) .youtube-embed {
    width: 100%;
    height: 60%;
}

.mob-news-articles .col-xs-12:nth-of-type(1) .news-text,
.mob-biographies .col-xs-12:nth-of-type(1) .news-text {
    height: 40%;
    background-color: #a83532;
}

.mob-news-articles .col-xs-12:nth-of-type(1) .title,
.mob-biographies .col-xs-12:nth-of-type(1) .title {
    color: #ffffff;
}

.mob-news-articles .col-xs-12:nth-of-type(1) .small-title,
.mob-biographies .col-xs-12:nth-of-type(1) .small-title {
    font-size: 25px;
    line-height: 25px;
}

.mob-news-articles .col-xs-12:nth-of-type(1) .very-small-title,
.mob-biographies .col-xs-12:nth-of-type(1) .very-small-title {
    font-size: 18px;
    line-height: 18px;
}

.mob-news-articles .col-xs-12:nth-of-type(1) .summary,
.mob-biographies .col-xs-12:nth-of-type(1) .summary {
    color: #daa281;
}

.mob-news-articles .col-xs-12:nth-of-type(2),
.mob-news-articles .col-xs-12:nth-of-type(3),
.mob-biographies .col-xs-12:nth-of-type(2),
.mob-biographies .col-xs-12:nth-of-type(3) {
    height: 170px;
}

.mob-news-articles .col-xs-12:nth-of-type(2) img,
.mob-news-articles .col-xs-12:nth-of-type(2) .youtube-embed,
.mob-news-articles .col-xs-12:nth-of-type(3) img,
.mob-news-articles .col-xs-12:nth-of-type(3) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(2) img,
.mob-biographies .col-xs-12:nth-of-type(2) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(3) img,
.mob-biographies .col-xs-12:nth-of-type(3) .youtube-embed {
    float: left;
    width: 40%;
    height: 100%;
}

.mob-news-articles .col-xs-12:nth-of-type(2) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(3) .news-text,
.mob-biographies .col-xs-12:nth-of-type(2) .news-text,
.mob-biographies .col-xs-12:nth-of-type(3) .news-text {
    float: right;
    background-color: #cbcbbf;
    height: 100%;
    width: 60%;
}

.mob-news-articles .col-xs-12:nth-of-type(2) .title,
.mob-news-articles .col-xs-12:nth-of-type(3) .title,
.mob-biographies .col-xs-12:nth-of-type(2) .title,
.mob-biographies .col-xs-12:nth-of-type(3) .title {
    color: #252525;
}

.mob-news-articles .col-xs-12:nth-of-type(2) .summary,
.mob-news-articles .col-xs-12:nth-of-type(3) .summary,
.mob-biographies .col-xs-12:nth-of-type(2) .summary,
.mob-biographies .col-xs-12:nth-of-type(3) .summary {
    color: #252525;
}

@media (max-width: 768px) {
    .mob-news-articles .col-xs-12:nth-of-type(4),
    .mob-news-articles .col-xs-12:nth-of-type(5),
    .mob-news-articles .col-xs-12:nth-of-type(6),
    .mob-news-articles .col-xs-12:nth-of-type(7),
    .mob-news-articles .col-xs-12:nth-of-type(8),
    .mob-news-articles .col-xs-12:nth-of-type(9),
    .mob-news-articles .col-xs-12:nth-of-type(10),
    .mob-biographies .col-xs-12:nth-of-type(4),
    .mob-biographies .col-xs-12:nth-of-type(5),
    .mob-biographies .col-xs-12:nth-of-type(6),
    .mob-biographies .col-xs-12:nth-of-type(7),
    .mob-biographies .col-xs-12:nth-of-type(8),
    .mob-biographies .col-xs-12:nth-of-type(9),
    .mob-biographies .col-xs-12:nth-of-type(10) {
        height: 95px;
    }
}

.mob-news-articles .col-xs-12:nth-of-type(4) img,
.mob-news-articles .col-xs-12:nth-of-type(4) .youtube-embed,
.mob-news-articles .col-xs-12:nth-of-type(5) img,
.mob-news-articles .col-xs-12:nth-of-type(5) .youtube-embed,
.mob-news-articles .col-xs-12:nth-of-type(6) img,
.mob-news-articles .col-xs-12:nth-of-type(6) .youtube-embed,
.mob-news-articles .col-xs-12:nth-of-type(7) img,
.mob-news-articles .col-xs-12:nth-of-type(7) .youtube-embed,
.mob-news-articles .col-xs-12:nth-of-type(8) img,
.mob-news-articles .col-xs-12:nth-of-type(8) .youtube-embed,
.mob-news-articles .col-xs-12:nth-of-type(9) img,
.mob-news-articles .col-xs-12:nth-of-type(9) .youtube-embed,
.mob-news-articles .col-xs-12:nth-of-type(10) img,
.mob-news-articles .col-xs-12:nth-of-type(10) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(4) img,
.mob-biographies .col-xs-12:nth-of-type(4) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(5) img,
.mob-biographies .col-xs-12:nth-of-type(5) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(6) img,
.mob-biographies .col-xs-12:nth-of-type(6) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(7) img,
.mob-biographies .col-xs-12:nth-of-type(7) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(8) img,
.mob-biographies .col-xs-12:nth-of-type(8) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(9) img,
.mob-biographies .col-xs-12:nth-of-type(9) .youtube-embed,
.mob-biographies .col-xs-12:nth-of-type(10) img,
.mob-biographies .col-xs-12:nth-of-type(10) .youtube-embed {
    float: left;
    width: 25%;
    height: 100%;
}

.mob-news-articles .col-xs-12:nth-of-type(4) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(5) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(6) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(7) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(8) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(9) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(10) .news-text,
.mob-biographies .col-xs-12:nth-of-type(4) .news-text,
.mob-biographies .col-xs-12:nth-of-type(5) .news-text,
.mob-biographies .col-xs-12:nth-of-type(6) .news-text,
.mob-biographies .col-xs-12:nth-of-type(7) .news-text,
.mob-biographies .col-xs-12:nth-of-type(8) .news-text,
.mob-biographies .col-xs-12:nth-of-type(9) .news-text,
.mob-biographies .col-xs-12:nth-of-type(10) .news-text {
    float: right;
    height: 100%;
    width: 75%;
}

.mob-news-articles .col-xs-12:nth-of-type(4) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(6) .news-text,
.mob-biographies .col-xs-12:nth-of-type(4) .news-text,
.mob-biographies .col-xs-12:nth-of-type(6) .news-text {
    background-color: #daa281;
}

.mob-news-articles .col-xs-12:nth-of-type(4) .title,
.mob-news-articles .col-xs-12:nth-of-type(4) .summary,
.mob-news-articles .col-xs-12:nth-of-type(6) .title,
.mob-news-articles .col-xs-12:nth-of-type(6) .summary,
.mob-biographies .col-xs-12:nth-of-type(4) .title,
.mob-biographies .col-xs-12:nth-of-type(4) .summary,
.mob-biographies .col-xs-12:nth-of-type(6) .title,
.mob-biographies .col-xs-12:nth-of-type(6) .summary {
    color: #252525;
}

.mob-news-articles .col-xs-12:nth-of-type(7) .title,
.mob-news-articles .col-xs-12:nth-of-type(7) .summary,
.mob-news-articles .col-xs-12:nth-of-type(8) .title,
.mob-news-articles .col-xs-12:nth-of-type(8) .summary,
.mob-biographies .col-xs-12:nth-of-type(7) .title,
.mob-biographies .col-xs-12:nth-of-type(7) .summary,
.mob-biographies .col-xs-12:nth-of-type(8) .title,
.mob-biographies .col-xs-12:nth-of-type(8) .summary {
    color: #252525;
}

.mob-news-articles .col-xs-12:nth-of-type(7) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(8) .news-text,
.mob-biographies .col-xs-12:nth-of-type(7) .news-text,
.mob-biographies .col-xs-12:nth-of-type(8) .news-text {
    background-color: #cbcbbf;
}

.mob-news-articles .col-xs-12:nth-of-type(5) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(9) .news-text,
.mob-news-articles .col-xs-12:nth-of-type(10) .news-text,
.mob-biographies .col-xs-12:nth-of-type(5) .news-text,
.mob-biographies .col-xs-12:nth-of-type(9) .news-text,
.mob-biographies .col-xs-12:nth-of-type(10) .news-text {
    background-color: #311919;
}

.mob-news-articles .col-xs-12:nth-of-type(5) .title,
.mob-news-articles .col-xs-12:nth-of-type(9) .title,
.mob-news-articles .col-xs-12:nth-of-type(10) .title,
.mob-biographies .col-xs-12:nth-of-type(5) .title,
.mob-biographies .col-xs-12:nth-of-type(9) .title,
.mob-biographies .col-xs-12:nth-of-type(10) .title {
    color: #ffffff;
}

.mob-news-articles .col-xs-12:nth-of-type(5) .summary,
.mob-news-articles .col-xs-12:nth-of-type(9) .summary,
.mob-news-articles .col-xs-12:nth-of-type(10) .summary,
.mob-biographies .col-xs-12:nth-of-type(5) .summary,
.mob-biographies .col-xs-12:nth-of-type(9) .summary,
.mob-biographies .col-xs-12:nth-of-type(10) .summary {
    color: #daa281;
}

/* Colours of article boxes (in five rows of four) - for both mobile and desktop */

.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .news-text,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .diary-text,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .news-text,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .diary-text,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .news-text,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .diary-text,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .news-text,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .diary-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .news-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .diary-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .news-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .diary-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .news-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .diary-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .news-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(2) .news-text,
.more-news-articles .col-xs-12:nth-of-type(2) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(3) .news-text,
.more-news-articles .col-xs-12:nth-of-type(3) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(7) .news-text,
.more-news-articles .col-xs-12:nth-of-type(7) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(8) .news-text,
.more-news-articles .col-xs-12:nth-of-type(8) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(12) .news-text,
.more-news-articles .col-xs-12:nth-of-type(12) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(13) .news-text,
.more-news-articles .col-xs-12:nth-of-type(13) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(17) .news-text,
.more-news-articles .col-xs-12:nth-of-type(17) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(18) .news-text,
.more-news-articles .col-xs-12:nth-of-type(18) .diary-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(2)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(3)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(3)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(4)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(4)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(1)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(1)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(2)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(2) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(2) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(3) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(3) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(7) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(7) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(8) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(8) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(12) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(12) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(13) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(13) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(17) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(17) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(18) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(18) .diary-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .news-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .diary-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .news-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .diary-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .news-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .diary-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .news-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .diary-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .news-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .diary-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .news-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .diary-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .news-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .diary-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .news-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .diary-text,
.more-biographies .col-xs-12:nth-of-type(2) .news-text,
.more-biographies .col-xs-12:nth-of-type(2) .diary-text,
.more-biographies .col-xs-12:nth-of-type(3) .news-text,
.more-biographies .col-xs-12:nth-of-type(3) .diary-text,
.more-biographies .col-xs-12:nth-of-type(7) .news-text,
.more-biographies .col-xs-12:nth-of-type(7) .diary-text,
.more-biographies .col-xs-12:nth-of-type(8) .news-text,
.more-biographies .col-xs-12:nth-of-type(8) .diary-text,
.more-biographies .col-xs-12:nth-of-type(12) .news-text,
.more-biographies .col-xs-12:nth-of-type(12) .diary-text,
.more-biographies .col-xs-12:nth-of-type(13) .news-text,
.more-biographies .col-xs-12:nth-of-type(13) .diary-text,
.more-biographies .col-xs-12:nth-of-type(17) .news-text,
.more-biographies .col-xs-12:nth-of-type(17) .diary-text,
.more-biographies .col-xs-12:nth-of-type(18) .news-text,
.more-biographies .col-xs-12:nth-of-type(18) .diary-text,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-biographies
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-biographies
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-biographies
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-biographies
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-biographies
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-biographies
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-biographies
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-biographies
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(2) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(2) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(3) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(3) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(7) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(7) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(8) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(8) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(12) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(12) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(13) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(13) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(17) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(17) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(18) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(18) .diary-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .news-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .diary-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .news-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .diary-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .news-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .diary-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .news-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .diary-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .news-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .diary-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .news-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .diary-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .news-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .diary-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .news-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .diary-text,
.more-diaries .col-xs-12:nth-of-type(2) .news-text,
.more-diaries .col-xs-12:nth-of-type(2) .diary-text,
.more-diaries .col-xs-12:nth-of-type(3) .news-text,
.more-diaries .col-xs-12:nth-of-type(3) .diary-text,
.more-diaries .col-xs-12:nth-of-type(7) .news-text,
.more-diaries .col-xs-12:nth-of-type(7) .diary-text,
.more-diaries .col-xs-12:nth-of-type(8) .news-text,
.more-diaries .col-xs-12:nth-of-type(8) .diary-text,
.more-diaries .col-xs-12:nth-of-type(12) .news-text,
.more-diaries .col-xs-12:nth-of-type(12) .diary-text,
.more-diaries .col-xs-12:nth-of-type(13) .news-text,
.more-diaries .col-xs-12:nth-of-type(13) .diary-text,
.more-diaries .col-xs-12:nth-of-type(17) .news-text,
.more-diaries .col-xs-12:nth-of-type(17) .diary-text,
.more-diaries .col-xs-12:nth-of-type(18) .news-text,
.more-diaries .col-xs-12:nth-of-type(18) .diary-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .diary-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .diary-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .diary-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .diary-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .diary-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .diary-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .diary-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(2) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(2) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(3) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(3) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(7) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(7) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(8) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(8) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(12) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(12) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(13) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(13) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(17) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(17) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(18) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(18) .diary-text {
    background-color: #cbcbbf;
}

.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .title,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .summary,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .date,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .title,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .summary,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .date,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .title,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .summary,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .date,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .title,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .summary,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .date,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .title,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .summary,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .date,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .title,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .summary,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .date,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .title,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .summary,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .date,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .title,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .summary,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .date,
.more-news-articles .col-xs-12:nth-of-type(2) .title,
.more-news-articles .col-xs-12:nth-of-type(2) .summary,
.more-news-articles .col-xs-12:nth-of-type(2) .date,
.more-news-articles .col-xs-12:nth-of-type(3) .title,
.more-news-articles .col-xs-12:nth-of-type(3) .summary,
.more-news-articles .col-xs-12:nth-of-type(3) .date,
.more-news-articles .col-xs-12:nth-of-type(7) .title,
.more-news-articles .col-xs-12:nth-of-type(7) .summary,
.more-news-articles .col-xs-12:nth-of-type(7) .date,
.more-news-articles .col-xs-12:nth-of-type(8) .title,
.more-news-articles .col-xs-12:nth-of-type(8) .summary,
.more-news-articles .col-xs-12:nth-of-type(8) .date,
.more-news-articles .col-xs-12:nth-of-type(12) .title,
.more-news-articles .col-xs-12:nth-of-type(12) .summary,
.more-news-articles .col-xs-12:nth-of-type(12) .date,
.more-news-articles .col-xs-12:nth-of-type(13) .title,
.more-news-articles .col-xs-12:nth-of-type(13) .summary,
.more-news-articles .col-xs-12:nth-of-type(13) .date,
.more-news-articles .col-xs-12:nth-of-type(17) .title,
.more-news-articles .col-xs-12:nth-of-type(17) .summary,
.more-news-articles .col-xs-12:nth-of-type(17) .date,
.more-news-articles .col-xs-12:nth-of-type(18) .title,
.more-news-articles .col-xs-12:nth-of-type(18) .summary,
.more-news-articles .col-xs-12:nth-of-type(18) .date,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .title,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .date,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .title,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .date,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .title,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .date,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .title,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .date,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .title,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .date,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .title,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .date,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .title,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .date,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .title,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(2) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(2) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(2) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(3) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(3) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(3) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(7) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(7) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(7) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(8) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(8) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(8) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(12) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(12) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(12) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(13) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(13) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(13) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(17) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(17) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(17) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(18) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(18) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(18) .date,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .title,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .summary,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .date,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .title,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .summary,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .date,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .title,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .summary,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .date,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .title,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .summary,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .date,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .title,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .summary,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .date,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .title,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .summary,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .date,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .title,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .summary,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .date,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .title,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .summary,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .date,
.more-biographies .col-xs-12:nth-of-type(2) .title,
.more-biographies .col-xs-12:nth-of-type(2) .summary,
.more-biographies .col-xs-12:nth-of-type(2) .date,
.more-biographies .col-xs-12:nth-of-type(3) .title,
.more-biographies .col-xs-12:nth-of-type(3) .summary,
.more-biographies .col-xs-12:nth-of-type(3) .date,
.more-biographies .col-xs-12:nth-of-type(7) .title,
.more-biographies .col-xs-12:nth-of-type(7) .summary,
.more-biographies .col-xs-12:nth-of-type(7) .date,
.more-biographies .col-xs-12:nth-of-type(8) .title,
.more-biographies .col-xs-12:nth-of-type(8) .summary,
.more-biographies .col-xs-12:nth-of-type(8) .date,
.more-biographies .col-xs-12:nth-of-type(12) .title,
.more-biographies .col-xs-12:nth-of-type(12) .summary,
.more-biographies .col-xs-12:nth-of-type(12) .date,
.more-biographies .col-xs-12:nth-of-type(13) .title,
.more-biographies .col-xs-12:nth-of-type(13) .summary,
.more-biographies .col-xs-12:nth-of-type(13) .date,
.more-biographies .col-xs-12:nth-of-type(17) .title,
.more-biographies .col-xs-12:nth-of-type(17) .summary,
.more-biographies .col-xs-12:nth-of-type(17) .date,
.more-biographies .col-xs-12:nth-of-type(18) .title,
.more-biographies .col-xs-12:nth-of-type(18) .summary,
.more-biographies .col-xs-12:nth-of-type(18) .date,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .title,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .date,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .title,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .date,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .title,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .date,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .title,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .date,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .title,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .date,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .title,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .date,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .title,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .date,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .title,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .date,
.mob-more-biographies .col-xs-12:nth-of-type(2) .title,
.mob-more-biographies .col-xs-12:nth-of-type(2) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(2) .date,
.mob-more-biographies .col-xs-12:nth-of-type(3) .title,
.mob-more-biographies .col-xs-12:nth-of-type(3) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(3) .date,
.mob-more-biographies .col-xs-12:nth-of-type(7) .title,
.mob-more-biographies .col-xs-12:nth-of-type(7) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(7) .date,
.mob-more-biographies .col-xs-12:nth-of-type(8) .title,
.mob-more-biographies .col-xs-12:nth-of-type(8) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(8) .date,
.mob-more-biographies .col-xs-12:nth-of-type(12) .title,
.mob-more-biographies .col-xs-12:nth-of-type(12) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(12) .date,
.mob-more-biographies .col-xs-12:nth-of-type(13) .title,
.mob-more-biographies .col-xs-12:nth-of-type(13) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(13) .date,
.mob-more-biographies .col-xs-12:nth-of-type(17) .title,
.mob-more-biographies .col-xs-12:nth-of-type(17) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(17) .date,
.mob-more-biographies .col-xs-12:nth-of-type(18) .title,
.mob-more-biographies .col-xs-12:nth-of-type(18) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(18) .date,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .title,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .summary,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .date,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .title,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .summary,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .date,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .title,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .summary,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .date,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .title,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .summary,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .date,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .title,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .summary,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .date,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .title,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .summary,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .date,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .title,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .summary,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .date,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .title,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .summary,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .date,
.more-diaries .col-xs-12:nth-of-type(2) .title,
.more-diaries .col-xs-12:nth-of-type(2) .summary,
.more-diaries .col-xs-12:nth-of-type(2) .date,
.more-diaries .col-xs-12:nth-of-type(3) .title,
.more-diaries .col-xs-12:nth-of-type(3) .summary,
.more-diaries .col-xs-12:nth-of-type(3) .date,
.more-diaries .col-xs-12:nth-of-type(7) .title,
.more-diaries .col-xs-12:nth-of-type(7) .summary,
.more-diaries .col-xs-12:nth-of-type(7) .date,
.more-diaries .col-xs-12:nth-of-type(8) .title,
.more-diaries .col-xs-12:nth-of-type(8) .summary,
.more-diaries .col-xs-12:nth-of-type(8) .date,
.more-diaries .col-xs-12:nth-of-type(12) .title,
.more-diaries .col-xs-12:nth-of-type(12) .summary,
.more-diaries .col-xs-12:nth-of-type(12) .date,
.more-diaries .col-xs-12:nth-of-type(13) .title,
.more-diaries .col-xs-12:nth-of-type(13) .summary,
.more-diaries .col-xs-12:nth-of-type(13) .date,
.more-diaries .col-xs-12:nth-of-type(17) .title,
.more-diaries .col-xs-12:nth-of-type(17) .summary,
.more-diaries .col-xs-12:nth-of-type(17) .date,
.more-diaries .col-xs-12:nth-of-type(18) .title,
.more-diaries .col-xs-12:nth-of-type(18) .summary,
.more-diaries .col-xs-12:nth-of-type(18) .date,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .title,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(2) .date,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .title,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(3) .date,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .title,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(3) .date,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .title,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(4) .date,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .title,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(4) .date,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .title,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(1) .date,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .title,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(1) .date,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .title,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(2) .date,
.mob-more-diaries .col-xs-12:nth-of-type(2) .title,
.mob-more-diaries .col-xs-12:nth-of-type(2) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(2) .date,
.mob-more-diaries .col-xs-12:nth-of-type(3) .title,
.mob-more-diaries .col-xs-12:nth-of-type(3) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(3) .date,
.mob-more-diaries .col-xs-12:nth-of-type(7) .title,
.mob-more-diaries .col-xs-12:nth-of-type(7) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(7) .date,
.mob-more-diaries .col-xs-12:nth-of-type(8) .title,
.mob-more-diaries .col-xs-12:nth-of-type(8) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(8) .date,
.mob-more-diaries .col-xs-12:nth-of-type(12) .title,
.mob-more-diaries .col-xs-12:nth-of-type(12) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(12) .date,
.mob-more-diaries .col-xs-12:nth-of-type(13) .title,
.mob-more-diaries .col-xs-12:nth-of-type(13) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(13) .date,
.mob-more-diaries .col-xs-12:nth-of-type(17) .title,
.mob-more-diaries .col-xs-12:nth-of-type(17) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(17) .date,
.mob-more-diaries .col-xs-12:nth-of-type(18) .title,
.mob-more-diaries .col-xs-12:nth-of-type(18) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(18) .date {
    color: #252525;
}

.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .news-text,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .diary-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .news-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(1) .news-text,
.more-news-articles .col-xs-12:nth-of-type(1) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(11) .news-text,
.more-news-articles .col-xs-12:nth-of-type(11) .diary-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(1)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(3)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(1) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(1) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(11) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(11) .diary-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .news-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .diary-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .news-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .diary-text,
.more-biographies .col-xs-12:nth-of-type(1) .news-text,
.more-biographies .col-xs-12:nth-of-type(1) .diary-text,
.more-biographies .col-xs-12:nth-of-type(11) .news-text,
.more-biographies .col-xs-12:nth-of-type(11) .diary-text,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-biographies
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-biographies
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(1) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(1) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(11) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(11) .diary-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .news-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .diary-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .news-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .diary-text,
.more-diaries .col-xs-12:nth-of-type(1) .news-text,
.more-diaries .col-xs-12:nth-of-type(1) .diary-text,
.more-diaries .col-xs-12:nth-of-type(11) .news-text,
.more-diaries .col-xs-12:nth-of-type(11) .diary-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .diary-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(1) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(1) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(11) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(11) .diary-text {
    background-color: #a83532;
}

.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .title,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .title,
.more-news-articles .col-xs-12:nth-of-type(1) .title,
.more-news-articles .col-xs-12:nth-of-type(11) .title,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .title,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(1) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(11) .title,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .title,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .title,
.more-biographies .col-xs-12:nth-of-type(1) .title,
.more-biographies .col-xs-12:nth-of-type(11) .title,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .title,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .title,
.mob-more-biographies .col-xs-12:nth-of-type(1) .title,
.mob-more-biographies .col-xs-12:nth-of-type(11) .title,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .title,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .title,
.more-diaries .col-xs-12:nth-of-type(1) .title,
.more-diaries .col-xs-12:nth-of-type(11) .title,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .title,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .title,
.mob-more-diaries .col-xs-12:nth-of-type(1) .title,
.mob-more-diaries .col-xs-12:nth-of-type(11) .title {
    color: #ffffff;
}

.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .summary,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .date,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .summary,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .date,
.more-news-articles .col-xs-12:nth-of-type(1) .summary,
.more-news-articles .col-xs-12:nth-of-type(1) .date,
.more-news-articles .col-xs-12:nth-of-type(11) .summary,
.more-news-articles .col-xs-12:nth-of-type(11) .date,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .date,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(1) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(1) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(11) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(11) .date,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .summary,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .date,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .summary,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .date,
.more-biographies .col-xs-12:nth-of-type(1) .summary,
.more-biographies .col-xs-12:nth-of-type(1) .date,
.more-biographies .col-xs-12:nth-of-type(11) .summary,
.more-biographies .col-xs-12:nth-of-type(11) .date,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .date,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .date,
.mob-more-biographies .col-xs-12:nth-of-type(1) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(1) .date,
.mob-more-biographies .col-xs-12:nth-of-type(11) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(11) .date,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .summary,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .date,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .summary,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .date,
.more-diaries .col-xs-12:nth-of-type(1) .summary,
.more-diaries .col-xs-12:nth-of-type(1) .date,
.more-diaries .col-xs-12:nth-of-type(11) .summary,
.more-diaries .col-xs-12:nth-of-type(11) .date,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(1) .date,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(3) .date,
.mob-more-diaries .col-xs-12:nth-of-type(1) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(1) .date,
.mob-more-diaries .col-xs-12:nth-of-type(11) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(11) .date {
    color: #daa281;
}

.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .news-text,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .diary-text,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .news-text,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .diary-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .news-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .diary-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .news-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(4) .news-text,
.more-news-articles .col-xs-12:nth-of-type(4) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(6) .news-text,
.more-news-articles .col-xs-12:nth-of-type(6) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(14) .news-text,
.more-news-articles .col-xs-12:nth-of-type(14) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(16) .news-text,
.more-news-articles .col-xs-12:nth-of-type(16) .diary-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(4)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(2)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(2)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(4)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(4) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(4) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(6) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(6) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(14) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(14) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(16) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(16) .diary-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .news-text,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .diary-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .news-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .diary-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .news-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .diary-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .news-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .diary-text,
.more-biographies .col-xs-12:nth-of-type(4) .news-text,
.more-biographies .col-xs-12:nth-of-type(4) .diary-text,
.more-biographies .col-xs-12:nth-of-type(6) .news-text,
.more-biographies .col-xs-12:nth-of-type(6) .diary-text,
.more-biographies .col-xs-12:nth-of-type(14) .news-text,
.more-biographies .col-xs-12:nth-of-type(14) .diary-text,
.more-biographies .col-xs-12:nth-of-type(16) .news-text,
.more-biographies .col-xs-12:nth-of-type(16) .diary-text,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-biographies
    .row:nth-of-type(1)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-biographies
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-biographies
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-biographies
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(4) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(4) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(6) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(6) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(14) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(14) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(16) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(16) .diary-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .news-text,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .diary-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .news-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .diary-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .news-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .diary-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .news-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .diary-text,
.more-diaries .col-xs-12:nth-of-type(4) .news-text,
.more-diaries .col-xs-12:nth-of-type(4) .diary-text,
.more-diaries .col-xs-12:nth-of-type(6) .news-text,
.more-diaries .col-xs-12:nth-of-type(6) .diary-text,
.more-diaries .col-xs-12:nth-of-type(14) .news-text,
.more-diaries .col-xs-12:nth-of-type(14) .diary-text,
.more-diaries .col-xs-12:nth-of-type(16) .news-text,
.more-diaries .col-xs-12:nth-of-type(16) .diary-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .diary-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .diary-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .diary-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(4) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(4) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(6) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(6) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(14) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(14) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(16) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(16) .diary-text {
    background-color: #daa281;
}

.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .title,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .summary,
.more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .date,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .title,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .summary,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .date,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .title,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .summary,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .date,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .title,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .summary,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .date,
.more-news-articles .col-xs-12:nth-of-type(4) .title,
.more-news-articles .col-xs-12:nth-of-type(4) .summary,
.more-news-articles .col-xs-12:nth-of-type(4) .date,
.more-news-articles .col-xs-12:nth-of-type(6) .title,
.more-news-articles .col-xs-12:nth-of-type(6) .summary,
.more-news-articles .col-xs-12:nth-of-type(6) .date,
.more-news-articles .col-xs-12:nth-of-type(14) .title,
.more-news-articles .col-xs-12:nth-of-type(14) .summary,
.more-news-articles .col-xs-12:nth-of-type(14) .date,
.more-news-articles .col-xs-12:nth-of-type(16) .title,
.more-news-articles .col-xs-12:nth-of-type(16) .summary,
.more-news-articles .col-xs-12:nth-of-type(16) .date,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .title,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-news-articles .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .date,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .title,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .date,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .title,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .date,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .title,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(4) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(4) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(4) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(6) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(6) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(6) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(14) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(14) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(14) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(16) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(16) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(16) .date,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .title,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .summary,
.more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .date,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .title,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .summary,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .date,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .title,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .summary,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .date,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .title,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .summary,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .date,
.more-biographies .col-xs-12:nth-of-type(4) .title,
.more-biographies .col-xs-12:nth-of-type(4) .summary,
.more-biographies .col-xs-12:nth-of-type(4) .date,
.more-biographies .col-xs-12:nth-of-type(6) .title,
.more-biographies .col-xs-12:nth-of-type(6) .summary,
.more-biographies .col-xs-12:nth-of-type(6) .date,
.more-biographies .col-xs-12:nth-of-type(14) .title,
.more-biographies .col-xs-12:nth-of-type(14) .summary,
.more-biographies .col-xs-12:nth-of-type(14) .date,
.more-biographies .col-xs-12:nth-of-type(16) .title,
.more-biographies .col-xs-12:nth-of-type(16) .summary,
.more-biographies .col-xs-12:nth-of-type(16) .date,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .title,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-biographies .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .date,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .title,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .date,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .title,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .date,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .title,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .date,
.mob-more-biographies .col-xs-12:nth-of-type(4) .title,
.mob-more-biographies .col-xs-12:nth-of-type(4) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(4) .date,
.mob-more-biographies .col-xs-12:nth-of-type(6) .title,
.mob-more-biographies .col-xs-12:nth-of-type(6) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(6) .date,
.mob-more-biographies .col-xs-12:nth-of-type(14) .title,
.mob-more-biographies .col-xs-12:nth-of-type(14) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(14) .date,
.mob-more-biographies .col-xs-12:nth-of-type(16) .title,
.mob-more-biographies .col-xs-12:nth-of-type(16) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(16) .date,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .title,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .summary,
.more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .date,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .title,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .summary,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .date,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .title,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .summary,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .date,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .title,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .summary,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .date,
.more-diaries .col-xs-12:nth-of-type(4) .title,
.more-diaries .col-xs-12:nth-of-type(4) .summary,
.more-diaries .col-xs-12:nth-of-type(4) .date,
.more-diaries .col-xs-12:nth-of-type(6) .title,
.more-diaries .col-xs-12:nth-of-type(6) .summary,
.more-diaries .col-xs-12:nth-of-type(6) .date,
.more-diaries .col-xs-12:nth-of-type(14) .title,
.more-diaries .col-xs-12:nth-of-type(14) .summary,
.more-diaries .col-xs-12:nth-of-type(14) .date,
.more-diaries .col-xs-12:nth-of-type(16) .title,
.more-diaries .col-xs-12:nth-of-type(16) .summary,
.more-diaries .col-xs-12:nth-of-type(16) .date,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .title,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-diaries .row:nth-of-type(1) > .col-sm-3:nth-of-type(4) .date,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .title,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(2) .date,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .title,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(2) .date,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .title,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(4) .date,
.mob-more-diaries .col-xs-12:nth-of-type(4) .title,
.mob-more-diaries .col-xs-12:nth-of-type(4) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(4) .date,
.mob-more-diaries .col-xs-12:nth-of-type(6) .title,
.mob-more-diaries .col-xs-12:nth-of-type(6) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(6) .date,
.mob-more-diaries .col-xs-12:nth-of-type(14) .title,
.mob-more-diaries .col-xs-12:nth-of-type(14) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(14) .date,
.mob-more-diaries .col-xs-12:nth-of-type(16) .title,
.mob-more-diaries .col-xs-12:nth-of-type(16) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(16) .date {
    color: #311919;
}

.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .news-text,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .diary-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .news-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .diary-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .news-text,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .diary-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .news-text,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .diary-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .news-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .diary-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .news-text,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(5) .news-text,
.more-news-articles .col-xs-12:nth-of-type(5) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(9) .news-text,
.more-news-articles .col-xs-12:nth-of-type(9) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(10) .news-text,
.more-news-articles .col-xs-12:nth-of-type(10) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(15) .news-text,
.more-news-articles .col-xs-12:nth-of-type(15) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(19) .news-text,
.more-news-articles .col-xs-12:nth-of-type(19) .diary-text,
.more-news-articles .col-xs-12:nth-of-type(20) .news-text,
.more-news-articles .col-xs-12:nth-of-type(20) .diary-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(1)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(1)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(2)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(3)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(3)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(4)
    .news-text,
.mob-more-news-articles
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(5) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(5) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(9) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(9) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(10) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(10) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(15) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(15) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(19) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(19) .diary-text,
.mob-more-news-articles .col-xs-12:nth-of-type(20) .news-text,
.mob-more-news-articles .col-xs-12:nth-of-type(20) .diary-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .news-text,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .diary-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .news-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .diary-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .news-text,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .diary-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .news-text,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .diary-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .news-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .diary-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .news-text,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .diary-text,
.more-biographies .col-xs-12:nth-of-type(5) .news-text,
.more-biographies .col-xs-12:nth-of-type(5) .diary-text,
.more-biographies .col-xs-12:nth-of-type(9) .news-text,
.more-biographies .col-xs-12:nth-of-type(9) .diary-text,
.more-biographies .col-xs-12:nth-of-type(10) .news-text,
.more-biographies .col-xs-12:nth-of-type(10) .diary-text,
.more-biographies .col-xs-12:nth-of-type(15) .news-text,
.more-biographies .col-xs-12:nth-of-type(15) .diary-text,
.more-biographies .col-xs-12:nth-of-type(19) .news-text,
.more-biographies .col-xs-12:nth-of-type(19) .diary-text,
.more-biographies .col-xs-12:nth-of-type(20) .news-text,
.more-biographies .col-xs-12:nth-of-type(20) .diary-text,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-biographies
    .row:nth-of-type(2)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-biographies
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(1)
    .diary-text,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-biographies
    .row:nth-of-type(3)
    > .col-sm-3:nth-of-type(2)
    .diary-text,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-biographies
    .row:nth-of-type(4)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-biographies
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(3)
    .diary-text,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-biographies
    .row:nth-of-type(5)
    > .col-sm-3:nth-of-type(4)
    .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(5) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(5) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(9) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(9) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(10) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(10) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(15) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(15) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(19) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(19) .diary-text,
.mob-more-biographies .col-xs-12:nth-of-type(20) .news-text,
.mob-more-biographies .col-xs-12:nth-of-type(20) .diary-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .news-text,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .diary-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .news-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .diary-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .news-text,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .diary-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .news-text,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .diary-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .news-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .diary-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .news-text,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .diary-text,
.more-diaries .col-xs-12:nth-of-type(5) .news-text,
.more-diaries .col-xs-12:nth-of-type(5) .diary-text,
.more-diaries .col-xs-12:nth-of-type(9) .news-text,
.more-diaries .col-xs-12:nth-of-type(9) .diary-text,
.more-diaries .col-xs-12:nth-of-type(10) .news-text,
.more-diaries .col-xs-12:nth-of-type(10) .diary-text,
.more-diaries .col-xs-12:nth-of-type(15) .news-text,
.more-diaries .col-xs-12:nth-of-type(15) .diary-text,
.more-diaries .col-xs-12:nth-of-type(19) .news-text,
.more-diaries .col-xs-12:nth-of-type(19) .diary-text,
.more-diaries .col-xs-12:nth-of-type(20) .news-text,
.more-diaries .col-xs-12:nth-of-type(20) .diary-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .diary-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .news-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .diary-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .news-text,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .diary-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .diary-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .news-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .diary-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .news-text,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(5) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(5) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(9) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(9) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(10) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(10) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(15) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(15) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(19) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(19) .diary-text,
.mob-more-diaries .col-xs-12:nth-of-type(20) .news-text,
.mob-more-diaries .col-xs-12:nth-of-type(20) .diary-text {
    background-color: #311919;
}

.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .title,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .title,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .title,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .title,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .title,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .title,
.more-news-articles .col-xs-12:nth-of-type(5) .title,
.more-news-articles .col-xs-12:nth-of-type(9) .title,
.more-news-articles .col-xs-12:nth-of-type(10) .title,
.more-news-articles .col-xs-12:nth-of-type(15) .title,
.more-news-articles .col-xs-12:nth-of-type(19) .title,
.more-news-articles .col-xs-12:nth-of-type(20) .title,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .title,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .title,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .title,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .title,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .title,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(5) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(9) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(10) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(15) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(19) .title,
.mob-more-news-articles .col-xs-12:nth-of-type(20) .title,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .title,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .title,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .title,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .title,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .title,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .title,
.more-biographies .col-xs-12:nth-of-type(5) .title,
.more-biographies .col-xs-12:nth-of-type(9) .title,
.more-biographies .col-xs-12:nth-of-type(10) .title,
.more-biographies .col-xs-12:nth-of-type(15) .title,
.more-biographies .col-xs-12:nth-of-type(19) .title,
.more-biographies .col-xs-12:nth-of-type(20) .title,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .title,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .title,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .title,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .title,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .title,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .title,
.mob-more-biographies .col-xs-12:nth-of-type(5) .title,
.mob-more-biographies .col-xs-12:nth-of-type(9) .title,
.mob-more-biographies .col-xs-12:nth-of-type(10) .title,
.mob-more-biographies .col-xs-12:nth-of-type(15) .title,
.mob-more-biographies .col-xs-12:nth-of-type(19) .title,
.mob-more-biographies .col-xs-12:nth-of-type(20) .title,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .title,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .title,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .title,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .title,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .title,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .title,
.more-diaries .col-xs-12:nth-of-type(5) .title,
.more-diaries .col-xs-12:nth-of-type(9) .title,
.more-diaries .col-xs-12:nth-of-type(10) .title,
.more-diaries .col-xs-12:nth-of-type(15) .title,
.more-diaries .col-xs-12:nth-of-type(19) .title,
.more-diaries .col-xs-12:nth-of-type(20) .title,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .title,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .title,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .title,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .title,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .title,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .title,
.mob-more-diaries .col-xs-12:nth-of-type(5) .title,
.mob-more-diaries .col-xs-12:nth-of-type(9) .title,
.mob-more-diaries .col-xs-12:nth-of-type(10) .title,
.mob-more-diaries .col-xs-12:nth-of-type(15) .title,
.mob-more-diaries .col-xs-12:nth-of-type(19) .title,
.mob-more-diaries .col-xs-12:nth-of-type(20) .title {
    color: #ffffff;
}

.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .summary,
.more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .date,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .summary,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .date,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .summary,
.more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .date,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .summary,
.more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .date,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .summary,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .date,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .summary,
.more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .date,
.more-news-articles .col-xs-12:nth-of-type(5) .summary,
.more-news-articles .col-xs-12:nth-of-type(5) .date,
.more-news-articles .col-xs-12:nth-of-type(9) .summary,
.more-news-articles .col-xs-12:nth-of-type(9) .date,
.more-news-articles .col-xs-12:nth-of-type(10) .summary,
.more-news-articles .col-xs-12:nth-of-type(10) .date,
.more-news-articles .col-xs-12:nth-of-type(15) .summary,
.more-news-articles .col-xs-12:nth-of-type(15) .date,
.more-news-articles .col-xs-12:nth-of-type(19) .summary,
.more-news-articles .col-xs-12:nth-of-type(19) .date,
.more-news-articles .col-xs-12:nth-of-type(20) .summary,
.more-news-articles .col-xs-12:nth-of-type(20) .date,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-news-articles .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .date,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .date,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-news-articles .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .date,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-news-articles .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .date,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .date,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-news-articles .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(5) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(5) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(9) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(9) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(10) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(10) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(15) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(15) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(19) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(19) .date,
.mob-more-news-articles .col-xs-12:nth-of-type(20) .summary,
.mob-more-news-articles .col-xs-12:nth-of-type(20) .date,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .summary,
.more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .date,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .summary,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .date,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .summary,
.more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .date,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .summary,
.more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .date,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .summary,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .date,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .summary,
.more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .date,
.more-biographies .col-xs-12:nth-of-type(5) .summary,
.more-biographies .col-xs-12:nth-of-type(5) .date,
.more-biographies .col-xs-12:nth-of-type(9) .summary,
.more-biographies .col-xs-12:nth-of-type(9) .date,
.more-biographies .col-xs-12:nth-of-type(10) .summary,
.more-biographies .col-xs-12:nth-of-type(10) .date,
.more-biographies .col-xs-12:nth-of-type(15) .summary,
.more-biographies .col-xs-12:nth-of-type(15) .date,
.more-biographies .col-xs-12:nth-of-type(19) .summary,
.more-biographies .col-xs-12:nth-of-type(19) .date,
.more-biographies .col-xs-12:nth-of-type(20) .summary,
.more-biographies .col-xs-12:nth-of-type(20) .date,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-biographies .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .date,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .date,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-biographies .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .date,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-biographies .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .date,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .date,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-biographies .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .date,
.mob-more-biographies .col-xs-12:nth-of-type(5) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(5) .date,
.mob-more-biographies .col-xs-12:nth-of-type(9) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(9) .date,
.mob-more-biographies .col-xs-12:nth-of-type(10) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(10) .date,
.mob-more-biographies .col-xs-12:nth-of-type(15) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(15) .date,
.mob-more-biographies .col-xs-12:nth-of-type(19) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(19) .date,
.mob-more-biographies .col-xs-12:nth-of-type(20) .summary,
.mob-more-biographies .col-xs-12:nth-of-type(20) .date,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .summary,
.more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .date,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .summary,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .date,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .summary,
.more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .date,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .summary,
.more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .date,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .summary,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .date,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .summary,
.more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .date,
.more-diaries .col-xs-12:nth-of-type(5) .summary,
.more-diaries .col-xs-12:nth-of-type(5) .date,
.more-diaries .col-xs-12:nth-of-type(9) .summary,
.more-diaries .col-xs-12:nth-of-type(9) .date,
.more-diaries .col-xs-12:nth-of-type(10) .summary,
.more-diaries .col-xs-12:nth-of-type(10) .date,
.more-diaries .col-xs-12:nth-of-type(15) .summary,
.more-diaries .col-xs-12:nth-of-type(15) .date,
.more-diaries .col-xs-12:nth-of-type(19) .summary,
.more-diaries .col-xs-12:nth-of-type(19) .date,
.more-diaries .col-xs-12:nth-of-type(20) .summary,
.more-diaries .col-xs-12:nth-of-type(20) .date,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-diaries .row:nth-of-type(2) > .col-sm-3:nth-of-type(1) .date,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .summary,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(1) .date,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .summary,
.mob-more-diaries .row:nth-of-type(3) > .col-sm-3:nth-of-type(2) .date,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-diaries .row:nth-of-type(4) > .col-sm-3:nth-of-type(3) .date,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .summary,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(3) .date,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .summary,
.mob-more-diaries .row:nth-of-type(5) > .col-sm-3:nth-of-type(4) .date,
.mob-more-diaries .col-xs-12:nth-of-type(5) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(5) .date,
.mob-more-diaries .col-xs-12:nth-of-type(9) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(9) .date,
.mob-more-diaries .col-xs-12:nth-of-type(10) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(10) .date,
.mob-more-diaries .col-xs-12:nth-of-type(15) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(15) .date,
.mob-more-diaries .col-xs-12:nth-of-type(19) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(19) .date,
.mob-more-diaries .col-xs-12:nth-of-type(20) .summary,
.mob-more-diaries .col-xs-12:nth-of-type(20) .date {
    color: #daa281;
}

/* DESKTOP NEWS ARTICLES */

/* The bits that apply to both the initial load and the extra articles load */

.news-articles,
.more-news-articles,
.biographies,
.more-biographies,
.more-diaries {
    max-width: 1000px !important;
    /* The small-boxed articles - applies to all articles loaded in when 'more news' is clicked
      Applies to articles 4, 6, 7, 8, 9 and 10 on initial load */
}

.news-articles .youtube-embed,
.more-news-articles .youtube-embed,
.biographies .youtube-embed,
.more-biographies .youtube-embed,
.more-diaries .youtube-embed {
    margin-bottom: -5px;
}

@media (max-width: 767px) {
    .news-articles,
    .more-news-articles,
    .biographies,
    .more-biographies,
    .more-diaries {
        display: none;
    }
}

.news-articles .news-row,
.news-articles .row,
.news-articles .biography-row,
.news-articles .diary-box,
.more-news-articles .news-row,
.more-news-articles .row,
.more-news-articles .biography-row,
.more-news-articles .diary-box,
.biographies .news-row,
.biographies .row,
.biographies .biography-row,
.biographies .diary-box,
.more-biographies .news-row,
.more-biographies .row,
.more-biographies .biography-row,
.more-biographies .diary-box,
.more-diaries .news-row,
.more-diaries .row,
.more-diaries .biography-row,
.more-diaries .diary-box {
    padding: 10px 0px;
}

.news-articles .news-box,
.news-articles .biography-box,
.news-articles .diary-box,
.more-news-articles .news-box,
.more-news-articles .biography-box,
.more-news-articles .diary-box,
.biographies .news-box,
.biographies .biography-box,
.biographies .diary-box,
.more-biographies .news-box,
.more-biographies .biography-box,
.more-biographies .diary-box,
.more-diaries .news-box,
.more-diaries .biography-box,
.more-diaries .diary-box {
    height: 100%;
}

.news-articles .category,
.more-news-articles .category,
.biographies .category,
.more-biographies .category,
.more-diaries .category {
    font-size: 18px;
}

.news-articles .news-text,
.more-news-articles .news-text,
.biographies .news-text,
.more-biographies .news-text,
.more-diaries .news-text {
    height: 50%;
    position: relative;
}

.news-articles .date,
.more-news-articles .date,
.biographies .date,
.more-biographies .date,
.more-diaries .date {
    max-height: 10%;
    padding: 0px 15px 5px 15px;
    position: absolute;
    bottom: 0;
}

.news-articles .summary,
.more-news-articles .summary,
.biographies .summary,
.more-biographies .summary,
.more-diaries .summary {
    max-height: 45%;
    padding: 0px 15px;
    margin-bottom: 10px;
    word-wrap: break-word;
}

.news-articles .title,
.more-news-articles .title,
.biographies .title,
.more-biographies .title,
.more-diaries .title {
    max-height: 45%;
    margin-bottom: 10px;
    padding: 10px 15px 0px 15px;
    word-wrap: break-word;
}

.news-articles .col-sm-3,
.more-news-articles .col-sm-3,
.biographies .col-sm-3,
.more-biographies .col-sm-3,
.more-diaries .col-sm-3 {
    height: 100%;
    padding: 0px 15px;
}

.news-articles .col-sm-3 img,
.news-articles .col-sm-3 .youtube-embed,
.more-news-articles .col-sm-3 img,
.more-news-articles .col-sm-3 .youtube-embed,
.biographies .col-sm-3 img,
.biographies .col-sm-3 .youtube-embed,
.more-biographies .col-sm-3 img,
.more-biographies .col-sm-3 .youtube-embed,
.more-diaries .col-sm-3 img,
.more-diaries .col-sm-3 .youtube-embed {
    width: 100%;
    height: 45%;
}

.news-articles .col-sm-3 .news-text,
.news-articles .col-sm-3 .diary-text,
.more-news-articles .col-sm-3 .news-text,
.more-news-articles .col-sm-3 .diary-text,
.biographies .col-sm-3 .news-text,
.biographies .col-sm-3 .diary-text,
.more-biographies .col-sm-3 .news-text,
.more-biographies .col-sm-3 .diary-text,
.more-diaries .col-sm-3 .news-text,
.more-diaries .col-sm-3 .diary-text {
    height: 55%;
    position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .news-articles .col-sm-3 .news-text .small-title,
    .news-articles .col-sm-3 .diary-text .small-title,
    .more-news-articles .col-sm-3 .news-text .small-title,
    .more-news-articles .col-sm-3 .diary-text .small-title,
    .biographies .col-sm-3 .news-text .small-title,
    .biographies .col-sm-3 .diary-text .small-title,
    .more-biographies .col-sm-3 .news-text .small-title,
    .more-biographies .col-sm-3 .diary-text .small-title,
    .more-diaries .col-sm-3 .news-text .small-title,
    .more-diaries .col-sm-3 .diary-text .small-title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    .news-articles .col-sm-3 .news-text .small-title,
    .news-articles .col-sm-3 .diary-text .small-title,
    .more-news-articles .col-sm-3 .news-text .small-title,
    .more-news-articles .col-sm-3 .diary-text .small-title,
    .biographies .col-sm-3 .news-text .small-title,
    .biographies .col-sm-3 .diary-text .small-title,
    .more-biographies .col-sm-3 .news-text .small-title,
    .more-biographies .col-sm-3 .diary-text .small-title,
    .more-diaries .col-sm-3 .news-text .small-title,
    .more-diaries .col-sm-3 .diary-text .small-title {
        font-size: 24px;
        line-height: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .news-articles .col-sm-3 .news-text .very-small-title,
    .news-articles .col-sm-3 .diary-text .very-small-title,
    .more-news-articles .col-sm-3 .news-text .very-small-title,
    .more-news-articles .col-sm-3 .diary-text .very-small-title,
    .biographies .col-sm-3 .news-text .very-small-title,
    .biographies .col-sm-3 .diary-text .very-small-title,
    .more-biographies .col-sm-3 .news-text .very-small-title,
    .more-biographies .col-sm-3 .diary-text .very-small-title,
    .more-diaries .col-sm-3 .news-text .very-small-title,
    .more-diaries .col-sm-3 .diary-text .very-small-title {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (min-width: 1200px) {
    .news-articles .col-sm-3 .news-text .very-small-title,
    .news-articles .col-sm-3 .diary-text .very-small-title,
    .more-news-articles .col-sm-3 .news-text .very-small-title,
    .more-news-articles .col-sm-3 .diary-text .very-small-title,
    .biographies .col-sm-3 .news-text .very-small-title,
    .biographies .col-sm-3 .diary-text .very-small-title,
    .more-biographies .col-sm-3 .news-text .very-small-title,
    .more-biographies .col-sm-3 .diary-text .very-small-title,
    .more-diaries .col-sm-3 .news-text .very-small-title,
    .more-diaries .col-sm-3 .diary-text .very-small-title {
        font-size: 22px;
        line-height: 22px;
    }
}

.news-articles.in-depth,
.more-news-articles.in-depth,
.biographies.in-depth,
.more-biographies.in-depth,
.more-diaries.in-depth {
    margin-top: 20px;
}

.news-articles.in-depth .news-row,
.more-news-articles.in-depth .news-row,
.biographies.in-depth .news-row,
.more-biographies.in-depth .news-row,
.more-diaries.in-depth .news-row {
    margin: -5px 0;
}

/* The bits that apply to just the initial load */

.news-articles,
.biographies {
    /* Article 1 */
    /* First row of news (single article) */
    /* Second row of news/first row of biographies (two articles) */
    /* Third row news/second row biographies */
    /* Fourth row (news), third row (biographies) */
}

.news-articles .col-sm-12,
.biographies .col-sm-12 {
    height: 100%;
    padding: 0px 30px;
}

.news-articles .col-sm-12 img,
.news-articles .col-sm-12 .youtube-embed,
.biographies .col-sm-12 img,
.biographies .col-sm-12 .youtube-embed {
    float: left;
    width: 60%;
    height: 100%;
}

.news-articles .col-sm-12 .news-text,
.biographies .col-sm-12 .news-text {
    float: right;
    height: 100%;
    width: 40%;
    background-color: #a83532;
}

.news-articles .col-sm-12 .title,
.biographies .col-sm-12 .title {
    padding-top: 80px;
    color: #ffffff;
}

.news-articles .col-sm-12 .date,
.news-articles .col-sm-12 .summary,
.biographies .col-sm-12 .date,
.biographies .col-sm-12 .summary {
    color: #daa281;
}

.news-articles .news-row:nth-of-type(1),
.biographies .news-row:nth-of-type(1) {
    height: 400px;
}

.news-articles .news-row:nth-of-type(2),
.news-articles .biography-row:nth-of-type(1),
.biographies .news-row:nth-of-type(2),
.biographies .biography-row:nth-of-type(1) {
    height: 620px;
    /* Article 2 (news) / article 1 (biographies) */
    /* Article 3 (news) / article 2 (biographies) */
    /* Colours for both */
}

.news-articles .news-row:nth-of-type(2) .col-sm-6:nth-of-type(1),
.news-articles .biography-row:nth-of-type(1) .col-sm-6:nth-of-type(1),
.biographies .news-row:nth-of-type(2) .col-sm-6:nth-of-type(1),
.biographies .biography-row:nth-of-type(1) .col-sm-6:nth-of-type(1) {
    padding: 0px 28px 0px 30px;
}

.news-articles .news-row:nth-of-type(2) .col-sm-6:nth-of-type(2),
.news-articles .biography-row:nth-of-type(1) .col-sm-6:nth-of-type(2),
.biographies .news-row:nth-of-type(2) .col-sm-6:nth-of-type(2),
.biographies .biography-row:nth-of-type(1) .col-sm-6:nth-of-type(2) {
    padding: 0px 30px 0px 28px;
}

.news-articles .news-row:nth-of-type(2) .col-sm-6 .news-text,
.news-articles .biography-row:nth-of-type(1) .col-sm-6 .news-text,
.biographies .news-row:nth-of-type(2) .col-sm-6 .news-text,
.biographies .biography-row:nth-of-type(1) .col-sm-6 .news-text {
    background-color: #cbcbbf;
}

.news-articles .news-row:nth-of-type(2) .col-sm-6 .date,
.news-articles .news-row:nth-of-type(2) .col-sm-6 .summary,
.news-articles .news-row:nth-of-type(2) .col-sm-6 .title,
.news-articles .biography-row:nth-of-type(1) .col-sm-6 .date,
.news-articles .biography-row:nth-of-type(1) .col-sm-6 .summary,
.news-articles .biography-row:nth-of-type(1) .col-sm-6 .title,
.biographies .news-row:nth-of-type(2) .col-sm-6 .date,
.biographies .news-row:nth-of-type(2) .col-sm-6 .summary,
.biographies .news-row:nth-of-type(2) .col-sm-6 .title,
.biographies .biography-row:nth-of-type(1) .col-sm-6 .date,
.biographies .biography-row:nth-of-type(1) .col-sm-6 .summary,
.biographies .biography-row:nth-of-type(1) .col-sm-6 .title {
    color: #252525;
}

.news-articles .news-row:nth-of-type(3),
.news-articles .biography-row:nth-of-type(2),
.biographies .news-row:nth-of-type(3),
.biographies .biography-row:nth-of-type(2) {
    height: 485px;
    /* Articles 4 and 6 (news), 3 and 5 (biographies) */
    /* Article 5 (news), 4 (biographies)*/
}

.news-articles .news-row:nth-of-type(3) .col-sm-3,
.news-articles .biography-row:nth-of-type(2) .col-sm-3,
.biographies .news-row:nth-of-type(3) .col-sm-3,
.biographies .biography-row:nth-of-type(2) .col-sm-3 {
    padding: 0px 15px;
}

.news-articles .news-row:nth-of-type(3) .col-sm-3 .news-text,
.news-articles .biography-row:nth-of-type(2) .col-sm-3 .news-text,
.biographies .news-row:nth-of-type(3) .col-sm-3 .news-text,
.biographies .biography-row:nth-of-type(2) .col-sm-3 .news-text {
    background-color: #daa281;
}

.news-articles .news-row:nth-of-type(3) .col-sm-3 .date,
.news-articles .news-row:nth-of-type(3) .col-sm-3 .summary,
.news-articles .news-row:nth-of-type(3) .col-sm-3 .title,
.news-articles .biography-row:nth-of-type(2) .col-sm-3 .date,
.news-articles .biography-row:nth-of-type(2) .col-sm-3 .summary,
.news-articles .biography-row:nth-of-type(2) .col-sm-3 .title,
.biographies .news-row:nth-of-type(3) .col-sm-3 .date,
.biographies .news-row:nth-of-type(3) .col-sm-3 .summary,
.biographies .news-row:nth-of-type(3) .col-sm-3 .title,
.biographies .biography-row:nth-of-type(2) .col-sm-3 .date,
.biographies .biography-row:nth-of-type(2) .col-sm-3 .summary,
.biographies .biography-row:nth-of-type(2) .col-sm-3 .title {
    color: #252525;
}

.news-articles .news-row:nth-of-type(3) .col-sm-6,
.news-articles .biography-row:nth-of-type(2) .col-sm-6,
.biographies .news-row:nth-of-type(3) .col-sm-6,
.biographies .biography-row:nth-of-type(2) .col-sm-6 {
    padding: 0px 30px;
}

.news-articles .news-row:nth-of-type(3) .col-sm-6 .news-text,
.news-articles .biography-row:nth-of-type(2) .col-sm-6 .news-text,
.biographies .news-row:nth-of-type(3) .col-sm-6 .news-text,
.biographies .biography-row:nth-of-type(2) .col-sm-6 .news-text {
    background-color: #311919;
}

.news-articles .news-row:nth-of-type(3) .col-sm-6 .summary,
.news-articles .news-row:nth-of-type(3) .col-sm-6 .date,
.news-articles .biography-row:nth-of-type(2) .col-sm-6 .summary,
.news-articles .biography-row:nth-of-type(2) .col-sm-6 .date,
.biographies .news-row:nth-of-type(3) .col-sm-6 .summary,
.biographies .news-row:nth-of-type(3) .col-sm-6 .date,
.biographies .biography-row:nth-of-type(2) .col-sm-6 .summary,
.biographies .biography-row:nth-of-type(2) .col-sm-6 .date {
    color: #daa281;
}

@media only screen and (min-width: 992px) {
    .news-articles .news-row:nth-of-type(3) .col-sm-6 .date,
    .news-articles .biography-row:nth-of-type(2) .col-sm-6 .date,
    .biographies .news-row:nth-of-type(3) .col-sm-6 .date,
    .biographies .biography-row:nth-of-type(2) .col-sm-6 .date {
        margin-bottom: 2px;
    }
}

@media only screen and (min-width: 1200px) {
    .news-articles .news-row:nth-of-type(3) .col-sm-6 .date,
    .news-articles .biography-row:nth-of-type(2) .col-sm-6 .date,
    .biographies .news-row:nth-of-type(3) .col-sm-6 .date,
    .biographies .biography-row:nth-of-type(2) .col-sm-6 .date {
        margin-bottom: 4px;
    }
}

.news-articles .news-row:nth-of-type(3) .col-sm-6 .title,
.news-articles .biography-row:nth-of-type(2) .col-sm-6 .title,
.biographies .news-row:nth-of-type(3) .col-sm-6 .title,
.biographies .biography-row:nth-of-type(2) .col-sm-6 .title {
    color: #ffffff;
}

.news-articles .news-row:nth-of-type(4),
.news-articles .biography-row:nth-of-type(3),
.biographies .news-row:nth-of-type(4),
.biographies .biography-row:nth-of-type(3) {
    height: 485px;
    /* Colours for 7 and 8 (news), 6 and 7 (biographies) */
    /* Colours for 9 and 10 (news), 8 and 9 (biographies) */
}

.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .news-text,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .news-text,
.news-articles
    .biography-row:nth-of-type(3)
    .col-sm-3:nth-of-type(1)
    .news-text,
.news-articles
    .biography-row:nth-of-type(3)
    .col-sm-3:nth-of-type(2)
    .news-text,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .news-text,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .news-text,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(1) .news-text,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(2) .news-text {
    background-color: #cbcbbf;
}

.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .title,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .summary,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .date,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .title,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .summary,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .date,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(1) .title,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(1) .summary,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(1) .date,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(2) .title,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(2) .summary,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(2) .date,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .title,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .summary,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(1) .date,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .title,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .summary,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(2) .date,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(1) .title,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(1) .summary,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(1) .date,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(2) .title,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(2) .summary,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(2) .date {
    color: #252525;
}

.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .news-text,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .news-text,
.news-articles
    .biography-row:nth-of-type(3)
    .col-sm-3:nth-of-type(3)
    .news-text,
.news-articles
    .biography-row:nth-of-type(3)
    .col-sm-3:nth-of-type(4)
    .news-text,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .news-text,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .news-text,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(3) .news-text,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(4) .news-text {
    background-color: #311919;
}

.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .title,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .title,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(3) .title,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(4) .title,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .title,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .title,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(3) .title,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(4) .title {
    color: #ffffff;
}

.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .summary,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .date,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .summary,
.news-articles .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .date,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(3) .summary,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(3) .date,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(4) .summary,
.news-articles .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(4) .date,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .summary,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(3) .date,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .summary,
.biographies .news-row:nth-of-type(4) .col-sm-3:nth-of-type(4) .date,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(3) .summary,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(3) .date,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(4) .summary,
.biographies .biography-row:nth-of-type(3) .col-sm-3:nth-of-type(4) .date {
    color: #daa281;
}

/* The bits that apply only to the extra articles loaded */

.more-news-articles .row,
.more-biographies .row,
.more-diaries .row {
    height: 485px;
}

/* The size of the images on the col-sm-6 articles varies between news and biographies */

.news-articles .col-sm-6 {
    height: 100%;
}

.news-articles .col-sm-6 img,
.news-articles .col-sm-6 .youtube-embed {
    width: 100%;
    height: 60%;
}

.news-articles .col-sm-6 .news-text {
    height: 40%;
}

.biographies .col-sm-6 {
    height: 100%;
}

.biographies .col-sm-6 img {
    width: 100%;
    height: 71%;
}

.biographies .col-sm-6 .news-text {
    height: 29%;
}

#additional-news-container,
#additional-biographies-container {
    padding: 0px;
}

.row-eq-height {
    display: flex;
}

.tours-container {
    padding: 0px;
    width: auto !important;
    max-width: 1280px !important;
}

.tours-container .row {
    margin-right: 0px;
}

.tours-container .tour-list-container {
    padding-left: 2em;
}

.tours-container .tour-list-container .tour-entry.tour-date {
    padding-right: 0px;
}

@media (min-width: 992px) {
    .tours-container .tour-list-container {
        padding-right: 0px;
        padding-left: 3em;
    }
}

#tours {
    font: 500 normal 1em "futura-pt", arial, sans-serif;
    letter-spacing: -1px;
    position: relative;
    min-height: 500px;
}

#tours #filters-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

#tours #filters-container #filtersLeftContainer {
    position: absolute;
    width: 180px;
    left: 0;
}

#tours #filters-container #filtersRightContainer {
    position: absolute;
    right: 0;
}

#tours .main-tour .date-box {
    background-color: #252525;
    color: #fff;
    font-size: 2.6em;
    text-align: center;
}

#tours .main-tour .content-peach {
    background-color: #daa281;
    color: #fff;
}

#tours .main-tour .content-red {
    background-color: #a83532;
    color: #fff;
}

#tours .main-tour .content-grey {
    background-color: #9ca89c;
    color: #fff;
}

#tours .main-tour .content-brown {
    background-color: #311919;
    color: #fff;
}

#tours .tour-date .col-md-12 {
    margin: 0 0 10px;
    padding: 0;
}

#tours .tour-date .date-box-peach {
    color: #fff;
    background-color: #daa281;
}

#tours .tour-date .date-box-red {
    color: #fff;
    background-color: #a83532;
}

#tours .tour-date .date-box-grey {
    color: #fff;
    background-color: #9ca89c;
}

#tours .tour-date .date-box-brown {
    color: #fff;
    background-color: #311919;
}

#tours .tour-date .date-box-without a {
    color: #252525 !important;
    background-color: #fff;
}

#tours .tour-date .content {
    background-color: #252525;
    color: #fff;
}

#tours .tour-date .content-past {
    background-color: #f1f0ec;
}

#tours .tour-date .content-past a {
    color: #252525 !important;
}

#tours .search-tour form .styled-select {
    overflow: hidden;
    background: url(/images/icon-down.png?e60266a1e6f37b1bec69de537b2e0748)
        no-repeat right 5px #252525;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#tours .search-tour form .styled-select select {
    background: transparent;
    padding: 5px 41px 5px 5px;
    font-size: 16px;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
    width: 100%;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
}

#tours .search-tour form .styled-select select option {
    color: #fff;
    background-color: #252525;
    text-align: center;
}

#tours .filter-tour {
    width: 160px;
    padding-left: 1px;
}

#tours .filter-tour .form-header {
    background-color: #252525;
    color: #fff;
    text-transform: uppercase;
    padding: 0 5px;
    text-align: center;
    cursor: pointer;
}

#tours .filter-tour .form-body {
    display: none;
    margin-top: 2px;
    background-color: #252525;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

#tours .filter-tour .form-body .form-group {
    position: relative;
    margin: 0;
}

#tours .filter-tour .form-body .form-group .checkbox-custom-label {
    padding: 5px 0;
    width: 100%;
    margin: 0;
    outline: none;
    font: 300 normal 12px "futura-pt", arial, sans-serif;
    letter-spacing: 0px;
}

#tours .filter-tour .form-body .form-group .checkbox-custom-label i {
    font-size: 25px;
    display: block;
    margin: 0 auto;
    width: 52px;
    height: 42px;
}

#tours
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-swag {
    background: url(/images/shirt.jpg?75f8a70799c606b08d1bda9571850afe);
}

#tours
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-image {
    background: url(/images/camera.jpg?3de1c5eb7cb7961692747c4b22f7bbb5);
}

#tours
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-video {
    background: url(/images/video.jpg?f41d569e9679fc0af6055655ead36f1b);
}

#tours
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-download {
    background: url(/images/download.jpg?8247cdab5dd6885868e71cac7b15827b);
}

#tours
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-cd {
    background: url(/images/cd.jpg?c5e64bb093fbeb1c22123eea2563e388);
}

#tours
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-live {
    background: url(/images/live.jpg?4117da831ac84bc39360e3cdf0cd03a0);
}

#tours
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-session {
    background: url(/images/session.jpg?7d4546723878420a9740cc0523be389e);
}

#tours .tour-entry-small-text {
    font-size: small;
}

#tours .loader {
    text-align: center;
    display: none;
}

#tours .custom-pagination {
    text-align: center;
    margin-top: 20px;
    min-height: 40px;
}

#tours .front-tour-date {
    font: 500 normal 1em "futura-pt", arial, sans-serif;
    letter-spacing: -1px;
}

#tours .front-tour-date .mobile-album-images-row {
    margin-bottom: 10px;
}

#tours .front-tour-date .band-logo {
    margin-bottom: 40px;
}

#tours .front-tour-date .album-cover img {
    width: 100%;
    max-height: none !important;
}

#tours .front-tour-date #description {
    font: 400 normal 18px "futura-pt", arial, sans-serif;
}

#tours .front-tour-date .main-column {
    float: right;
}

#tours .front-tour-date .main-column .main-row {
    padding: 0 15px 0 15px;
}

@media (min-width: 991px) {
    #tours .front-tour-date .left-column {
        float: left;
    }
}

#tours .front-tour-date .album-infos {
    height: 100%;
    padding: 10px;
    background-color: #a83532;
    color: #fff;
    text-align: center;
    font: 500 normal 1.4em "futura-pt", arial, sans-serif;
}

@media (min-width: 767px) and (max-width: 991px) {
    #tours .front-tour-date .album-infos {
        font-size: 1.3em;
    }
}

#tours .front-tour-date .album-infos #audio-source {
    margin: 0px;
}

@media (max-width: 767px) {
    #tours .front-tour-date .album-infos {
        font-size: 1em;
    }

    #tours .front-tour-date .album-infos #audio-source {
        display: none;
    }
}

#tours .front-tour-date .album-infos .dgm-rating {
    padding: 0px;
}

@media (max-width: 767px) {
    #tours .front-tour-date .album-infos .dgm-rating {
        margin: 0px auto;
    }
}

@media (min-width: 768px) {
    #tours .front-tour-date .album-infos .dgm-rating {
        margin-top: 10px;
    }
}

@media (max-width: 420px) {
    #tours .front-tour-date .album-infos .dgm-rating {
        margin-left: 0px;
        width: 100%;
    }
}

@media (max-width: 991px) {
    #tours .front-tour-date .album-infos .dgm-rating .audio-rating-img {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 992px) {
    #tours .front-tour-date .album-infos .dgm-rating .audio-rating-img {
        width: 40px;
        height: 40px;
    }
}

@media (min-width: 1200px) {
    #tours .front-tour-date .album-infos .dgm-rating .audio-rating-img {
        width: 45px;
        height: 45px;
    }
}

#tours .front-tour-date .album-infos .customer-rating {
    padding: 0px;
}

@media (max-width: 767px) {
    #tours .front-tour-date .album-infos .customer-rating {
        margin: 0px auto;
    }
}

@media (min-width: 768px) {
    #tours .front-tour-date .album-infos .customer-rating {
        margin: 20px auto 0px auto;
    }
}

@media (max-width: 420px) {
    #tours .front-tour-date .album-infos .customer-rating {
        width: 100%;
        margin: 10px auto;
    }
}

#tours .front-tour-date .album-infos .customer-rating #customer-rating-text {
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    #tours
        .front-tour-date
        .album-infos
        .customer-rating
        #customer-rating-text {
        margin-bottom: 12px;
    }
}

@media (max-width: 420px) {
    #tours
        .front-tour-date
        .album-infos
        .customer-rating
        #customer-rating-text {
        margin: auto;
        text-align: center;
    }
}

#tours .front-tour-date .album-container {
    margin-bottom: 50px;
}

#tours .front-tour-date .album-container .album-content {
    font: 500 normal 1.2em "futura-pt", arial, sans-serif;
    margin: 30px 0 20px;
}

#tours .front-tour-date .album-container .album-content .album-content-header {
    font: 700 normal 1em "futura-pt", arial, sans-serif;
    border-bottom: 3px solid #cbcbbf;
    padding: 10px 0;
}

#tours .front-tour-date .album-container .album-content .album-content-line {
    padding: 5px 0;
}

#tours
    .front-tour-date
    .album-container
    .album-content
    .album-content-line
    .track-number {
    color: #96a296;
}

#tours
    .front-tour-date
    .album-container
    .album-content
    .album-content-line
    .play-control {
    cursor: pointer;
}

@media (max-width: 768px) {
    #tours
        .front-tour-date
        .album-container
        .album-content
        .album-content-line
        .track-title {
        text-align: center;
    }
}

#tours
    .front-tour-date
    .album-container
    .album-content
    .album-content-line
    .player {
    margin-top: 5px;
}

#tours
    .front-tour-date
    .album-container
    .album-content
    .album-content-line:nth-child(even) {
    background: #ffffff;
}

#tours
    .front-tour-date
    .album-container
    .album-content
    .album-content-line:nth-child(odd) {
    background: #f1f0ec;
}

#tours .front-tour-date .album-container .download-links-holder {
    padding: 0;
}

#tours
    .front-tour-date
    .album-container
    .download-links-holder
    .album-purchase-button-container {
    display: inline-block;
    padding: 30px;
    vertical-align: top;
}

@media (max-width: 767px) {
    #tours
        .front-tour-date
        .album-container
        .download-links-holder
        .album-purchase-button-container {
        padding: 10px;
    }
}

#tours .front-tour-date hr {
    border-top: 1px solid #cbcbbf;
    margin: 20px auto 0;
}

#tours .front-tour-date .diary-entries {
    background-color: #fff;
    padding-top: 30px;
}

#tours .front-tour-date .diary-entries h2 {
    margin: 0 auto 30px;
    text-align: center;
    text-transform: uppercase;
    font: bold normal 1.8em futura-pt, sans-serif;
}

#tours .front-tour-date .diary-entries .diary-entry .col-md-4 img {
    max-height: 150px !important;
    margin-bottom: 20px;
}

#tours .front-tour-date .diary-entries .diary-entry .content {
    padding: 0 0 20px 0;
    font: 400 normal 1.2em futura-pt, sans-serif;
}

#tours .front-tour-date .diary-entries .sep {
    border-bottom: 1px solid #cbcbbf;
    margin-bottom: 20px;
}

#tours .front-tour-date .hide-on-mobile {
    display: block;
}

#tours .front-tour-date .show-on-mobile {
    display: none;
}

#tours .nextAndPreviousPhotosContainer {
    background-color: #fff;
}

#tours .nextAndPreviousPhotosContainer .arrow-right,
#tours .nextAndPreviousPhotosContainer .arrow-left {
    top: 55px !important;
}

.recommended-albums {
    margin-top: 30px;
}

.recommended-albums a {
    color: #252525 !important;
}

.recommended-albums h2 {
    margin: 0 auto 5px;
    text-align: center;
    text-transform: uppercase;
    font: bold normal 1.8em futura-pt, sans-serif;
}

.recommended-albums .slick-slider .slick-prev {
    left: 32.2%;
    z-index: 10;
    width: 24px;
    height: 37px;
}

.recommended-albums .slick-slider .slick-next {
    right: 32.2%;
    z-index: 10;
    width: 24px;
    height: 37px;
}

.recommended-albums .slick-slider .slick-slide {
    margin: 0 15px;
}

.recommended-albums .slick-slider .slick-slide.slide-container {
    padding: 0.5%;
    outline: none;
}

.recommended-albums .slick-slider .slick-slide.slide-container a {
    display: block;
}

.recommended-albums .slick-slider .slick-slide.slide-container a .album {
    display: table;
    width: 100%;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row {
    display: table-row;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date {
    display: table-cell;
    border: 2px solid #cbcbbf;
    text-align: center;
    width: 50%;
    vertical-align: middle;
    padding: 5px 0;
    border-bottom: 0;
    border-right: 0;
    height: 120px;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date
    p {
    margin: 0;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date
    p.day {
    font: bold normal 3em futura-pt, sans-serif;
    line-height: 0.8;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date
    p.month {
    font: 500 normal 1em futura-pt, sans-serif;
    line-height: 1;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date
    p.year {
    font: 500 normal 1em futura-pt, sans-serif;
    line-height: 1;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date.date-box-peach {
    color: #fff;
    background-color: #daa281;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date.date-box-red {
    color: #fff;
    background-color: #a83532;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date.date-box-grey {
    color: #fff;
    background-color: #9ca89c;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date.date-box-brown {
    color: #fff;
    background-color: #311919;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .date
    .date-box-without {
    color: #252525 !important;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .image {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    border-bottom: 0;
    position: relative;
    height: 120px;
    overflow: hidden;
    background-color: #252525;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .image
    img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .venue {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    background-color: #fff;
    text-align: center;
    padding: 5px 0;
    border-right: 0;
    vertical-align: middle;
    height: 120px;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .venue
    .venue-name {
    font: bold normal 18px futura-pt, sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .venue
    .venue-location {
    font: 500 italic 16px futura-pt, sans-serif;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .description {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    padding: 5px 0;
    line-height: 1;
    background-color: #9ca89c;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .description
    p {
    padding: 0 5px;
    margin: 0;
    font-size: 14px;
    position: absolute;
    top: 37px;
}

@media (max-width: 352px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-row
        .description
        p {
        font-size: 13px;
    }
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .description
    .customer-rating {
    text-align: center;
    display: block;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container {
    position: relative;
    top: 5px;
    margin: -5px 0px 0px 0px;
    padding: 0;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container
    .star-box {
    margin: auto;
    left: 0px;
    position: relative;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container
    .star-bg {
    margin: auto;
    left: 0px;
    position: relative;
    top: -31px;
    color: #6f7a6f;
}

@media (max-width: 400px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-row
        .description
        .customer-rating
        .stars-container
        .star-bg {
        top: -26px;
    }
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container
    .glyphicon {
    font-size: 25px !important;
}

@media (max-width: 400px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-row
        .description
        .customer-rating
        .stars-container
        .glyphicon {
        font-size: 20px !important;
    }
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row {
    display: table-row;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .image {
    display: table-cell;
    width: 240px;
    height: auto;
    border: 2px solid #cbcbbf;
    border-right: 0;
    background-color: #9ca89c;
    position: relative;
    max-height: 240px;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .image
    img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 240px;
    max-height: 240px;
    height: 100%;
}

@media (min-width: 380px) and (max-width: 480px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .image {
        width: 180px;
        max-height: 180px;
    }

    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .image
        img {
        width: 180px;
        max-height: 180px;
    }
}

@media (max-width: 379px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .image {
        width: 140px;
        max-height: 140px;
    }

    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .image
        img {
        width: 140px;
        max-height: 140px;
    }
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .description-and-rating {
    overflow: hidden;
    display: table-cell;
    height: 240px;
    width: auto;
    border: 2px solid #cbcbbf;
    background-color: #cbcbbf;
    position: relative;
    float: left;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .description-and-rating
    .album-title {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
    margin-top: 10px;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .description-and-rating
    .customer-rating {
    display: block;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .description-and-rating
    .customer-rating
    .stars-container {
    margin: 0;
    position: relative;
    width: 100%;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    display: block;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .description-and-rating
    .customer-rating
    .stars-container
    img {
    display: inline-block;
}

@media (min-width: 1300px) and (max-width: 1430px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating
        .customer-rating
        .stars-container
        img {
        width: 17%;
    }
}

@media (min-width: 768px) and (max-width: 940px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating
        .customer-rating
        .stars-container
        img {
        width: 17%;
    }
}

@media (max-width: 475px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating
        .customer-rating
        .stars-container
        img {
        width: 16%;
    }
}

@media (max-width: 767px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating
        .customer-rating
        .stars-container {
        padding-top: 0;
        padding-bottom: 5px;
    }
}

@media (min-width: 768px) and (max-width: 800px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating
        .customer-rating
        .stars-container {
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .description-and-rating
    .description {
    line-height: 1;
}

.recommended-albums
    .slick-slider
    .slick-slide.slide-container
    a
    .album
    .slide-full-row
    .description-and-rating
    p {
    padding: 0 5px;
    margin-bottom: 0 !important;
}

@media (min-width: 380px) and (max-width: 480px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating {
        height: 180px;
    }
}

@media (max-width: 379px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating {
        height: 140px;
    }
}

@media (min-width: 321px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .album
        .slide-full-row
        .description-and-rating
        .description {
        padding-left: 3px;
        padding-right: 3px;
    }
}

@media (min-width: 380px) and (max-width: 480px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .two-col-album {
        margin-top: 30px;
    }
}

@media (max-width: 379px) {
    .recommended-albums
        .slick-slider
        .slick-slide.slide-container
        a
        .two-col-album {
        margin-top: 50px;
    }
}

.video-container .row {
    background-color: #ffffff;
    padding-left: 55px;
    padding-top: 35px;
    padding-right: 15px;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .video-container .row {
        padding-right: 0;
    }
}

@media (min-width: 768px) {
    .video-container .download-div {
        position: relative;
        transform: translateY(200%);
    }
}

@media (max-width: 992px) {
    .video-container .row {
        padding-left: 0;
    }
}

.video-container .individual-video-container {
    padding: 0 10px 10px 0;
}

.video-container .individual-video-container p {
    font-size: 18px;
}

.video-container .main-video {
    background-color: #f1f0ec;
    padding-left: 15px;
}

@media (min-width: 1200px) {
    .video-container .main-video {
        padding-left: 0;
    }
}

.video-container .video-list {
    background-color: #f1f0ec;
}

.video-container .main-video .col-sm-12 {
    padding-left: 0;
}

.video-container .main-video .col-sm-12 p {
    font-size: 20px;
    padding-bottom: 2px;
    padding-top: 2px;
    margin-bottom: 0;
}

/* CUSTOM CHECKBOX */

.checkbox-custom,
.radio-custom {
    opacity: 0;
    position: absolute;
}

.checkbox-custom,
.checkbox-custom-label,
.radio-custom,
.radio-custom-label {
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
    cursor: pointer;
}

.checkbox-custom-label,
.radio-custom-label {
    position: relative;
}

.checkbox-custom + .checkbox-custom-label:before,
.radio-custom + .radio-custom-label:before {
    content: "";
    background: #fff;
    border: 2px solid #cbcbbf;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    padding: 2px;
    margin-right: 10px;
    text-align: center;
    position: absolute;
    right: -20px;
    top: 25px;
}

.checkbox-custom:checked + .checkbox-custom-label:before {
    background: #a83532;
}

.radio-custom + .radio-custom-label:before {
    border-radius: 50%;
}

.radio-custom:checked + .radio-custom-label:before {
    background: #a83532;
}

#scrollToFirstHistoric {
    cursor: pointer;
    padding: 0px 10px !important;
}

#filtersContainerMobile {
    margin: 1em 0em;
    display: table;
    width: 100%;
}

#filtersContainerMobile #mobileBeforeFilter {
    padding: 0px;
}

#filtersContainerMobile .filterIcons {
    padding: 5px 0px;
    background-color: #252525;
    color: #fff;
    text-align: center;
    display: inline-block;
    max-height: 56px;
}

#filtersContainerMobile img {
    width: 35px;
}

#filtersContainerMobile .filterIcon {
    display: none;
}

#filtersContainerMobile .filterIconEmpty {
    height: 56px;
}

#filtersContainerMobile #mobileSearch {
    float: left;
    width: 80%;
    height: 56px;
    padding-right: 0px;
}

#filtersContainerMobile #mobileSearch input {
    width: 100%;
    padding: 7px;
    border: #252525 solid 2px;
    height: 90%;
    margin-top: 3px;
}

#filtersContainerMobile #mobileFilterSort {
    display: none;
    padding: 0px;
    margin-top: 10px;
}

#filtersContainerMobile form .styled-select {
    overflow: hidden;
    background: url(/images/icon-down.png?e60266a1e6f37b1bec69de537b2e0748)
        no-repeat right 5px #252525;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#filtersContainerMobile form .styled-select select {
    background: transparent;
    padding: 5px;
    font-size: 13px;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
    width: 100%;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: "";
}

#filtersContainerMobile form .styled-select select option {
    color: #fff;
    background-color: #252525;
    text-align: center;
}

#filtersContainerMobile form input[type="checkbox"] {
    display: none;
}

#filtersContainerMobile form label {
    margin-bottom: 0px;
    font-weight: normal;
}

@media (max-width: 1300px) {
    .recommended-albums .slick-slider .slick-prev {
        left: -10px;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    .recommended-albums .slick-slider .slick-next {
        right: -10px;
        z-index: 10;
        width: 24px;
        height: 37px;
    }
}

@media (max-width: 767px) {
    #tours .left-column .img-responsive,
    #tours .left-column .members-list {
        display: none !important;
    }

    #tours .main-column .members-list {
        display: block !important;
    }

    #tours .members-list ul {
        margin: 0;
    }

    .recommended-albums .slick-slider .customer-rating {
        display: none;
    }
}

@media (max-width: 991px) {
    #filtersContainerMobile {
        display: block;
    }

    #filtersLeftContainer,
    #filtersRightContainer {
        display: none;
    }
}

@media (min-width: 992px) {
    #filtersContainerMobile {
        display: none;
    }

    #filtersLeftContainer,
    #filtersRightContainer {
        display: block;
    }
}

@media (max-width: 992px) {
    .tour-entry .media-content-container .media-content {
        display: none !important;
    }

    .tour-entry .hide-on-mobile {
        display: none !important;
    }

    .tour-entry .show-on-mobile {
        display: block !important;
    }
}

@media (max-width: 520px) {
    .tour-entry .content p:first-child {
        font-size: 1.3em !important;
    }
}

@media (max-width: 335px) {
    .tour-entry .content p:first-child {
        font-size: 1.2em !important;
    }
}

@media (max-width: 300px) {
    .tour-entry .content p:first-child {
        font-size: 1.1em !important;
    }
}

@media (max-width: 520px) {
    .tour-entry .content p:last-child {
        font-size: 1.2em !important;
    }
}

@media (max-width: 335px) {
    .tour-entry .content p:last-child {
        font-size: 1.1em !important;
    }
}

@media (max-width: 300px) {
    .tour-entry .content p:last-child {
        font-size: 1em !important;
    }
}

@media (max-width: 767px) {
    .tour-entry .date-box {
        font-size: 2em !important;
    }

    .tour-entry .tickets,
    .tour-entry .sold-out {
        font-size: 1em !important;
        padding: 0;
    }

    .tour-date-row .date-box .part-left {
        font-size: 1.2em !important;
    }

    .tour-date-row .date-box .part-right {
        font-size: 0.6em !important;
        padding: 5px 0 0 0px !important;
    }

    .tour-date-row .date-box .part-right div:last-child {
        font-size: 0.8em !important;
    }

    .album-container {
        margin-bottom: 50px;
    }

    .hide-on-mobile {
        display: none !important;
    }

    .show-on-mobile {
        display: block !important;
    }
}

@media (max-width: 430px) {
    #filtersContainerMobile form .styled-select {
        background-size: 40px;
        background-position-y: 8px;
    }
}

@media (max-width: 405px) {
    #filtersContainerMobile form .styled-select {
        background-size: 35px;
        background-position-y: 9px;
    }

    #filtersContainerMobile form .styled-select select {
        font-size: 12px;
    }
}

@media (max-width: 370px) {
    #filtersContainerMobile form .styled-select select {
        font-size: 11px;
    }
}

@media (max-width: 350px) {
    #filtersContainerMobile form .styled-select select {
        font-size: 10px;
    }
}

@media (max-width: 330px) {
    #filtersContainerMobile form .styled-select select {
        font-size: 9px;
    }
}

.stars-container {
    padding: 15px;
    /* This looks ridiculous, but it's necessary*/
}

@media (max-width: 991px) {
    .stars-container {
        margin: -26px 0 0 -35px;
    }
}

@media (min-width: 768px) {
    .stars-container {
        margin: -36px -21px;
    }
}

@media (min-width: 992px) {
    .stars-container {
        margin: -30px -17px;
    }
}

@media (min-width: 1200px) {
    .stars-container {
        margin: -30px 10px;
    }
}

.stars-container .star-box,
.stars-container .star-bg {
    color: #ffffff;
    position: absolute;
    margin: 3px;
    display: table;
}

@media (max-width: 991px) {
    .stars-container .star-box,
    .stars-container .star-bg {
        left: 50%;
        margin-left: -80px;
        margin-top: 10px;
    }
}

.stars-container .glyphicon {
    display: table-cell;
    padding: 3px;
}

@media (max-width: 991px) {
    .stars-container .glyphicon {
        font-size: 27px !important;
    }
}

@media (min-width: 992px) {
    .stars-container .glyphicon {
        font-size: 39px !important;
    }
}

@media (min-width: 1200px) {
    .stars-container .glyphicon {
        font-size: 42px !important;
    }
}

.stars-container .star-box {
    z-index: 2;
}

.stars-container .star-bg {
    color: #840b17;
}

.stars-container .star-limiter {
    overflow: hidden;
    position: relative;
}

.stars-container-main {
    top: -30px;
    position: relative;
    margin: auto;
}

@media (max-width: 991px) {
    .stars-container-main {
        margin: auto;
    }
}

@media (min-width: 768px) {
    .stars-container-main {
        margin: 0px -21px;
    }
}

@media (min-width: 992px) {
    .stars-container-main {
        margin: 0px -17px;
    }
}

@media (min-width: 1200px) {
    .stars-container-main {
        margin: 0px 10px;
    }
}

@media (max-width: 420px) {
    .stars-container-main {
        padding: 0px;
        top: 0px;
        margin-bottom: 25px;
    }
}

.tour-date-header {
    position: relative;
}

.tour-date-header h1 {
    text-align: center;
    text-transform: uppercase;
}

.tour-date-header .arrow-left {
    position: absolute;
    top: 18px;
    left: -20px;
}

.tour-date-header .arrow-right {
    position: absolute;
    top: 18px;
    right: -20px;
}

@media (max-width: 991px) {
    .tour-date-header .arrow-left {
        position: absolute;
        top: 18px;
        left: -5px;
    }

    .tour-date-header .arrow-right {
        position: absolute;
        top: 18px;
        right: -5px;
    }

    .tour-date-header h4 {
        padding-left: 15%;
    }
}

.members-list {
    margin-top: 10px;
    text-align: center;
}

.members-list ul {
    list-style: none;
    padding: 0px;
}

.members-list ul li a {
    font: 400 normal 1.2em "futura-pt", arial, sans-serif;
}

.members-list ul li a span {
    font: 500 normal 1.2em "futura-pt", arial, sans-serif;
}

.ticket-tour-date .col-md-12 {
    margin: 0 0 10px;
    padding: 0;
}

.ticket-tour-date .date-box-peach {
    color: #fff;
    background-color: #daa281;
}

.ticket-tour-date .date-box-red {
    color: #fff;
    background-color: #a83532;
}

.ticket-tour-date .date-box-grey {
    color: #fff;
    background-color: #9ca89c;
}

.ticket-tour-date .date-box-brown {
    color: #fff;
    background-color: #311919;
}

.ticket-tour-date .date-box-without a {
    color: #252525 !important;
    background-color: #fff;
}

.ticket-tour-date .content {
    background-color: #252525;
    color: #fff;
}

.ticket-tour-date .content-past {
    background-color: #f1f0ec;
}

.ticket-tour-date .content-past a {
    color: #252525 !important;
}

.tour-entry {
    display: table;
    height: 75px;
    letter-spacing: -1px;
}

.tour-entry .col-md-12 {
    margin: 0 0 10px;
    padding: 0;
}

.tour-entry [class*="col-"] {
    float: none;
    display: table-cell;
    vertical-align: top;
}

.tour-entry .artist-box {
    border: 3px solid #d1d0cc;
    display: table-cell;
    vertical-align: middle;
    font-style: italic;
    font-weight: 300;
}

.tour-entry .date-box {
    border: 3px solid #d1d0cc;
    display: table-cell;
    vertical-align: middle;
    font: bold normal 1em "futura-pt", arial, sans-serif;
}

.tour-entry .date-box col-md-2 {
    padding: 0;
}

.tour-entry .date-box a {
    color: #fff !important;
}

.tour-entry .date-box .part-right {
    text-transform: uppercase;
    float: right;
    width: 50%;
    font-size: 1.4em;
    line-height: 0.5em;
    padding: 15px 0 0 5px;
    text-align: left;
}

@media (max-width: 767px) {
    .tour-entry .date-box .part-right {
        text-transform: uppercase;
        float: right;
        width: 100%;
        font-size: 0.7em;
        line-height: 0.5em;
        padding: 12px 10px 0 10px;
        text-align: center;
    }

    .tour-entry .date-box .part-right div {
        display: inline-block;
    }
}

.tour-entry .date-box .part-right div:last-child {
    font: 500 normal 1em "futura-pt", arial, sans-serif;
}

.tour-entry .date-box .part-left {
    float: left;
    width: 50%;
    font-size: 2.8em;
    text-align: right;
}

@media (max-width: 767px) {
    .tour-entry .date-box .part-left {
        float: left;
        width: 100%;
        font-size: 1em;
        text-align: center;
    }
}

.tour-entry .content {
    border: 3px solid #d1d0cc;
    border-left: 0;
    display: table-cell;
    vertical-align: middle;
    padding: 0px;
}

.tour-entry .content a {
    color: #fff !important;
}

.tour-entry .content p {
    text-align: center;
    font-size: 1.5em;
    line-height: 1em;
    margin: 0;
}

.tour-entry .content p:first-child {
    font-size: 1.8em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1em;
}

.tour-entry .content p:last-child {
    font: 300 normal 1.5em/1em "futura-pt", arial, sans-serif;
}

.tour-entry .tickets {
    border: 3px solid #d1d0cc;
    border-left: 0;
    text-align: center;
    text-transform: uppercase;
    display: table-cell;
    vertical-align: middle;
    font: bold normal 1.2em "futura-pt", arial, sans-serif;
}

.tour-entry .sold-out {
    border: 3px solid #d1d0cc;
    border-left: 0;
    font: bold normal 1.2em "futura-pt", arial, sans-serif;
    line-height: 1em;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background-color: #d1d0cc;
    display: table-cell;
    vertical-align: middle;
}

.tour-entry .media-content-container {
    position: relative;
    margin: 0;
    padding: 0;
}

.tour-entry .media-content-container col-md-2 {
    margin: 0;
    padding: 0;
}

.tour-entry .media-content-container .media-content {
    float: left;
    border: 3px solid #d1d0cc;
    border-left: 0;
    text-align: center;
    background-color: #252525;
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    margin: 0;
    padding: 0;
    min-width: 61px;
}

.tour-entry .media-content-container .media-content ul {
    width: 29px;
    list-style: none;
    margin: 0;
    padding: 0px;
    display: block;
    float: left;
}

.tour-entry .media-content-container .media-content ul li {
    margin: 0;
    padding: 0;
    height: 22px;
}

.tour-entry .media-content-container .media-content ul li a {
    display: block;
}

.tour-entry .media-content-container .media-content ul li a i {
    font-size: 25px;
    display: block;
    margin: 0 auto;
    width: 28px;
    height: 25px;
}

.tour-entry .media-content-container .media-content ul li a .content-swag {
    background: url(/images/shirt.jpg?75f8a70799c606b08d1bda9571850afe)
        no-repeat top left/28px;
}

.tour-entry .media-content-container .media-content ul li a .content-image {
    background: url(/images/camera.jpg?3de1c5eb7cb7961692747c4b22f7bbb5)
        no-repeat top left/28px;
}

.tour-entry .media-content-container .media-content ul li a .content-video {
    background: url(/images/video.jpg?f41d569e9679fc0af6055655ead36f1b)
        no-repeat top left/28px;
}

.tour-entry .media-content-container .media-content ul li a .content-download {
    background: url(/images/download.jpg?8247cdab5dd6885868e71cac7b15827b)
        no-repeat top left/28px;
}

.tour-entry .media-content-container .media-content ul li a .content-cd {
    background: url(/images/cd.jpg?c5e64bb093fbeb1c22123eea2563e388) no-repeat
        top left/28px;
}

.tour-entry .media-content-container .media-content ul li a .content-live {
    background: url(/images/live.jpg?4117da831ac84bc39360e3cdf0cd03a0) no-repeat
        top left/28px;
}

.tour-entry .media-content-container .media-content ul li a .content-session {
    background: url(/images/session.jpg?7d4546723878420a9740cc0523be389e)
        no-repeat top left/28px;
}

.tour-entry .media-content-container .download-content {
    border: 3px solid #d1d0cc;
    border-left: 0;
    float: left;
    position: relative;
    overflow-x: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background-color: #252525;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.tour-entry .media-content-container .download-content a {
    display: block;
}

.tour-entry .media-content-container .download-content a img {
    width: 100%;
    height: 75px;
    -o-object-fit: cover;
    object-fit: cover;
}

.tour-entry .media-content-container .download-content a .dl-icon {
    position: absolute;
    bottom: 2px;
    left: 5px;
    color: #fff;
}

#autocomplete-tours-search::-webkit-input-placeholder {
    color: #cbcbbf;
}

#autocomplete-tours-search:-moz-placeholder {
    color: #cbcbbf;
}

#autocomplete-tours-search::-moz-placeholder {
    color: #cbcbbf;
}

#autocomplete-tours-search::-ms-input-placeholder {
    color: #cbcbbf;
}

#autocomplete-tours-search {
    font-size: 22px;
    border: 2px solid #252525;
}

.social-icons {
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 768px) {
    .social-icons {
        width: 60%;
    }
}

@media only screen and (min-width: 768px) {
    .social-icons {
        width: 250px;
    }
}

.social-icons img {
    padding: 10px;
}

@media only screen and (max-width: 768px) {
    #tags-div {
        width: 75%;
    }
}

@media only screen and (min-width: 768px) {
    #tags-div {
        width: 60%;
    }
}

#recent-searches-div {
    margin-bottom: 90px;
}

@media only screen and (max-width: 768px) {
    #recent-searches-div {
        display: none;
    }
}

.tags-label {
    float: left;
    padding: 3px 0px 0px 0px;
}

.searches-label {
    float: left;
    padding: 3px 0px 0px 15px;
}

.news-article-container {
    max-width: 1170px !important;
    padding-bottom: 20px;
}

.news-article-container .title {
    color: #a83532;
    font-size: 30px;
}

.news-article-container img {
    max-width: 100%;
}

.news-article-container .right-sidebar-column {
    padding-left: 10px;
}

@media (max-width: 768px) {
    .news-article-container .social-sharing {
        padding: 0 !important;
    }
}

.article-title {
    font-size: 30px;
    line-height: 30px;
    font-weight: 500;
    color: #a83532;
}

@media (max-width: 767px) {
    .article-title {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.article-content {
    font-size: 18px;
    line-height: 21px;
}

@media (max-width: 767px) {
    .article-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.custom-breadcrumb {
    margin-bottom: 10px;
    width: 100%;
    background-color: #fff;
}

@media (min-width: 1000px) {
    .custom-breadcrumb {
        margin-bottom: 30px;
    }
}

.custom-breadcrumb ul {
    border-radius: 0px;
    padding: 0;
    margin: 0;
}

.custom-breadcrumb ul li {
    display: inline-block;
    padding: 3px 0;
    text-transform: uppercase;
}

.custom-breadcrumb ul li .no-pad {
    padding-right: 0px !important;
}

.custom-breadcrumb ul li :first-child {
    padding-left: 10px;
}

.custom-breadcrumb ul li :last-child {
    padding-right: 10px;
}

.custom-breadcrumb ul li.grey {
    background-color: #cbcbbf;
    color: #fff;
}

.custom-breadcrumb ul li.grey a {
    color: #fff !important;
}

.article-sidebar {
    font-size: 18px;
}

@media (max-width: 768px) {
    .article-sidebar {
        padding-top: 20px;
    }
}

.article-sidebar form {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .article-sidebar form {
        display: none;
    }
}

@media (min-width: 768px) {
    .article-column {
        padding-left: 80px !important;
    }
}

@media (max-width: 768px) {
    .article-column {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .article-column .article-image-link .article-image {
        margin: 0 auto;
    }
}

#map-container {
    position: relative;
}

@media only screen and (min-width: 992px) {
    #map-container {
        position: relative;
        top: -30px;
        padding: 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    #map-container {
        width: 100% !important;
    }
}

@media only screen and (min-width: 1200px) {
    #map-container {
        width: 1280px !important;
    }
}

#map-container .col-md-11 {
    height: 100%;
    padding: 0px;
}

#map-container .col-md-1 {
    height: 100%;
    padding: 0px;
}

#map-container #filtersContainerMobile {
    position: absolute;
    z-index: 1;
    padding: 0px 30px;
    margin: 15px 15px 15px -15px;
}

#map-container #autocomplete-form {
    height: 100%;
    padding-right: 10px;
}

#map-container #autocomplete-map-search::-webkit-input-placeholder {
    color: #cbcbbf;
}

#map-container #autocomplete-map-search:-moz-placeholder {
    color: #cbcbbf;
}

#map-container #autocomplete-map-search::-moz-placeholder {
    color: #cbcbbf;
}

#map-container #autocomplete-map-search::-ms-input-placeholder {
    color: #cbcbbf;
}

#map-container #autocomplete-map-search {
    padding-left: 10px;
    float: right;
    width: 80%;
    height: 100%;
    font-size: 22px;
    border: 2px solid #252525;
}

#map-container #map {
    height: 600px;
    width: 100%;
    /* Change zoom button colour */
    /* Set infobox background transparent */
    /* Sizing infowindow */
    /* Positioning infowindow close button */
}

#map-container #map .gm-style > .gmnoprint > .gmnoprint div[title="Zoom in"] {
    background-color: #daa281;
}

#map-container #map .gm-style > .gmnoprint > .gmnoprint div[title="Zoom out"] {
    background-color: #daa281;
}

#map-container #map .gm-style {
    background-color: #f1f0ec;
}

#map-container
    #map
    .gm-style
    > div:first-child
    > div
    + div
    > div:last-child
    > div
    > div:first-child
    > div {
    background-color: transparent !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
}

#map-container #map .gm-style-iw,
#map-container #map .gm-style-iw > div:first-child {
    width: 300px !important;
    max-width: 300px !important;
}

#map-container #map .gm-style-iw + div {
    right: 24px !important;
}

@media (max-width: 992px) {
    #map-container .filter-tour,
    #map-container #map-filters {
        display: none;
    }
}

#map-container .filter-tour {
    width: 130px;
    padding: 0px 15px;
    position: absolute;
    right: 0px;
    top: 10px;
}

#map-container .filter-tour .form-body {
    height: 100%;
}

#map-container .filter-tour .fa {
    height: 20px !important;
}

#map-container .filter-tour .form-header {
    background-color: #252525;
    color: #fff;
    text-transform: uppercase;
    padding: 0 5px;
    text-align: center;
    cursor: pointer;
}

#map-container .filter-tour .form-body {
    display: none;
    margin-top: 2px;
    background-color: #252525;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
}

#map-container .filter-tour .form-body .form-group {
    position: relative;
    margin: 0;
}

#map-container .filter-tour .form-body .form-group .checkbox-custom-label {
    padding: 5px 0;
    width: 100%;
    margin: 0;
    outline: none;
    font: 300 normal 12px "futura-pt", arial, sans-serif;
    letter-spacing: 0px;
}

#map-container .filter-tour .form-body .form-group .checkbox-custom-label i {
    font-size: 25px;
    display: block;
    margin: 0 auto;
    width: 52px;
    height: 42px;
}

#map-container
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-swag {
    background: url(/images/shirt.jpg?75f8a70799c606b08d1bda9571850afe);
}

#map-container
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-image {
    background: url(/images/camera.jpg?3de1c5eb7cb7961692747c4b22f7bbb5);
}

#map-container
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-video {
    background: url(/images/video.jpg?f41d569e9679fc0af6055655ead36f1b);
}

#map-container
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-download {
    background: url(/images/download.jpg?8247cdab5dd6885868e71cac7b15827b);
}

#map-container
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-cd {
    background: url(/images/cd.jpg?c5e64bb093fbeb1c22123eea2563e388);
}

#map-container
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-live {
    background: url(/images/live.jpg?4117da831ac84bc39360e3cdf0cd03a0);
}

#map-container
    .filter-tour
    .form-body
    .form-group
    .checkbox-custom-label
    .checkbox-icon-session {
    background: url(/images/session.jpg?7d4546723878420a9740cc0523be389e);
}

#map-container #mobileSearch {
    float: left;
    width: 70%;
    height: 56px;
}

.map-filter-tours-mobile {
    font: 500 1em "futura-pt", arial, sans-serif;
    letter-spacing: -1px;
}

.map-filter-tours-mobile .mob-filter-icon-red {
    display: none;
}

#map-filters {
    text-align: center;
    width: 65%;
    margin: auto;
    top: -50px;
    position: relative;
}

#map-filters select {
    -webkit-appearance: none;
    -moz-appearance: none;
}

#map-filters #artist-filter-div,
#map-filters #year-filter-div,
#map-filters #sort-filter-div {
    width: 30%;
    float: left;
    margin: 0px 10px;
}

.map-search-tour form .styled-select {
    overflow: hidden;
    background: url(/images/icon-down.png?e60266a1e6f37b1bec69de537b2e0748)
        no-repeat right 5px #252525;
    border: 1px solid #ccc;
    border-radius: 8px;
}

.map-search-tour form .styled-select select {
    background: transparent;
    padding-left: 10px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    border: 0;
    border-radius: 0;
    height: 34px;
    -webkit-appearance: none;
    width: 100%;
    text-align: left;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
}

.map-search-tour form .styled-select select option {
    color: #ffffff;
    background: #252525;
    text-align: center;
}

#tour-map-venue-dates-container {
    width: 300px !important;
    margin: 0px;
    padding: 0px;
}

#tour-map-venue-dates-container .popup-hover {
    display: none;
    min-width: 50px;
}

#tour-map-venue-dates-container .popup-hover .artist-logo {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

#tour-map-venue-dates-container .popup-hover .tour-name {
    font-size: 12px !important;
    line-height: 12px !important;
    padding: 1px !important;
}

#tour-map-venue-dates-container .date-box:hover .popup-hover {
    display: block;
}

#tour-map-venue-dates-container .date-box:hover .part-right {
    padding: 1px !important;
    text-transform: none !important;
}

#tour-map-venue-dates-container .date-box:hover .date-left,
#tour-map-venue-dates-container .date-box:hover .date-right {
    display: none;
}

#tour-map-venue-dates-container .col-xs-6 {
    padding: 2px;
}

#tour-map-venue-dates-container .tour-dates-row {
    padding: 0px;
    margin: 0px;
}

#tour-map-venue-dates-container .popup-header-row {
    margin: 0px 0px 2px 0px;
}

#tour-map-venue-dates-container .popup-header-row .map-popup-header {
    background: #f1f0ec;
    padding: 0px;
    border-width: 1px;
    border-style: solid;
    border-color: #cbcbbf;
}

#tour-map-venue-dates-container
    .popup-header-row
    .map-popup-header
    .venue-name {
    padding-top: 3px;
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    color: #252525;
}

#tour-map-venue-dates-container .popup-header-row .map-popup-header .city-name {
    color: #252525;
    padding-bottom: 3px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 500;
    font-style: italic;
    text-align: center;
}

#tour-map-venue-dates-container .date-box {
    height: 60px;
    padding: 5px;
    border: 3px solid #d1d0cc;
    vertical-align: middle;
    font: bold normal 1em "futura-pt", arial, sans-serif;
}

#tour-map-venue-dates-container .date-box a {
    color: #fff !important;
}

#tour-map-venue-dates-container .date-box .part-right {
    text-transform: uppercase;
    float: right;
    width: 50%;
    font-size: 1.4em;
    line-height: 0.5em;
    padding: 12px 0 0 10px;
    text-align: left;
}

#tour-map-venue-dates-container .date-box .part-right div:last-child {
    font: 500 normal 1em "futura-pt", arial, sans-serif;
}

#tour-map-venue-dates-container .date-box .part-left {
    float: left;
    width: 50%;
    font-size: 3em;
    text-align: right;
}

#tour-map-venue-dates-container .date-box-peach {
    color: #fff;
    background-color: #daa281;
}

#tour-map-venue-dates-container .date-box-red {
    color: #fff;
    background-color: #a83532;
}

#tour-map-venue-dates-container .date-box-grey {
    color: #fff;
    background-color: #9ca89c;
}

#tour-map-venue-dates-container .date-box-brown {
    color: #fff;
    background-color: #311919;
}

#tour-map-venue-dates-container .date-box-without a {
    color: #252525 !important;
    background-color: #fff;
}

#newsletterSignupModal .modal-dialog {
    width: auto;
}

@media (min-width: 500px) {
    #newsletterSignupModal .modal-dialog {
        width: 500px;
    }
}

#newsletterSignupModal .modal-header {
    border-bottom: none;
    padding: 5px 10px 0px 10px;
}

#newsletterSignupModal .modal-header .close {
    font-size: 2.5em;
    color: #fff;
    opacity: 1;
}

#newsletterSignupModal .modal-content {
    background-color: #a23232;
    color: #fff;
    border-radius: 0px;
}

#newsletterSignupModal .modal-content .modal-body {
    padding: 0px 15px;
    text-align: center;
    font-size: 1.1em;
}

@media (max-width: 500px) {
    #newsletterSignupModal .modal-content .modal-body #newsletterLogo {
        width: 100%;
    }
}

#newsletterSignupModal .modal-content .modal-body #mainContent {
    line-height: 1em;
    font-size: 1.1em;
}

@media (min-width: 500px) {
    #newsletterSignupModal .modal-content .modal-body #mainContent {
        font-size: 1.5em;
    }
}

#newsletterSignupModal .modal-content .modal-body #signature {
    line-height: 0.5em;
    color: #d6a281;
    margin: 10px 0px 15px 0px;
}

#newsletterSignupModal #addEmailForm input {
    font-weight: 500;
}

#newsletterSignupModal #addEmailForm input[type="email"] {
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #a23232;
    background-color: #d6a281;
    border: solid #cbcabe 1px;
}

#newsletterSignupModal #addEmailForm input[type="submit"] {
    width: 100%;
    padding: 5px;
    text-align: center;
    color: #a23232;
    background-color: #fff;
    border-radius: 10px;
    font-weight: bold;
    font-size: 26px;
    border-color: transparent !important;
}

#newsletterSignupModal
    #addEmailForm
    input[type="email"]::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #a23232;
}

#newsletterSignupModal #addEmailForm input[type="email"]:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #a23232;
}

#newsletterSignupModal #addEmailForm input[type="email"]::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #a23232;
}

#newsletterSignupModal #addEmailForm input[type="email"]:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #a23232;
}

.homepage-videos-container {
    max-width: 1035px !important;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .homepage-videos-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.homepage-videos-container .main-video .col-sm-12 {
    padding-left: 0;
}

.homepage-videos-container .main-video .col-sm-12 p {
    font-size: 20px;
    padding-bottom: 2px;
    padding-top: 2px;
    margin-bottom: 0;
}

.homepage-videos-container .individual-video-container {
    padding: 0 10px 10px 0;
}

.homepage-videos-container .individual-video-container p {
    font-size: 18px;
}

.aphorisms {
    text-align: center;
    margin-bottom: 2rem;
}

.aphorisms p {
    font-size: large;
    font-style: italic;
}

#members {
    font: 400 normal 16px "futura-pt", arial, sans-serif;
    letter-spacing: -1px;
}

#members .presentation {
    padding-bottom: 30px;
}

#members .presentation h1 {
    text-align: center;
    text-transform: uppercase;
    font: bold normal 1.8em "futura-pt", arial, sans-serif;
    margin: 0 auto 10px;
}

#members .presentation .tags {
    margin-top: 50px;
}

#members .presentation .tags ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#members .presentation .tags ul li {
    display: inline-block;
    margin: 0 10px 15px 0;
}

#members .presentation .tags ul li a {
    border: 1px solid #cbcbbf;
    color: #cbcbbf !important;
    padding: 2px 10px;
}

@media (max-width: 991px) {
    #members .presentation {
        margin-top: 50px;
    }

    #members .presentation .tags {
        margin-top: 20px !important;
    }

    #members .presentation .tags .text-right {
        text-align: center;
        margin-bottom: 10px;
    }

    #members .presentation .tags ul {
        text-align: center;
    }

    #members .presentation h1 {
        margin: 20px auto 10px !important;
    }
}

#members .related-members {
    margin-top: 30px;
    border-bottom: 2px solid #cbcbbf;
}

#members .related-members h2 {
    margin: 0 auto 5px;
    text-align: center;
    text-transform: uppercase;
    font: bold normal 1.8em futura-pt, sans-serif;
}

#members .related-members .slick-slider {
    margin-bottom: 20px;
}

#members .related-members .slick-slider .slick-prev {
    left: 41.6%;
    z-index: 10;
    width: 24px;
    height: 37px;
    top: 40%;
}

#members .related-members .slick-slider .slick-next {
    right: 41.6%;
    z-index: 10;
    width: 24px;
    height: 37px;
    top: 40%;
}

#members .related-members .slick-slider .slick-slide {
    width: 195px;
    padding: 0;
    margin: 0 15px;
}

#members .related-members .slick-slider .slick-slide.slick-center {
    width: 325px;
}

#members .related-members .slick-slider .slick-slide .image-container {
    padding: 5px;
}

#members .related-members .slick-slider .slick-slide .image-container a {
    height: 120px;
    overflow: hidden;
    outline: none;
}

#members .related-members .slick-slider .slick-slide .image-container a img {
    border-radius: 50%;
    height: 100%;
    max-width: 120px;
}

#members .related-members .slick-slider .slick-slide .name-container {
    margin-top: 10px;
}

#members .related-members .slick-slider .slick-slide .name-container a {
    font: bold normal 18px futura-pt, sans-serif;
    text-align: center;
    outline: none;
}

@media (max-width: 1200px) {
    #members .related-members .slick-slider .slick-prev {
        left: 38.5%;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    #members .related-members .slick-slider .slick-next {
        right: 38.5%;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    #members .related-members .slick-slider .slick-slide .image-container a {
        height: 140px;
    }

    #members
        .related-members
        .slick-slider
        .slick-slide
        .image-container
        a
        img {
        max-width: 140px;
    }
}

@media (max-width: 992px) {
    #members .related-members .slick-slider .slick-prev {
        left: 31%;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    #members .related-members .slick-slider .slick-next {
        right: 31%;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    #members .related-members .slick-slider .slick-slide .image-container a {
        height: 160px;
    }

    #members
        .related-members
        .slick-slider
        .slick-slide
        .image-container
        a
        img {
        max-width: 160px;
    }
}

@media (max-width: 768px) {
    #members .related-members .slick-slider .slick-prev {
        left: 10%;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    #members .related-members .slick-slider .slick-next {
        right: 10%;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    #members .related-members .slick-slider .slick-slide .image-container a {
        height: 180px;
    }

    #members
        .related-members
        .slick-slider
        .slick-slide
        .image-container
        a
        img {
        max-width: 180px;
    }
}

.members-involved .form-group {
    min-height: 60px;
}

.members-involved .member-actions {
    position: relative;
}

.members-involved .member-actions button {
    position: absolute;
    bottom: 0;
}

#photo-grid-container {
    margin-top: 50px;
    margin-bottom: 50px;
    max-width: 1035px !important;
    padding: 0px;
}

#artist-header-img-div {
    text-align: center;
    margin: auto;
    padding-bottom: 56px;
    top: -30px;
    position: relative;
}

@media screen and (max-width: 991px) {
    #artist-header-img-div {
        top: -10px;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 1000px) {
    #artist-header-img-div img {
        padding: 1px;
        top: -1px;
        position: relative;
    }
}

@media screen and (max-width: 1280px) {
    #artist-header-img-div img {
        width: 100%;
    }
}

#artist-word-grid-section {
    background-color: #ffffff;
    padding: 60px 0px;
}

#artist-word-grid-section .frontpage-news-articles {
    background-color: #ffffff;
}

/* Mobile news listing colours - structure is defined in homepage-news.css */

#mob-artist-about-grid .col-xs-12:nth-of-type(1) .title {
    color: #ffffff;
}

#mob-artist-about-grid .col-xs-12:nth-of-type(1) .summary {
    color: #daa281;
}

#mob-artist-about-grid .col-xs-12:nth-of-type(2) .title,
#mob-artist-about-grid .col-xs-12:nth-of-type(4) .title,
#mob-artist-about-grid .col-xs-12:nth-of-type(5) .title,
#mob-artist-about-grid .col-xs-12:nth-of-type(6) .title {
    color: #252525;
}

#mob-artist-about-grid .col-xs-12:nth-of-type(2) .summary,
#mob-artist-about-grid .col-xs-12:nth-of-type(4) .summary,
#mob-artist-about-grid .col-xs-12:nth-of-type(5) .summary,
#mob-artist-about-grid .col-xs-12:nth-of-type(6) .summary {
    color: #252525;
}

#mob-artist-about-grid .col-xs-12:nth-of-type(2) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(4) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(5) .text-content,
#mob-artist-about-grid .col-xs-12:nth-of-type(6) .text-content {
    background-color: #cbcbbf;
}

#mob-artist-about-grid .col-xs-12:nth-of-type(3) .title {
    color: #daa281;
}

#mob-artist-about-grid .col-xs-12:nth-of-type(3) .summary {
    color: #ffffff;
}

#mob-artist-about-grid .col-xs-12:nth-of-type(3) .text-content {
    background-color: #a83532;
}

#artist-about-grid {
    max-width: 1035px !important;
    margin-bottom: 50px;
    padding: 0px;
}

@media (max-width: 767px) {
    #artist-about-grid {
        display: none;
    }
}

#artist-about-grid .youtube-embed {
    margin-bottom: -5px;
}

#artist-about-grid .content-box {
    height: 100%;
    padding: 0px;
}

#artist-about-grid .text-content {
    background-color: #cbcbbf;
}

#artist-about-grid .text-content .fa-stack {
    background-color: #252525;
}

#artist-about-grid .text-content .fa {
    color: #cbcbbf;
}

#artist-about-grid .text-content .title {
    padding: 5px;
}

@media only screen and (max-width: 768px) {
    #artist-about-grid .text-content .title {
        font-size: 22px;
        line-height: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #artist-about-grid .text-content .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #artist-about-grid .text-content .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 1200px) {
    #artist-about-grid .text-content .title {
        font-size: 22px;
        line-height: 22px;
    }
}

#artist-about-grid .text-content .summary {
    padding: 0px 5px 5px 5px;
    font-style: italic;
}

#artist-about-grid [class*="col-"] {
    height: 100%;
    padding: 0px;
}

#artist-about-grid .row:first-of-type {
    padding: 0px;
    margin: 0px 0px 20px 0px;
    height: 377px;
}

#artist-about-grid .row:first-of-type .col-1 {
    float: left;
    width: 27.4%;
    padding-right: 10px;
}

#artist-about-grid .row:first-of-type .col-1 img {
    width: 100%;
    height: 70.8%;
    padding-bottom: 20px;
}

#artist-about-grid .row:first-of-type .col-1 .text-content {
    height: 29.2%;
}

#artist-about-grid .row:first-of-type .col-2 {
    float: left;
    width: 72.6%;
    padding-left: 10px;
}

#artist-about-grid .row:first-of-type .col-2 img,
#artist-about-grid .row:first-of-type .col-2 .youtube-embed {
    width: 100%;
    height: 75%;
}

#artist-about-grid .row:first-of-type .col-2 .content-box {
    /* Background image is set inline */
    height: 100%;
    position: relative;
}

#artist-about-grid .row:first-of-type .col-2 .text-content {
    height: 25%;
    position: absolute;
    bottom: 0;
    width: 100%;
}

#artist-about-grid .row:first-of-type .col-2 .text-content .title {
    color: #ffffff;
    text-shadow: 2px 2px #252525;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    #artist-about-grid .row:first-of-type .col-2 .text-content .title {
        font-size: 30px;
        line-height: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #artist-about-grid .row:first-of-type .col-2 .text-content .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #artist-about-grid .row:first-of-type .col-2 .text-content .title {
        font-size: 25px;
        line-height: 25px;
    }
}

@media only screen and (min-width: 1200px) {
    #artist-about-grid .row:first-of-type .col-2 .text-content .title {
        font-size: 30px;
        line-height: 30px;
    }
}

#artist-about-grid .row:first-of-type .col-2 .text-content .summary,
#artist-about-grid
    .row:first-of-type
    .col-2
    .text-content
    .text-content-hover
    > a {
    color: #daa281 !important;
}

#artist-about-grid .row:first-of-type .col-2 .text-content .fa-stack {
    background-color: #daa281;
}

#artist-about-grid .row:first-of-type .col-2 .text-content .fa {
    color: #252525;
}

#artist-about-grid .row:last-of-type {
    padding: 0px;
    margin: 0px;
    height: 310px;
}

#artist-about-grid .row:last-of-type .col-1 {
    float: left;
    width: 27.4%;
    padding-right: 10px;
}

#artist-about-grid .row:last-of-type .col-1 .text-content {
    height: 100%;
}

#artist-about-grid .row:last-of-type .col-1 .content-box:nth-of-type(1) {
    height: 57%;
    margin-bottom: 20px;
}

#artist-about-grid
    .row:last-of-type
    .col-1
    .content-box:nth-of-type(1)
    .text-content {
    background-color: #a83532;
}

#artist-about-grid
    .row:last-of-type
    .col-1
    .content-box:nth-of-type(1)
    .text-content
    .title {
    color: #daa281;
}

#artist-about-grid
    .row:last-of-type
    .col-1
    .content-box:nth-of-type(1)
    .text-content
    .summary,
#artist-about-grid
    .row:last-of-type
    .col-1
    .content-box:nth-of-type(1)
    .text-content
    .text-content-hover
    > a {
    color: #ffffff !important;
}

#artist-about-grid
    .row:last-of-type
    .col-1
    .content-box:nth-of-type(1)
    .text-content
    .fa-stack {
    background-color: #ffffff;
}

#artist-about-grid
    .row:last-of-type
    .col-1
    .content-box:nth-of-type(1)
    .text-content
    .fa {
    color: #a83532;
}

#artist-about-grid .row:last-of-type .col-1 .content-box:nth-of-type(2) {
    height: 36.7%;
}

#artist-about-grid .row:last-of-type .col-2 {
    float: left;
    width: 36.3%;
    padding: 0px 10px 0px 10px;
}

#artist-about-grid .row:last-of-type .col-3 {
    float: left;
    width: 36.3%;
    padding-left: 10px;
}

#artist-about-grid .row:last-of-type .col-2 img,
#artist-about-grid .row:last-of-type .col-2 .youtube-embed,
#artist-about-grid .row:last-of-type .col-3 img,
#artist-about-grid .row:last-of-type .col-3 .youtube-embed {
    width: 100%;
    height: 57%;
}

#artist-about-grid .row:last-of-type .col-2 .text-content,
#artist-about-grid .row:last-of-type .col-3 .text-content {
    height: 43%;
}

#artist-about-grid .row:last-of-type .col-2 .text-content .title,
#artist-about-grid .row:last-of-type .col-3 .text-content .title {
    padding-top: 24px;
}

#artist-music-grid {
    max-width: 1035px !important;
    margin-bottom: 50px;
    margin-top: 50px;
}

@media (max-width: 991px) {
    #artist-music-grid {
        padding: 0 !important;
    }
}

#artist-music-grid .small-title {
    font-size: 18px !important;
    line-height: 18px !important;
}

#artist-music-grid .row:first-of-type {
    padding: 0px;
    margin: 0px 0px 20px 0px;
    height: 950px;
}

@media (max-width: 767px) {
    #artist-music-grid .row:first-of-type {
        height: auto;
    }
}

#artist-music-grid .row .col-1 {
    float: left;
    width: 27.4%;
    padding-right: 10px;
    height: 100%;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    #artist-music-grid .row .col-1 {
        width: 100%;
        padding: 0 15px;
    }
}

#artist-music-grid .row .col-1 .music-content-box {
    margin-bottom: 20px;
}

#artist-music-grid .row .col-1 .music-content-box:last-child {
    margin-bottom: 0;
}

#artist-music-grid .row .col-2 {
    float: left;
    width: 45.2%;
    padding: 0 10px;
    height: 100%;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    #artist-music-grid .row .col-2 {
        width: 100%;
        padding: 0 15px;
    }
}

#artist-music-grid .row .col-2 .music-content-box {
    margin-bottom: 20px;
}

#artist-music-grid .row .col-2 .music-content-box:last-child {
    margin-bottom: 0;
}

#artist-music-grid .row .col-3 {
    float: left;
    width: 27.4%;
    padding-left: 10px;
    height: 100%;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    #artist-music-grid .row .col-3 {
        width: 100%;
        padding: 0 15px;
    }
}

#artist-music-grid .row .col-3 .music-content-box {
    margin-bottom: 20px;
}

#artist-music-grid .row .col-3 .music-content-box:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-static-image-container {
        display: none;
    }
}

#artist-music-grid
    .row
    .music-content-box:hover
    > div.content-container
    div.content {
    display: none;
}

@media (max-width: 767px) {
    #artist-music-grid
        .row
        .music-content-box:hover
        > div.content-container
        div.content {
        display: block;
    }
}

#artist-music-grid
    .row
    .music-content-box:hover
    > div.content-container
    div.content-hover {
    display: block;
}

@media (max-width: 767px) {
    #artist-music-grid
        .row
        .music-content-box:hover
        > div.content-container
        div.content-hover {
        display: none;
    }
}

#artist-music-grid .row .music-content-box a {
    display: block;
}

#artist-music-grid .row .music-content-box img {
    height: auto;
    width: auto;
}

#artist-music-grid .row .music-content-box .music-static-image {
    height: 100%;
    width: 100%;
}

#artist-music-grid .row .music-content-box.small {
    height: 113px;
}

#artist-music-grid .row .music-content-box.small .img-container {
    height: 113px;
    width: 50%;
    overflow: hidden;
    position: relative;
    float: left;
    background-color: #311919;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.small .img-container {
        width: 42%;
    }
}

#artist-music-grid .row .music-content-box.small .img-container img {
    width: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.small .img-container img {
        height: 100%;
    }
}

#artist-music-grid
    .row
    .music-content-box.small
    .img-container
    img.img-responsive {
    max-width: none;
}

#artist-music-grid .row .music-content-box.small .content-container {
    height: 113px;
    width: 50%;
    padding: 5px;
    background-color: #311919;
    font-size: 18px;
    line-height: 18px;
    float: left;
    position: relative;
}

@media (max-width: 992px) {
    #artist-music-grid .row .music-content-box.small .content-container {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.small .content-container {
        width: 58%;
        padding: 10px;
    }
}

#artist-music-grid .row .music-content-box.small .content-container a {
    color: #ffffff;
}

#artist-music-grid .row .music-content-box.small .content-container a:hover {
    text-decoration: none;
    color: #ffffff;
}

#artist-music-grid .row .music-content-box.small .content-container a .title {
    font-size: 22px;
    line-height: 22px;
    margin: 10px 0 15px;
    color: #ffffff;
}

#artist-music-grid .row .music-content-box.small .content-container .content {
    font-style: italic;
    color: #daa281;
}

#artist-music-grid
    .row
    .music-content-box.small
    .content-container
    .content-hover {
    display: none;
}

#artist-music-grid
    .row
    .music-content-box.small
    .content-container
    .content-hover
    a {
    font-weight: 500;
    display: inline-block;
}

#artist-music-grid
    .row
    .music-content-box.small
    .content-container
    .content-hover
    a:first-child {
    margin-right: 8px;
}

#artist-music-grid
    .row
    .music-content-box.small
    .content-container
    .content-hover
    .fa-stack {
    background-color: #ffffff;
    border-radius: 50%;
}

#artist-music-grid
    .row
    .music-content-box.small
    .content-container
    .content-hover
    .fa-stack
    i {
    color: #311919 !important;
    font-size: 16px;
}

@media (max-width: 767px) {
    #artist-music-grid
        .row
        .music-content-box.small
        .content-container
        .content-hover {
        display: none;
    }
}

#artist-music-grid
    .row
    .music-content-box.small
    .content-container
    img.download {
    top: 0;
    position: absolute;
    right: 0;
    width: 30px;
}

#artist-music-grid .row .music-content-box.medium {
    height: 465px;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.medium {
        height: 170px;
    }
}

#artist-music-grid .row .music-content-box.medium .img-container {
    height: 245px;
    overflow: hidden;
    position: relative;
    background-color: #cbcbbf;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.medium .img-container {
        width: 42%;
        float: left;
        height: 170px;
    }
}

#artist-music-grid .row .music-content-box.medium .img-container img {
    height: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

@media (max-width: 991px) {
    #artist-music-grid .row .music-content-box.medium .img-container img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        padding-right: 15px;
    }
}

#artist-music-grid
    .row
    .music-content-box.medium
    .img-container
    img.img-responsive {
    max-width: none;
}

#artist-music-grid .row .music-content-box.medium .content-container {
    height: 220px;
    padding: 5px;
    background-color: #cbcbbf;
    font-size: 18px;
    line-height: 18px;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.medium .content-container {
        font-size: 16px;
        width: 58%;
        float: left;
        height: 170px;
        padding-left: 10px;
    }
}

#artist-music-grid .row .music-content-box.medium .content-container a:hover {
    text-decoration: none;
    color: #252525;
}

#artist-music-grid .row .music-content-box.medium .content-container a .title {
    font-size: 22px;
    line-height: 22px;
    margin: 10px 0 15px;
}

#artist-music-grid .row .music-content-box.medium .content-container .content {
    font-style: italic;
}

#artist-music-grid
    .row
    .music-content-box.medium
    .content-container
    .content-hover {
    display: none;
}

#artist-music-grid
    .row
    .music-content-box.medium
    .content-container
    .content-hover
    a {
    font-weight: 500;
    display: inline-block;
}

#artist-music-grid
    .row
    .music-content-box.medium
    .content-container
    .content-hover
    a:first-child {
    margin-right: 10px;
}

#artist-music-grid
    .row
    .music-content-box.medium
    .content-container
    .content-hover
    .fa-stack {
    background-color: #252525;
    border-radius: 50%;
}

#artist-music-grid
    .row
    .music-content-box.medium
    .content-container
    .content-hover
    .fa-stack
    i {
    color: #cbcbbf !important;
    font-size: 16px;
}

@media (max-width: 767px) {
    #artist-music-grid
        .row
        .music-content-box.medium
        .content-container
        .content-hover {
        display: none;
    }
}

#artist-music-grid .row .music-content-box.large {
    height: 551px;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.large {
        height: 170px;
    }
}

#artist-music-grid .row .music-content-box.large .img-container {
    height: 405px;
    overflow: hidden;
    position: relative;
    background-color: #daa281;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.large .img-container {
        width: 42%;
        float: left;
        height: 170px;
    }
}

#artist-music-grid .row .music-content-box.large .img-container img {
    height: 100%;
    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

@media (max-width: 991px) {
    #artist-music-grid .row .music-content-box.large .img-container img {
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        padding-right: 15px;
    }
}

#artist-music-grid
    .row
    .music-content-box.large
    .img-container
    img.img-responsive {
    max-width: none;
}

#artist-music-grid .row .music-content-box.large .content-container {
    height: 145px;
    padding: 5px;
    background-color: #daa281;
    font-size: 18px;
    line-height: 18px;
}

@media (max-width: 767px) {
    #artist-music-grid .row .music-content-box.large .content-container {
        font-size: 16px;
        width: 58%;
        float: left;
        height: 170px;
        padding-left: 10px;
    }
}

#artist-music-grid .row .music-content-box.large .content-container a:hover {
    text-decoration: none;
    color: #252525;
}

#artist-music-grid .row .music-content-box.large .content-container a .title {
    font-size: 22px;
    line-height: 22px;
    margin: 10px 0 15px;
}

#artist-music-grid .row .music-content-box.large .content-container .content {
    font-style: italic;
}

#artist-music-grid
    .row
    .music-content-box.large
    .content-container
    .content-hover {
    display: none;
}

#artist-music-grid
    .row
    .music-content-box.large
    .content-container
    .content-hover
    a {
    font-weight: 500;
    display: inline-block;
}

#artist-music-grid
    .row
    .music-content-box.large
    .content-container
    .content-hover
    a:first-child {
    margin-right: 10px;
}

#artist-music-grid
    .row
    .music-content-box.large
    .content-container
    .content-hover
    .fa-stack {
    background-color: #252525;
    border-radius: 50%;
}

#artist-music-grid
    .row
    .music-content-box.large
    .content-container
    .content-hover
    .fa-stack
    i {
    color: #daa281 !important;
    font-size: 16px;
}

@media (max-width: 767px) {
    #artist-music-grid
        .row
        .music-content-box.large
        .content-container
        .content-hover {
        display: none;
    }
}

.artist-videos-container {
    max-width: 1035px !important;
    padding-left: 0;
    padding-right: 0;
    margin-top: 55px;
    margin-bottom: 55px;
}

@media (max-width: 991px) {
    .artist-videos-container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.artist-videos-container .main-video .col-sm-12 {
    padding-left: 0;
}

.artist-videos-container .main-video .col-sm-12 p {
    font-size: 20px;
    padding-bottom: 2px;
    padding-top: 2px;
    margin-bottom: 0;
}

.artist-videos-container .individual-video-container {
    padding: 0 10px 10px 0;
}

.artist-videos-container .individual-video-container p {
    font-size: 18px;
}

#albums .disc-tracks {
    border-left: 1px solid #cbcbbf;
}

#albums hr {
    border-color: #cbcbbf;
}

#albums #row-content-holder {
    min-height: 120px;
    overflow: hidden;
}

.release-date-column,
.purchase-column {
  text-align: center;
}

.release-date-column img,
.purchase-column img {
    margin-bottom: 10px;
}

.vertical-align {
    display: flex;
    align-items: center;
}

.album-column {
    width: 12.53%;
    padding: 0 !important;
}

.album-column img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 149px;
    width: 100%;
    padding-top: 4px;
    padding-bottom: 2px;
}

.description-column {
    width: 58.19%;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .description-column {
        width: 52.19%;
    }

    .purchase-column {
        width: 18.64%;
    }

    .release-date-column {
        width: 16.64%;
    }

    .album-column img {
        height: 133px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .description-column {
        width: 44.19%;
    }

    .purchase-column {
        width: 23.64%;
    }

    .release-date-column {
        width: 19.64%;
    }

    .album-column img {
        height: 110px;
    }
}

#albums-content-row .release-date-column {
    font-size: 18px;
}

#albums-content-row .description-column h4 {
    font-size: 20px;
}

#albums-content-row .description-column h4 span {
    font-style: italic;
    font-weight: 300;
}

#albums-content-row .description-column .description {
    font-size: 18px;
    font-weight: 400;
    width: 80%;
    height: 75px;
    overflow: hidden;
}

#albums-content-row .description-column .full-description,
#albums-content-row .description-column .less {
    display: none;
}

#albums-content-row .description-column .more,
#albums-content-row .description-column .less {
    width: 20%;
    float: right;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
}

#albums-content-row .description-column .more img,
#albums-content-row .description-column .less img {
    padding-right: 5px;
    padding-bottom: 5px;
}

#albums-content-row .description-column .more {
    min-height: 26px;
}

#albums-content-row .description-column .more a {
    display: none;
}

@media (min-width: 768px) and (max-width: 991px) {
    #albums-content-row .description-column .more,
    #albums-content-row .description-column .less {
        width: 23%;
    }

    #albums-content-row .description-column .description {
        width: 77%;
    }
}

#albums-content-row .mobile-album-list img {
    max-height: none !important;
}

#albums-content-row .mobile-album-list .mobile-individual-album .hidden-fields {
    display: none;
}

#albums-content-row
    .mobile-album-list
    .mobile-individual-album
    .mobile-album-image
    .visible-xs {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

#albums-content-row .mobile-album-list .bottom-description {
    padding: 5px;
    background-color: #252525;
    margin-bottom: 10px;
    height: 135px !important;
}

#albums-content-row .mobile-album-list .bottom-description .title {
    color: #ffffff;
    font-size: 24px;
    line-height: 24px;
}

#albums-content-row .mobile-album-list .bottom-description .author {
    color: #d1d0cc;
    font-style: italic;
    font-size: 21px;
}

#albums-content-row .mobile-album-list .bottom-description .year {
    color: #cbcbbf;
    font-style: italic;
    font-size: 18px;
}

#albums-content-row .mobile-album-list .col-xs-6 {
    padding-right: 7px;
    padding-left: 7px;
}

#albums-content-row .mobile-title {
    color: #ffffff;
}

.mobile-album-popup .details-holder {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.mobile-album-popup .details-div {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 9999;
}

.mobile-album-popup .details-div .cancel-button {
    font-size: 14px;
    display: block;
    width: 100%;
    height: 40px;
    background-color: #ffffff;
    color: #a83532;
    text-transform: uppercase;
}

.mobile-album-popup .details-div .mobile-description {
    background-color: #f1f0ec;
    margin-bottom: 10px;
    padding: 10px;
}

.mobile-album-popup .details-div .mobile-description .mobile-first-row {
    position: relative;
    padding: 0 0 10px 0;
    margin-right: 15px;
    margin-left: 15px;
}

.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .popup-image {
    padding-left: 5px;
}

.mobile-album-popup .details-div .mobile-description .mobile-first-row .info {
    padding-left: 0;
}

.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .info
    .popup-title,
.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .info
    .popup-author,
.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .info
    .popup-year {
    font-size: 18px;
}

.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .info
    .popup-author,
.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .info
    .popup-year {
    font-style: italic;
}

.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .info
    .popup-year {
    color: #cbcbbf;
}

.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .mobile-more-column {
    position: absolute;
    bottom: 0;
    right: 0;
    padding-bottom: 20px;
    background: transparent
        url(/images/sort_button_down.png?0631374657d118079bfdc2c8f27f09a7)
        no-repeat scroll left 5px;
}

.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-first-row
    .mobile-more-column
    a {
    font-size: 16px;
    text-transform: uppercase;
    padding-left: 5px;
}

.mobile-album-popup .details-div .mobile-description .mobile-second-row {
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-album-popup
    .details-div
    .mobile-description
    .mobile-second-row
    .popup-summary {
    padding: 10px 0 10px 0;
    border-top: 1px solid #cbcbbf;
    border-bottom: 1px solid #cbcbbf;
}

.mobile-album-popup .details-div .mobile-description .mobile-third-row {
    padding: 10px;
    text-align: center;
}

.mobile-album-popup .details-div .mobile-description .mobile-third-row a {
    width: 100%;
    display: block;
    padding-bottom: 5px;
}

#filters-row {
    text-align: center;
    margin-bottom: 3px;
}

#filters-row .sort-asc,
#filters-row .sort-desc {
    display: none;
    padding-bottom: 3px;
}

#filters-row .release-date-column {
    padding: 0 !important;
}

#filters-row .release-date-column .sort-albums {
    padding: 0 15px 3px 0;
    font-size: 18px;
    font-weight: 500;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    color: #252525;
    cursor: pointer;
    height: 34px;
    line-height: 1;
    text-indent: 0.01px;
    text-overflow: "";
    text-transform: uppercase;
    width: 100%;
    text-align: right;
    outline: none;
}

@media (min-width: 1200px) {
    #filters-row .release-date-column .sort-albums {
        padding-right: 60px !important;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    #filters-row .release-date-column .sort-albums {
        padding-right: 40px !important;
    }
}

#filters-row .release-date-column .sort-album-div {
    background: #f1f0ec
        url(/images/albums-icon-down.png?8e97488fc05174cedfa6d27850e76e68)
        no-repeat scroll;
    background-position: top 10px right 40px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4px;
    margin-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
}

@media (min-width: 768px) and (max-width: 1199px) {
    #filters-row .release-date-column .sort-album-div {
        background-position: top 10px right 20px;
    }
}

.sort-album-mobile-div {
    background: #f1f0ec
        url(/images/albums-icon-down.png?8e97488fc05174cedfa6d27850e76e68)
        no-repeat scroll top 10px right 5px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    padding-left: 0;
    padding-right: 0;
}

.sort-album-mobile-div .sort-albums {
    padding: 0 15px 3px 0;
    font-size: 18px;
    font-weight: 500;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent none repeat scroll 0 0;
    border: 0 none;
    border-radius: 0;
    color: #252525;
    cursor: pointer;
    height: 34px;
    line-height: 1;
    text-indent: 0.01px;
    text-overflow: "";
    text-transform: uppercase;
    width: 100%;
    text-align: right;
    outline: none;
}

.sort-album-mobile-div select {
    padding-right: 30px !important;
}

.sort-album-mobile-div select::-moz-focus-inner {
    border: 0;
}

.filters-separator {
    border-bottom: 3px solid #252525;
}

@media (max-width: 767px) {
    .filters-separator {
        display: none;
    }
}

.individual-album {
    margin-bottom: 3px;
}

.individual-album .release-date-column {
    display: table;
    height: 100% !important;
    padding: 0 !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .individual-album .release-date-column {
        padding: 0 10px 0 0 !important;
    }
}

.individual-album .release-date-column p {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.individual-album-white {
    margin-bottom: 3px;
    background-color: #ffffff;
    padding-bottom: 2px;
}

.individual-album-white .release-date-column {
    display: table;
    height: 100% !important;
    padding: 0 !important;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .individual-album-white .release-date-column {
        padding: 0 10px 0 0 !important;
    }
}

.individual-album-white .release-date-column p {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.title-row .page-title {
    text-align: center;
}

.title-row .page-title h2 {
    margin: 0px;
}

.kc-description {
    margin-bottom: 10px;
}

.kc-description h1 {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 500;
}

.kc-description h2 {
    margin-top: 0;
    font-size: 24px;
    font-weight: 400;
}

.kc-description p {
    font-weight: 500;
    font-size: 18px;
}

.kc-description .col-sm-7 {
    padding-left: 0;
}

#album-search-div {
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) {
    #album-search-div {
        margin: 10px 265px 10px 265px;
    }
}

#album-search-div #search-button {
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 20px;
    padding-right: 12px;
    background: transparent;
}

#album-search-div #search-box {
    height: 65px;
    border-radius: 0;
    font-size: 17px;
}

#album-search-div form {
    position: relative;
}

.overlay {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    background: #000;
    opacity: 0.5;
    z-index: 9999;
    margin-left: -30px;
    margin-right: -30px;
    background-image: url(/img/loader.gif);
    background-repeat: no-repeat;
    background-position: center;
}

@media only screen and (max-width: 767px) {
    .default-modal .modal-header,
    #buy-album-modal .modal-header,
    #buy-tour-modal .modal-header,
    #buy-ticket-modal .modal-header,
    #buy-video-modal .modal-header {
        text-align: center;
    }
}

.default-modal #flag-column,
#buy-album-modal #flag-column,
#buy-tour-modal #flag-column,
#buy-ticket-modal #flag-column,
#buy-video-modal #flag-column {
    padding-left: 0;
    padding-right: 0;
}

.default-modal #flag-column p,
#buy-album-modal #flag-column p,
#buy-tour-modal #flag-column p,
#buy-ticket-modal #flag-column p,
#buy-video-modal #flag-column p {
    text-transform: uppercase;
    font-size: 12px;
    text-align: center;
}

.default-modal .modal-dialog,
#buy-album-modal .modal-dialog,
#buy-tour-modal .modal-dialog,
#buy-ticket-modal .modal-dialog,
#buy-video-modal .modal-dialog {
    width: auto;
    margin: 15px;
}

@media only screen and (min-width: 992px) {
    .default-modal .modal-dialog,
    #buy-album-modal .modal-dialog,
    #buy-tour-modal .modal-dialog,
    #buy-ticket-modal .modal-dialog,
    #buy-video-modal .modal-dialog {
        width: 815px;
        margin: 30px auto;
    }
}

.default-modal .modal-dialog .modal-content,
#buy-album-modal .modal-dialog .modal-content,
#buy-tour-modal .modal-dialog .modal-content,
#buy-ticket-modal .modal-dialog .modal-content,
#buy-video-modal .modal-dialog .modal-content {
    background-color: #f1f0ec;
}

.default-modal .modal-dialog .modal-content table,
#buy-album-modal .modal-dialog .modal-content table,
#buy-tour-modal .modal-dialog .modal-content table,
#buy-ticket-modal .modal-dialog .modal-content table,
#buy-video-modal .modal-dialog .modal-content table {
    margin-bottom: 0;
}

.default-modal .modal-dialog .modal-content table tbody tr td:first-child,
#buy-album-modal .modal-dialog .modal-content table tbody tr td:first-child,
#buy-tour-modal .modal-dialog .modal-content table tbody tr td:first-child,
#buy-ticket-modal .modal-dialog .modal-content table tbody tr td:first-child,
#buy-video-modal .modal-dialog .modal-content table tbody tr td:first-child {
    color: #252525;
}

.default-modal .modal-dialog .modal-content table td,
.default-modal .modal-dialog .modal-content table th,
#buy-album-modal .modal-dialog .modal-content table td,
#buy-album-modal .modal-dialog .modal-content table th,
#buy-tour-modal .modal-dialog .modal-content table td,
#buy-tour-modal .modal-dialog .modal-content table th,
#buy-ticket-modal .modal-dialog .modal-content table td,
#buy-ticket-modal .modal-dialog .modal-content table th,
#buy-video-modal .modal-dialog .modal-content table td,
#buy-video-modal .modal-dialog .modal-content table th {
    text-align: center;
}

.default-modal .modal-dialog .modal-content table thead,
#buy-album-modal .modal-dialog .modal-content table thead,
#buy-tour-modal .modal-dialog .modal-content table thead,
#buy-ticket-modal .modal-dialog .modal-content table thead,
#buy-video-modal .modal-dialog .modal-content table thead {
    border-bottom: 1px solid #cbcbbf;
}

@media only screen and (min-width: 768px) {
    .default-modal .modal-dialog .modal-content h2,
    #buy-album-modal .modal-dialog .modal-content h2,
    #buy-tour-modal .modal-dialog .modal-content h2,
    #buy-ticket-modal .modal-dialog .modal-content h2,
    #buy-video-modal .modal-dialog .modal-content h2 {
        margin-top: 0;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 768px) {
    .default-modal .modal-dialog .modal-content h2,
    #buy-album-modal .modal-dialog .modal-content h2,
    #buy-tour-modal .modal-dialog .modal-content h2,
    #buy-ticket-modal .modal-dialog .modal-content h2,
    #buy-video-modal .modal-dialog .modal-content h2 {
        margin-top: 5px;
        margin-bottom: 0;
    }
}

.default-modal .modal-dialog .modal-content h3,
#buy-album-modal .modal-dialog .modal-content h3,
#buy-tour-modal .modal-dialog .modal-content h3,
#buy-ticket-modal .modal-dialog .modal-content h3,
#buy-video-modal .modal-dialog .modal-content h3 {
    margin-top: 0;
}

.default-modal .modal-dialog .modal-footer button:not(.leave-my-button-alone),
#buy-album-modal .modal-dialog .modal-footer button:not(.leave-my-button-alone),
#buy-tour-modal .modal-dialog .modal-footer button:not(.leave-my-button-alone),
#buy-ticket-modal
    .modal-dialog
    .modal-footer
    button:not(.leave-my-button-alone),
#buy-video-modal
    .modal-dialog
    .modal-footer
    button:not(.leave-my-button-alone) {
    margin: 0;
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    width: 100%;
    padding: 0;
}

.default-modal .modal-dialog .modal-footer .black-download,
.default-modal .modal-dialog .modal-footer .red-download,
#buy-album-modal .modal-dialog .modal-footer .black-download,
#buy-album-modal .modal-dialog .modal-footer .red-download,
#buy-tour-modal .modal-dialog .modal-footer .black-download,
#buy-tour-modal .modal-dialog .modal-footer .red-download,
#buy-ticket-modal .modal-dialog .modal-footer .black-download,
#buy-ticket-modal .modal-dialog .modal-footer .red-download,
#buy-video-modal .modal-dialog .modal-footer .black-download,
#buy-video-modal .modal-dialog .modal-footer .red-download {
    color: #ffffff;
    text-align: center;
    height: 27px;
    margin-right: 20px;
    margin-left: 20px;
    padding: 2px 25px 0 20px;
    border-radius: 10px;
    text-transform: uppercase;
}

.default-modal .modal-dialog .modal-footer .black-download img,
.default-modal .modal-dialog .modal-footer .red-download img,
#buy-album-modal .modal-dialog .modal-footer .black-download img,
#buy-album-modal .modal-dialog .modal-footer .red-download img,
#buy-tour-modal .modal-dialog .modal-footer .black-download img,
#buy-tour-modal .modal-dialog .modal-footer .red-download img,
#buy-ticket-modal .modal-dialog .modal-footer .black-download img,
#buy-ticket-modal .modal-dialog .modal-footer .red-download img,
#buy-video-modal .modal-dialog .modal-footer .black-download img,
#buy-video-modal .modal-dialog .modal-footer .red-download img {
    float: right;
    padding-right: 5px;
    padding-top: 1px;
}

.default-modal .modal-dialog .modal-footer .black-download,
#buy-album-modal .modal-dialog .modal-footer .black-download,
#buy-tour-modal .modal-dialog .modal-footer .black-download,
#buy-ticket-modal .modal-dialog .modal-footer .black-download,
#buy-video-modal .modal-dialog .modal-footer .black-download {
    background-color: #252525;
    border: 1px solid #252525;
}

.default-modal .modal-dialog .modal-footer .red-download,
#buy-album-modal .modal-dialog .modal-footer .red-download,
#buy-tour-modal .modal-dialog .modal-footer .red-download,
#buy-ticket-modal .modal-dialog .modal-footer .red-download,
#buy-video-modal .modal-dialog .modal-footer .red-download {
    background-color: #a83532;
    border: 1px solid #a83532;
}

.default-modal .modal-dialog .modal-footer .album-price,
#buy-album-modal .modal-dialog .modal-footer .album-price,
#buy-tour-modal .modal-dialog .modal-footer .album-price,
#buy-ticket-modal .modal-dialog .modal-footer .album-price,
#buy-video-modal .modal-dialog .modal-footer .album-price {
    text-align: center;
    font-size: 19px;
    text-transform: uppercase;
    font-weight: 400;
}

.default-modal .modal-dialog .modal-footer .album-price span,
#buy-album-modal .modal-dialog .modal-footer .album-price span,
#buy-tour-modal .modal-dialog .modal-footer .album-price span,
#buy-ticket-modal .modal-dialog .modal-footer .album-price span,
#buy-video-modal .modal-dialog .modal-footer .album-price span {
    font-weight: 500;
}

.default-modal .modal-dialog .modal-footer .album-price .glyphicon-info-sign,
#buy-album-modal .modal-dialog .modal-footer .album-price .glyphicon-info-sign,
#buy-tour-modal .modal-dialog .modal-footer .album-price .glyphicon-info-sign,
#buy-ticket-modal .modal-dialog .modal-footer .album-price .glyphicon-info-sign,
#buy-video-modal .modal-dialog .modal-footer .album-price .glyphicon-info-sign {
    top: 3px !important;
}

.default-modal .modal-dialog .modal-footer .already-purchased,
#buy-album-modal .modal-dialog .modal-footer .already-purchased,
#buy-tour-modal .modal-dialog .modal-footer .already-purchased,
#buy-ticket-modal .modal-dialog .modal-footer .already-purchased,
#buy-video-modal .modal-dialog .modal-footer .already-purchased {
    text-align: center;
    font-size: 19px;
    font-weight: 500;
    color: #a83532 !important;
}

#countryModal .vertical-alignment-helper {
    display: table;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

#countryModal .vertical-align-center {
    /* To center vertically */
    display: table-cell;
    vertical-align: middle;
    pointer-events: none;
}

#countryModal .modal-content {
    /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
    width: 275px;
    height: inherit;
    /* To center horizontally */
    margin: 0 auto;
    pointer-events: all;
    text-align: center;
    background-color: #a83532;
    border: #ffffff 1px solid;
    border-radius: 10px;
}

#countryModal .modal-content .modal-title {
    color: #ffffff;
}

#countryModal .modal-content .modal-header {
    border-bottom: none;
    background-color: inherit;
    border-radius: 10px 10px 0 0;
}

#countryModal .modal-content .modal-footer {
    border-top: none;
    text-align: center;
}

#countryModal .country-change-div {
    background: #ffffff
        url(/images/albums-icon-down.png?8e97488fc05174cedfa6d27850e76e68)
        no-repeat scroll right 10px top 5px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4px;
    margin-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
}

#countryModal .country-change-select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent none repeat scroll 0 0;
    color: #252525;
    cursor: pointer;
    font-size: 16px;
    height: 34px;
    line-height: 1;
    text-indent: 0.01px;
    text-overflow: "";
    width: 100%;
    outline: none;
}

#countryModal .btn {
    background-color: #252525;
    color: #ffffff;
    font-size: 16px;
    display: inline;
    border-radius: 10px;
    padding-left: 37px;
    padding-right: 37px;
    text-transform: uppercase;
}

.purchase-links .download-button,
.purchase-column .download-button {
    margin-right: 5px;
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    padding: 0 10px 0 10px;
}

.purchase-links .red-download,
.purchase-column .red-download {
    color: #ffffff;
    text-align: center;
    height: 27px;
    padding: 2px 10px 0 10px;
    background-color: #a83532;
    border: 1px solid #a83532;
    margin-right: 10px;
    margin-left: 15px;
    border-radius: 10px;
    text-transform: uppercase;
}

.purchase-links .red-download img,
.purchase-column .red-download img {
    float: right;
    padding-right: 5px;
    padding-top: 1px;
}

.purchase-column .download-button {
    width: 100%;
    padding: 0;
}

.purchase-column .red-download {
    margin-left: 0;
    padding: 2px 10px 0 5px;
}

.diaries-colour-scheme-grey {
    background-color: #cbcbbf;
}

.diaries-colour-scheme-grey h2 {
    color: #ffffff;
    margin-top: 5px;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 13px;
}

.diaries-colour-scheme-grey p {
    margin: 0;
    text-shadow: 0 0 1px #bbb;
    font-weight: 300;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.5px;
}

.diaries-colour-scheme-green {
    background-color: #9ca79b;
}

.diaries-colour-scheme-green h2 {
    color: #ffffff;
    margin-top: 5px;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 13px;
}

.diaries-colour-scheme-green p {
    margin: 0;
    text-shadow: 0 0 1px #bbb;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.5px;
}

.diaries-colour-scheme-red {
    background-color: #a83532;
    padding-bottom: 50px !important;
}

.diaries-colour-scheme-red h2 {
    color: #ffffff;
    margin-top: 5px;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 15px;
}

.diaries-colour-scheme-red p {
    margin: 0;
    color: #daa281;
    font-size: 18px;
    text-align: center;
    font-style: italic;
    padding: 10px 25px;
    font-weight: 200;
}

.diaries-colour-scheme-peach {
    background-color: #daa281;
}

.diaries-colour-scheme-peach h2 {
    margin-top: 5px;
    font-size: 24px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 20px;
    color: #311919;
}

.diaries-colour-scheme-peach p {
    color: #311919;
    padding-bottom: 35px;
    font-style: italic;
    margin: 0;
    text-shadow: 0 0 1px #bbb;
    font-weight: 300;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: -0.5px;
}

.diaries-colour-scheme-brown {
    height: 100%;
    background-color: #311919;
    padding: 5px 10px 10px 10px;
}

.diaries-colour-scheme-brown h2 {
    font-size: 24px;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.diaries-colour-scheme-brown p {
    margin: 0;
    color: #daa281;
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    font-style: italic;
}

.bottom-diary-container {
    background-color: #311919;
    background-clip: content-box;
}

@media (min-width: 768px) {
    .diary-articles .inner-container {
        display: flex;
    }
}

.diary-articles .in-depth-diary-box {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .diary-articles .in-depth-diary-box {
        position: absolute;
        margin-right: 15px;
        top: 180px;
        bottom: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .diary-articles .in-depth-diary-box {
        margin-top: 60px;
    }
}

.diary-articles .diary-box-container {
    margin-bottom: 30px;
}

.diary-articles .diary-box-container .diary-box-image {
    flex: 1 1 auto;
}

.diary-articles .diary-box-container .diary-box-image div {
    margin-top: 215px;
}

.diary-articles .diary-box-container .diary-box-image div img {
    position: absolute;
    bottom: 0px;
    right: 0px;
}

.diaries-colour-scheme {
    padding: 5px 15px 0 15px;
}

.david-singleton-div {
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    background-color: #cbcbbf;
}

.david-singleton-div .quote-image {
    float: left;
    height: auto;
    width: auto;
    padding: 2px 5px 0 0;
}

.david-singleton-div p {
    font-weight: 400;
}

.robert-fripp-div {
    height: 100%;
    position: relative;
    display: flex;
    flex-flow: column;
    background-color: #9ca79b;
}

.robert-fripp-div .quote-image {
    float: left;
    height: auto;
    width: auto;
    padding: 2px 5px 0 0;
}

.robert-fripp-div p {
    font-weight: 400;
}

.bottom-quote-image {
    float: right;
}

.small-logo {
    float: right;
}

.individual-diary-container {
    max-width: 1100px;
}

@media (max-width: 1199px) and (min-width: 768px) {
    .individual-diary-container {
        width: 100%;
        padding-left: 0;
        padding-right: 30px;
    }
}

@media (max-width: 992px) {
    .individual-diary-container {
        padding-top: 10px;
    }
}

.individual-diary-container .diary-summary {
    font-size: 17px;
    padding-left: 30px;
}

.individual-diary-container .diary-summary h1 {
    font-size: 49px;
    letter-spacing: -2px;
}

@media (min-width: 992px) and (max-width: 1400px) {
    .individual-diary-container .diary-summary .social-sharing-div .col-xs-12 {
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .individual-diary-container .diary-summary {
        padding-left: 0;
        padding-right: 0;
    }

    .individual-diary-container .diary-summary .social-sharing-div .col-xs-12 {
        padding: 0 !important;
    }
}

.individual-diary-container .diary-summary .date {
    font-size: 28px;
    color: #a83532;
    font-weight: 500;
    display: inline;
}

.individual-diary-container .diary-summary .date span {
    display: inline-block;
    vertical-align: sub;
}

@media (min-width: 992px) {
    .individual-diary-container .diary-summary #calendar-row {
        margin-top: 45px;
    }
}

@media (min-width: 1200px) {
    .individual-diary-container .diary-summary #calendar-row {
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .individual-diary-container .diary-summary #calendar-row {
        padding-left: 5px;
        margin-top: 10px;
    }
}

.individual-diary-container .diary-summary #calendar-row .col-xs-12 {
    padding-left: 8px;
}

.individual-diary-container .diary-summary #social-sharing-row {
    margin-top: 50px;
}

.individual-diary-container .diary-summary .social-sharing {
    padding: 0;
}

@media only screen and (max-width: 768px) {
    .individual-diary-container .diary-summary .social-sharing ul {
        margin-left: -15px;
    }
}

.individual-diary-container .diary-summary .calendar-holder {
    width: 68px !important;
    height: 23px;
    visibility: visible;
    display: inline-block;
}

@media (max-width: 991px) {
    .individual-diary-container .diary-summary .calendar-holder {
        padding-top: 3px;
    }
}

.individual-diary-container .diary-summary .calendar-holder button {
    background-color: Transparent;
    background-repeat: no-repeat;
    border: none;
}

@media (min-width: 992px) {
    .individual-diary-container .diary-summary .calendar-holder {
        margin-right: 0;
        margin-left: 5%;
    }
}

@media (max-width: 992px) {
    .individual-diary-container .diary-summary .calendar-holder {
        position: absolute;
        right: 70%;
    }
}

@media (min-width: 992px) {
    .individual-diary-container .diary-summary .arrow-right {
        margin-left: 6%;
    }
}

@media (max-width: 992px) {
    .individual-diary-container .diary-summary .date {
        padding-top: 7px;
        font-size: 24px;
        position: absolute;
        left: 30%;
    }

    .individual-diary-container .diary-summary .calendar-holder {
        width: 35px;
    }

    .individual-diary-container .diary-summary .calendar-holder img {
        width: 35px;
        height: auto;
    }

    .individual-diary-container .diary-summary .arrow-left {
        margin-right: 0;
        width: 20px;
        height: auto;
    }

    .individual-diary-container .diary-summary #prev-diary-link {
        padding-right: 4%;
    }

    .individual-diary-container .diary-summary #next-diary-link {
        position: absolute;
        right: 25px;
    }

    .individual-diary-container .diary-summary .arrow-right {
        margin-left: 0;
        width: 20px;
        height: auto;
    }
}

@media (max-width: 400px) {
    .individual-diary-container .diary-summary #calendar-row .col-xs-12 {
        padding-left: 0;
    }

    .individual-diary-container .diary-summary .date {
        font-size: 22px;
    }

    .individual-diary-container .diary-summary .calendar-holder {
        width: 32px;
    }

    .individual-diary-container .diary-summary .calendar-holder img {
        width: 32px;
        height: auto;
    }

    .individual-diary-container .diary-summary .arrow-left {
        margin-right: 0;
        width: 18px;
        height: auto;
    }

    .individual-diary-container .diary-summary #prev-diary-link {
        padding-right: 1%;
    }

    .individual-diary-container .diary-summary #next-diary-link {
        padding-left: 5%;
    }

    .individual-diary-container .diary-summary .arrow-right {
        margin-left: 0;
        width: 18px;
        height: auto;
        padding-top: 3px;
    }

    .individual-diary-container .diary-summary .arrow-left {
        padding-top: 3px;
    }
}

.individual-diary-container .content-row img {
    max-width: 100%;
}

.individual-diary-container .content-row #diary-entry-title {
    text-align: center;
}

.individual-diary-container .content-row .col-xs-12 {
    padding-left: 20px;
    padding-right: 58px;
}

@media (max-width: 768px) {
    .individual-diary-container .content-row .col-xs-12 {
        padding-left: 0;
        padding-right: 15px;
    }
}

.individual-diary-container .content-row p {
    font-size: 18px;
    font-weight: 400;
}

.individual-diary-container .robert-fripp-image {
    float: left;
}

.individual-diary-container #share-diary-links {
    text-align: center;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .individual-diary-container #share-diary-links {
        margin-top: 0px;
    }
}

.individual-diary-container #share-diary-links a {
    display: inline-block;
    text-align: center;
    padding: 10px;
    margin-right: 10px;
}

.individual-diary-container #share-diary-links a:last-of-type {
    margin-right: 0px;
}

.individual-diary-container #share-diary-links a img {
    width: 100%;
    max-width: 150px;
}

.individual-diary-container #tags-holder {
    margin-top: 10px;
}

.individual-diary-container #tags-holder .tag {
    display: inline-block;
    border: solid #cbcbbf 1px;
    text-align: center;
    font-size: 15px;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 4px 10px 6px 10px;
}

.individual-diary-container #tags-div {
    margin-top: 25px;
}

.individual-diary-container #tags-div .tag {
    display: inline-block;
    border: solid #cbcbbf 1px;
    text-align: center;
    font-size: 15px;
    margin-left: 10px;
    margin-bottom: 10px;
    padding: 4px 10px 6px 10px;
}

.individual-diary-container #diary-left-col {
    padding-left: 15px;
    padding-right: 15px;
}

@media only screen and (max-width: 768px) {
    .individual-diary-container #diary-left-col {
        padding-left: 17px;
        padding-right: 0;
    }
}

.bottom-diary-box {
    padding: 5px 15px 0 15px;
}

/*

    ui-slider: The track of the slider control. This element will additionally have a class name of ui-slider-horizontal or ui-slider-vertical depending on the orientation of the slider.
        ui-slider-handle: The slider handles.
        ui-slider-range: The selected range used when the range option is set. This element can additionally have a class of ui-slider-range-min or ui-slider-range-max if the range option is set to "min" or "max" respectively.

 */

#kclevel-container {
    padding: 0 18px;
    margin-bottom: 25px;
}

#kclevel-container #kclevel-text {
    color: #cbcbbf;
    text-align: center;
    margin-bottom: 15px;
}

#kclevel-container #kclevel-text h3 {
    margin: 0;
}

#kclevel-container #kclevel-level {
    color: #252525;
    line-height: 26px;
    text-transform: uppercase;
}

#kclevel-container #kclevel-slider-container {
    padding: 0 49px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #cbcbbf;
    position: relative;
}

#kclevel-container #kclevel-slider-container .kclevel-slider-arrow {
    background-position: center center;
    background-size: cover;
    height: 36px;
    width: 36px;
    line-height: 36px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    border-radius: 50%;
    position: absolute;
    top: 0;
}

#kclevel-container #kclevel-slider-container #kclevel-less {
    left: -18px;
    background: url(/images/left-arrow.png?da2df8fb4b56de94595c7a3c52f2cc50);
}

#kclevel-container #kclevel-slider-container #kclevel-more {
    right: -18px;
    background: url(/images/right-arrow.png?26a9ffb1d7544d30ed4cea76d7c5aac9);
}

#kclevel-container #kclevel-slider {
    position: relative;
    height: 36px;
    width: 100%;
    box-sizing: border-box;
    background: none;
    border: none;
}

#kclevel-container .ui-slider-handle {
    background: url(/images/slider.png?0fbf04deb58c4aa98a6cf045cd8003dd);
    background-position: center center;
    background-size: cover;
    height: 34px;
    width: 60px;
    margin-left: -30px;
    border-radius: 20px;
    top: 1px;
    cursor: move;
    border: none;
}

.banner-tags-container {
    display: none;
    padding-left: 0;
    padding-right: 0;
}

.error-message {
    display: none;
}

.button-div {
    vertical-align: top !important;
}

#report-content-holder {
    min-height: 400px;
    overflow: hidden;
}

.report-overlay {
    display: none;
    overflow: hidden;
    height: 100%;
    position: absolute;
    margin: 0 !important;
    background: #000;
    opacity: 0.5;
    z-index: 9999;
    background-image: url(/img/loader.gif);
    background-repeat: no-repeat;
    background-position: center;
}

.mod-item {
    padding: 15px;
    overflow: hidden;
    border-bottom: 2px dashed #cbcbbf;
}

.mod-item .mod-item-avatar {
    width: 100px;
    margin-top: 30px;
}

.mod-item .red-star {
    color: #a83532;
}

.mod-item .grey-star {
    color: #cbcbbf;
}

.mod-item-title h2 {
    margin-top: 0px;
}

.mod-item-title .subtitle {
    font-size: 20px;
}

.mod-item-title .subtitle a {
    transition: color 200ms;
    color: #c84945;
}

.mod-item-title .subtitle a:hover {
    color: #a83532;
}

.mod-item-title .mod-item-rating {
    margin-top: 10px;
    font-size: 24px;
    text-align: center;
}

.progress-bar-area {
    margin-top: 20px;
}

.progress {
    display: none;
    position: relative;
    width: 100%;
    height: 15px;
    background: #c7da9f;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 10px;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 15px;
    background: green;
    text-align: center;
    color: white;
    font-weight: bold;
    font-size: 0.7em;
}

.bar.red {
    background: #a83532;
}

.upload-video-messages .alert {
    display: none;
}

.remove-youtube {
    margin-top: 5px;
}

.hide-history-children-button {
    display: none;
    max-width: 80px;
}

.show-history-children-button {
    max-width: 80px;
}

.history-row {
    margin: 0px;
}

.history-row [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}

.history-row .title-col {
    text-align: center;
}

.history-row .content-col {
    padding-top: 6px;
}

.history-row .edit-delete-col {
    text-align: right;
}

.history-row .hide {
    display: none;
}

.history-row-year {
    background-color: #ffffcc;
}

.history-row-month {
    background-color: #ccff99;
}

.history-row-day {
    background-color: #ccffff;
}

#photosSelectTourDateContainer {
    display: none;
}

#photosSelectTourDateContainer img {
    display: block;
}

#photosSelectTourDateContainer .selectContainer,
#photosSelectTourDateContainer #photosTourDateAjaxError {
    display: none;
}

.styled_link_button_text_error,
.styled_link_button_link_error {
    display: none;
    color: #a83532;
}

.avatar-div {
    width: 100px;
    margin: auto;
    position: relative;
}

.error-message {
    display: none;
}

.button-div {
    vertical-align: top !important;
}

#report-content-holder {
    min-height: 400px;
    overflow: hidden;
}

.report-overlay {
    display: none;
    overflow: hidden;
    height: 100%;
    position: absolute;
    margin: 0 !important;
    background: #000;
    opacity: 0.5;
    z-index: 9999;
    background-image: url(/img/loader.gif);
    background-repeat: no-repeat;
    background-position: center;
}

.reports-list li {
    list-style-type: none;
}

#RoyaltiesReportResults .accordion-body table {
    width: 100%;
}

#RoyaltiesReportResults .hiddenRow {
    padding: 0 !important;
}

.c-draggableList__list {
    margin: 1rem 0;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    height: 55vh;
    overflow-x: hidden;
    overflow-y: auto;
}

.c-draggableList__item {
    cursor: pointer;
    margin: 0.5rem auto;
    list-style: none;
    min-height: 2.5rem;
    border: 1px solid #a83532;
    background-color: #f1f0ec;
    color: #a83532;
    text-align: left;
    border-radius: 5px;
}

.c-draggableList__item:not(.c-draggableList__item--selected) {
    background-color: #f1f0ec;
}

.c-draggableList__item--selected {
    background-color: #96a296;
}

.c-draggableList__itemText {
    text-align: left;
    color: #a83532;
}

.c-draggableList__itemText--reg {
    font-size: 2rem;
    padding-top: 5px;
}

.c-draggableList__itemText--sm {
    font-size: 1.2rem;
}

.c-draggableList__icon {
    color: #a83532;
    font-size: 2.5rem;
    padding: 0.3rem;
}

.c-draggableList__badge {
    padding: 0.1rem 0.8rem;
    border-radius: 5px;
    color: white;
    border: 1px solid black;
    background-color: #96a296;
}

#auth .login {
    width: 610px;
}

#auth .reset {
    width: 451px;
}

#auth .login,
#auth .reset {
    margin: 20px auto 0;
    letter-spacing: -1px;
}

#auth .login .login-icon img,
#auth .reset .login-icon img {
    float: left;
    width: 100px;
    height: 100px;
}

#auth .login .login-form,
#auth .login .reset-form,
#auth .reset .login-form,
#auth .reset .reset-form {
    float: left;
    text-align: center;
    width: 300px;
    font: 500 normal 16px "futura-pt", arial, sans-serif;
}

#auth .login .login-form div,
#auth .login .reset-form div,
#auth .reset .login-form div,
#auth .reset .reset-form div {
    width: 100%;
}

#auth .login .login-form input[type="text"],
#auth .login .login-form input[type="email"],
#auth .login .login-form input[type="password"],
#auth .login .reset-form input[type="text"],
#auth .login .reset-form input[type="email"],
#auth .login .reset-form input[type="password"],
#auth .reset .login-form input[type="text"],
#auth .reset .login-form input[type="email"],
#auth .reset .login-form input[type="password"],
#auth .reset .reset-form input[type="text"],
#auth .reset .reset-form input[type="email"],
#auth .reset .reset-form input[type="password"] {
    border: 2px solid #d1d0cc;
    margin: 3px 0;
    border-radius: 10px;
    height: 40px;
}

#auth .login .login-form .btn-link,
#auth .login .reset-form .btn-link,
#auth .reset .login-form .btn-link,
#auth .reset .reset-form .btn-link {
    color: #a83532 !important;
    font-size: 16px;
    float: left;
    margin-left: 50px;
    margin-top: 10px;
    padding: 0px;
}

#auth .login .login-form button,
#auth .login .reset-form button,
#auth .reset .login-form button,
#auth .reset .reset-form button {
    background-color: #303030;
    padding: 2px 35px;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 5px;
    font-weight: 500;
}

#auth .login .login-form #mobileLoginGoButton,
#auth .login .reset-form #mobileLoginGoButton,
#auth .reset .login-form #mobileLoginGoButton,
#auth .reset .reset-form #mobileLoginGoButton {
    display: none;
}

#auth .login .login-form,
#auth .reset .login-form {
    margin: 0px 50px;
}

#auth .login .reset-form,
#auth .reset .reset-form {
    margin: 0px 0px 0px 50px;
}

#auth .login .login-instructions,
#auth .reset .login-instructions {
    float: left;
    text-align: center;
    letter-spacing: 0px;
    margin-top: 10px;
}

#auth .login .login-instructions .new-user,
#auth .reset .login-instructions .new-user {
    font-weight: bold;
}

#auth .login .login-instructions .red-button-container,
#auth .reset .login-instructions .red-button-container {
    margin: 10px 0px;
}

#auth .login .login-instructions .red-button-container .red-button,
#auth .reset .login-instructions .red-button-container .red-button {
    padding: 5px 20px;
    font-size: 17px;
}

#auth .login .login-instructions .smaller-font,
#auth .reset .login-instructions .smaller-font {
    font-size: 14px;
    font: 500 normal 14px "futura-pt", arial, sans-serif;
    color: #9ca89c;
}

#auth .login hr,
#auth .reset hr {
    display: none;
}

@media (max-width: 768px) {
    #auth .login {
        padding: 0 15px;
        width: 100%;
        text-align: center;
        margin: 0px;
    }

    #auth .login .login-form {
        width: 100%;
        margin: 0px;
        padding: 0px 50px;
        float: none;
    }

    #auth .login .login-form .text-right {
        text-align: center;
    }

    #auth .login .login-form .text-right .btn-link {
        float: none;
        margin-left: 0px;
    }

    #auth .login .login-form #mobileLoginGoButton {
        display: block;
    }

    #auth .login .login-form #desktopLoginGoButton {
        display: none;
    }

    #auth .login .login-icon {
        margin-bottom: 1em;
    }

    #auth .login .login-icon img {
        float: none;
    }

    #auth .login .login-instructions {
        float: none;
    }

    #auth .login hr {
        display: block;
        border-top: 1px solid #9ca89c;
    }
}

#billingAddress {
    max-width: 880px;
}

#billingAddress #albumDetails p {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    line-height: 16px;
    text-transform: uppercase;
}

#billingAddress #albumDetails p.help-block {
    color: #a83532;
    font-size: 14px;
    font-weight: normal;
    text-transform: none;
    margin-top: 5px;
}

#billingAddress #albumDetails h4 {
    font-size: 20px;
    margin: 0;
    font-weight: 400;
    line-height: 21px;
}

#billingAddress #albumDetails .audio-type {
    text-transform: uppercase;
}

#billingAddress #albumDetails .price-error-message {
    color: #a83532;
    margin-top: 20px;
}

#billingAddress #albumDetails .prices-div {
    margin-top: 20px;
}

#billingAddress #albumDetails .coupon-form {
    margin-top: 20px;
}

#billingAddress #albumDetails .coupon-form .btn {
    background-color: #252525;
    color: #ffffff;
    font-size: 16px;
    display: inline;
    border: 1px solid;
    border-radius: 10px;
    padding: 5px 20px;
    text-transform: uppercase;
    outline: none;
}

#billingAddress #albumDetails .coupon-form p {
    margin-bottom: 10px;
    font-weight: normal;
}

#billingAddress #billingAddressPanel {
    background-color: #ffffff;
    padding-top: 37px;
    border-radius: 10px;
}

#billingAddress #billingAddressPanel h1 {
    margin-top: 0;
    padding-left: 23px;
}

@media (max-width: 991px) {
    #billingAddress #billingAddressPanel h1 {
        padding: 0;
    }
}

@media (min-width: 991px) {
    #billingAddress #billingAddressPanel #formContent {
        padding-left: 65px;
        padding-right: 50px;
    }
}

@media (max-width: 991px) {
    #billingAddress #billingAddressPanel #formContent {
        padding-left: 15px;
        padding-right: 0;
    }
}

#billingAddress #billingAddressPanel #formContent input,
#billingAddress #billingAddressPanel #formContent select {
    height: 40px;
    border-radius: 10px;
}

#billingAddress #billingAddressPanel #formContent .form-group label {
    padding-right: 0;
    padding-top: 10px;
}

@media (max-width: 991px) {
    #billingAddress #billingAddressPanel #formContent .form-group {
        padding-right: 0;
    }
}

#billingAddress #billingAddressPanel .btn {
    background-color: #252525;
    color: #ffffff;
    font-size: 16px;
    display: inline;
    border: 1px solid;
    border-radius: 10px;
    padding-left: 37px;
    padding-right: 37px;
    text-transform: uppercase;
}

#billingAddress #billingAddressPanel .country-select-div,
#billingAddress #billingAddressPanel .payment-select-div,
#billingAddress #billingAddressPanel .state-select-div {
    background: #ffffff
        url(/images/albums-icon-down.png?8e97488fc05174cedfa6d27850e76e68)
        no-repeat scroll right 10px top 8px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 4px;
    margin-bottom: 8px;
    padding-left: 0;
    padding-right: 0;
}

#billingAddress #billingAddressPanel .country-select,
#billingAddress #billingAddressPanel .payment-select,
#billingAddress #billingAddressPanel .state-select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background: transparent none repeat scroll 0 0;
    color: #252525;
    cursor: pointer;
    font-size: 16px;
    height: 34px;
    line-height: 1;
    text-indent: 0.01px;
    text-overflow: "";
    width: 100%;
    outline: none;
}

#billingAddress #billingAddressPanel #paymentForm #token_container_holder {
    display: block !important;
}

#billingAddress
    #billingAddressPanel
    #paymentForm
    #token_container_holder
    iframe {
    display: block;
    margin: 0 auto;
}

#billingAddress #cardLogos {
    text-align: center;
}

#billingAddress #cardLogos img {
    padding: 5px;
    width: 30%;
    max-width: 80px;
}

#countdownTimer {
    font-size: 18px;
}

#countdownTimer .minutes,
#countdownTimer .seconds {
    font-weight: 600;
}

#profile #sidePanel {
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 20px;
}

#profile #sidePanel .well {
    margin-top: 10px;
    padding: 0px;
}

#profile #sidePanel ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

#profile #sidePanel ul li {
    background: url(/images/r-arrow.png?a72e84af32d098472b3c1a1cac73f936)
        no-repeat right center;
    margin: 5px 0px;
    text-align: left;
    padding: 5px 20px;
    background-origin: content-box;
}

#profile #sidePanel ul .active {
    background: url(/images/r-arrow-white.png?810aa6ef298b41583ecda9c74d54faa8)
        no-repeat right center;
    margin: 5px 0px;
    text-align: left;
    padding: 5px 20px;
    background-origin: content-box;
    background-color: #a83532;
    color: #fff;
}

#profile #sidePanel ul .firstMenuItem {
    margin-top: 0px;
    border-radius: 3px 3px 0px 3px;
}

#profile #sidePanel ul .lastMenuItem {
    margin-bottom: 0px;
    border-radius: 0px 0px 3px 3px;
}

#profile #sidePanel .logoutLink {
    background-color: #252525;
    color: #fff !important;
    padding: 5px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 16px;
}

#profile #sidePanel .imageContainer img {
    max-height: 100px;
    margin: auto;
}

#profile #sidePanel .thousand-club {
    margin-top: 100px;
}

#profile #sidePanel .thousand-club img {
    width: 188px;
    height: 77px;
    margin: 0 auto 15px;
}

#profile #sidePanel .thousand-club a {
    background-color: #a83532;
    color: #fff !important;
    padding: 5px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
}

#profile #mainPanel hr {
    border-top: 1px solid #e3e3e3;
}

#profile #mainPanel .orderItem .orderItemHeader {
    margin-bottom: 5px;
}

#profile #mainPanel .orderItem h4 {
    display: inline-block;
    margin-right: 10px;
    margin-top: 0px;
}

#profile #mainPanel .orderItem .downloadButton,
#profile #mainPanel .orderItem .coverButton {
    color: #ffffff !important;
    border: none;
    border-radius: 5px;
    padding: 2px 25px 2px 10px;
    text-transform: uppercase;
    background: url(/images/download-white.png?81a4dee67abc0cf464506f1f38e7aa69)
        no-repeat right center #a83532;
    background-size: 20px;
}

#profile #mainPanel .orderItem .downloadedSpan {
    background-color: #9ca89c;
    color: #ffffff !important;
    border: none;
    border-radius: 5px;
    padding: 2px 15px 2px 15px;
    text-transform: uppercase;
    background-size: 20px;
}

#profile #mainPanel .orderItem .itemDetails {
    margin-top: 10px;
}

#profile #mainPanel .orderItem .itemDetails img {
    width: 100%;
}

#profile #mainPanel .tourShowDownload {
    padding-bottom: 5px;
}

#profile #mainPanel .topColumns {
    padding: 0px;
}

#profile #mainPanel .topColumns #priceTable tr td:first-child {
    padding-right: 20px;
}

#profile #mainPanel .topColumns .topColumnsHeader {
    background-color: #cbcbbf;
    padding: 0px 35px;
    color: #fff;
}

#profile #mainPanel .topColumns .topColumnsContent {
    padding: 0px 35px;
}

@media (min-width: 768px) {
    #profile #mainPanel .topColumns .topColumnsLeft {
        border-radius: 3px 0px 0px 0px;
    }

    #profile #mainPanel .topColumns .topColumnsRight {
        border-radius: 0px 3px 0px 0px;
    }
}

@media (max-width: 767px) {
    #profile #mainPanel .topColumns .topColumnsLeft {
        border-radius: 3px 3px 0px 0px;
    }

    #profile #mainPanel .topColumns .topColumnsRight {
        border-radius: 0px;
    }
}

#profile #mainPanel .downloadsContainer {
    text-align: center;
}

#profile #mainPanel #downloadsRemainingContainer {
    margin-top: 1em;
}

#profile #mainPanel .viewOrderButton {
    margin-top: 1em;
}

#profile #mainPanel .orderImageContainer img {
    width: 100%;
}

#profile #mainPanel .createdAtRow {
    margin: 1em 0em;
}

#profile #mainPanel #profilePicture {
    margin: 0px;
}

@media (max-width: 400px) {
    #profile #mainPanel #profilePicture {
        display: block;
    }
}

#profile #mainPanel #profilePicture form input[type="submit"] {
    margin-top: 1em;
}

#profile #mainPanel #profilePicture form .text-danger {
    margin: 0px;
}

#profile #mainPanel #profilePicture .imageContainer {
    border: #000 solid 1px;
    text-align: center;
    padding: 0px;
}

@media (max-width: 400px) {
    #profile #mainPanel #profilePicture .imageContainer {
        width: 100%;
        float: none;
    }
}

#profile #mainPanel #profilePicture .imageContainer span {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

#profile #mainPanel #profilePicture .imageContainer img {
    max-height: 100px;
    max-width: 98%;
    left: -2px;
    position: relative;
}

#profile #mainPanel #profilePicture .pictureUploadContainer input[type="file"] {
    width: 100%;
}

@media (max-width: 400px) {
    #profile #mainPanel #profilePicture .pictureUploadContainer {
        width: 100%;
        float: none;
    }
}

#profile #mainPanel .downloadsHolder {
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 420px) {
    #profile #mainPanel #number-of-downloads-container {
        display: block;
        margin-top: 5px;
    }

    #profile #mainPanel .downloadsHolder {
        display: block;
        margin-top: 5px;
    }
}

#profile #mainPanel .join {
    background-color: #a83532;
    color: #ffffff !important;
    padding: 5px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
}

#profile #mainPanel .unsubscribe-confirmation-popup {
    background-color: #252525;
    color: #ffffff !important;
    padding: 5px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    border: none;
    font-size: 16px;
}

#profile .mainPanelModified {
    padding: 0px 0px 19px 0px;
}

@media print {
    #profile .downloadsContainer,
    #profile #printContainer {
        display: none;
    }

    #profile .topColumnsHeader {
        margin-top: 1em;
    }
}

#profile #printContainer {
    text-align: right;
    padding: 0px;
}

#profile #printContainer span {
    background-color: #252525;
    color: #fff;
    text-transform: uppercase;
    padding: 3px 30px;
    border-radius: 5px;
    cursor: pointer;
}

#profile .thousand-club-banner {
    background-color: #252525;
    color: #ffffff;
}

#profile .thousand-club-banner .logo {
    padding: 2%;
}

#profile .thousand-club-banner .logo img {
    width: 100%;
    margin-top: 35px;
}

#profile .thousand-club-banner .info {
    padding: 2%;
}

#profile .thousand-club-banner .info p {
    font-size: 32px;
}

#profile .thousand-club-banner .info p a.join {
    background-color: #a83532;
    color: #fff !important;
    padding: 5px 40px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 22px;
}

#profile .thousand-club-banner .info ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

#profile .thousand-club-banner .info ul li {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    height: 36px;
    font-size: 18px;
}

@media (max-width: 369px) {
    #profile .thousand-club-banner .info ul li {
        font-size: 12px;
    }
}

@media (min-width: 370px) and (max-width: 561px) {
    #profile .thousand-club-banner .info ul li {
        font-size: 14px;
    }
}

@media (min-width: 562px) and (max-width: 625px) {
    #profile .thousand-club-banner .info ul li {
        font-size: 16px;
    }
}

#profile .thousand-club-banner .info ul li span {
    vertical-align: middle;
}

#profile .thousand-club-banner .info ul li span.check {
    background: url(/images/check.png?6a80e5ee3bbb041d66a05c3f7e463cca);
    width: 36px;
    height: 34px;
    float: left;
}

#profile .thousand-club-banner .info ul li span b {
    text-transform: uppercase;
}

.download-processing-warning {
    display: none;
}

.unsubscribe-thousand-club-popup .modal-footer {
    text-align: center;
}

.unsubscribe-thousand-club-popup .modal-footer .unsubscribe {
    width: 130px !important;
    background-color: #252525 !important;
    color: #ffffff !important;
    padding: 2px 0 !important;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

#payment-methods .payment-method-card {
    margin: 5px 0px;
    text-align: left;
    padding: 5px 20px;
    background-origin: content-box;
    background-color: white;
    cursor: pointer;
}

#payment-methods .payment-method-card.active {
    margin: 5px 0px;
    text-align: left;
    padding: 5px 20px;
    background-origin: content-box;
    background-color: #a83532;
    color: #fff;
}

/* The content boxes shared by various pages and different sections of pages */

@media (min-width: 768px) {
    .mob-only {
        display: none;
    }
}

/* Boxes containing diaries */

.fripp-box,
.singleton-box,
.rieflin-box {
    height: 100%;
    padding: 0px;
}

.fripp-box .diary-image,
.singleton-box .diary-image,
.rieflin-box .diary-image {
    float: right;
}

@media (max-width: 767px) {
    .fripp-box .diary-image,
    .singleton-box .diary-image,
    .rieflin-box .diary-image {
        height: 100%;
        width: 37%;
    }
}

@media (min-width: 768px) {
    .fripp-box .diary-image,
    .singleton-box .diary-image,
    .rieflin-box .diary-image {
        height: 55%;
        max-width: 81.45%;
    }
}

.fripp-box .quote-image,
.singleton-box .quote-image,
.rieflin-box .quote-image {
    float: left;
    height: auto;
    width: auto;
    padding: 2px 5px 0 0;
}

.fripp-box .text-content,
.singleton-box .text-content,
.rieflin-box .text-content {
    padding: 2px;
}

.fripp-box .text-content .summary,
.singleton-box .text-content .summary,
.rieflin-box .text-content .summary {
    padding: 5px 10px !important;
}

@media (max-width: 767px) {
    .fripp-box .text-content,
    .singleton-box .text-content,
    .rieflin-box .text-content {
        float: left;
        height: 100% !important;
        width: 63%;
    }
}

@media (min-width: 768px) {
    .fripp-box .text-content,
    .singleton-box .text-content,
    .rieflin-box .text-content {
        height: 45% !important;
    }
}

.fripp-box .date,
.fripp-box .summary,
.fripp-box .text-content-hover > a,
.singleton-box .date,
.singleton-box .summary,
.singleton-box .text-content-hover > a,
.rieflin-box .date,
.rieflin-box .summary,
.rieflin-box .text-content-hover > a {
    color: #252525 !important;
}

.fripp-box .fa-stack,
.singleton-box .fa-stack,
.rieflin-box .fa-stack {
    background: #252525;
}

@media only screen and (min-width: 1200px) {
    .fripp-box .title,
    .singleton-box .title,
    .rieflin-box .title {
        font-size: 25px;
        line-height: 25px;
    }
}

.fripp-box {
    background-color: #96a296 !important;
}

.fripp-box .title {
    color: #ffffff !important;
}

.fripp-box .fa-stack {
    background: #252525;
}

.fripp-box .fa {
    color: #96a296;
}

.singleton-box {
    background-color: #cbcbbf !important;
}

.singleton-box .title {
    color: #252525 !important;
}

.singleton-box .fa {
    color: #cbcbbf !important;
}

.rieflin-box {
    background-color: #d1a286 !important;
}

.rieflin-box .title {
    color: #ffffff !important;
}

.rieflin-box .fa {
    color: #d1a286 !important;
}

.rieflin-box .fa-stack {
    background: #252525;
}

@media (min-width: 768px) {
    .mob-small-news-col {
        height: 113px;
        margin-bottom: 20px;
    }

    .mob-small-news-col .content-box img {
        display: none;
    }

    .mob-small-news-col .content-box .text-content .summary {
        padding: 5px !important;
    }
}

.mob-small-news-col .title {
    color: #252525;
    padding: 5px;
}

@media (min-width: 768px) and (max-width: 767px) {
    .mob-small-news-col .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .mob-small-news-col .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media (min-width: 1200px) {
    .mob-small-news-col .title {
        font-size: 22px;
        line-height: 22px;
    }
}

.mob-small-news-col .date,
.mob-small-news-col .summary,
.mob-small-news-col .text-content-hover > a {
    color: #252525 !important;
}

.mob-small-news-col .fa-stack {
    background: #252525;
}

@media (max-width: 767px) {
    .mob-small-news-col {
        padding: 0px;
        height: 95px;
        margin-bottom: 13px;
    }

    .mob-small-news-col .text-content {
        font-style: none !important;
        width: 75%;
        float: right;
        height: 100%;
        padding-left: 8px;
    }

    .mob-small-news-col .text-content .title {
        padding: 5px 5px 0px 0px !important;
    }

    .mob-small-news-col .text-content .summary {
        padding: 7px 0px 0px 0px !important;
    }

    .mob-small-news-col img {
        float: left;
        height: 100%;
        width: 25%;
    }
}

.mob-featured-album-col {
    height: 170px;
    margin-bottom: 13px;
}

.mob-featured-album-col .music-content-box {
    height: 100%;
}

.mob-featured-album-col .music-content-box img {
    float: left;
    width: 46%;
}

.mob-featured-album-col .music-content-box .text-content {
    float: right;
    height: 100%;
    width: 54%;
}

.mob-featured-album-col .music-content-box .text-content .title {
    padding: 0px !important;
}

@media (max-width: 767px) {
    .large-box-with-gradient {
        height: 275px;
        padding: 0px 15px;
        margin-bottom: 13px;
    }

    .large-box-with-gradient .content-box .text-content {
        height: 33%;
    }

    .large-box-with-gradient .content-box .text-content .title {
        padding: 0px 10px !important;
    }

    .large-box-with-gradient .content-box .text-content .summary {
        font-style: italic;
    }

    .large-box-with-gradient .content-box img,
    .large-box-with-gradient .content-box .youtube-embed {
        height: 67%;
    }
}

@media (min-width: 768px) {
    .large-box-with-gradient {
        padding: 0px 0px 0px 10px;
        height: 100%;
    }

    .large-box-with-gradient .text-content {
        height: 30%;
    }

    .large-box-with-gradient .text-content .title {
        padding-top: 0;
    }

    .large-box-with-gradient img,
    .large-box-with-gradient .youtube-embed {
        height: 70%;
    }
}

.large-box-with-gradient .content-box {
    height: 100%;
    width: 100%;
    position: relative;
}

.large-box-with-gradient .content-box img,
.large-box-with-gradient .content-box .youtube-embed {
    width: 100%;
}

.large-box-with-gradient .content-box .youtube-embed {
    margin-bottom: -5px;
}

.large-box-with-gradient .content-box .title {
    color: #ffffff;
    text-shadow: 2px 2px #252525;
}

@media (max-width: 420px) {
    .large-box-with-gradient .content-box .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media (max-width: 320px) {
    .large-box-with-gradient .content-box .title {
        font-size: 16px;
        line-height: 16px;
    }
}

@media (max-width: 295px) {
    .large-box-with-gradient .content-box .title {
        font-size: 14px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .large-box-with-gradient .content-box .title {
        font-size: 18px;
        line-height: 18px;
    }
}

.large-box-with-gradient .content-box .summary {
    padding: 5px 10px !important;
}

@media (max-width: 420px) {
    .large-box-with-gradient .content-box .summary {
        font-size: 18px;
        line-height: 18px;
    }
}

@media (max-width: 320px) {
    .large-box-with-gradient .content-box .summary {
        font-size: 16px;
        line-height: 16px;
    }
}

@media (max-width: 295px) {
    .large-box-with-gradient .content-box .summary {
        font-size: 14px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .large-box-with-gradient .content-box .summary {
        font-size: 18px;
        line-height: 18px;
    }
}

.large-box-with-gradient .content-box .text-content-hover > a {
    color: #daa281 !important;
}

.large-box-with-gradient .content-box .text-content {
    width: 100%;
    color: #daa281;
    position: absolute;
    bottom: 0;
}

.large-box-with-gradient .content-box .text-content-hover {
    width: 100%;
}

.large-box-with-gradient .content-box .text-content-hover .fa-stack {
    background: #daa281;
}

.large-box-with-gradient .content-box .text-content-hover .fa {
    color: #252525;
}

.music-content-box {
    height: 100%;
    width: 100%;
    position: relative;
}

.music-content-box img {
    float: left;
    height: 100%;
    width: 49%;
}

@media (max-width: 991px) {
    .music-content-box img {
        width: 25%;
    }
}

.music-content-box .text-content {
    padding: 10px 30px 10px 15px;
    float: right;
    height: 100%;
    width: 51%;
    background-color: #311919;
}

@media (max-width: 991px) {
    .music-content-box .text-content {
        width: 75%;
    }
}

.music-content-box .text-content .download-link {
    height: 29px;
    width: 29px;
    color: #ffffff !important;
    position: absolute;
    z-index: 1;
    right: 2px;
    top: 4px;
    background: url(/images/download-button.png?2e172d7f5edbb624624c7f787145b2fc)
        no-repeat;
}

.music-content-box .text-content .title {
    margin-bottom: 10px;
    padding-bottom: 0px;
    color: #ffffff;
}

@media (max-width: 767px) {
    .music-content-box .text-content .title {
        padding-top: 8px !important;
    }
}

@media (max-width: 420px) {
    .music-content-box .text-content .title {
        font-size: 18px;
        line-height: 18px;
    }
}

@media (max-width: 350px) {
    .music-content-box .text-content .title {
        font-size: 16px;
        line-height: 16px;
    }
}

@media (max-width: 300px) {
    .music-content-box .text-content .title {
        font-size: 14px;
        line-height: 14px;
    }
}

@media (min-width: 768px) {
    .music-content-box .text-content .title {
        font-size: 18px;
        line-height: 18px;
    }
}

.music-content-box .text-content .summary {
    max-height: 60%;
    font-style: italic;
    color: #daa281;
    padding: 0px !important;
}

@media (max-width: 420px) {
    .music-content-box .text-content .summary {
        font-size: 16px;
        line-height: 16px;
    }
}

@media (max-width: 350px) {
    .music-content-box .text-content .summary {
        font-size: 14px;
        line-height: 14px;
    }
}

@media (max-width: 300px) {
    .music-content-box .text-content .summary {
        font-size: 12px;
        line-height: 12px;
    }
}

.recent-tour-date {
    padding: 0px;
    height: 120px;
    margin-bottom: 20px;
}

.recent-tour-date .summary {
    padding: 0px;
}

.recent-tour-date .title {
    padding: 0px;
    margin-bottom: 10px;
}

.header-image-container {
    padding: 0px;
    margin-top: 40px;
    margin-bottom: 55px;
}

.header-image-container img {
    width: 100%;
}

@media (max-width: 767px) {
    .header-image-container {
        display: none;
    }
}

#homepage-header-image-container {
    max-width: 1077px !important;
}

#kc-i-court-header-image-container,
#kc-ii-islands-header-image-container {
    max-width: 860px !important;
}

#kc-iv-discipline-header-image-container,
#kc-vi-tcol-header-image-container {
    max-width: 811px !important;
}

#kc-iii-larks-header-image-container {
    max-width: 860px !important;
}

#kc-v-thrak-header-image-container {
    max-width: 1203px !important;
}

#kc-vii-radical-header-image-container {
    max-width: 1090px !important;
}

#king-crimson-header-image-container {
    max-width: 1088px !important;
}

.form-hidden {
    display: none;
}

#forum-posts-container {
    max-width: 910px !important;
}

#forum-posts-container .right-hand-col {
    min-height: 170px;
}

#reviews-container #read-more-reviews-button {
    float: right;
}

#reviews-on-guest-book-container .read-more-button-div {
    margin-bottom: 65px;
}

@media (min-width: 768px) {
    #reviews-container .right-hand-col,
    #reviews-on-guest-book-container .right-hand-col,
    #forum-posts-container .right-hand-col {
        float: left;
        width: 77.2%;
    }
}

@media (max-width: 767px) {
    #reviews-container .right-hand-col,
    #reviews-on-guest-book-container .right-hand-col,
    #forum-posts-container .right-hand-col {
        width: 100%;
    }
}

@media (min-width: 768px) {
    #reviews-container .left-hand-col,
    #reviews-on-guest-book-container .left-hand-col,
    #forum-posts-container .left-hand-col {
        padding-right: 28px;
        float: left;
        width: 22.8%;
    }
}

@media (max-width: 767px) {
    #reviews-container .left-hand-col,
    #reviews-on-guest-book-container .left-hand-col,
    #forum-posts-container .left-hand-col {
        width: 100%;
    }
}

#reviews-container,
#reviews-on-guest-book-container {
    max-width: 935px !important;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    #reviews-container .written-by-text,
    #reviews-container .date-text,
    #reviews-on-guest-book-container .written-by-text,
    #reviews-on-guest-book-container .date-text {
        text-align: center;
        margin: auto;
    }

    #reviews-container .rating,
    #reviews-on-guest-book-container .rating {
        text-align: center;
        margin: auto;
    }

    #reviews-container #star-rating-col,
    #reviews-on-guest-book-container #star-rating-col {
        margin-bottom: 2px;
    }
}

@media (min-width: 768px) {
    #reviews-container .right-hand-col,
    #reviews-on-guest-book-container .right-hand-col {
        min-height: 156px;
    }
}

#reviews-container .col-pad-right,
#reviews-on-guest-book-container .col-pad-right {
    padding-right: 22px;
}

#reviews-container .col-pad-left,
#reviews-on-guest-book-container .col-pad-left {
    padding-left: 22px;
}

#reviews-container #submit-review-button-col,
#reviews-container #read-more-button-col,
#reviews-on-guest-book-container #submit-review-button-col,
#reviews-on-guest-book-container #read-more-button-col {
    padding-top: 10px;
}

#reviews-container #submit-review-form-container,
#reviews-on-guest-book-container #submit-review-form-container {
    /* hover previous stars in list */
}

#reviews-container #submit-review-form-container .row:first-of-type,
#reviews-on-guest-book-container
    #submit-review-form-container
    .row:first-of-type {
    margin: 10px 0px 0px 0px;
}

#reviews-container #submit-review-form-container .row:last-of-type,
#reviews-on-guest-book-container
    #submit-review-form-container
    .row:last-of-type {
    margin: 0px;
}

@media (min-width: 768px) {
    #reviews-container #submit-review-form-container .title-col,
    #reviews-on-guest-book-container #submit-review-form-container .title-col {
        padding-right: 25px !important;
    }
}

#reviews-container #submit-review-form-container .rating,
#reviews-on-guest-book-container #submit-review-form-container .rating {
    border: none;
    float: left;
}

@media (min-width: 768px) {
    #reviews-container #submit-review-form-container .rating,
    #reviews-on-guest-book-container #submit-review-form-container .rating {
        margin: -9px 0px 0px -9px;
    }
}

@media (max-width: 768px) {
    #reviews-container #submit-review-form-container .rating,
    #reviews-on-guest-book-container #submit-review-form-container .rating {
        margin: -14px 0px 0px 15px;
    }
}

#reviews-container #submit-review-form-container .rating fieldset,
#reviews-container #submit-review-form-container .rating label,
#reviews-on-guest-book-container #submit-review-form-container .rating fieldset,
#reviews-on-guest-book-container #submit-review-form-container .rating label {
    margin: 0;
    padding: 0;
}

#reviews-container #submit-review-form-container #rating-label,
#reviews-on-guest-book-container #submit-review-form-container #rating-label {
    float: left;
}

#reviews-container #submit-review-form-container .rating > input,
#reviews-on-guest-book-container #submit-review-form-container .rating > input {
    display: none;
}

#reviews-container #submit-review-form-container .rating > label:before,
#reviews-on-guest-book-container
    #submit-review-form-container
    .rating
    > label:before {
    margin: 2px;
    font-size: 30px !important;
    display: inline-block;
    content: "\2605";
}

#reviews-container #submit-review-form-container .rating > label,
#reviews-on-guest-book-container #submit-review-form-container .rating > label {
    color: grey;
    float: right;
}

#reviews-container
    #submit-review-form-container
    .rating
    > input:checked
    ~ label,
#reviews-container
    #submit-review-form-container
    .rating:not(:checked)
    > label:hover,
#reviews-container
    #submit-review-form-container
    .rating:not(:checked)
    > label:hover
    ~ label,
#reviews-on-guest-book-container
    #submit-review-form-container
    .rating
    > input:checked
    ~ label,
#reviews-on-guest-book-container
    #submit-review-form-container
    .rating:not(:checked)
    > label:hover,
#reviews-on-guest-book-container
    #submit-review-form-container
    .rating:not(:checked)
    > label:hover
    ~ label {
    color: #a83532;
}

#reviews-container .star,
#reviews-on-guest-book-container .star {
    margin: 2px;
}

@media (max-width: 768px) {
    #reviews-container .star,
    #reviews-on-guest-book-container .star {
        font-size: 30px !important;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    #reviews-container .star,
    #reviews-on-guest-book-container .star {
        font-size: 22px !important;
    }
}

@media (min-width: 1200px) {
    #reviews-container .star,
    #reviews-on-guest-book-container .star {
        font-size: 30px !important;
    }
}

#reviews-container .red-star,
#reviews-on-guest-book-container .red-star {
    color: #a83532 !important;
}

#reviews-container .grey-star,
#reviews-on-guest-book-container .grey-star {
    color: grey !important;
}

#forum-posts-container,
#reviews-container,
#reviews-on-guest-book-container {
    font-size: 18px;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    #forum-posts-container,
    #reviews-container,
    #reviews-on-guest-book-container {
        padding: 0px;
    }
}

@media (max-width: 767px) {
    #forum-posts-container,
    #reviews-container,
    #reviews-on-guest-book-container {
        padding: 0px 15px;
    }
}

#forum-posts-container #forum-heading,
#reviews-container #forum-heading,
#reviews-on-guest-book-container #forum-heading {
    margin: 20px 0px 0px 0px;
    font-size: 45px;
    font-weight: 500;
    width: 100%;
}

@media (max-width: 767px) {
    #forum-posts-container #forum-heading,
    #reviews-container #forum-heading,
    #reviews-on-guest-book-container #forum-heading {
        text-align: center;
    }
}

#forum-posts-container #forum-heading #header-text,
#reviews-container #forum-heading #header-text,
#reviews-on-guest-book-container #forum-heading #header-text {
    font-size: 50px;
    padding-right: 60px;
}

@media (max-width: 767px) {
    #forum-posts-container #forum-heading #header-text,
    #reviews-container #forum-heading #header-text,
    #reviews-on-guest-book-container #forum-heading #header-text {
        padding: 0px;
    }
}

@media (min-width: 768px) {
    #forum-posts-container #forum-heading #header-text,
    #reviews-container #forum-heading #header-text,
    #reviews-on-guest-book-container #forum-heading #header-text {
        text-align: right;
    }
}

#forum-posts-container .full-post,
#reviews-container .full-post,
#reviews-on-guest-book-container .full-post {
    margin: 20px 0px;
}

@media (max-width: 767px) {
    #forum-posts-container .full-post,
    #reviews-container .full-post,
    #reviews-on-guest-book-container .full-post {
        border-bottom: 1px solid #cbcbbf;
    }
}

#forum-posts-container .post-title,
#reviews-container .post-title,
#reviews-on-guest-book-container .post-title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding: 0 10px 0 0 !important;
    margin: 0 0 5px 0;
}

#forum-posts-container [class*="col-"],
#reviews-container [class*="col-"],
#reviews-on-guest-book-container [class*="col-"] {
    padding: 0px;
}

#forum-posts-container .author-col,
#reviews-container .author-col,
#reviews-on-guest-book-container .author-col {
    float: left;
    padding-bottom: 10px;
    font-size: 16px;
}

#forum-posts-container .author-col .avatar-div,
#reviews-container .author-col .avatar-div,
#reviews-on-guest-book-container .author-col .avatar-div {
    width: 100px;
    position: relative;
}

#forum-posts-container .author-col .avatar-div img,
#reviews-container .author-col .avatar-div img,
#reviews-on-guest-book-container .author-col .avatar-div img {
    width: 100px;
    height: 100px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}

#forum-posts-container .author-col .written-by-text,
#reviews-container .author-col .written-by-text,
#reviews-on-guest-book-container .author-col .written-by-text {
    margin-top: 5px;
}

#forum-posts-container .author-col .written-by-text .author-name,
#reviews-container .author-col .written-by-text .author-name,
#reviews-on-guest-book-container .author-col .written-by-text .author-name {
    color: #a83532;
    font-weight: 500;
}

#forum-posts-container .current-user-name,
#reviews-container .current-user-name,
#reviews-on-guest-book-container .current-user-name {
    font-style: italic;
}

#forum-posts-container .post-content,
#reviews-container .post-content,
#reviews-on-guest-book-container .post-content {
    font-size: 18px;
    font-weight: 400;
}

@media (max-width: 768px) {
    #forum-posts-container .post-content,
    #reviews-container .post-content,
    #reviews-on-guest-book-container .post-content {
        padding-bottom: 20px;
    }
}

#forum-posts-container .post-content-col,
#reviews-container .post-content-col,
#reviews-on-guest-book-container .post-content-col {
    padding: 0px 0px 60px 0px;
}

@media (min-width: 768px) {
    #forum-posts-container .post-content-col,
    #reviews-container .post-content-col,
    #reviews-on-guest-book-container .post-content-col {
        border-bottom: 1px solid #cbcbbf;
    }
}

#forum-posts-container .replies,
#reviews-container .replies,
#reviews-on-guest-book-container .replies {
    padding: 0 10px 0 50px;
    font-size: 18px;
}

#forum-posts-container .replies .reply,
#reviews-container .replies .reply,
#reviews-on-guest-book-container .replies .reply {
    padding: 10px 0 0 0;
}

#forum-posts-container .replies .reply .reply-user-name,
#reviews-container .replies .reply .reply-user-name,
#reviews-on-guest-book-container .replies .reply .reply-user-name {
    font-weight: 500;
    margin: 0px;
}

#forum-posts-container .replies .reply .reply-user-name .name,
#reviews-container .replies .reply .reply-user-name .name,
#reviews-on-guest-book-container .replies .reply .reply-user-name .name {
    color: #a83532;
}

#forum-posts-container .reply-link,
#reviews-container .reply-link,
#reviews-on-guest-book-container .reply-link {
    float: right;
    margin: -5px 0px 5px 0px;
}

#forum-posts-container .reply-button,
#reviews-container .reply-button,
#reviews-on-guest-book-container .reply-button {
    float: right;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

#forum-posts-container .reply-button .glyphicon-arrow-right,
#reviews-container .reply-button .glyphicon-arrow-right,
#reviews-on-guest-book-container .reply-button .glyphicon-arrow-right {
    font-size: 14px !important;
}

#forum-posts-container .submit-reply-form-container,
#reviews-container .submit-reply-form-container,
#reviews-on-guest-book-container .submit-reply-form-container {
    margin-top: 20px;
}

#forum-posts-container .submit-reply-form-container .row,
#reviews-container .submit-reply-form-container .row,
#reviews-on-guest-book-container .submit-reply-form-container .row {
    margin: 0px;
}

#forum-posts-container #submit-post-form-container form .row,
#reviews-container #submit-post-form-container form .row,
#reviews-on-guest-book-container #submit-post-form-container form .row {
    margin: 0px;
}

#forum-posts-container #additional-posts-container,
#reviews-container #additional-posts-container,
#reviews-on-guest-book-container #additional-posts-container {
    padding: 0px;
}

#forum-posts-container .post-reply-response,
#reviews-container .post-reply-response,
#reviews-on-guest-book-container .post-reply-response {
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
    display: none;
}

#forum-posts-container .success,
#reviews-container .success,
#reviews-on-guest-book-container .success {
    font-size: 20px;
    color: #3c763d;
}

#forum-posts-container .error,
#reviews-container .error,
#reviews-on-guest-book-container .error {
    font-size: 20px;
    color: #ff0000;
}

#forum-posts-container .has-error,
#reviews-container .has-error,
#reviews-on-guest-book-container .has-error {
    border-color: #a83532;
}

#reviews-on-guest-book-container {
    margin-top: 22px;
}

#reviews-on-guest-book-container #header-text {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 20px;
}

#reviews-on-guest-book-container .review-subject-row {
    margin-bottom: 5px;
}

#reviews-on-guest-book-container .review-subject-row img {
    vertical-align: top;
}

#reviews-on-guest-book-container .review-subject-title {
    padding-left: 20px;
    font-size: 22px;
    font-weight: 500;
    line-height: 0px;
}

#reviews-on-guest-book-container .review-subject-title a {
    color: grey !important;
}

.diary-articles .fixedHeight {
    height: auto !important;
    margin-left: 5px;
    margin-right: 20px;
}

#twitterFeed {
    padding: 0px 15px !important;
}

#timeline-outer-container {
    height: 500px;
    padding: 0px;
    max-width: 1280px !important;
    margin-top: 25px;
}

#timeline-outer-container #history-discover-text {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin: 0 auto 30px auto;
}

#timeline-outer-container #first-timeline-row {
    height: 200px;
    margin: 0px;
    background-color: #252525;
}

#timeline-outer-container #first-timeline-row #grey-triangle {
    border-top: 10px solid #f1f0ec;
}

#timeline-outer-container #first-timeline-row #left-of-timeline,
#timeline-outer-container #first-timeline-row #right-of-timeline {
    float: left;
    width: 16.02% !important;
}

#timeline-outer-container #first-timeline-row #zoom-in,
#timeline-outer-container #first-timeline-row #zoom-out {
    width: 51px;
    height: 51px;
    margin: 84px auto 0 auto;
    cursor: pointer;
}

#timeline-outer-container #first-timeline-row #zoom-out {
    background: no-repeat url("/img/assets/zoom-out.png");
}

#timeline-outer-container #first-timeline-row #zoom-in {
    background: no-repeat url("/img/assets/zoom-in.png");
}

#timeline-outer-container #first-timeline-row #timeline-inner-container {
    height: 190px;
    padding: 0px;
    float: left;
    width: 67.96%;
    position: relative;
}

#timeline-outer-container #first-timeline-row #timeline-inner-container hr {
    width: 100%;
    position: absolute;
    bottom: 30px;
    border: none;
    border-top: 1px dotted #ffffff;
    z-index: 1;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .slick-slide {
    height: 190px !important;
    width: 150px;
    background-color: #252525 !important;
    letter-spacing: -2px;
    text-align: center;
    position: relative;
    outline: none;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .slick-slide
    .top-section {
    height: 75%;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .slick-slide
    .bottom-section {
    height: 25%;
    width: 100%;
    position: absolute;
    bottom: 12px;
    text-align: center;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .slick-slide
    .bottom-section
    .fa-circle {
    font-size: 10px;
    color: #ffffff;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .active-slide {
    width: 270px;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .active-slide
    .slide-primary {
    cursor: pointer;
    padding-top: 65px;
    font-size: 52px;
    font-weight: 600;
    color: #ffffff;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .active-slide
    .slide-secondary {
    cursor: pointer;
    font-size: 33px;
    font-weight: 600;
    color: grey;
    position: absolute;
    top: 15%;
    width: 100%;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .inactive-slide {
    cursor: pointer;
    width: 150px;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .inactive-slide
    .slide-primary {
    padding-top: 100px;
    font-size: 25px;
    font-weight: 600;
    color: grey;
}

#timeline-outer-container
    #first-timeline-row
    #timeline-inner-container
    .inactive-slide
    .slide-secondary {
    display: none;
}

#timeline-outer-container #first-timeline-row .slick-prev,
#timeline-outer-container #first-timeline-row .slick-next {
    width: 60px;
    height: 34px;
}

#timeline-outer-container .triangle {
    margin: auto;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

#timeline-outer-container #black-triangle {
    border-top: 10px solid #252525;
}

#timeline-outer-container #second-timeline-row {
    padding-top: 35px;
    height: 25px;
    width: 70%;
    margin: auto;
}

@media (max-width: 767px) {
    #timeline-outer-container #second-timeline-row {
        width: 100%;
    }
}

#timeline-outer-container #second-timeline-row [class*="col-"] {
    padding: 0px;
}

#timeline-outer-container #second-timeline-row .col-xs-1 {
    padding-top: 40px;
}

#timeline-outer-container #second-timeline-row .col-xs-1 #arrow-left {
    cursor: pointer;
    float: left;
}

#timeline-outer-container #second-timeline-row .col-xs-1 #arrow-right {
    cursor: pointer;
    float: right;
}

#timeline-outer-container #second-timeline-row #article-container {
    width: 100%;
    padding: 0px;
}

#timeline-outer-container
    #second-timeline-row
    #article-container
    [class*="col-"] {
    padding: 0px;
}

@media (max-width: 767px) {
    #timeline-outer-container #second-timeline-row #article-container {
        text-align: center;
        padding-bottom: 20px;
    }
}

#timeline-outer-container #second-timeline-row #article-container img {
    max-width: 100%;
    padding-top: 10px;
    box-shadow: 0px 20px 30px -15px rgb(0, 0, 0);
}

@media (max-width: 767px) {
    #timeline-outer-container #second-timeline-row #article-container img {
        max-height: 100px;
    }
}

@media (min-width: 768px) {
    #timeline-outer-container
        #second-timeline-row
        #article-container
        #history-article-text {
        padding-left: 20px;
    }
}

#timeline-outer-container
    #second-timeline-row
    #article-container
    #article-title {
    font-size: 33px;
    font-weight: 600;
    letter-spacing: -1px;
}

#timeline-outer-container
    #second-timeline-row
    #article-container
    #article-content {
    font-size: 18px;
    line-height: 18px;
    font-style: italic;
}

#timeline-white-row {
    background-color: #ffffff;
    margin-top: -80px;
    width: 100%;
    height: 130px;
}

.link-not-active {
    pointer-events: none;
    cursor: default;
}

#shop .shop-header {
    margin-bottom: 50px;
}

#shop .shop-header h1 {
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
}

#shop .shop-header p {
    font: 500 normal 18px "futura-pt", arial, sans-serif;
    text-align: center;
}

#shop .shop-header .shop {
    margin-top: 40px;
    width: 265px;
}

#shop .shop-header .shop .logo img {
    display: block;
    margin: 0 auto;
    width: 209px;
    height: 209px;
}

#shop .shop-header .shop .link {
    text-align: center;
    margin-top: 40px;
}

#shop .shop-header .shop .infos {
    margin-top: 20px;
}

#shop .shop-header .shop .infos p {
    font: italic 400 normal 14px "futura-pt", arial, sans-serif;
}

#shop .shop-header .shop-uk {
    float: right;
}

#shop .shop-header .shop-usa {
    float: left;
}

@media (max-width: 991px) {
    #shop .shop-header .shop-uk {
        float: none;
        margin: auto;
    }

    #shop .shop-header .shop-usa {
        float: none;
        margin: auto;
    }
}

.latest-fluid-container {
    background-color: #ffffff;
    padding-bottom: 30px;
}

.latest-slider {
    margin-top: 30px;
}

.latest-slider a {
    color: #252525 !important;
}

.latest-slider h1 {
    margin: 0 auto 5px;
    text-align: center;
    text-transform: uppercase;
    font: bold normal 2.5em futura-pt, sans-serif;
}

@media (max-width: 1200px) {
    .latest-slider .slick-slider .slick-prev {
        left: -10px;
        z-index: 10;
        width: 24px;
        height: 37px;
    }

    .latest-slider .slick-slider .slick-next {
        right: -10px;
        z-index: 10;
        width: 24px;
        height: 37px;
    }
}

.latest-slider .slick-slider .slick-slide {
    margin: 0 15px;
}

.latest-slider .slick-slider .slick-slide.slide-container {
    padding: 0.5%;
    outline: none;
    display: block;
}

.latest-slider .slick-slider .slick-slide.slide-container .slide-info {
    display: table;
    width: 100%;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-title {
    display: block;
    width: 200%;
    position: relative;
    text-align: center;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-title
    .slide-title-content {
    width: 100%;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-title
    .slide-title-content
    h2 {
    margin: 0 auto 5px;
    text-align: center;
    text-transform: uppercase;
    font: bold normal 2em futura-pt, sans-serif;
    padding: 0 15px;
    display: inline-block;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-title
    .slide-title-content
    img {
    padding-bottom: 15px;
    display: inline-block;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row {
    display: table-row;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row
    .image {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    border-bottom: 0;
    position: relative;
    height: 120px;
    overflow: hidden;
    background-color: #252525;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row
    .image
    img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row
    .image:first-of-type {
    border-right: 1px solid #cbcbbf;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row
    .image:last-of-type {
    border-left: 1px solid #cbcbbf;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row
    .description {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    padding: 5px 0;
    line-height: 1;
    background-color: #9ca89c;
    height: 120px;
    position: relative;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row-2
    .image {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    position: relative;
    height: 120px;
    overflow: hidden;
    background-color: #252525;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row-2
    .image
    img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row-2
    .image:first-of-type {
    border-right: 1px solid #cbcbbf;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .slide-info
    .slide-row-2
    .image:last-of-type {
    border-left: 1px solid #cbcbbf;
}

.latest-slider .slick-slider .slick-slide.slide-container .latest-news a {
    display: table-cell;
    width: 50%;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item {
    width: 100%;
    padding: 5px 5px;
    border-right: 0;
    height: 120px;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item
    h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 5px;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item
    p {
    font-size: 14px;
    line-height: 14px;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-0 {
    border-left: 2px solid #cbcbbf;
    border-top: 2px solid #cbcbbf;
    border-bottom: 2px solid #cbcbbf;
    background-color: #311919;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-0
    h3 {
    color: #ffffff;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-0
    p {
    color: #daa281;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-1 {
    border-left: 2px solid #cbcbbf;
    border-right: 2px solid #cbcbbf;
    border-top: 2px solid #cbcbbf;
    border-bottom: 2px solid #cbcbbf;
    background-color: #a83532;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-1
    h3 {
    color: #daa281;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-1
    p {
    color: #ffffff;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-2 {
    border-left: 2px solid #cbcbbf;
    border-bottom: 2px solid #cbcbbf;
    background-color: #cbcbbf;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-2
    h3 {
    color: #252525;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-2
    p {
    color: #252525;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-3 {
    border-left: 2px solid #cbcbbf;
    border-right: 2px solid #cbcbbf;
    border-bottom: 2px solid #cbcbbf;
    background-color: #311919;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-3
    h3 {
    color: #ffffff;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .latest-news
    a
    .news-item-3
    p {
    color: #daa281;
}

.latest-slider .slick-slider .slick-slide.slide-container .album {
    display: table;
    width: 100%;
}

.latest-slider .slick-slider .slick-slide.slide-container .album .slide-title {
    display: block;
    width: 200%;
    position: relative;
    text-align: center;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-title
    .slide-title-content {
    width: 100%;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-title
    .slide-title-content
    h2 {
    margin: 0 auto 5px;
    text-align: center;
    text-transform: uppercase;
    font: bold normal 2em futura-pt, sans-serif;
    padding: 0 15px;
    display: inline-block;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-title
    .slide-title-content
    img {
    padding-bottom: 15px;
    display: inline-block;
}

.latest-slider .slick-slider .slick-slide.slide-container .album .slide-row {
    display: table-row;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date {
    display: table-cell;
    border: 2px solid #cbcbbf;
    text-align: center;
    width: 50%;
    vertical-align: middle;
    padding: 5px 0;
    border-bottom: 0;
    border-right: 0;
    height: 120px;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date
    p {
    margin: 0;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date
    p.day {
    font: bold normal 3em futura-pt, sans-serif;
    line-height: 0.8;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date
    p.month {
    font: 500 normal 1em futura-pt, sans-serif;
    line-height: 1;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date
    p.year {
    font: 500 normal 1em futura-pt, sans-serif;
    line-height: 1;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date.date-box-peach {
    color: #fff;
    background-color: #daa281;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date.date-box-red {
    color: #fff;
    background-color: #a83532;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date.date-box-grey {
    color: #fff;
    background-color: #9ca89c;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date.date-box-brown {
    color: #fff;
    background-color: #311919;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .date
    .date-box-without {
    color: #252525 !important;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .image {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    border-bottom: 0;
    position: relative;
    height: 120px;
    overflow: hidden;
    background-color: #252525;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .image
    img {
    width: 100%;
    height: 100%;
    position: absolute;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .venue {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    background-color: #fff;
    text-align: center;
    padding: 5px 0;
    border-right: 0;
    vertical-align: middle;
    height: 120px;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .venue
    .venue-name {
    font: bold normal 18px futura-pt, sans-serif;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .venue
    .venue-location {
    font: 500 italic 16px futura-pt, sans-serif;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .description {
    display: table-cell;
    border: 2px solid #cbcbbf;
    width: 50%;
    padding: 5px 0;
    line-height: 1;
    background-color: #9ca89c;
    height: 120px;
    position: relative;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .description
    p {
    padding: 0 5px;
    margin: 0;
    font-size: 14px;
    position: absolute;
    top: 37px;
}

@media (max-width: 352px) {
    .latest-slider
        .slick-slider
        .slick-slide.slide-container
        .album
        .slide-row
        .description
        p {
        font-size: 13px;
    }
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .description
    .customer-rating {
    text-align: center;
    display: block;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container {
    position: relative;
    top: 5px;
    margin: -5px 0px 0px 0px;
    padding: 0;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container
    .star-box {
    margin: auto;
    left: 0px;
    position: relative;
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container
    .star-bg {
    margin: auto;
    left: 0px;
    position: relative;
    top: -31px;
    color: #6f7a6f;
}

@media (max-width: 400px) {
    .latest-slider
        .slick-slider
        .slick-slide.slide-container
        .album
        .slide-row
        .description
        .customer-rating
        .stars-container
        .star-bg {
        top: -26px;
    }
}

.latest-slider
    .slick-slider
    .slick-slide.slide-container
    .album
    .slide-row
    .description
    .customer-rating
    .stars-container
    .glyphicon {
    font-size: 25px !important;
}

@media (max-width: 400px) {
    .latest-slider
        .slick-slider
        .slick-slide.slide-container
        .album
        .slide-row
        .description
        .customer-rating
        .stars-container
        .glyphicon {
        font-size: 20px !important;
    }
}

.thousand-club .article-title {
    text-transform: uppercase;
    color: #252525;
}

.thousand-club .article-title span {
    color: #a83532;
}

.thousand-club .article-content ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.thousand-club .article-content ul li {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
}

.thousand-club .article-content ul li span {
    vertical-align: middle;
    display: inline-block;
}

.thousand-club .article-content ul li span.check {
    background: url(/images/check.png?372dac5986ac9d9eb5c7bde97b4fdbb5);
    width: 36px;
    height: 34px;
}

.thousand-club .article-content ul li span b {
    text-transform: uppercase;
}

.thousand-club .article-content .cta {
    margin: 50px auto;
    text-align: center;
}

.thousand-club .article-content .cta button {
    font-weight: bold;
}

.thousand-club .article-content .cta button.join {
    background-color: #a83532;
    color: #fff !important;
    padding: 15px 60px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 22px;
    border: none;
    outline: none;
}

.thousand-club-subscribe-popup .modal-header .subscription-logo {
    width: 188px;
    height: 77px;
    margin: 30px auto 0;
    display: block;
}

.thousand-club-subscribe-popup ul {
    width: 100%;
    margin: 0;
    padding: 0;
}

.thousand-club-subscribe-popup ul li {
    margin: 15px 0;
    padding: 0;
    list-style: none;
    font-size: 18px;
}

.thousand-club-subscribe-popup ul li span {
    vertical-align: middle;
    display: inline-block;
}

.thousand-club-subscribe-popup ul li span.check {
    background: url(/images/check.png?372dac5986ac9d9eb5c7bde97b4fdbb5);
    width: 36px;
    height: 34px;
}

.thousand-club-subscribe-popup ul li span b {
    text-transform: uppercase;
}

.thousand-club-subscribe-popup form {
    text-align: center;
}

.thousand-club-subscribe-popup form button.join {
    width: 130px !important;
    background-color: #a83532 !important;
    color: #fff !important;
    padding: 2px 0 !important;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
}

.thousand-club-subscribe-popup form p {
    text-transform: uppercase;
    color: #252525;
    font-weight: bold;
    font-size: 18px;
    margin-top: 10px;
}

.tour-image,
.tickets-band-image {
    max-width: 100%;
    max-height: 100%;
}

.ticket-arrows {
    /* Yes, I am lazy. */
    padding: 20px;
}

.ticket-sold-out {
    font-weight: 600;
    color: #a83532;
}

#buy-ticket-modal .modal-dialog {
    width: auto;
    margin: 15px;
}

@media only screen and (min-width: 992px) {
    #buy-ticket-modal .modal-dialog {
        width: 815px;
        margin: 30px auto;
    }
}

#ticket-modal-top-row {
    font-weight: 500;
}

#ticket-modal-top-row #ticket-modal-band-name {
    letter-spacing: -1px;
    padding-top: 10px;
    text-transform: uppercase;
    font-size: 24px;
}

#ticket-modal-top-row #ticket-modal-show-location {
    letter-spacing: -1px;
    font-size: 24px;
}

#ticket-modal-top-row #ticket-modal-show-date {
    font-size: 16px;
}

#ticket-modal-top-row #ticket-title {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 20px;
}

#ticket-modal-top-row #flag-column .fa-stack {
    width: 100%;
}

#ticket-modal-top-row #flag-column .fa-circle {
    color: #a83532;
}

#ticket-modal-top-row #flag-column .fa-gbp,
#ticket-modal-top-row #flag-column .fa-usd,
#ticket-modal-top-row #flag-column .fa-eur {
    font-size: 30px;
    color: #e5e5e5;
}

#white-modal-row {
    margin-top: -15px;
    background-color: #ffffff;
    letter-spacing: -1px;
}

#white-modal-row #description-col {
    padding: 15px;
    font-size: 16px;
}

#white-modal-row #description-col #only-available-text {
    font-size: 18px;
    font-weight: 500;
}

#ticket-modal-bottom-row {
    letter-spacing: -1px;
}

#ticket-modal-bottom-row #ticket-modal-price {
    font-size: 22px;
    font-weight: 500;
}

#ticket-modal-bottom-row #vat-text {
    font-size: 16px;
}

#ticket-modal-bottom-row #ticket-quantity-label {
    font-size: 18px;
    font-weight: 400;
}

body {
    background-color: #f1f0ec;
    font-family: "futura-pt", arial, sans-serif;
}

a:focus {
    outline: none !important;
    text-decoration: none !important;
}

.text-content-hover {
    /* Hidden until hover */
    text-align: center !important;
    margin: auto !important;
    padding-top: 5px !important;
    display: none;
}

.text-content-hover .fa-stack {
    border-radius: 50%;
}

.text-content-hover .fa,
.text-content-hover .fa-stack {
    font-size: 14px;
}

.text-content-hover p {
    font-weight: 500;
    display: inline-block;
    margin-right: 5px;
}

@media only screen and (min-width: 768px) {
    .content-box:hover .text-content-hover {
        display: block;
    }

    .content-box:hover .summary {
        display: none;
    }
}

@media only screen and (max-width: 319px) {
    .summary,
    .date,
    .category,
    .text-content-hover {
        font-size: 14px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 480px) {
    .summary,
    .date,
    .category,
    .text-content-hover {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 768px) {
    .summary,
    .date,
    .category,
    .text-content-hover {
        font-size: 18px;
        line-height: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .summary,
    .date,
    .category,
    .text-content-hover {
        font-size: 14px;
        line-height: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .summary,
    .date,
    .category,
    .text-content-hover {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (min-width: 1200px) {
    .summary,
    .date,
    .category,
    .text-content-hover {
        font-size: 18px;
        line-height: 18px;
    }
}

.with-gradient {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgb(0, 0, 0) 55%
    );
}

.no-gradient {
    background: #252525;
}

.summary,
.date,
.text-content-hover {
    font-weight: 400;
}

.category {
    font-weight: 500;
    margin-bottom: 2px;
}

.title {
    font-weight: 500;
}

@media only screen and (max-width: 299px) {
    .title {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    .title {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 768px) {
    .title {
        font-size: 25px;
        line-height: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    .title {
        font-size: 20px;
        line-height: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .title {
        font-size: 25px;
        line-height: 25px;
    }
}

@media only screen and (min-width: 1200px) {
    .title {
        font-size: 25px;
        line-height: 25px;
    }
}

.centered-div {
    text-align: center;
    margin: auto;
}

.container {
    max-width: 1280px;
}

.content-img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 15%;
    object-position: 50% 15%;
}

.placeholder-img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
    object-position: 50% 50%;
}

#news-nav,
#tour-nav {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

#news-nav ul,
#tour-nav ul {
    font-size: 0px;
}

#news-nav li,
#tour-nav li {
    font-size: 18px;
}

#search-results-container h2 {
    color: #a83532;
}

.social-sharing {
    margin: 30px auto 20px;
}

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

.social-sharing ul li {
    width: 56px;
    height: 56px;
    display: inline-block;
    margin: 0 10px;
}

@media (max-width: 992px) {
    .social-sharing ul li {
        margin-left: -10px;
        margin-right: 0;
    }
}

@media (max-width: 347px) {
    .social-sharing ul li {
        width: 40px;
        height: 40px;
        margin-left: 0px;
    }
}

@media (max-width: 311px) {
    .social-sharing ul li {
        width: 30px;
        height: 30px;
        margin-left: 0px;
    }
}

.social-sharing ul li a {
    display: block;
    width: 56px;
    height: 56px;
}

.social-sharing ul .share-facebook {
    background: url(/images/social-facebook.png?456f22d1434a91663b6bd65a66a7a28e)
        no-repeat left top/100%;
}

.social-sharing ul .share-facebook:hover {
    background-position: 0 100%;
}

.social-sharing ul .share-twitter {
    background: url(/images/social-twitter.png?c97fef5a1825f78533f19a2463c9f7fe)
        no-repeat left top/100%;
}

.social-sharing ul .share-twitter:hover {
    background-position: 0 100%;
}

.social-sharing ul .share-pinterest {
    background: url(/images/social-pinterest.png?c05979565ce794d078cfc61626045fd2)
        no-repeat left top/100%;
}

.social-sharing ul .share-pinterest:hover {
    background-position: 0 100%;
}

.social-sharing ul .share-google {
    background: url(/images/social-google.png?9545d58162b3258b50460c6afa355ac3)
        no-repeat left top/100%;
}

.social-sharing ul .share-google:hover {
    background-position: 0 100%;
}

.social-sharing ul .share-mail {
    background: url(/images/social-mail.png?4fcd56629585c3e6e6be9d17607ac250)
        no-repeat left top/100%;
}

.social-sharing ul .share-mail:hover {
    background-position: 0 100%;
}

.social-sharing ul .share-whatsapp {
    background: url(/images/social-whatsapp.png?75b2e46bf1304e856761698c66e68aee)
        no-repeat left top/100%;
}

.social-sharing ul .share-whatsapp:hover {
    background-position: 0 100%;
}

@media (min-width: 768px) {
    .social-sharing ul .share-whatsapp {
        display: none;
    }
}

.bootstrap-tagsinput {
    width: 100%;
}

#frontpage-news-articles .with-gradient,
#artist-about-grid .with-gradient {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgb(0, 0, 0) 35%
    );
}

#frontpage-news-articles .no-gradient,
#artist-about-grid .no-gradient {
    background: #252525;
}

@media only screen and (max-width: 768px) {
    #frontpage-news-articles .fa,
    #frontpage-news-articles .fa-stack,
    #artist-about-grid .fa,
    #artist-about-grid .fa-stack {
        font-size: 16px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 992px) {
    #frontpage-news-articles .fa,
    #frontpage-news-articles .fa-stack,
    #artist-about-grid .fa,
    #artist-about-grid .fa-stack {
        font-size: 10px !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
    #frontpage-news-articles .fa,
    #frontpage-news-articles .fa-stack,
    #artist-about-grid .fa,
    #artist-about-grid .fa-stack {
        font-size: 14px !important;
    }
}

@media only screen and (min-width: 1200px) {
    #frontpage-news-articles .fa,
    #frontpage-news-articles .fa-stack,
    #artist-about-grid .fa,
    #artist-about-grid .fa-stack {
        font-size: 16px !important;
    }
}

#frontpage-news-articles {
    margin-bottom: 45px;
}

#more-results-button {
    background-color: #252525;
    color: #ffffff;
    font-size: 25px;
    display: inline;
    border: 1px solid;
    border-radius: 10px;
}

#additional-results-container {
    padding: 20px 0px;
}

.tag-box {
    display: inline-block;
    border: 1px solid #cbcbbf;
    padding: 0.2em 0.6em 0.3em;
    font-size: 75%;
    margin: 6px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

.right-sidebar {
    font-size: 18px;
}

@media (max-width: 768px) {
    .right-sidebar {
        padding-top: 20px;
    }
}

.right-sidebar form {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .right-sidebar form {
        display: none;
    }
}

.right-sidebar #searches-div {
    margin-bottom: 90px;
}

.right-sidebar #searches-div form {
    height: 35px;
    padding-right: 0;
}

.right-sidebar #searches-div form .form-control {
    font-size: 20px;
    color: #252525;
    border: 2px solid #e9e8e6;
}

.right-sidebar #searches-div form input {
    height: 100%;
    padding-right: 0;
    position: relative;
}

.right-sidebar #searches-div form input::-webkit-input-placeholder {
    color: #e9e8e6;
}

.right-sidebar #searches-div form input:-moz-placeholder {
    /* Firefox 18- */
    color: #e9e8e6;
}

.right-sidebar #searches-div form input::-moz-placeholder {
    /* Firefox 19+ */
    color: #e9e8e6;
}

.right-sidebar #searches-div form input:-ms-input-placeholder {
    color: #e9e8e6;
}

.right-sidebar #searches-div form #news-and-diaries-search-button {
    height: auto;
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 3px;
    padding-right: 0;
    background: transparent;
}

@media only screen and (max-width: 768px) {
    .right-sidebar #searches-div #recent-searches-div {
        display: none;
    }
}

.right-sidebar #searches-div #recent-searches-div p {
    padding-top: 0;
    padding-left: 9px;
}

@media only screen and (max-width: 767px) {
    .right-sidebar #searches-div {
        display: none;
    }
}

.right-sidebar .related-posts {
    border-left: 2px solid #cbcbbf;
    margin-bottom: 60px;
}

.right-sidebar .popular-posts {
    border-left: 2px solid #a83532;
}

@media only screen and (max-width: 767px) {
    .right-sidebar .related-posts {
        border-left: 7px solid #cbcbbf;
    }

    .right-sidebar .popular-posts {
        border-left: 7px solid #a83532;
    }
}

@media only screen and (min-width: 768px) {
    .right-sidebar .related-posts,
    .right-sidebar .popular-posts {
        margin-left: 25px;
    }
}

.right-sidebar .related-posts h2,
.right-sidebar .popular-posts h2 {
    margin-left: 45px;
    font-size: 24px;
    font-weight: 500;
}

@media only screen and (max-width: 767px) {
    .right-sidebar .related-posts h2,
    .right-sidebar .popular-posts h2 {
        margin-left: 25px;
    }
}

.right-sidebar .related-posts .individual-article,
.right-sidebar .popular-posts .individual-article {
    margin-left: 45px;
}

@media only screen and (max-width: 767px) {
    .right-sidebar .related-posts .individual-article,
    .right-sidebar .popular-posts .individual-article {
        margin-left: 25px;
        padding-right: 20px;
    }
}

.right-sidebar .related-posts .individual-article h3,
.right-sidebar .popular-posts .individual-article h3 {
    color: #a83532;
    font-size: 22px;
    font-weight: 500;
    margin-top: 18px;
    margin-bottom: 2px;
    letter-spacing: -0.5px;
}

.right-sidebar .related-posts .individual-article h4,
.right-sidebar .popular-posts .individual-article h4 {
    color: #252525;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 3px;
    margin-top: 4px;
    letter-spacing: -0.5px;
}

.right-sidebar .related-posts .individual-article p,
.right-sidebar .popular-posts .individual-article p {
    color: #252525;
    font-size: 14px;
}

.slick-slider .slick-prev {
    left: 32.2%;
    z-index: 10;
    width: 24px;
    height: 37px;
}

.slick-slider .slick-next {
    right: 32.2%;
    z-index: 10;
    width: 24px;
    height: 37px;
}

.slick-slider .slick-slide.slide-container {
    outline: none;
}

.slick-slider .slick-slide.slide-container a {
    display: block;
}

/*
    @TODO
    Link colourings need to be fixed, this adds a bare minimum
    of user feedback but they really should be clearer.
 */

a {
    color: #4b4b4b;
    text-decoration: none;
}

a:hover {
    color: #252525;
    text-decoration: none;
}

p a {
    transition: color 200ms;
    color: #c84945;
}

p a:hover {
    color: #a83532;
    text-decoration: none;
}

.right-sidebar-column {
    padding-right: 0;
}

@media only screen and (max-width: 768px) {
    .right-sidebar-column {
        padding-left: 0 !important;
    }
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

#full-width-banner {
    padding: 0;
}

#full-width-banner img {
    width: 100%;
    height: auto;
    max-height: none !important;
}

.fixed-header-table {
    width: 100%;
}

.fixed-header-table thead,
.fixed-header-table tbody,
.fixed-header-table tr,
.fixed-header-table td,
.fixed-header-table th {
    display: block;
}

.fixed-header-table tr:after {
    content: " ";
    display: block;
    visibility: hidden;
    clear: both;
}

.fixed-header-table tbody {
    height: 275px !important;
    overflow-y: auto;
    width: 100%;
}

.fixed-header-table .col-md-7 {
    width: 58.3333%;
    float: left;
}

.fixed-header-table .col-md-2 {
    width: 16.6667%;
    float: left;
}

.fixed-header-table .col-md-3 {
    width: 25%;
    float: left;
}

.fixed-header-table .col-md-6 {
    width: 50%;
    float: left;
}

.fixed-header-table .col-md-9 {
    width: 75%;
    float: left;
}

.default-modal .modal-content .modal-header {
    background-color: #f1f0ec;
    border-radius: 5px 5px 0px 0px;
}

.default-modal .modal-content .modal-body textarea {
    resize: vertical;
    min-height: 100px;
}

.default-modal .modal-content .modal-footer button {
    outline: none;
}

.default-modal .modal-content .modal-footer button.btn {
    font: 500 normal 12px "futura-pt", arial, sans-serif;
    padding: 2px 10px;
    text-transform: uppercase;
}

.default-modal .modal-content .modal-footer button.btn-primary {
    border: none;
    background-color: #a83532;
}

.default-modal .modal-content .modal-footer button.btn-primary:hover {
    background-color: #a83532;
}

.read-more-button-div {
    padding-top: 10px;
}

.black-button {
    background-color: #252525;
}

.black-button:hover,
.red-button:hover {
    color: #ffffff !important;
}

.red-button {
    background-color: #a83532;
}

.black-button,
.red-button {
    outline: 0;
    padding: 4px 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    display: inline;
    text-align: center;
    border: 0px;
    border-radius: 10px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .black-button,
    .red-button {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .black-button,
    .red-button {
        font-size: 14px;
    }
}

@media (max-width: 300px) {
    .black-button,
    .red-button {
        font-size: 12px;
    }
}

.photosSlick {
    background-color: #f1f0ec;
    padding: 50px 0;
}

.photosSlick .slick-prev {
    top: 42%;
}

.photosSlick .slick-next {
    top: 42%;
}

.photosSlick .slide-container {
    height: 275px;
    text-align: center;
}

.photosSlick .slide-container a {
    overflow: hidden;
    height: 80%;
    outline: none;
}

.photosSlick .slide-container a img {
    width: 300px;
    margin: auto;
}

.photosSlick .slide-container p {
    margin-top: 10px;
}

.productsSlick {
    padding: 0px;
    background-color: #f1f0ec;
}

.productsSlick.boxset {
    background-color: #ffffff !important;
}

.productsSlick.boxset .slick-slider .slick-prev {
    left: 33.7%;
}

.productsSlick.boxset .slick-slider .slick-next {
    right: 33.7%;
}

.productsSlick .slick-slider .slick-slide {
    cursor: pointer;
    margin: 0 15px;
}

.productsSlick .slick-slider .slick-prev {
    left: 39.7%;
    z-index: 10;
    width: 24px;
    height: 37px;
}

.productsSlick .slick-slider .slick-next {
    right: 39.7%;
    z-index: 10;
    width: 24px;
    height: 37px;
}

.productsSlick .slick-slider .slick-slide img {
    margin: auto;
}

.productsSlick .slick-slider-tshirts {
    background-image: url(/img/assets/merchandise-bg.png);
    background-repeat: repeat-x;
    background-position: bottom -35px right 0px;
    background-color: #e5e5e5;
}

.productsSlick .slick-slider-boxsets {
    background-color: #ffffff;
}

.productsSlick .product-container {
    background-color: #ffffff;
}

.productsSlick .product-container .product-infos .artist img {
    float: right;
}

.productsSlick .product-container .product-infos .title {
    font-size: 24px;
    line-height: 30px;
}

.productsSlick .product-container .product-infos .product {
    text-align: center;
}

.productsSlick .product-container .product-infos .product .description {
    font-size: 14px;
}

@media (max-width: 991px) {
    .productsSlick .product-container .product-infos .product .description {
        display: none;
    }
}

.productsSlick .product-container .product-infos .product .descriptionMobile {
    font-size: 16px;
    display: none;
}

@media (max-width: 991px) {
    .productsSlick
        .product-container
        .product-infos
        .product
        .descriptionMobile {
        display: block;
    }
}

.productsSlick .product-container .product-infos .links {
    text-align: right;
}

.productsSlick .product-container .product-infos .links p a img {
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .productsSlick .slick-slider .slick-prev {
        left: 33.5%;
    }

    .productsSlick .slick-slider .slick-next {
        right: 33.5%;
    }
}

@media (max-width: 767px) {
    .productsSlick.boxset .slick-slider .slick-prev {
        left: 8%;
    }

    .productsSlick.boxset .slick-slider .slick-next {
        right: 8%;
    }

    .productsSlick .slick-slider .slick-prev {
        left: 10%;
    }

    .productsSlick .slick-slider .slick-next {
        right: 10%;
    }
}

.separator {
    border-bottom: 2px solid #d1d0cc;
}

.heightAuto {
    height: auto !important;
}

.instashow-gallery-view:first-of-type
    .instashow-gallery-media:first-of-type
    a:first-of-type {
    pointer-events: none;
}

.instashow-gallery-view:first-of-type
    .instashow-gallery-media:first-of-type
    a:first-of-type
    .instashow-gallery-media-info {
    display: none;
}

.products-background {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    height: 100px;
}

.boxset-products-container {
    background-color: #ffffff;
}

.banner-background {
    margin-top: 50px;
}

@media (max-width: 768px) {
    .banner-background {
        margin-top: 10px;
    }
}

.banner-background .container {
    max-width: 1024px;
    width: 100%;
}

.background-white {
    background-color: #ffffff;
}

.background-site-background-color {
    background-color: #f1f0ec;
}

.background-red {
    background-color: #a83532;
}

.background-peach {
    background-color: #daa281;
}

.background-brown {
    background-color: #311919;
}

.background-green {
    background-color: #96a296;
}

.background-grey {
    background-color: #cbcbbf;
}

.background-black {
    background-color: #252525;
}

.background-light-grey {
    background-color: #d1d0cc;
}

.background-transparent {
    background: transparent;
}

.red-button-link {
    text-decoration: none;
    background-color: #a83532;
    outline: 0;
    padding: 4px 8px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    display: inline;
    text-align: center;
    border: 0px;
    border-radius: 10px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .red-button-link {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .red-button-link {
        font-size: 14px;
    }
}

@media (max-width: 300px) {
    .red-button-link {
        font-size: 12px;
    }
}

.red-button-link:hover {
    text-decoration: none;
    color: #ffffff;
}

.news-banner-content {
    height: 30%;
}

.news-banner-content img {
    height: 100% !important;
    padding-bottom: 0 !important;
}

.thousand-club-avatar-overlay {
    position: absolute;
    width: 30px !important;
    height: 30px !important;
    bottom: 0px;
    right: 10px;
}

.non-fancy-bullet {
    list-style: disc !important;
}

@media only screen and (max-width: 480px) {
    .flash-message-text {
        font-size: 16px;
        line-height: 16px;
    }
}

@media only screen and (min-width: 480px) {
    .flash-message-text {
        font-size: 20px;
        line-height: 20px;
    }
}

.red-text {
    color: #a83532 !important;
}

.green-text {
    color: #3c763d !important;
}
