@font-face {
    font-family: 'latolight';
    src: url('../fonts/lato-light-webfont.woff2') format('woff2'), url('../fonts/lato-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latoregular';
    src: url('../fonts/lato-regular-webfont.woff2') format('woff2'), url('../fonts/lato-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'latobold';
    src: url('../fonts/lato-bold-webfont.woff2') format('woff2'), url('../fonts/lato-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubuntulight';
    src: url('../fonts/ubuntu-l-webfont.woff2') format('woff2'), url('../fonts/ubuntu-l-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubunturegular';
    src: url('../fonts/ubuntu-r-webfont.woff2') format('woff2'), url('../fonts/ubuntu-r-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubuntumedium';
    src: url('../fonts/ubuntu-m-webfont.woff2') format('woff2'), url('../fonts/ubuntu-m-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'ubuntubold';
    src: url('../fonts/ubuntu-b-webfont.woff2') format('woff2'), url('../fonts/ubuntu-b-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */


/*
 *  Owl Carousel - Core
 */

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}


/* No Js */

.no-js .owl-carousel {
    display: block;
}


/*
   *  Owl Carousel - Animate Plugin
   */

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/*
   *    Owl Carousel - Auto Height Plugin
   */

.owl-height {
    transition: height 500ms ease-in-out;
}


/*
   *    Owl Carousel - Lazy Load Plugin
   */

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}


/*
   *    Owl Carousel - Video Plugin
   */

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("../images/owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}


/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */

.owl-theme .owl-dots,
.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #869791
}

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

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

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

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


/*! jQuery UI - v1.12.1 - 2016-09-14
* http://jqueryui.com
* Includes: core.css, accordion.css, autocomplete.css, menu.css, button.css, controlgroup.css, checkboxradio.css, datepicker.css, dialog.css, draggable.css, resizable.css, progressbar.css, selectable.css, selectmenu.css, slider.css, sortable.css, spinner.css, tabs.css, tooltip.css, theme.css
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Arial%2CHelvetica%2Csans-serif&fsDefault=1em&fwDefault=normal&cornerRadius=3px&bgColorHeader=e9e9e9&bgTextureHeader=flat&borderColorHeader=dddddd&fcHeader=333333&iconColorHeader=444444&bgColorContent=ffffff&bgTextureContent=flat&borderColorContent=dddddd&fcContent=333333&iconColorContent=444444&bgColorDefault=f6f6f6&bgTextureDefault=flat&borderColorDefault=c5c5c5&fcDefault=454545&iconColorDefault=777777&bgColorHover=ededed&bgTextureHover=flat&borderColorHover=cccccc&fcHover=2b2b2b&iconColorHover=555555&bgColorActive=007fff&bgTextureActive=flat&borderColorActive=003eff&fcActive=ffffff&iconColorActive=ffffff&bgColorHighlight=fffa90&bgTextureHighlight=flat&borderColorHighlight=dad55e&fcHighlight=777620&iconColorHighlight=777620&bgColorError=fddfdf&bgTextureError=flat&borderColorError=f1a899&fcError=5f3f3f&iconColorError=cc0000&bgColorOverlay=aaaaaa&bgTextureOverlay=flat&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=666666&bgTextureShadow=flat&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=5px&offsetTopShadow=0px&offsetLeftShadow=0px&cornerRadiusShadow=8px
* Copyright jQuery Foundation and other contributors; Licensed MIT */

.ui-button-icon-only,
.ui-controlgroup-vertical .ui-controlgroup-item {
    box-sizing: border-box
}

.ui-checkboxradio-disabled,
.ui-state-disabled {}

.ui-helper-reset,
.ui-menu {
    outline: 0;
    list-style: none
}

.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;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%
}

.ui-helper-clearfix:after,
.ui-helper-clearfix:before {
    content: "";
    display: table;
    border-collapse: collapse
}

.ui-helper-clearfix:after {
    clear: both
}

.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: inline-block;
    vertical-align: middle;
    margin-top: -.25em;
    position: relative;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat
}

.ui-widget-icon-block {
    left: 50%;
    margin-left: -8px;
    display: block
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin: 2px 0 0;
    padding: .5em .5em .5em .7em;
    font-size: 100%
}

.ui-autocomplete,
.ui-menu .ui-menu {
    position: absolute
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto
}

.ui-autocomplete {
    top: 0;
    left: 0;
    cursor: default
}

.ui-menu {
    padding: 0;
    margin: 0;
    display: block
}

.ui-button,
.ui-controlgroup {
    display: inline-block;
    vertical-align: middle
}

.ui-menu .ui-menu-item {
    margin: 0;
    cursor: pointer;
    list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 3px 1em 3px .4em
}

.ui-menu .ui-menu-divider {
    margin: 5px 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    border-width: 1px 0 0
}

.ui-menu .ui-state-active,
.ui-menu .ui-state-focus {
    margin: -1px
}

.ui-menu-icons {
    position: relative
}

.ui-menu-icons .ui-menu-item-wrapper {
    padding-left: 2em
}

.ui-menu .ui-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: .2em;
    margin: auto 0
}

.ui-menu .ui-menu-icon {
    left: auto;
    right: 0
}

.ui-button {
    padding: .4em 1em;
    position: relative;
    line-height: normal;
    margin-right: .1em;
    cursor: pointer;
    text-align: center;
    overflow: visible
}

.ui-button,
.ui-button:active,
.ui-button:hover,
.ui-button:link,
.ui-button:visited {
    text-decoration: none
}

.ui-button-icon-only {
    width: 2em;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-button-icon-only {
    text-indent: 0
}

.ui-button-icon-only .ui-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px
}

.ui-button.ui-icon-notext .ui-icon {
    padding: 0;
    width: 2.1em;
    height: 2.1em;
    text-indent: -9999px;
    white-space: nowrap
}

input.ui-button.ui-icon-notext .ui-icon {
    width: auto;
    height: auto;
    text-indent: 0;
    white-space: normal;
    padding: .4em 1em
}

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

.ui-controlgroup>.ui-controlgroup-item {
    float: left;
    margin-left: 0;
    margin-right: 0
}

.ui-controlgroup>.ui-controlgroup-item.ui-visual-focus,
.ui-controlgroup>.ui-controlgroup-item:focus {
    z-index: 9999
}

.ui-controlgroup-vertical>.ui-controlgroup-item {
    display: block;
    float: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    text-align: left
}

.ui-controlgroup .ui-controlgroup-label {
    padding: .4em 1em
}

.ui-controlgroup .ui-controlgroup-label span {
    font-size: 80%
}

.ui-controlgroup-horizontal .ui-controlgroup-label+.ui-controlgroup-item {
    border-left: none
}

.ui-controlgroup-vertical .ui-controlgroup-label+.ui-controlgroup-item {
    border-top: none
}

.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
    border-right: none
}

.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
    border-bottom: none
}

.ui-controlgroup-vertical .ui-spinner-input {
    width: 75%;
    width: calc(100% - 2.4em)
}

.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
    border-top-style: solid
}

.ui-checkboxradio-label .ui-icon-background {
    box-shadow: inset 1px 1px 1px #ccc;
    border-radius: .12em;
    border: none
}

.ui-checkboxradio-radio-label .ui-icon-background {
    width: 16px;
    height: 16px;
    border-radius: 1em;
    overflow: visible;
    border: none
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 8px;
    height: 8px;
    border-width: 4px;
    border-style: solid
}

.ui-datepicker {
    width: 17em;
    padding: .2em .2em 0;
    display: none
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0
}

.ui-datepicker .ui-datepicker-next,
.ui-datepicker .ui-datepicker-prev {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em
}

.ui-datepicker .ui-datepicker-next-hover,
.ui-datepicker .ui-datepicker-prev-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-next span,
.ui-datepicker .ui-datepicker-prev 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: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em
}

.ui-datepicker th {
    padding: .7em .3em;
    text-align: center;
    font-weight: 700;
    border: 0
}

.ui-datepicker td {
    border: 0;
    padding: 1px
}

.ui-datepicker td a,
.ui-datepicker td span {
    display: block;
    padding: .2em;
    text-align: right;
    text-decoration: none
}

.ui-datepicker .ui-datepicker-buttonpane {
    background-image: none;
    margin: .7em 0 0;
    padding: 0 .2em;
    border-left: 0;
    border-right: 0;
    border-bottom: 0
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em;
    width: auto;
    overflow: visible
}

.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current,
.ui-datepicker-multi .ui-datepicker-group,
.ui-datepicker-rtl .ui-datepicker-buttonpane button {
    float: left
}

.ui-datepicker.ui-datepicker-multi {
    width: auto
}

.ui-datepicker-multi .ui-datepicker-group table {
    width: 95%;
    margin: 0 auto .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.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-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: .5em;
    top: .3em
}

.ui-dialog {
    position: absolute;
    top: 0;
    left: 0;
    padding: .2em;
    outline: 0
}

.ui-dialog .ui-dialog-titlebar {
    padding: .4em 1em;
    position: relative
}

.ui-dialog .ui-dialog-title {
    float: left;
    margin: .1em 0;
    white-space: nowrap;
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-dialog .ui-dialog-titlebar-close {
    position: absolute;
    right: .3em;
    top: 50%;
    width: 20px;
    margin: -10px 0 0;
    padding: 1px;
    height: 20px
}

.ui-dialog .ui-dialog-content {
    position: relative;
    border: 0;
    padding: .5em 1em;
    background: 0 0;
    overflow: auto
}

.ui-dialog .ui-dialog-buttonpane {
    text-align: left;
    border-width: 1px 0 0;
    background-image: none;
    margin-top: .5em;
    padding: .3em 1em .5em .4em
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
    float: right
}

.ui-dialog .ui-dialog-buttonpane button {
    margin: .5em .4em .5em 0;
    cursor: pointer
}

.ui-dialog .ui-resizable-n {
    height: 2px;
    top: 0
}

.ui-dialog .ui-resizable-e {
    width: 2px;
    right: 0
}

.ui-dialog .ui-resizable-s {
    height: 2px;
    bottom: 0
}

.ui-dialog .ui-resizable-w {
    width: 2px;
    left: 0
}

.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw,
.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw {
    width: 7px;
    height: 7px
}

.ui-dialog .ui-resizable-se {
    right: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-sw {
    left: 0;
    bottom: 0
}

.ui-dialog .ui-resizable-ne {
    right: 0;
    top: 0
}

.ui-dialog .ui-resizable-nw {
    left: 0;
    top: 0
}

.ui-draggable .ui-dialog-titlebar {
    cursor: move
}

.ui-draggable-handle {}

.ui-resizable {
    position: relative
}

.ui-resizable-handle {
    position: absolute;
    font-size: .1px;
    display: block;
}

.ui-resizable-autohide .ui-resizable-handle,
.ui-resizable-disabled .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-slider-vertical .ui-slider-range-min,
.ui-spinner-down {
    bottom: 0
}

.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-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: .25
}

.ui-progressbar-indeterminate .ui-progressbar-value {
    background-image: none
}

.ui-selectable {}

.ui-selectable-helper {
    position: absolute;
    z-index: 100;
    border: 1px dotted #000
}

.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: 700;
    line-height: 1.5;
    padding: 2px .4em;
    margin: .5em 0 0;
    height: auto;
    border: 0
}

.ui-selectmenu-open {
    display: block
}

.ui-selectmenu-text {
    display: block;
    margin-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis
}

.ui-selectmenu-button.ui-button {
    text-align: left;
    white-space: nowrap;
    width: 14em
}

.ui-selectmenu-icon.ui-icon {
    float: right;
    margin-top: 0
}

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

.ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    font-size: .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: .8em
}

.ui-slider-horizontal .ui-slider-handle {
    top: -.3em;
    margin-left: -.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: .8em;
    height: 100px
}

.ui-slider-vertical .ui-slider-handle {
    left: -.3em;
    margin-left: 0;
    margin-bottom: -.6em
}

.ui-slider-vertical .ui-slider-range {
    left: 0;
    width: 100%
}

.ui-slider-vertical .ui-slider-range-max {
    top: 0
}

.ui-sortable-handle {}

.ui-spinner {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0;
    vertical-align: middle
}

.ui-spinner-input {
    border: none;
    background: 0 0;
    color: inherit;
    padding: .222em 0;
    margin: .2em 2em .2em .4em;
    vertical-align: middle
}

.ui-widget-content a,
.ui-widget-header,
.ui-widget-header a {
    color: #333
}

.ui-spinner-button {
    width: 1.6em;
    height: 50%;
    font-size: .5em;
    padding: 0;
    margin: 0;
    text-align: center;
    position: absolute;
    cursor: default;
    display: block;
    overflow: hidden;
    right: 0
}

.ui-widget,
.ui-widget .ui-widget {
    font-size: 1em
}

.ui-spinner a.ui-spinner-button {
    border-top-style: none;
    border-bottom-style: none;
    border-right-style: none
}

.ui-spinner-up {
    top: 0
}

.ui-tabs {
    position: relative;
    padding: .2em
}

.ui-tabs .ui-tabs-nav {
    margin: 0;
    padding: .2em .2em 0
}

.ui-tabs .ui-tabs-nav li {
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 1px .2em 0 0;
    border-bottom-width: 0;
    padding: 0;
    white-space: nowrap
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    float: left;
    padding: .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-state-disabled .ui-tabs-anchor,
.ui-tabs .ui-tabs-nav li.ui-tabs-active .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: 0 0
}

.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px
}

body .ui-tooltip {
    border-width: 2px
}

.ui-widget {
    font-family: Arial, Helvetica, sans-serif
}

.ui-widget button,
.ui-widget input,
.ui-widget select,
.ui-widget textarea {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em
}

.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5
}

.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333
}

.ui-widget-header {
    border: 1px solid #ddd;
    background: #e9e9e9;
    font-weight: 700
}

.ui-button,
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
html .ui-button.ui-state-disabled:active,
html .ui-button.ui-state-disabled:hover {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: 400;
    color: #454545
}

.ui-button,
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button {
    color: #454545;
    text-decoration: none
}

.ui-button:focus,
.ui-button:hover,
.ui-state-focus,
.ui-state-hover,
.ui-widget-content .ui-state-focus,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-focus,
.ui-widget-header .ui-state-hover {
    border: 1px solid #ccc;
    background: #ededed;
    font-weight: 400;
    color: #2b2b2b
}

.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
a.ui-button:focus,
a.ui-button:hover {
    color: #2b2b2b;
    text-decoration: none
}

.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6
}

.ui-button.ui-state-active:hover,
.ui-button:active,
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: 400;
    color: #fff
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
    border: #003eff;
    background-color: #fff
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #fff;
    text-decoration: none
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620
}

.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #777620
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
    border: 1px solid #f1a899;
    background: #fddfdf;
    color: #5f3f3f
}

.ui-state-error a,
.ui-state-error-text,
.ui-widget-content .ui-state-error a,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error a,
.ui-widget-header .ui-state-error-text {
    color: #5f3f3f
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
    font-weight: 700
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
    opacity: .7;
    filter: Alpha(Opacity=70);
    font-weight: 400
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
    opacity: .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,
.ui-widget-header .ui-icon {
    background-image: url(../images/ui-icons_444444_256x240_2.png)
}

.ui-button:focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-state-hover .ui-icon {
    background-image: url(../images/ui-icons_555555_256x240_2.png)
}

.ui-button:active .ui-icon,
.ui-state-active .ui-icon {
    background-image: url(../images/ui-icons_ffffff_256x240_2.png)
}

.ui-button .ui-state-highlight.ui-icon,
.ui-state-highlight .ui-icon {
    background-image: url(../images/ui-icons_777620_256x240_2.png)
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
    background-image: url(../images/ui-icons_cc0000_256x240_2.png)
}

.ui-button .ui-icon {
    background-image: url(../images/ui-icons_777777_256x240_2.png)
}

.ui-icon-blank {
    background-position: 16px 16px
}

.ui-icon-caret-1-n {
    background-position: 0 0
}

.ui-icon-caret-1-ne {
    background-position: -16px 0
}

.ui-icon-caret-1-e {
    background-position: -32px 0
}

.ui-icon-caret-1-se {
    background-position: -48px 0
}

.ui-icon-caret-1-s {
    background-position: -65px 0
}

.ui-icon-caret-1-sw {
    background-position: -80px 0
}

.ui-icon-caret-1-w {
    background-position: -96px 0
}

.ui-icon-caret-1-nw {
    background-position: -112px 0
}

.ui-icon-caret-2-n-s {
    background-position: -128px 0
}

.ui-icon-caret-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: -65px -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: -65px -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: 1px -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-first,
.ui-icon-seek-start {
    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-left,
.ui-corner-tl,
.ui-corner-top {
    border-top-left-radius: 3px
}

.ui-corner-all,
.ui-corner-right,
.ui-corner-top,
.ui-corner-tr {
    border-top-right-radius: 3px
}

.ui-corner-all,
.ui-corner-bl,
.ui-corner-bottom,
.ui-corner-left {
    border-bottom-left-radius: 3px
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-br,
.ui-corner-right {
    border-bottom-right-radius: 3px
}

.ui-widget-overlay {
    background: #aaa;
    opacity: .3;
    filter: Alpha(Opacity=30)
}

.ui-widget-shadow {
    -webkit-box-shadow: 0 0 5px #666;
    box-shadow: 0 0 5px #666
}


/* Reset */

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

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

fieldset,
img {
    display: block;
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

body {
    font-family: 'latoregular';
    font-size: 12px;
    color: #757575;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

a {
    text-decoration: none;
}

.fullBox:after {
    content: '';
    display: block;
    clear: both;
}

.orangeFont {
    color: #FAA519;
}

.blueFont {
    color: #005584;
}

.grey {
    background-color: #E9EAEB;
}

.orange {
    background-color: #FAA519;
}

.blue {
    background-color: #005584;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 24px;
}

.defBtn {
    width: 100%;
    max-width: 200px !important;
    height: 48px;
    background: #FAA519;
    font-family: 'latobold';
    color: #fff;
    line-height: 48px;
    letter-spacing: 2px;
    padding: 0 12px;
    display: inline-block !important;
    text-align: center;
    text-transform: uppercase;
}

.defBtn.blue {
    background: #004271;
}

.defBtn.prev {
    background: #333;
}

.defBtn:hover {
    background: #014270;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}

.defBtn.blue:hover {
    background: #FAA519;
}

.defBtn.hollow {
    background: none;
    color: #FAA519;
    border: 1px solid #FAA519;
    padding: 0 14px;
}

.defBtn.hollow:hover {
    background: #FAA519;
    color: #fff;
    -webkit-transition: background-color 200ms linear;
    -ms-transition: background-color 200ms linear;
    transition: background-color 200ms linear;
}

.widthBox {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
}

header {
    background: #fff;
    position: relative;
    z-index: 1000;
}

.headerNav {
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid #F4F4F4;
    display: block;
}

.headerNav .leftPanel {
    display: block;
    float: left;
}

.headerNav .leftPanel ul {
    display: block;
    float: left;
    padding-right: 20px;
    margin-right: 20px;
}

.headerNav .leftPanel ul.dual {
    border-right: 2px solid #CCC;
}

.headerNav .leftPanel ul li {
    display: block;
    float: left;
    margin-right: 50px;
}

.headerNav .leftPanel ul li:hover a {
    color: #FCB41F;
}

.headerNav .leftPanel ul li:last-child {
    margin: 0;
}

.headerNav .leftPanel ul li a {
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.headerNav .leftPanel ul li:not(:last-child) a:after {
    width: 5px;
    height: 5px;
    content: '';
    background: url(../images/icon_nav_bullet.png) no-repeat center center;
    display: block;
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.language {
    padding-right: 0 !important;
    margin-right: 0 !important;
    border-right: none !important;
}

.language li {
    margin-right: 30px !important;
}

.language li:last-child {
    margin-right: 0 !important;
}

.language li:not(:last-child) a:after {
    right: -15px !important;
}

.language li.active a {
    color: #FCB41F !important;
}

.userPanel {
    display: block;
    float: right;
    text-align: right;
}

.userPanel p {
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    float: left;
    margin-right: 8px;
}

.userPanel a {
    font-family: 'latobold';
    font-size: 14px;
    color: #FCB41F;
    letter-spacing: 2px;
}

.userPanel a {
    padding-left: 8px;
    margin-left: 8px;
    padding-right: 8px;
    margin-right: 8px;
}

.userPanel ul li:not(:last-child) {
    border-right: 2px solid #CCC;
}

.userName {
    font-family: 'latobold';
    font-size: 14px;
    color: #FCB41F;
    letter-spacing: 2px;
    float: left;
    position: relative;
    cursor: pointer;
}

.userMenu {
    background: #fff;
    display: none;
    position: absolute;
    bottom: -60px;
    left: 0;
    float: none !important;
    text-align: left;
    box-shadow: 1px 2px 5px 1px #CCC;
}

.userMenu li {
    display: block;
    float: none !important;
}

.userMenu li:first-child {
    border-bottom: 1px solid #ccc;
}

.userMenu li a {
    font-size: 12px !important;
    color: #424242 !important;
    letter-spacing: 1px !important;
    padding: 5px !important;
    border: none !important;
    margin: 0 !important;
    display: block;
}

.contactUs {
    padding: 15px 0;
}

.contactUs .leftPanel {
    display: block;
    float: left;
}

.contactUs .leftPanel .bumnLogo {
    float: left;
    margin-top: 10px;
    margin-right: 50px;
}

.contactUs .leftPanel .contactBox {
    margin-top: 6px;
    float: left;
}

.contactUs .leftPanel .contactBox p {
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    float: left;
}

.contactUs .leftPanel .contactBox p:first-child {
    margin-right: 20px;
}

.contactUs .leftPanel .contactBox p:last-child {
    border-left: 2px solid #CCC;
    padding-left: 20px;
}

.contactUs .leftPanel .contactBox a {
    font-size: 14px;
    color: #FCB41F;
    padding-left: 20px;
    margin-top: 3px;
}

.contactPhone {
    font-family: 'latobold';
    background: url(../images/icon_telephone.png) no-repeat center left;
    background-size: 13px;
    display: block;
}

.contactMail {
    font-family: 'latobold';
    background: url(../images/icon_mail.png) no-repeat center left;
    background-size: 14px 11px;
    display: block;
}

.contactUs .rightPanel {
    min-width: 80px;
    max-width: 120px;
    display: block;
    float: right;
}

.burgerMenu {
    width: 40px;
    float: right;
    display: none;
    cursor: pointer;
}

.burgerMenu span {
    background: #005584;
    width: 100%;
    height: 5px;
    margin: 5px 0;
    display: block;
}

.mainLogo {
    width: 100%;
    display: block;
}

.bumnLogo {
    min-width: 80px;
    max-width: 120px;
    float: left;
}

.mainLogo img,
.bumnLogo img {
    width: 100%;
}

nav {
    width: 100%;
    background: #004271;
    z-index: 10;
}

nav ul {
    float: left;
}

nav ul li {
    float: left;
    margin-right: 40px;
    position: relative;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 0;
    margin: 8px 0;
    display: block;
}

nav ul li a.sub {
    background: url(../images/icon_arrow_down_white.png) no-repeat right center;
    background-size: 8px 5px;
    padding-right: 15px;
}

nav ul li a.sub.active {
    background: url(../images/icon_arrow_up_white.png) no-repeat right center;
    background-size: 8px 5px;
    padding-right: 15px;
}

.subMenu {
    background: #004271;
    width: 300px;
    position: absolute;
    top: 53px;
    left: -10px;
    z-index: 11;
    display: none;
}

.subMenu li {
    width: 100%;
    padding: 15px 10px;
    margin: 0;
    border-top: 1px solid #025896;
}

.subMenu li a {
    padding: 0;
    margin: 0;
}

.whistleBlow {
    background: #007DC5;
    border-radius: 2px;
    padding: 10px 15px;
}

.searchBtn {
    width: 52px;
    height: 52px;
    background: #FAA61A url(../images/icon_search.png) no-repeat center center;
    background-size: 16px;
    float: right;
}

.contentWrapper {
    width: 100%;
}

.bannerWrapper {
    width: 100%;
    position: relative;
}

.bannerCaption {
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: 10;
}

.bannerCaption h3 {
    font-family: 'ubuntubold';
    font-size: 50px;
    color: #fff;
    display: block;
    margin-bottom: 30px;
}

.bannerCaption h3 span {
    color: #FCB41F;
    display: block;
    margin-bottom: 10px;
}

.bannerCaption p {
    font-size: 20px;
    color: #fff;
    display: block;
    margin-bottom: 40px;
}

.bannerSlider {
    width: 100%;
}

.bannerSlider img {
    width: 100%;
}

.newsFeed {
    width: 100%;
    background: #007DC5;
    padding: 30px 5%;
    position: relative;
}

.newsFeed .caption {
    width: 80%;
    float: left;
}

.newsFeed .head {
    width: 16%;
    font-family: 'ubuntubold';
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    display: inline-block;
    margin: 0 5px 0 -2px;
    vertical-align: middle;
}

.newsFeed .content {
    width: 80%;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    position: relative;
    padding-left: 20px;
    margin: 0 -2px;
    display: inline-block;
    vertical-align: middle;
}

.newsFeed .content:after {
    content: '';
    height: 60px;
    width: 2px;
    background-color: #014270;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.newsFeed .content span {
    display: inline-block;
}

.newsFeed .content span:after {
    content: 'â€¢';
    display: inline-block;
    margin: 0 5px 0 8px;
}

.newsFeed .defBtn {
    width: 15%;
    max-width: 150px;
    min-width: 150px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.product {
    width: 100%;
    padding: 70px 0 60px;
    text-align: center;
}

.product .heading {
    width: 100%;
    margin-bottom: 40px;
    display: block;
}

.product .heading h3 {
    font-family: 'latolight';
    font-size: 36px;
    color: #005584;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product .heading p {
    width: 55%;
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #424242;
    line-height: 1.4;
    margin: 0 auto;
}

.productWrapper {
    text-align: center;
}

.productPanel {
    width: 50%;
    height: 354px;
    float: left;
    position: relative;
}

.productPanel:first-child {
    padding-right: 10px;
}

.productPanel:last-child {
    padding-left: 10px;
}

.productPanel .type {
    width: 40%;
    height: 100%;
    background: #004271;
    padding: 25px 20px;
    float: right;
    display: block;
}

.productPanel .type p {
    font-family: 'ubunturegular';
    font-size: 20px;
    color: #fff;
    letter-spacing: 2px;
    text-align: left;
    margin-bottom: 20px;
}

.productPanel .type p span {
    font-size: 40px;
    color: #FCB41F;
    letter-spacing: 1px;
}

.productPanel .image {
    width: 60%;
    float: right;
}

.productPanel .image img {
    width: 100%;
}

.productPanel .caption {
    height: 140px;
    margin-bottom: 20px;
    overflow: hidden;
}

.productPanel .caption p {
    font-family: 'ubunturegular';
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
}

.policy {
    width: 100%;
    background: #F7F7F7;
    text-align: center;
    padding: 60px 0;
}

.policy .heading {
    width: 100%;
    margin-bottom: 50px;
}

.policy h3 {
    font-family: 'latolight';
    font-size: 36px;
    color: #005584;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.policy .heading p {
    text-align: center;
}

.policyWrapper {
    text-align: center;
}

.policyWrapper .compareInfo {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    text-align: left;
    margin-bottom: 40px;
}

.policyWrapper .compareBtn {
    display: block;
    margin-bottom: 40px;
    text-align: left;
}

.policyWrapper .compareBtn.hide {
    display: none;
}

.policyPanel {
    width: 18%;
    display: inline-block;
    margin: 0 20px 50px;
    position: relative;
    vertical-align: top;
}

.policyWrapper .owl-carousel,
.newsBox .owl-carousel {
    display: block;
}

.policyPanel img {
    width: 100% !important;
}

.policyPanel .caption {
    height: 170px;
    background: #F5F9FC;
    border-top: 3px solid #FAA61A;
    padding: 20px 20px 50px;
    text-align: left;
    display: block;
    position: relative;
}

.policyPanel .caption p {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.policyPanel .caption h5 {
    font-family: 'ubunturegular';
    font-size: 20px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.policyPanel .caption .more {
    font-family: 'ubunturegular';
    font-size: 12px;
    color: #005584;
    letter-spacing: 1px;
}

.policyPanel .caption .defBtn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.policyPanel .overlay {
    background: #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: 1;
    display: none;
}

.help {
    width: 100%;
    background: #E0E9EF;
    padding: 60px 0;
}

.helpBox {
    border: 2px solid #757575;
    padding: 20px 40px;
    position: relative;
}

.iconHelp {
    width: 15%;
    max-width: 150px;
    float: left;
    margin-right: 50px;
}

.iconHelp img {
    width: 100%;
    display: block;
}

.helpBox .caption {
    width: 55%;
    margin-top: 18px;
    float: left;
}

.helpBox p {
    font-size: 20px;
    color: #005584;
    line-height: 1.6;
    display: block;
}

.helpBox .defBtn {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.companyProfile {
    width: 100%;
    background: url(../images/img_grey_BG.jpg) no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 60px 0;
}

.companyProfile h4 {
    font-family: 'latolight';
    font-size: 36px;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.companyProfile p {
    width: 90%;
    max-width: 700px;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #fff;
    margin: 0 auto 40px;
    letter-spacing: 1px;
    line-height: 24px;
}

.news {
    width: 100%;
    padding: 80px 0 30px;
    text-align: center;
}

.news h3 {
    font-family: 'latolight';
    font-size: 36px;
    color: #005584;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.newsBox {
    text-align: center;
}

.newsBox .panel {
    width: 18%;
    display: inline-block;
    margin: 0 20px 50px;
    position: relative;
    vertical-align: top;
}

.newsBox .panel .tag {
    background: #004271;
    font-size: 12px;
    color: #fff;
    letter-spacing: 2px;
    padding: 5px 10px;
    text-transform: uppercase;
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 0;
}

.newsBox .panel img {
    width: 100% !important;
}

.newsBox .panel .caption {
    height: 180px;
    background: #F5F9FC;
    border-top: 3px solid #FAA61A;
    padding: 20px 20px 50px;
    text-align: left;
    display: block;
}

.dateTime {
    font-family: 'ubunturegular' !important;
    font-size: 12px !important;
    color: #005584 !important;
    margin-bottom: 5px !important;
}

.newsBox .panel .caption .title {
    font-family: 'ubunturegular';
    font-size: 18px;
    color: #424242;
    margin-bottom: 5px;
}

.newsBox .panel .defBtn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.additional {
    width: 100%;
    background: #E7F1F9;
    padding: 60px 0;
    margin: 0 auto;
}

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

.additionalBox .panel {
    width: 28%;
    margin: 0 15px 40px;
    display: inline-block;
    text-align: center;
    vertical-align: top;
}

.additionalBox .panel .addIcon {
    width: 150px;
    display: block;
    margin: 0 auto 20px;
}

.additionalBox .panel .addIcon img {
    width: 100%;
}

.additionalBox .panel .caption {
    height: 135px;
    padding: 0 10px;
}

.additionalBox .panel span {
    display: block;
    margin-bottom: 10px;
}

.additionalBox .panel .title {
    font-size: 24px;
    color: #005584;
    margin-bottom: 20px;
}

.additionalBox .panel p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    line-height: 1.6;
    margin-bottom: 20px;
}

.additionalBox .panel .hotLine {
    font-size: 24px;
    color: #FCB41F;
    letter-spacing: 1px;
}

.siteMap {
    width: 100%;
    background: #DBE4E9;
    padding-top: 50px;
    display: block;
}

.siteWrapper {
    width: 100%;
    display: block;
    padding-bottom: 30px;
}

.siteBox {
    width: 80%;
    float: left;
    display: block;
}

.siteBox .panel {
    width: 25%;
    float: left;
    text-align: left;
}

.siteBox .panel .siteHead {
    font-family: 'latobold';
    font-size: 14px;
    color: #005584;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.siteBox .panel a {
    font-size: 14px;
    color: #424242;
    display: block;
    margin-bottom: 8px;
}

.siteMap .sponsor {
    width: 20%;
    float: right;
    text-align: center;
    padding-right: 30px;
}

.siteMap .sponsor img {
    max-width: 200px;
    display: inline-block;
    margin: 0 10px 10px;
    vertical-align: middle;
}

.siteMap .sponsor img:first-child {
    width: 120px;
}

.siteMap .sponsor img:nth-child(2) {
    width: 80px;
}

.siteMap .sponsor img:last-child {
    width: 80px;
}

.bottomNav {
    width: 100%;
    padding: 20px 0;
    border-top: 1px solid #888888;
    display: block;
}

.bottomNav .leftPanel {
    float: left;
}

.bottomNav .leftPanel ul li {
    float: left;
}

.bottomNav .leftPanel ul li a {
    font-size: 14px;
    color: #005584;
}

.bottomNav .leftPanel ul li:not(:last-child) a {
    border-right: 1px solid #005584;
    padding-right: 10px;
    margin-right: 10px;
}

.bottomNav .rightPanel {
    float: right;
}

.bottomNav .rightPanel p {
    float: left;
    margin-right: 20px;
}

.bottomNav .rightPanel .socMed {
    float: left;
}

.bottomNav .rightPanel .socMed a {
    float: left;
}

.bottomNav .rightPanel .socMed a:first-child {
    margin-right: 20px;
}

.bottomNav .rightPanel p {
    font-size: 14px;
    color: #005584;
    text-transform: uppercase;
}

footer {
    width: 100%;
    background: #004271;
    text-align: center;
    padding: 30px 0;
    display: block;
}

footer p {
    font-size: 14px;
    color: #fff;
}

.custService {
    background: #014270 url(../images/icon_arrow_up_white.png) no-repeat right 20px center;
    background-size: 11px 7px;
    padding: 15px 20px;
    border-radius: 5px 5px 0 0;
    position: absolute;
    bottom: 0;
    right: 8%;
    cursor: pointer;
    z-index: 1;
}

.custService .icon {
    width: 22px;
    height: 22px;
    background: url(../images/icon_custservice_headphone.png) no-repeat center center;
    background-size: contain;
    float: left;
    margin-right: 20px;
}

.custService p {
    font-size: 14px;
    color: #fff;
    float: left;
    margin-right: 50px;
}

.leftFrame {
    width: 27%;
    float: left;
    padding-right: 40px;
}

.sideNav {
    width: 100%;
    margin-bottom: 100px;
}

.sideNav h4 {
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-left: 25px;
    padding-top: 15px;
    z-index: 10;
}

.sideNav.lightBlue h4 {
    color: #005584;
}

.sideNav h4:before {
    content: '';
    width: 15px;
    height: 15px;
    background: #FAA61A;
    display: block;
    position: absolute;
    left: -7px;
    top: 19px;
}

.sideNav h4:after {
    content: '';
    width: 100%;
    height: 135px;
    background: #004271;
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}

.sideNav.lightBlue h4:after {
    background: #F5F9FC;
}

.sideNav ul {
    width: 92%;
    background: #fff;
    margin: 0 auto;
    display: block;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.sideNav ul li:not(:last-child) {
    border-bottom: 1px solid #F4F4F4;
}

.sideNav ul li.active a {
    color: #FCB41F;
}

.sideNav ul li a {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    padding: 20px 0;
    display: block;
}

.sideNav ul li a.contact:not(:last-child) {
    padding-bottom: 0;
}

.sideNav .brosur li a {
    background: url(../images/icon_pdfbrosur.png) no-repeat left center;
    background-size: 16px 17px;
    padding-left: 25px;
}

.sideNav.mobile {
    width: 100%;
    display: none;
}

.rightFrame {
    width: 73%;
    padding: 20px 0;
    margin: 0 auto;
}

.leftFrame+.rightFrame {
    float: right;
}

.breadCrumb {
    width: 100%;
    margin-bottom: 20px;
    display: block;
}

.breadCrumb ul li {
    float: left;
}

.breadCrumb ul li a {
    font-family: 'ubunturegular';
    color: #949494;
    letter-spacing: 1px;
    position: relative;
    margin-right: 30px;
}

.breadCrumb ul li:last-child a {
    color: #FCB41F;
}

.breadCrumb ul li:not(:last-child) a:after {
    content: '/';
    display: block;
    position: absolute;
    right: -18px;
    top: 0;
}

.rightFrame .heading {
    border-bottom: 1px solid #F4F4F4;
    display: block;
}

.rightFrame .bottomHead {
    padding-bottom: 20px;
}

.rightFrame .bottomHead h5 {
    font-size: 16px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    float: left;
}

.rightFrame .bottomHead .sort {
    float: right;
}

.rightFrame .bottomHead .sort p {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #949494;
    letter-spacing: 1px;
    float: left;
    margin-top: 5px;
    margin-right: 20px;
    vertical-align: middle;
}

.rightFrame .bottomHead .sort .select2 {
    vertical-align: middle;
}

.rightFrame .mainContent {
    padding: 40px 0;
}

.rightFrame .mainContent .policyPanel,
.rightFrame .mainContent .newsBox .panel,
.rightFrame .mainContent .vacancyBox .panel {
    width: 30%;
    display: block;
    float: left;
    margin: 0 0 50px;
}

.rightFrame .mainContent .policyPanel:not(:nth-child(3n)),
.rightFrame .mainContent .newsBox .panel:not(:nth-child(3n)),
.rightFrame .mainContent .vacancyBox .panel:not(:nth-child(3n)) {
    margin-right: 5%;
}

.rightFrame .mainContent .related .policyPanel,
.rightFrame .mainContent .related .newsBox .panel,
.rightFrame .mainContent .related .vacancyBox .panel {
    width: 100%;
    padding: 0 10px;
    display: block;
    float: left;
    margin: 0 0 50px;
}

.productBox {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.productBox .description {
    display: block;
    margin-bottom: 40px;
}

.productBox .description h2 {
    font-size: 30px;
    color: #005584;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.productBox .description p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6;
}

.productBox .benefit {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.productBox .benefit .header {
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.productBox .benefit .header h4 {
    font-size: 18px;
    color: #005584;
    text-transform: uppercase;
}

.productBox .benefit .pointWrapper {
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 50px;
}

.productBox .benefit .pointWrapper .panel {
    width: 80%;
    /*width:28%;*/
    display: inline-block;
    vertical-align: top;
    /*margin:0 20px;*/
}

.productBox .benefit .pointWrapper .panel .image {
    width: 80%;
    margin: 0 auto 20px;
}

.productBox .benefit .pointWrapper .panel .image img {
    width: 100%;
}

.productBox .benefit .pointWrapper .panel .caption p {
    font-family: 'ubuntulight';
    font-size: 14px;
}

.benefit .buttonArea {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    display: block;
}

.benefit .buttonArea .defBtn {
    display: inline-block;
    margin: 0 2px;
}

.formWrapper {
    width: 100%;
    background: #FCFCFE;
    padding: 40px 30px 70px;
    position: relative;
    margin-bottom: 100px;
}

.formWrapper .caption {
    font-size: 14px;
    color: #005584;
    margin-bottom: 50px;
}

.formWrapper p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.formRow {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.formRow .half,
.inputRow .half {
    width: 48%;
    float: left;
    position: relative;
    margin-bottom: 15px;
}

.formRow .full {
    width: 100%;
    position: relative;
}

.formRow .half:first-child,
.inputRow .half:first-child {
    margin-right: 4%;
}

.formRow p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.formRow p span {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #EC4139;
    margin-left: 2px;
}

.formRow input {
    width: 100%;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    line-height: 50px;
    padding: 0 15px;
    border: 1px solid #CCC;
    display: block;
    margin-bottom: 0px;
}

input.error {
    border-bottom: 4px solid #EC4139;
    margin-bottom: 0;
}

.errorMsg {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #EC4139;
    letter-spacing: 1px;
    text-align: right;
    margin-bottom: 20px;
    display: block;
}

.formRow textarea {
    width: 100%;
    height: 200px;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    line-height: 15px;
    padding: 0 15px;
    border: 1px solid #CCC;
    display: block;
    resize: none;
    margin-bottom: 20px;
}

.formWrapper .defBtn {
    max-width: 150px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.datepicker {
    background: #fff url(../images/icon_datepicker.png) no-repeat right 15px center;
    background-size: 18px;
}

.validation {
    width: 100%;
    display: block;
    margin-bottom: 30px;
    text-align: center;
}


/*.validation p {
    font-family: 'ubuntulight';
    font-size:14px;
    color:#424242;
    letter-spacing:1px;
    display:inline-block;
}
.validation p .tnc{
    font-family: 'ubuntulight';
    font-size:14px;
    color:#FCB41F;
}*/

.validation input[type="checkbox"] {
    display: none;
}

.validation input[type="checkbox"]+label {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    display: inline-block;
    text-align: left;
}

.validation input[type="checkbox"]+label .tnc {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #FCB41F;
}

.validation input[type="checkbox"]+label span {
    width: 20px;
    height: 20px;
    background: url(../images/icon_radiocheckbox_bullet.png) no-repeat center center;
    background-size: contain;
    margin: -5px 10px 0 0;
    vertical-align: middle;
    cursor: pointer;
    display: inline-block;
}

.validation input[type="checkbox"]:checked+label span {
    background: url(../images/icon_radiocheckbox_bullet_active.png) no-repeat center center;
    background-size: contain;
}

.related {
    border-top: 1px solid #f4f4f4;
    padding-top: 20px;
}

.related h4 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.thankWrapper {
    width: 100%;
    padding: 80px 20px 100px;
}

.thankBox {
    width: 90%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.thankBox img {
    width: 100%;
    display: block;
}

.thankBox .floatCaption {
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translateX(-50%)translateY(-50%);
    -webkit-transform: translateX(-50%)translateY(-50%);
    -ms-transform: translateX(-50%)translateY(-50%);
    text-align: center;
}

.thankBox .floatCaption h1 {
    font-size: 48px;
    color: #005584;
    letter-spacing: 5px;
}

.thankBox .floatCaption h5 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
    white-space: nowrap;
}

.thankBox .floatCaption h5:after {
    content: '';
    width: 72%;
    height: 2px;
    background: #FAA61A;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    -webkit-transform: translateX(-50%)translateY(-50%);
    -ms-transform: translateX(-50%)translateY(-50%);
}

.thankBox .floatCaption p {
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
}

.thankBox .defBtn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.mediaDetails,
.gcgWrapper {
    width: 100%;
    padding: 0 60px;
    display: block;
    margin-bottom: 100px;
}

.searchDetails .panel {
    width: 100%;
    display: block;
    margin-bottom: 50px;
}

.mediaDetails .dateTime,
.gcgWrapper .dateTime,
.searchDetails .dateTime {
    margin-bottom: 20px;
}

.mediaDetails h1 {
    font-family: 'ubunturegular';
    font-size: 36px;
    color: #424242;
    margin-bottom: 30px;
}

.gcgWrapper h1,
.searchDetails h1 {
    font-family: 'ubunturegular';
    font-size: 20px;
    color: #424242;
    margin-bottom: 10px;
}

.mediaDetails .image,
.gcgWrapper .image {
    width: 100%;
    margin-bottom: 25px;
}

.mediaDetails .image img,
.gcgWrapper .image img {
    width: 100%;
}

.mediaDetails .caption {
    width: 100%;
    margin-bottom: 50px;
}

.gcgWrapper .caption {
    width: 100%;
    margin-bottom: 20px;
}

.mediaDetails .caption p,
.gcgWrapper .caption p,
.searchDetails .caption p {
    font-family: 'ubuntulight';
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.searchDetails .more {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #424242;
    text-transform: uppercase;
}

.shareMedia span {
    height: 40px;
    background: #E8EBF2;
    font-family: 'latobold';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    line-height: 40px;
    padding: 0 20px;
    display: inline-block;
    float: left;
}

.shareMedia a {
    width: 40px;
    height: 40px;
    display: block;
    float: left;
}

.shareMedia .fb {
    background: #3B5998 url(../images/icon_facebook_white.png) no-repeat center center;
    background-size: 20%;
}

.shareMedia .twitter {
    background: #55ACEE url(../images/icon_twitter_white.png) no-repeat center center;
    background-size: 40%;
}

.shareMedia .gplus {
    background: #D34836 url(../images/icon_gplus_white.png) no-repeat center center;
    background-size: 50%;
}

.vacancyBox {
    text-align: center;
}

.vacancyBox .panel {
    background: #F5F9FC;
    padding: 20px 20px 50px;
    position: relative;
    vertical-align: top;
    text-align: left;
}

.vacancyBox .panel .caption .title {
    font-family: 'ubunturegular';
    font-size: 18px;
    color: #424242;
    margin-bottom: 10px;
}

.vacancyBox .panel .caption .dateTime {
    margin-bottom: 10px !important;
}

.vacancyBox .panel .caption p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.vacancyBox .panel .caption .content {
    height: 152px;
    margin-bottom: 20px;
    overflow: hidden;
}

.exp {
    background: url(../images/icon_briefcase.png) no-repeat left center;
    background-size: 20px 19px;
    padding-left: 30px;
}

.age {
    background: url(../images/icon_person_blue.png) no-repeat left center;
    background-size: 19px;
    padding-left: 30px;
}

.vacancyBox .panel .defBtn {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.vacancyBox .description {
    padding-bottom: 60px;
    text-align: left;
}

.vacancyBox .description .dateTime {
    margin-bottom: 20px !important;
}

.vacancyBox .description h5 {
    font-family: 'ubunturegular';
    font-size: 20px;
    color: #424242;
    margin-bottom: 20px;
}

.vacancyBox .description p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.8;
}

.qualification {
    width: 100%;
    display: block;
    margin-bottom: 80px;
    text-align: left;
}

.qualification p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 10px;
    display: block;
}

.qualification ul,
.benefit ul,
.whistleBox ul {
    list-style: disc;
    margin-bottom: 40px;
    display: block;
}

.qualification ul li,
.benefit ul li,
.whistleBox ul li {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 10px;
    margin-left: 20px;
    padding-left: 10px;
}

.qualification .defBtn {
    margin-top: 30px;
}

.branchOffice,
.securityWrapper {
    width: 100%;
}

.branchOffice p,
.securityWrapper p,
.transactionHistory p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 30px;
    display: block;
}

.securityWrapper h4 {
    font-size: 16px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.branchList {
    width: 100%;
    display: block;
}

.securityList {
    width: 100%;
    padding: 30px 0;
    display: block;
}

.historyList {
    width: 100%;
    display: block;
}

.securityList table {
    margin-bottom: 60px;
}

.branchList table,
.securityList table,
.historyList table {
    width: 100%;
    border: 1px solid #F5F9FC;
}

.branchList table tr:nth-child(2n+1),
.historyList table tr:nth-child(2n+1) {
    background: #F5F9FC;
}

.securityList table tr:nth-child(2n) {
    background: #F5F9FC;
}

.branchList table th,
.securityList table th,
.historyList table th {
    font-family: 'ubunturegular';
    font-size: 14px;
    letter-spacing: 2px;
    background: #004271;
    color: #fff;
    padding: 20px;
    text-transform: uppercase;
    text-align: center;
}

.securityList table th,
.historyList table th {
    border: 1px solid #fff;
}

.securityList table tr:nth-child(2) th {
    width: 16%;
}

.branchList table td,
.securityList table td,
.historyList table td {
    font-family: 'ubunturegular';
    font-size: 14px;
    letter-spacing: 1px;
    color: #424242;
    padding: 20px;
}

.branchList table td:first-child,
.branchList table td:last-child {
    text-align: center;
}

.securityList table td,
.historyList table td {
    text-align: center;
}

.historyList table td a {
    color: #FAA519;
}

.securityList table td:nth-child(2) {
    text-align: left;
}

.seeMap {
    background: #faa519 url(../images/icon_map_point.png) no-repeat left 15px center;
    background-size: 15px 20px;
    font-family: 'latoregular';
    font-size: 12px;
    padding-left: 35px;
    margin-top: 10px;
}

.procedureBox {
    width: 100%;
    display: block;
    margin-bottom: 100px;
}

.progressBar {
    width: 100%;
    display: block;
    margin: 20px auto 40px;
}

.progressBar img {
    width: 100%;
}

.progressBar ul {
    width: 100%;
    height: 18px;
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.progressBar ul:before {
    content: '';
    width: 100%;
    height: 3px;
    background: #EEF3F6;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    z-index: 0;
}

.progressBar ul:after {
    content: '';
    height: 3px;
    background: #FAA61A;
    display: block;
    position: absolute;
    top: 7px;
    left: 0;
    z-index: 0;
}

.progressBar ul.first.one:after {
    width: 0%;
}

.progressBar ul.first.two:after {
    width: 12%;
}

.progressBar ul.first.three:after {
    width: 22%;
}

.progressBar ul.second.one:after {
    width: 33%;
}

.progressBar ul.second.two:after {
    width: 45%;
}

.progressBar ul.second.three:after {
    width: 56%;
}

.progressBar ul.third.one:after {
    width: 67%;
}

.progressBar ul li {
    width: 17px;
    height: 17px;
    background: #D6E7EF;
    border: 3px solid #EEF3F6;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
}

.progressBar ul.first li:first-child,
.progressBar ul.second li:first-child,
.progressBar ul.second li:nth-child(2),
.progressBar ul.third li:first-child,
.progressBar ul.third li:nth-child(2),
.progressBar ul.third li:last-child {
    background: #DE8A00;
    border: 3px solid #FAA61A;
}

.progressBar ul li:first-child {
    left: 0;
}

.progressBar ul li:nth-child(2) {
    left: 32.5%;
}

.progressBar ul li:last-child {
    left: 65.8%;
}

.progressBar .caption {
    width: 100%;
    position: relative;
}

.progressBar span {
    color: #CADBE6;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: absolute;
    top: -50px;
}

.progressBar span.active {
    color: #FCB41F;
}

.progressBar span:first-child {
    left: 12%;
}

.progressBar span:nth-child(2) {
    left: 44%;
}

.progressBar span:last-child {
    left: 77%;
}

.procedureDetail {
    width: 100%;
}

.procedureDetail .subtitle {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.borderBox {
    border: 2px solid #F4F4F4;
    position: relative;
}

.borderBox.padding {
    padding: 20px 30px 60px;
}

.borderBox h4 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.premiDetails {
    width: 100%;
    margin-bottom: 20px;
    display: none;
}

.premiDetails table {
    width: 100%;
}

.premiDetails tr:not(:last-child) {
    border-bottom: 2px solid #F4F4F4;
}

.premiDetails td {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    padding: 10px 0;
}

.premiDetails td.bold {
    font-family: 'ubuntubold';
}

.premiDetails td:last-child {
    font-family: 'ubuntubold';
    color: #005584;
    text-align: right;
}

.premitypeBox {
    background: #FCFCFE;
    padding: 20px 30px;
}

.premitypeBox .panel {
    padding: 20px 0;
}

.premitypeBox .panel:not(:last-child) {
    border-bottom: 2px solid #F4F4F4;
}

.premiPrice .radioBox {
    float: left;
}

.radioBox input[type="radio"] {
    display: none;
}

.radioBox input[type="radio"]+label {
    font-family: 'ubuntubold';
    font-size: 14px;
    color: #005584;
}

.radioBox input[type="radio"]+label p {
    font-family: 'ubunturegular';
    font-size: 11px;
    color: #CED3DF;
    padding-left: 30px;
}

.radioBox input[type="radio"]+label span {
    width: 20px;
    height: 20px;
    background: url(../images/icon_radiocheckbox_bullet.png) no-repeat center center;
    background-size: contain;
    margin: -5px 10px 0 0;
    vertical-align: middle;
    cursor: pointer;
    display: inline-block;
}

.radioBox input[type="radio"]:checked+label span {
    background: url(../images/icon_radiocheckbox_bullet_active.png) no-repeat center center;
    background-size: contain;
}

.premiPrice .price {
    font-family: 'ubuntubold';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    float: right;
}

.quantityBox {
    width: 100%;
    margin-top: 20px;
    display: none;
}

.quantityBox p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    padding-left: 30px;
    margin-top: 15px;
    float: left;
}

.borderBox .buttonArea {
    position: absolute;
    right: 4%;
    bottom: -25px;
}

.borderBox .buttonArea a,
.borderBox .buttonArea button {
    width: 160px;
    float: left;
}

.borderBox .buttonArea a:last-child,
.borderBox .buttonArea button:last-child {
    margin-left: 20px;
}

.summaryBox {
    background: #FCFCFE;
    width: 30%;
    float: left;
}

.summaryBox .header {
    width: 100%;
    background: #004271;
    display: block;
    padding: 40px 20px 20px;
}

.summaryBox .header span {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.summaryBox .header h4 {
    font-family: 'ubunturegular';
    font-size: 20px;
    color: #FCB41F;
    letter-spacing: 2px;
    display: block;
}

.summaryBox .content {
    height: 100%;
    padding: 10px 20px;
}

.summaryBox .content .panel {
    border-bottom: 1px solid #F4F4F4;
    padding: 15px 0 10px;
    display: block;
}

.summaryBox .content .panel:last-child {
    border: none;
}

.summaryBox .content .panel:first-child {
    border-bottom: 1px solid #F4F4F4;
}

.summaryBox .content h4 {
    font-family: 'ubuntubold';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.summaryBox .content p {
    font-family: 'ubuntulight';
    font-size: 18px;
    color: #005584;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.summaryBox .content span {
    font-family: 'ubuntulight';
    color: #424242;
    margin-bottom: 5px;
    display: block;
}

.borderBox .inputBox {
    width: 70%;
    float: left;
    padding: 60px;
}

.borderBox .inputBox h4 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.borderBox .inputBox .formWrapper {
    background: none;
    padding: 0;
    margin: 0;
}

.borderBox .inputBox .info {
    font-family: 'ubunturegular';
    font-size: 11px;
    color: #828282;
    letter-spacing: 1px;
}

.borderBox .inputBox .info span {
    color: #EC4139;
    margin-right: 3px;
}

.infoBox {
    width: 100%;
    background: #F5F9FC;
    padding: 30px;
    margin-bottom: 25px;
    display: block;
}

.infoBox p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    display: block;
}

.finalsummaryBox {
    width: 100%;
    display: block;
    margin-bottom: 80px;
}

.finalsummaryBox h4 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

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

.dataSummary {
    width: 100%;
    margin-bottom: 25px;
    display: block;
}

.dataPanel {
    width: 49%;
    float: left;
    padding: 40px;
}

.dataPanel:first-child {
    background: #FCFCFE;
    margin-right: 2%;
}

.dataPanel:last-child {
    background: #FFFAF2;
}

.dataPanel p {
    font-family: 'ubuntulight';
    font-size: 18px;
    color: #005584;
    letter-spacing: 1px;
    word-break: break-all;
    margin-bottom: 15px;
    display: block;
}

.dataPanel span {
    font-family: 'ubuntulight';
    color: #424242;
    margin-bottom: 5px;
    display: block;
}

.finalsummaryBox .borderBox {
    padding: 30px;
    margin-bottom: 30px;
}

.finalsummaryBox .borderBox .premiDetails {
    margin: 0;
    display: table;
}

.paymentMethod {
    padding-top: 30px;
    border-top: 1px solid #F4F4F4;
}

.paymentMethod h4 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.paymentBox {
    width: 100%;
}

.paymentBox .image {
    width: 50%;
    float: left;
}

.paymentBox .image img {
    width: 100%;
}

.paymentBox .formWrapper {
    background: none;
    width: 50%;
    float: left;
}

.halfInput input {
    width: 50%;
    float: left;
}

.paymentBox .formWrapper .defBtn {
    left: auto;
    right: 7%;
    transform: none;
}

.loadMore {
    background: url(../images/icon_loadmore.png) no-repeat left center;
    background-size: 20px;
    font-size: 14px;
    color: #CADBE6;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding-left: 35px;
    display: inline-block;
}

.finalCompare .policyPanel {
    width: 48% !important;
}

.finalCompare .policyPanel:first-child {
    margin-right: 4% !important;
}

.finalCompare .policyPanel:last-child {
    margin-right: 0 !important;
}

.finalCompare .policyPanel .caption {
    min-height: 730px;
}

.finalCompare .policyPanel .caption .more {
    font-size: 14px;
}

.finalCompare .policyPanel .caption .benefitPoints {
    margin: 20px auto;
}

.finalCompare .policyPanel .caption .benefitPoints h4 {
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.finalCompare .policyPanel .caption .benefitPoints ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.finalCompare .policyPanel .caption .benefitPoints ul li {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    padding-left: 10px;
    margin-bottom: 10px;
}

.aboutWrapper {
    width: 100%;
    display: block;
}

.aboutPanel {
    width: 100%;
    display: block;
}

.aboutPanel:not(:last-child) {
    width: 100%;
    border-bottom: 1px solid #F4F4F4;
    padding-bottom: 15px;
    margin-bottom: 30px;
    display: block;
}

.aboutPanel h5 {
    font-family: 'ubuntumedium';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.aboutPanel img {
    width: 100%;
}

.aboutPanel p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6;
    display: block;
    margin-bottom: 50px;
}

.aboutPanel p .bold {
    font-family: 'ubuntumedium';
}

.aboutPanel h2 {
    font-family: 'ubuntumedium';
    font-size: 36px;
    color: #FAA61A;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.aboutPanel h2:first-letter {
    font-size: 48px;
    color: #004271;
}

.historyWrapper {
    width: 100%;
    display: block;
}

.historyPanel {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.historyPanel .image {
    width: 100%;
    display: block;
    position: relative;
}

.historyPanel .image img {
    width: 100%;
}

.historyPanel .image .imageCaption {
    width: 435px;
    background: #fff;
    padding: 30px 30px 10px;
    border-top: 10px solid #faa61a;
    position: absolute;
    top: 30px;
    display: inline-block;
}

.historyPanel:nth-child(2n+1) .image .imageCaption {
    right: 30px;
}

.historyPanel:nth-child(2n) .image .imageCaption {
    left: 30px;
}

.historyPanel p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #333;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.historyPanel .caption {
    padding: 30px;
    display: block;
}

.auctionWrapper {
    text-align: center;
}

.auctionWrapper .grid li {
    width: 30%;
    margin-bottom: 50px;
}

.auctionWrapper .grid li:not(:nth-child(3n)) {
    margin-right: 3%;
}

.auctionPanel,
.gcgWrapper .panel {
    background: #F5F9FC;
    padding: 20px 20px 60px;
    display: block;
    float: left;
    position: relative;
    text-align: left;
}

.auctionPanel .dateTime {
    margin-bottom: 10px !important;
}

.auctionPanel h5 {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #005584;
    letter-spacing: 2px;
    line-height: 1.6;
    text-transform: uppercase;
}

.defBtn.download {
    background: #FAA61A url(../images/icon_pdfbrosur_white.png) no-repeat left 45px center;
    padding-left: 50px;
}

.auctionPanel .defBtn,
.annualPanel .defBtn,
.gcgWrapper .more {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.annualWrapper {
    width: 100%;
}

.annualPanel {
    width: 30%;
    margin: 0 0 50px 0;
    display: block;
    float: left;
}

.annualPanel:not(:nth-child(3n)) {
    margin-right: 5%;
}

.annualPanel img {
    width: 100%;
}

.annualPanel .caption {
    background: #F5F9FC;
    padding: 20px 20px 50px;
    text-align: left;
    display: block;
    position: relative;
}

.annualPanel .caption h5 {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.whistleBox {
    padding-bottom: 30px;
    border-bottom: 1px solid #F4F4F4;
}

.whistleBox h2 {
    font-size: 30px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.whistleBox p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.complaint {
    padding: 30px 0;
}

.complaint h4 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

.addBox {
    text-align: right;
}

.add {
    background: url(../images/icon_add_plus_orange.png) no-repeat left center;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    padding-left: 25px;
    display: inline-block;
    margin-bottom: 20px;
}

.guestBook {
    text-align: center;
}

.guestBook .info {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.guestBook .formInput {
    padding-bottom: 10px;
    border-bottom: 1px solid #F4F4F4;
    text-align: left;
}

.guestBook .published {
    padding: 20px 0;
    text-align: left;
}

.guestBook .published h4 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 30px;
}

.guestBook .published .panel {
    display: block;
    margin-bottom: 30px;
}

.commentBox {
    background: #F5F9FC;
    padding: 20px 40px 20px 20px;
    position: relative;
    margin-bottom: 30px;
    display: block;
}

.replyBox {
    padding: 10px 10px 10px 80px;
    position: relative;
    margin-bottom: 30px;
    display: none;
}

.dropArrow {
    width: 16px;
    height: 9px;
    background: url(../images/icon_arrow_down_blue.png) no-repeat center center;
    background-size: contain;
    display: block;
    position: absolute;
    top: 30px;
    right: 30px;
}

.dropArrow.up {
    background: url(../images/icon_arrow_up_blue.png) no-repeat center center;
    background-size: contain;
}

.commentBox .top,
.replyBox .top {
    display: block;
    margin-bottom: 10px;
}

.commentBox .profPic,
.replyBox .profPic {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 15px;
}

.commentBox .profPic img,
.replyBox .profPic img {
    width: 100%;
}

.commentBox .header,
.replyBox .header {
    padding-top: 5px;
    float: left;
}

.commentBox .header .name,
.replyBox .header .name {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.commentBox .header .date {
    background: url(../images/icon_comment.png) no-repeat left center;
    background-size: 16px;
    color: #424242;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 25px;
    display: block;
    margin-bottom: 10px;
}

.replyBox .header .date {
    background: url(../images/icon_comment_reply.png) no-repeat left center;
    background-size: 25px 16px;
    color: #424242;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 35px;
    display: block;
    margin-bottom: 10px;
}

.commentBox .caption,
.replyBox .caption {
    padding-left: 74px;
}

.commentBox .caption .title,
.replyBox .caption .title {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    line-height: 1.6;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.commentBox .caption p,
.replyBox .caption p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6;
    display: block;
    margin-bottom: 10px;
}

.radioBox .select2-container {
    min-width: 150px;
    margin-left: 30px;
    margin-top: 10px;
}

.premiType {
    display: none;
}

.accessWrapper {
    background: #fff;
    width: 100%;
    /*    height: 100vh;
    overflow: hidden;*/
}

.accessWrapper .leftImage {
    width: 50%;
    float: left;
}

.accessWrapper .leftImage img {
    width: 100%;
}

.accessWrapper .accessInput {
    width: 50%;
    float: left;
    position: relative;
}

.popupClose {
    width: 50px;
    height: 50px;
    background: #F5F5F5 url(../images/icon_popup_close.png) no-repeat center center;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
}

.accessWrapper .accessInput .accessBox {
    width: 65%;
    /*height: 100vh;*/
    margin: 0 auto;
    text-align: center;
    padding: 50px 0;
    position: relative;
}

.accessWrapper .accessInput .accessBox .logo {
    width: 160px;
    margin: 0 auto 30px;
}

.accessWrapper .accessInput .accessBox .logo img {
    width: 100%;
}

.accessWrapper .accessInput .accessBox h3 {
    font-family: 'latolight';
    font-size: 30px;
    color: #004271;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.accessWrapper .accessInput .accessBox p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.accessWrapper .accessInput .accessBox .inputWrapper {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.accessWrapper .accessInput .accessBox .inputWrapper .header {
    width: 100%;
    display: block;
    margin-bottom: 5px;
}

.accessWrapper .accessInput .accessBox .inputWrapper .header p {
    font-family: 'latoregular';
    font-size: 14px;
    color: #005584;
    text-align: left;
    text-transform: uppercase;
    margin-bottom: 5px;
    float: left;
}

.accessWrapper .accessInput .accessBox .inputWrapper .header .count {
    color: #CADBE6;
    float: right;
}

.accessWrapper .accessInput .accessBox .inputWrapper .inputRow {
    width: 100%;
    border: 2px solid #f5f8fb;
    margin-bottom: 10px;
    display: block;
    position: relative;
}

.accessWrapper .accessInput .accessBox .inputWrapper .inputRow img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.accessWrapper .accessInput .accessBox .inputWrapper .inputRow input {
    width: 100%;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    padding: 15px 15px 15px 65px;
    border: 0;
}

.accessWrapper .accessInput .accessBox .buttonBox .defBtn {
    width: 160px;
}

.forgotPass {
    font-family: 'ubuntubold';
    font-size: 14px;
    color: #FAA61A;
    letter-spacing: 1px;
    text-align: right;
    display: block;
    margin-bottom: 30px;
}

.accessWrapper .accessInput .accessBox .counter {
    width: 100%;
    /*position: absolute;*/
    left: 0;
    bottom: 30px;
    text-align: center;
}

.accessWrapper .accessInput .accessBox .counter p {
    margin-bottom: 0;
}

.accessWrapper .accessInput .accessBox .counter p .tnc {
    display: inline-block;
}

.accessWrapper .accessInput .accessBox .counter a {
    font-family: 'ubuntubold';
    font-size: 14px;
    color: #FAA61A;
    letter-spacing: 1px;
    display: inline-block;
}

.transactionHistory h5 {
    font-size: 18px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
    display: block;
}

.settingWrapper {
    width: 100%;
}

.settingPanel {
    width: 100%;
    display: block;
    border: 1px solid #F5F9FC;
    margin-bottom: 80px;
    position: relative;
}

.settingPanel .header {
    background: #F5F9FC;
    padding: 20px 30px;
}

.settingPanel .header h5 {
    font-size: 14px;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.settingPanel .inputWrapper {
    padding: 30px;
}

.settingPanel .formRow .half {
    width: 48%;
    border: 2px solid #f5f8fb;
    margin-bottom: 10px;
    display: block;
    float: left;
    position: relative;
}

.settingPanel .formRow .half:first-child {
    margin-right: 4%;
}

.settingPanel .formRow img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.settingPanel .formRow input {
    width: 100%;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    line-height: normal;
    letter-spacing: 1px;
    padding: 15px 15px 15px 65px;
    border: 0;
    margin: 0;
}

.changePass {
    font-family: 'ubuntubold';
    font-size: 14px;
    color: #FAA61A;
    letter-spacing: 1px;
    text-align: right;
    display: block;
    position: absolute;
    right: 0;
    bottom: -25px;
}

.settingPanel .buttonBox {
    position: absolute;
    right: 30px;
    bottom: -25px;
    text-align: center;
}

.settingPanel .buttonBox .defBtn {
    width: 150px;
    display: inline-block;
}

.settingPanel .buttonBox .defBtn:last-child {
    margin-left: 20px;
}

.positionWrapper p {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
}

.positionBox {
    margin-top: 20px;
}

.positionBox .header {
    border-bottom: 1px solid #f4f4f4;
    display: block;
    margin-bottom: 20px;
}

.positionBox .header h5 {
    color: #005584;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 0;
    display: block;
}

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

.positionPanel .panel {
    width: 100%;
    margin-bottom: 40px;
}

.positionPanel .panel .image {
    width: 40%;
    max-width: 300px;
    max-height: 300px;
    background: #666;
    float: left;
    overflow: hidden;
}

.positionPanel .panel .image img {
    width: 100%;
}

.positionPanel .panel .caption {
    width: 60%;
    padding-left: 30px;
    float: left;
}

.positionPanel .panel .caption .name {
    font-family: 'latoregular';
    color: #005584;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.positionPanel .panel .caption p {
    display: block;
    margin-bottom: 20px;
    text-align: justify;
}

.galleryWrapper {
    width: 100%;
    display: block;
    margin-bottom: 50px;
}


/*---------------------------popup-----------------------------*/


/*.popupWrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 9999;
    display: none;
}

.overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    display: none;
}

.popupBox {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%)translateY(-50%);
    -moz-transform: translateX(-50%)translateY(-50%);
    transform: translateX(-50%)translateY(-50%);
    display: none;
}
*/

.popupBox.access {
    width: 100%;
}


/*-------------------------------select2---------------------------------*/

.sort .select2-container {
    min-width: 200px;
}

.sort .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: 'ubuntumedium';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
}

.sort .select2-container--default .select2-selection--single,
.sort .select2-dropdown {
    border: none;
}

.sort .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/icon_arrow_dropdown_orange.png) no-repeat center center;
    background-size: 12px 6px;
}

.sort .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
}

.formRow .select2-container {
    width: 100% !important;
    margin-bottom: 20px;
}

.popupBox .select2-container,
.settingPanel .select2-container {
    width: 100% !important;
    margin: 0;
}

.formRow .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    line-height: 50px;
    padding-left: 5px;
}

.popupBox .select2-container .select2-selection--single .select2-selection__rendered,
.settingPanel .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    line-height: 50px;
    padding-left: 5px;
    text-align: left;
}

.formRow .select2-container--default .select2-selection--single,
.formRow .select2-dropdown {
    height: auto;
    border: 1px solid #CCC;
    padding: 0 10px;
    border-radius: 0;
}

.popupBox .select2-container--default .select2-selection--single,
.settingPanel .select2-container--default .select2-selection--single {
    height: auto;
    border: none;
    border-radius: 0;
    padding-left: 60px;
}

.formRow .select2-container--default .select2-selection--single .select2-selection__arrow,
.quantityBox .select2-container--default .select2-selection--single .select2-selection__arrow,
.popupBox .select2-container--default .select2-selection--single .select2-selection__arrow,
.settingPanel .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/icon_input_dropdown.png) no-repeat center center;
    background-size: 8px 15px;
    height: 100%;
    top: 0;
    right: 10px;
}

.formRow .select2-container--default .select2-selection--single .select2-selection__arrow b,
.quantityBox .select2-container--default .select2-selection--single .select2-selection__arrow b,
.popupBox .select2-container--default .select2-selection--single .select2-selection__arrow b,
.settingPanel .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
}

.quantityBox .select2-container {
    width: 200px !important;
    float: right;
}

.quantityBox .select2-container .select2-selection--single .select2-selection__rendered {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    line-height: 45px;
    padding-left: 5px;
}

.quantityBox .select2-container--default .select2-selection--single,
.quantityBox .select2-dropdown {
    height: auto;
    border: 1px solid #005584;
    padding: 0 10px;
    border-radius: 0;
}

.halfInput .select2-container {
    width: 50% !important;
    float: left;
}

.select2-container--default .select2-selection--single.error {
    border: 1px solid #EC4139;
    margin-bottom: 0;
}


/*---------------------------------carousel---------------------------------*/

.owl-nav {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 0;
}

.benefitSlider .owl-nav {
    width: auto;
    top: -71px;
    left: auto;
    right: 0;
    transform: none;
}

.relatedSlider .owl-nav {
    width: auto;
    top: -45px;
    left: auto;
    right: 0;
    transform: none;
}

.owl-prev {
    width: 40px;
    height: 40px;
    background: url(../images/icon_slider_prev.png) no-repeat center center;
    background-size: contain;
    float: left;
    margin-left: 30px;
    text-indent: -9999px;
}

.owl-next {
    width: 40px;
    height: 40px;
    background: url(../images/icon_slider_next.png) no-repeat center center;
    background-size: contain;
    float: right;
    margin-right: 30px;
    text-indent: -9999px;
}

.gallerySlider .owl-prev {
    background: url(../images/icon_slider_prev_black.png) no-repeat center center;
    background-size: contain;
}

.gallerySlider .owl-next {
    background: url(../images/icon_slider_next_black.png) no-repeat center center;
    background-size: contain;
}

.benefitSlider .owl-prev,
.relatedSlider .owl-prev {
    width: 15px !important;
    height: 15px !important;
    background: url(../images/icon_minislider_leftarrow_active.png) no-repeat center center !important;
    background-size: contain !important;
    margin-right: 30px !important;
}

.benefitSlider .owl-next,
.relatedSlider .owl-next {
    width: 15px !important;
    height: 15px !important;
    background: url(../images/icon_minislider_rightarrow_active.png) no-repeat center center !important;
    background-size: contain !important;
    margin: 0 !important;
}

.benefitSlider .owl-prev.disabled,
.relatedSlider .owl-prev.disabled {
    background: url(../images/icon_minislider_leftarrow_inactive.png) no-repeat center center !important;
    background-size: contain !important;
}

.benefitSlider .owl-next.disabled,
.relatedSlider .owl-next.disabled {
    background: url(../images/icon_minislider_rightarrow_inactive.png) no-repeat center center !important;
    background-size: contain !important;
}

.owl-dots {
    display: block;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 50px;
}

.owl-dot {
    width: 10px;
    height: 10px;
    background: url(../images/icon_slider_bullet.png) no-repeat center center;
    border-radius: 50%;
    display: inline-block;
    margin: 0 10px;
}

.owl-dot.active {
    background: url(../images/icon_slider_bullet_active.png) no-repeat center center;
}

.policySlider .owl-prev,
.newsBox .owl-prev {
    width: 16px;
    height: 26px;
    background: url(../images/icon_slider_prev_orange.png) no-repeat center center;
    background-size: contain;
    margin-left: -4%;
}

.policySlider .owl-prev.disabled,
.newsBox .owl-prev.disabled {
    background: url(../images/icon_slider_prev_grey.png) no-repeat center center;
    background-size: contain;
}

.policySlider .owl-next,
.newsBox .owl-next {
    width: 16px;
    height: 26px;
    background: url(../images/icon_slider_next_orange.png) no-repeat center center;
    background-size: contain;
    margin-right: -4%;
}

.policySlider .owl-next.disabled,
.newsBox .owl-next.disabled {
    background: url(../images/icon_slider_next_grey.png) no-repeat center center;
    background-size: contain;
}

.policySlider .owl-dots,
.newsBox .owl-dots {
    bottom: -40px;
}

.policySlider .owl-dot,
.newsBox .owl-dot {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #004271;
}

.policySlider .owl-dot.active,
.newsBox .owl-dot.active {
    background: #004271;
    border: 2px solid #004271;
}

.galleryWrapper .owl-dots {
    bottom: 10px;
}

.galleryWrapper .owl-prev {
    margin-left: 0;
}

.galleryWrapper .owl-next {
    margin-right: 0;
}


/*----------------------------------loadmore(masonry)------------------------------------*/

.grid {
    max-width: 100%;
    margin: 0 auto;
}

.grid li {
    width: 100%;
    padding: 0;
}


/*-----------------------------checkbox compare---------------------------------*/


/* Base for label styling */

.policyPanel [type="checkbox"]:not(:checked),
.policyPanel [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

.policyPanel [type="checkbox"]:not(:checked)+label,
.policyPanel [type="checkbox"]:checked+label {
    position: absolute;
    top: 15px;
    left: 15px;
    cursor: pointer;
}


/* checkbox aspect */

.policyPanel [type="checkbox"]:not(:checked)+label:before,
.policyPanel [type="checkbox"]:checked+label:before {
    content: '';
    background: url(../images/icon_checkbox_compare_inactive.png);
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
}


/* checked mark aspect */

.policyPanel [type="checkbox"]:not(:checked)+label:after,
.policyPanel [type="checkbox"]:checked+label:after {
    content: '';
    background: url(../images/icon_checkbox_compare_active.png);
    position: absolute;
    width: 20px;
    height: 20px;
    transition: all .2s;
}


/* checked mark aspect changes */

.policyPanel [type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

.policyPanel [type="checkbox"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}


/* disabled checkbox */

.policyPanel [type="checkbox"]:disabled:not(:checked)+label:before,
.policyPanel [type="checkbox"]:disabled:checked+label:before {}


/*-------------------------------input file-----------------------------------*/

.custom-file-upload-hidden {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.custom-file-upload {
    display: block;
    width: auto;
    margin-top: 30px;
    border: 1px solid #ccc;
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-input {
    padding-left: 115px !important;
}

.file-upload-button {
    background: none;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #005584;
    letter-spacing: 1px;
    padding: 8px 12px;
    border: 2px solid #bed2df;
    margin-left: -1px;
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

@media only screen and (max-width: 1200px) {
    .bannerCaption h3 {
        font-size: 40px;
    }
    .productPanel {
        width: 80%;
        height: auto;
        padding: 0 !important;
        float: none;
        margin: 0 auto 20px;
        display: block;
    }
    .productPanel .caption {
        height: auto;
    }
}

@media only screen and (max-width: 1048px) {
    nav ul li {
        margin-right: 20px;
    }
}

@media only screen and (max-width: 920px) {
    .headerNav .leftPanel ul li a {
        font-size: 10px;
    }
    .userPanel p,
    .userPanel a {
        font-size: 12px;
    }
    nav ul li {
        margin-right: 10px;
    }
    nav ul li a {
        font-size: 10px;
    }
    .newsFeed .head {
        font-size: 14px;
    }
    .newsFeed .caption {
        width: 75%;
    }
    .bannerCaption h3 {
        font-size: 30px;
    }
    .product .heading h3,
    .policy h3,
    .news h3 {
        font-size: 32px;
    }
    .companyProfile h4 {
        font-size: 28px
    }
}

@media only screen and (max-width: 768px) {
    .headerNav {
        padding: 10px;
    }
    .headerNav .leftPanel ul {
        display: none;
    }
    .headerNav .leftPanel ul.language {
        display: block;
    }
    .userPanel p {
        display: none;
    }
    .contactUs {
        padding: 15px 10px;
    }
    .contactUs .leftPanel .contactBox {
        display: none;
    }
    .contactUs .rightPanel {
        float: left;
    }
    .burgerMenu {
        display: block;
    }
    nav {
        display: none;
        position: absolute;
        left: 0;
    }
    nav ul {
        float: none;
    }
    nav ul li {
        width: 100%;
        margin: 0;
        text-align: center;
        float: none;
    }
    nav ul li a {
        display: inline-block;
        text-align: center;
    }
    .subMenu {
        width: 100%;
        position: relative;
        left: auto;
        top: auto;
        border-top: 1px solid #025896;
        border-bottom: 1px solid #025896;
    }
    .subMenu li {
        border: none;
    }
    .owl-carousel .owl-item img {
        width: auto;
        height: calc(100vh - 126);
    }
    .contactUs .leftPanel .bumnLogo {
        margin-right: 20px;
    }
    .newsFeed {
        padding: 20px;
        text-align: center;
    }
    .newsFeed .caption {
        width: 100%;
        float: none;
        margin: 0;
    }
    .newsFeed .head {
        width: 100%;
        display: block;
        margin-bottom: 30px;
    }
    .newsFeed .content {
        width: 100%;
        display: block;
        padding: 0;
        margin: 0 auto 20px;
    }
    .newsFeed .content:after {
        width: 100%;
        height: 2px;
        transform: none;
        top: -15px;
    }
    .newsFeed .content span {
        display: block;
    }
    .newsFeed .content span:after {
        content: '';
    }
    .newsFeed .defBtn {
        float: none;
        position: relative;
        top: auto;
        transform: none;
    }
    .productWrapper {
        padding: 20px;
    }
    .product .heading {
        width: 100%;
        padding: 0 20px;
    }
    .product .heading p {
        width: 100%;
    }
    .productPanel {
        width: 100%;
        text-align: left;
    }
    .productPanel .image {
        width: 100%;
        float: none;
    }
    .productPanel .type {
        width: 100%;
        float: none;
    }
    .policy {
        padding: 60px 0 100px;
    }
    .policy .policyWrapper {
        width: 90%;
        margin: 0 auto;
    }
    .policyWrapper .owl-carousel .owl-stage-outer,
    .newsBox .owl-carousel .owl-stage-outer {
        padding-bottom: 25px;
    }
    .policy .heading {
        width: 80%;
        margin: 0 auto 20px;
    }
    .policyPanel {
        width: 100%;
        margin: 0;
    }
    .helpBox {
        border: 0;
        text-align: center;
    }
    .iconHelp {
        width: 100%;
        float: none;
        margin: 0 auto 20px;
    }
    .helpBox .caption {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .helpBox .defBtn {
        float: none;
        position: relative;
        transform: none;
        top: auto;
        right: auto;
    }
    .news {
        padding: 80px 0;
    }
    .newsBox {
        width: 100%;
    }
    .news .newsBox {
        width: 90%;
        margin: 0 auto;
    }
    .newsBox .panel {
        width: 100%;
        margin: 0 auto;
    }
    .additionalBox .panel {
        width: 100%;
        display: block;
        margin: 0 auto 50px;
    }
    .additionalBox .panel .caption {
        height: auto;
    }
    .siteBox {
        width: 100%;
        float: none;
        margin: 0 auto 20px;
    }
    .siteBox .panel {
        width: 50%;
        padding: 0 20px;
        margin-bottom: 20px;
    }
    .siteMap .sponsor {
        width: 100%;
        padding: 0;
    }
    .bottomNav .leftPanel {
        text-align: center;
        float: none;
        margin: 0 auto 10px;
    }
    .bottomNav .leftPanel ul li {
        float: none;
        display: inline-block;
    }
    .bottomNav .rightPanel {
        text-align: center;
        float: none;
    }
    .bottomNav .rightPanel p {
        float: none;
        margin: 0 auto 10px;
    }
    .bottomNav .rightPanel .socMed {
        float: none;
    }
    .bottomNav .rightPanel .socMed a {
        display: inline-block;
        float: none;
    }
    .sideNav.desktop {
        display: none;
    }
    .sideNav.mobile {
        display: block;
    }
    .owl-carousel .owl-item img {
        width: auto;
        height: calc(100vh -126px);
    }
    .leftFrame {
        width: 100%;
        padding: 0;
        float: none;
        display: none;
    }
    .sideNav {
        width: 90%;
        margin: 0 auto 20px;
    }
    .rightFrame {
        width: 90%;
        margin: 0 auto;
        float: none;
    }
    .productBox .benefit .pointWrapper .panel .image {
        width: 50%;
    }
    .premiDetails td {
        display: block;
        padding: 10px 0 0 0;
    }
    .premiDetails td:last-child {
        text-align: left;
        padding: 0 0 10px 0;
    }
    .premiPrice .radioBox,
    .premitypeBox .panel .quantityBox p {
        display: block;
        float: none;
        margin-bottom: 10px;
    }
    .premiPrice .price,
    .quantityBox .select2-container {
        display: block;
        float: none;
        padding-left: 30px;
    }
    .borderBox .buttonArea {
        right: 50%;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
    }
    .mediaDetails {
        padding: 0;
    }
    .rightFrame .mainContent .policyPanel,
    .rightFrame .mainContent .newsBox .panel {
        width: 100%;
        padding: 0 !important;
        margin: 0 auto 50px;
        display: block;
        float: none;
    }
    .rightFrame .mainContent .vacancyBox .panel {
        width: 100%;
        padding: 20px 20px 50px !important;
        margin: 0 auto 50px !important;
        display: block;
        float: none;
    }
    .finalCompare .policyPanel {
        width: 100% !important;
    }
    .summaryBox {
        width: 100%;
    }
    .borderBox .inputBox {
        width: 100%;
        padding: 30px 20px 100px;
    }
    .borderBox .buttonArea {
        text-align: center;
        bottom: -35px;
    }
    .borderBox .buttonArea a {
        margin: 0 auto 10px!important;
        display: block;
        float: none;
    }
    .dataPanel {
        width: 100%;
        padding: 20px;
        float: none;
    }
    .paymentBox .image {
        width: 100%;
        float: none;
    }
    .paymentBox .formWrapper {
        width: 100%;
        padding: 40px 10px 70px;
    }
    .paymentBox .formWrapper .defBtn {
        right: 50%;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
    }
    .historyPanel .image {
        margin-bottom: 100px;
    }
    .annualPanel {
        width: 100%;
        margin: 0 auto 60px !important;
    }
    .auctionWrapper .grid li {
        width: 100%;
    }
    .mediaDetails,
    .gcgWrapper {
        padding: 0;
    }
    .thankWrapper,
    .thankBox {
        min-height: 40vh;
    }
    .accessWrapper .leftImage {
        display: none;
    }
    .accessWrapper .accessInput {
        width: 100%;
    }
}

@media only screen and (max-width: 640px) {
    .rightFrame .bottomHead h5 {
        float: none;
        margin-bottom: 20px;
    }
    .rightFrame .bottomHead .sort {
        float: none;
    }
    .formRow .half {
        width: 100%;
    }
    .policyWrapper {
        width: 100%;
    }
    .progressBar span {
        font-size: 10px;
        top: -40px;
    }
    .progressBar span:first-child {
        left: 10%;
    }
    .progressBar span:nth-child(2) {
        left: 42%;
    }
    .progressBar span:last-child {
        left: 75%;
    }
    .commentBox .caption,
    .replyBox .caption {
        padding: 0;
    }
    .replyBox {
        padding: 10px;
    }
    .positionPanel .panel .image {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
    .positionPanel .panel .caption {
        width: 100%;
        padding-left: 0;
        float: none;
    }
    .settingPanel .formRow .half {
        width: 100%;
        margin: 0 auto 10px;
    }
    .settingPanel .inputWrapper {
        padding: 30px 30px 50px;
    }
    .settingPanel .buttonBox {
        width: 100%;
        right: 50%;
        transform: translateX(50%);
        -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
    }
}

@media only screen and (max-width: 480px) {
    .benefit .buttonArea .defBtn {
        display: block;
        margin: 0 auto 10px;
    }
    .progressBar span {
        letter-spacing: 0;
    }
    .progressBar span:first-child {
        left: 8%;
    }
    .progressBar span:nth-child(2) {
        left: 40%;
    }
    .progressBar span:last-child {
        left: 73%;
    }
}

.pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pika-single:before {
    content: " ";
    display: table
}

.pika-single:after {
    content: " ";
    display: table;
    clear: both
}

.pika-single.is-hidden {
    display: none
}

.pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5)
}

.pika-lendar {
    float: left;
    width: 240px;
    margin: 8px
}

.pika-title {
    position: relative;
    text-align: center
}

.pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0
}

.pika-label {
    display: inline-block;
    display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
    padding-right: 20px
}

.pika-label:after {
    content: "";
    position: absolute;
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 2px;
    right: 8px;
    transform: rotate(45deg);
    top: 11px
}

.pika-prev {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    position: absolute;
    top: 0;
    float: left;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
    left: 0
}

.pika-prev:hover {
    opacity: 1
}

.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: .5;
    position: absolute;
    top: 0;
    float: right;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
    right: 0
}

.pika-next:hover {
    opacity: 1
}

.is-rtl .pika-next {
    float: left;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
    left: 0
}

.is-rtl .pika-prev {
    float: right;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
    right: 0
}

.pika-prev.is-disabled {
    cursor: default;
    opacity: .2
}

.pika-next.is-disabled {
    cursor: default;
    opacity: .2
}

.pika-select {
    display: inline-block;
    display: inline
}

.pika-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0
}

.pika-table th {
    width: 14.285714285714286%;
    padding: 0;
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center
}

.pika-table td {
    width: 14.285714285714286%;
    padding: 0
}

.pika-table abbr {
    border-bottom: none;
    cursor: help
}

.pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5
}

.pika-button:hover {
    color: #fff;
    background: #ff8000;
    box-shadow: none;
    border-radius: 3px
}

.pika-week {
    font-size: 11px;
    color: #999
}

.is-today .pika-button {
    color: #33aaff;
    font-weight: bold
}

.is-selected .pika-button {
    color: #fff;
    font-weight: bold;
    background: #33aaff;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px
}

.is-inrange .pika-button {
    background: #D5E9F7
}

.is-startrange .pika-button {
    color: #fff;
    background: #6CB31D;
    box-shadow: none;
    border-radius: 3px
}

.is-endrange .pika-button {
    color: #fff;
    background: #33aaff;
    box-shadow: none;
    border-radius: 3px
}

.is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3
}

.is-outside-current-month .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: .3
}

.background-image {
    height: 620px;
    background-position: center center
}

.productSlider.owl-carousel.owl-loaded.owl-drag {
    display: none;
}

.productSlider .background-image {
    height: 367px;
    background-position: center center
}

.searchOverflow {
    position: fixed;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    display: none;
    z-index: 9999
}

.searchOverflow.shown {
    display: block
}

.searchOverflow.shown .searchWrapper {
    transform: translate(0px, 0px)
}

.searchOverflow .whiteOverlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #fff
}

.branchOffice .sort {
    float: left;
    margin-bottom: 10px
}

textarea:focus,
textarea:hover {
    outline: 0px
}

.bottomNav .leftPanel .fullBox li:not(:first-child) {
    display: none
}

.bottomNav .leftPanel ul li:first-child a {
    border-right: 0px
}

.searchWrapper {
    background-color: #23547c;
    height: 280px;
    position: relative;
    z-index: 1;
    align-items: center;
    display: flex;
    transition-delay: 300ms;
    transition: all 0.3s ease;
    transform: translate(0px, -280px)
}

.searchWrapper .widthBox {
    position: relative;
    padding: 0px 30px
}

.searchWrapper input {
    height: 80px;
    background: transparent;
    font-size: 43px;
    color: #fff;
    border: 0px;
    width: 100%;
    border-bottom: 3px solid #fdab25;
    font-family: 'ubuntulight'
}

.searchWrapper .clearSearch {
    position: absolute;
    right: 15px;
    top: 0px;
    background: transparent;
    border: 0px;
    color: #fff;
    font-size: 70px;
    opacity: 0.4;
    cursor: pointer
}

.searchWrapper .clearSearch:hover {
    opacity: 1
}

.searchWrapper .clearSearch:focus {
    outline: 0px
}

.searchWrapper::-webkit-input-placeholder {
    color: #fff
}

.searchWrapper::-moz-placeholder {
    color: #fff
}

.searchWrapper:-ms-input-placeholder {
    color: #fff
}

.searchWrapper:-moz-placeholder {
    color: #fff
}

.bannerCaption {
    position: absolute
}

.block-loadMore {
    background-image: linear-gradient(179deg, #F5F9FC 0%, #fff 100%);
    margin-top: 30px;
    height: 134px;
    display: flex;
    justify-content: center;
    align-items: center
}

.sideNav ul {
    background: #FFFFFF;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08)
}

.formWrapper {
    text-align: center
}

.formWrapper .defBtn {
    position: relative;
    left: auto;
    float: none;
    transform: none
}

.formBox {
    text-align: left
}

.borderBox .buttonArea {
    width: 100%;
    text-align: right
}

.borderBox .buttonArea a {
    float: none
}

.borderBox .buttonArea .prev {
    margin-right: 20px
}

nav ul li:hover .subMenu {
    display: block
}

.securityList--left table td {
    text-align: left
}

.rightFrame .bottomHead {
    padding-bottom: 26px
}

.medicash-form {
    display: none
}

.annualPanel .caption .date,
.gcg .caption .date {
    font-size: 12px;
    color: #333333;
    letter-spacing: 1px;
    line-height: 14px;
    margin-bottom: 10px
}

.annualPanel .caption h5,
.gcg .caption h5 {
    line-height: 24px
}

.gcg .annualPanel {
    display: flex
}

.gcg .annualPanel .caption {
    display: flex;
    width: 100%;
    flex-direction: column
}

.gcg .annualPanel .caption h5 {
    flex: 1;
    padding-bottom: 15px
}

.gcg .annualPanel .caption .selengkapnya {
    font-size: 12px;
    color: #004271;
    letter-spacing: 1px;
    line-height: 18px
}

.annualWrapper .annualPanel {
    width: 100%;
    float: none
}

.annualWrapper .annualPanel .caption {
    height: 145px
}

@media screen and (min-width: 769px) {
    .annualWrapper .annualPanel {
        float: left !important;
        width: 33%;
        padding: 0 15px;
        margin-bottom: 40px;
        margin-right: 0 !important
    }
}

.annualWrapper--flex,
.policyWrapper {
    display: flex;
    flex-wrap: wrap
}

.annualWrapper--flex .annualPanel,
.annualWrapper--flex .policyPanel,
.policyWrapper .annualPanel,
.policyWrapper .policyPanel {
    float: none !important;
    width: 100% !important
}

@media screen and (min-width: 769px) {
    .annualWrapper--flex .annualPanel,
    .annualWrapper--flex .policyPanel,
    .policyWrapper .annualPanel,
    .policyWrapper .policyPanel {
        width: 20% !important
    }
}

.komisaris {
    margin-top: 60px
}

.komisaris__title {
    font-size: 18px;
    color: #004271;
    letter-spacing: 2px;
    padding-bottom: 25px;
    border-bottom: 1px solid #F4F4F4;
    margin-bottom: 30px
}

.komisaris__item {
    display: flex;
    margin-bottom: 60px
}

.komisaris__desc {
    padding-left: 30px;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #333333;
    letter-spacing: 1px
}

.komisaris__desc h2 {
    font-family: 'ubunturegular';
    font-size: 14px;
    color: #004271;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 5px
}

.komisaris__job {
    font-family: 'ubuntulight';
    margin-top: 25px;
    font-size: 14px;
    color: #333333;
    letter-spacing: 1px;
    line-height: 24px
}

.komisaris__job p {
    margin-bottom: 20px
}

.bannerSlider .owl-item {
    max-height: 618px
}

.bannerSlider .owl-nav .disabled {
    display: none
}

.productSlider .owl-item {
    max-height: 368px
}

.productSlider .owl-nav .disabled {
    display: none
}

.companyProfile {
    /*background: url("../../images/userdata/img_grey_BG.jpg") no-repeat center center;*/
    background-size: cover
}

.policyPanel {
    vertical-align: top;
    width: 20%
}

.published-title {
    border-bottom: 0px !important
}

.published-faq .commentBox .caption,
.published-faq .replyBox .caption {
    padding-left: 10px
}

.published-faq .replyBox {
    padding-left: 25px
}

#userregister .select2-container {
    z-index: 10001
}

.popupBox .select2-container--default .select2-selection--single {
    background: transparent
}

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

.finpay-logo {
    float: right
}

.show-cc:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 130px;
    background-image: url("../images/visa-master-card-logo.png");
    background-repeat: no-repeat;
    background-position: left center
}

.select2-results__option {
    padding: 15px;
    background: #fff
}

.select2-results__option span {
    position: relative;
    width: 100%;
    display: block
}

.select2-results__option span img {
    position: absolute;
    right: 0px;
    top: 0px
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background: #fff;
    color: #444
}

.cvc-logo {
    position: relative;
    right: 50px;
    height: 100%;
    top: 15px
}

.headerNav .userPanel ul {
    float: right
}

.headerNav .userPanel ul li {
    display: inline-block
}

.headerNavMobile {
    background: #fff;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 50px;
    padding-top: 5px;
    margin-top: 20px;
    padding-bottom: 100px;
    display: none
}

@media screen and (max-width: 769px) {
    .headerNavMobile {
        display: block
    }
}

.headerNavMobile ul li a {
    color: #005584;
    padding-left: 0;
    font-size: 12px;
    margin: 0
}

.headerNavMobile hr {
    height: 1px;
    border: 0px;
    background: rgba(0, 0, 0, 0.1)
}

.headerNavMobile .contactBox a {
    color: #fcb41f;
    display: inline-block;
    padding-left: 20px
}

.mediaDetails .caption ul {
    list-style: disc;
    padding-left: 15px
}

.mediaDetails .caption ol {
    list-style: decimal;
    padding-left: 15px
}

.mediaDetails .caption li {
    font-family: 'ubuntulight';
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.8;
    margin-bottom: 20px
}

.info.flex {
    display: flex
}

.info.flex span:first-child {
    margin-right: 10px
}

.info.flex a {
    color: #FAA61A
}

.paymentBox .image {
    position: relative
}

.showInfoBT {
    position: absolute;
    background: #FCFCFE;
    border: 1px solid #F4F4F4;
    width: 80%;
    right: -15px;
    bottom: 20px;
    padding: 35px 25px 45px 25px;
    display: none
}

.showInfoBT .title {
    font-size: 18px;
    color: #004271;
    letter-spacing: 1px;
    line-height: 26px;
    margin-bottom: 15px
}

.showInfoBT .close {
    border: 0px;
    background: transparent;
    position: absolute;
    top: 15px;
    right: 10px;
    cursor: pointer
}

.showInfoBT ul li {
    display: flex;
    font-family: 'Ubuntulight';
    font-size: 14px;
    color: #333333;
    letter-spacing: 1px;
    line-height: 24px
}

.showInfoBT ul li span {
    margin-right: 15px
}

.static-page {
    padding: 40px 0px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6
}

.static-page .title {
    font-size: 30px;
    color: #005584;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    text-align: center
}

.static-page h1,
.static-page h2,
.static-page h3,
.static-page h4,
.static-page h5 {
    font-family: 'ubuntulight';
    color: #005584;
    font-size: 140%
}

.static-page p {
    margin-bottom: 15px
}

.static-page ul,
.static-page ol {
    margin: 15px 0px;
    padding-left: 35px
}

.static-page ul {
    list-style-type: disc
}

.static-page ol {
    list-style-type: decimal
}

.static-page li {
    margin-bottom: 7px
}

@media screen and (min-width: 769px) {
    .policyWrapper .owl-carousel {
        display: flex;
        flex-wrap: wrap;
        justify-content: center
    }
}

.policyWrapper .owl-carousel .policyPanel {
    vertical-align: top;
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.companyProfile {
    padding: 47px 0
}

.newsBox .panel .caption {
    height: auto
}

.policyWrapper .owl-carousel,
.newsBox .owl-carousel {
    display: flex;
    justify-content: center
}

.policyWrapper .owl-carousel .panel,
.newsBox .owl-carousel .panel {
    display: flex;
    flex-direction: column
}

.policyWrapper .owl-carousel .panel .caption,
.newsBox .owl-carousel .panel .caption {
    flex: 1
}

.newsBox .panel .caption .title {
    font-size: 16px;
    color: #333333;
    letter-spacing: 1.5px;
    line-height: 24px
}

.newsBox .panel .caption .title .product .heading p {
    font-family: UbuntuLight;
    font-size: 14px;
    color: #333333;
    letter-spacing: 1px;
    line-height: 24px
}

.borderBox .buttonArea a,
.borderBox .buttonArea button,
.formWrapper .defBtn {
    border: 0px;
    float: none;
    cursor: pointer
}

.select2-container:focus,
.selection:focus,
.select2-selection:focus,
input {
    outline: 0px
}

.borderBox .buttonArea {
    right: 0px;
    padding-right: 60px
}

@media screen and (max-width: 769px) {
    .borderBox .buttonArea {
        position: relative;
        transform: none
    }
}

@media screen and (max-width: 1023px) {
    .borderBox .buttonArea {
        bottom: 0px
    }
}

@media screen and (max-width: 769px) {
    .formRow {
        z-index: 10;
        position: relative;
        padding: 0px 20px
    }
}

.historyPanel p {
    line-height: 24px
}

.auctionWrapper .grid {
    display: flex
}

.auctionWrapper .grid .li {
    width: 100%;
    margin: 0px;
    padding-bottom: 50px
}

.auctionWrapper .grid .auctionPanel {
    float: none
}

#payment-method-cc .defBtn,
#payment-method-transfer .defBtn {
    left: 63px;
    top: 68px
}

.wrapper {
    padding-top: 122px
}

@media screen and (min-width: 769px) {
    .wrapper {
        padding-top: 177px
    }
}

.wrapper>header {
    position: fixed;
    z-index: 1001;
    top: 0px;
    width: 100%;
    transition: all 0.2s ease
}

.wrapper>header+nav {
    z-index: 1001;
    top: 124px;
    position: fixed;
    transition: all 0.2s ease
}

.wrapper.sticky>header {
    transform: translate(0px, -50px)
}

.wrapper.sticky>header+nav {
    transform: translate(0px, -50px)
}

.contactUs .leftPanel .contactBox a:hover,
.headerNav .leftPanel ul li:hover a,
.userPanel a:hover {
    cursor: pointer;
    color: #EC9505 !important
}

nav ul li a:hover,
.additionalBox .panel .hotLine:hover,
.sideNav ul li a:hover,
.breadCrumb ul li:last-child a:hover,
.validation input[type="checkbox"]+label .tnc:hover,
.progressBar span.active:hover,
.summaryBox .header h4:hover,
.headerNav .leftPanel ul li:hover a,
.language li.active a:hover,
.userPanel a:hover,
.userName:hover,
.contactUs .leftPanel .contactBox a:hover,
.productPanel .type p span:hover,
.additionalBox .panel .hotLine:hover,
.sideNav ul li.active a:hover,
.breadCrumb ul li a:hover,
.siteBox .panel a:hover,
.bottomNav .leftPanel ul li a:hover {
    cursor: pointer;
    color: #FAA519
}

.whistleBlow:hover {
    background-color: #0067a3;
    color: #fff
}

.searchBtn:hover {
    cursor: pointer;
    background-color: #EC9505 !important;
    background-image: none
}

.searchBtn {
    width: 53px;
    height: 53px;
    right: 0px;
    bottom: 0px;
    z-index: 3;
    background-image: none
}

.productBox .description h2,
.productBox .description a {
    font-size: 30px;
    color: #FAA519;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    text-decoration: none
}

.productBox .description h2:hover,
.productBox .description a:hover {
    cursor: pointer;
    color: #EC9505
}

.bannerCaption h3 span,
.bannerCaption h3 a {
    color: #FCB41F;
    display: block;
    margin-bottom: 10px
}

.bannerCaption h3 span:hover,
.bannerCaption h3 a:hover {
    cursor: pointer;
    color: #EC9505
}

.policyPanel .caption h5,
.policyPanel .caption h5>a {
    font-family: 'ubunturegular';
    font-size: 20px;
    color: #424242;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block
}

.policyPanel .caption h5:hover,
.policyPanel .caption h5>a:hover {
    cursor: pointer;
    color: #FAA519
}

.policyPanel .caption .more:hover {
    cursor: pointer;
    color: #FAA519
}

.bannerSlider .owl-item .bannerCaption {
    opacity: 0;
    transition: all 1.2s ease
}

@media screen and (min-width: 769px) {
    .bannerSlider .owl-item .bannerCaption {
        transform: translateX(80px) translateY(-50%)
    }
}

@media screen and (max-width: 769px) {
    .bannerSlider .owl-item .bannerCaption {
        top: auto;
        left: 0;
        bottom: 15vh;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        -o-transform: inherit;
        transform: inherit
    }
}

.bannerSlider .owl-item.active .bannerCaption {
    opacity: 1
}

@media screen and (min-width: 769px) {
    .bannerSlider .owl-item.active .bannerCaption {
        transform: translateX(0px) translateY(-50%)
    }
}

@media screen and (max-width: 769px) {
    .bannerSlider .owl-item.active .bannerCaption {
        top: auto;
        left: 0;
        bottom: 15vh;
        -webkit-transform: inherit;
        -moz-transform: inherit;
        -ms-transform: inherit;
        -o-transform: inherit;
        transform: inherit
    }
}

.defBtn:hover {
    cursor: pointer;
    background: #EC9505
}

@media screen and (min-width: 1025px) {
    .leftFrame {
        position: relative !important;
        top: 0 !important
    }
}

@media screen and (max-width: 1025px) {
    .leftFrame {
        position: relative !important
    }
}

@media screen and (max-width: 1024px) {
    .widthBox {
        padding: 0px 15px
    }
}

.widthBox.row {
    max-width: 1385px
}

@media screen and (max-width: 768px) {
    .wrapper>header+nav {
        height: 100%;
        overflow: auto
    }
}

@media screen and (max-width: 1024px) {
    .wrapper>header+nav {
        overflow: auto
    }
}

@media screen and (min-width: 768px) {
    .annualWrapper--flex .annualPanel,
    .annualWrapper--flex .policyPanel,
    .policyWrapper .annualPanel,
    .policyWrapper .policyPanel {
        width: 40% !important
    }
}

@media screen and (min-width: 1020px) {
    .annualWrapper--flex .annualPanel,
    .annualWrapper--flex .policyPanel,
    .policyWrapper .annualPanel,
    .policyWrapper .policyPanel {
        width: 28% !important
    }
}

.annualPanel__image {
    height: 350px;
    background-size: cover;
    background-position: top center;
    background-color: #eaeaea
}

@media screen and (min-width: 1023px) {
    .rightFrame .mainContent .policyPanel,
    .rightFrame .mainContent .newsBox .panel,
    .rightFrame .mainContent .vacancyBox .panel {
        margin-right: 1% !important
    }
}

@media screen and (max-width: 768px) {
    .rightFrame .mainContent .policyPanel,
    .rightFrame .mainContent .newsBox .panel,
    .rightFrame .mainContent .vacancyBox .panel {
        margin-right: 0% !important
    }
}

.policyPanel {
    margin: 0
}

@media screen and (min-width: 769px) {
    .policyPanel {
        margin: 0 15px 70px
    }
}

@media screen and (max-width: 640px) {
    .policySlider .owl-prev,
    .policySlider .owl-next,
    .newsBox .owl-prev,
    .newsBox .owl-next {
        display: none
    }
}

.policySlider .owl-dot,
.policySlider .newsBox .owl-dot,
.newsBox .owl-dot,
.newsBox .newsBox .owl-dot {
    width: 10px;
    height: 10px
}

@media screen and (max-width: 640px) {
    .product .heading h3,
    .policy h3,
    .news h3 {
        font-size: 20px;
        margin-bottom: 40px
    }
    .productPanel .type p span {
        font-size: 28px
    }
}

.newsBox__thumbnail {
    height: 198px;
    background-size: cover;
    background-position: center;
    background-color: #eaeaea;
    background-image: url(../images/default.png)
}

@media screen and (min-width: 769px) {
    .newsBox .panel {
        width: 20%;
        margin: 0 10px 50px
    }
}

.helpBox {
    border: 0;
    padding: 0
}

.banner__image {
    background-color: #eee;
    height: 100vh;
    background-size: cover;
    background-position: center
}

.contactUs {
    position: relative
}

@media screen and (max-width: 769px) {
    .contactUs {
        display: flex;
        justify-content: space-between;
        align-items: center
    }
}

@media screen and (max-width: 769px) {
    .contactUs .burgerMenu {
        margin-top: 0
    }
}

body .grid-3 .grid__item {
    width: 33% !important;
    margin: 0 0 50px !important;
    padding: 0 10px;
    float: left
}

@media screen and (max-width: 769px) {
    body .grid-3 .grid__item {
        width: 100% !important
    }
}

body .grid-2 .grid__item {
    width: 50% !important;
    margin: 0 0 50px !important;
    padding: 0 10px
}

@media screen and (max-width: 769px) {
    body .grid-2 .grid__item {
        width: 100% !important
    }
}

.auctionPanel {
    float: none;
    min-height: 320px
}

.inline-block {
    display: inline-block
}

.custService {
    display: none
}

.exp {
    background-size: 15px 14px
}

.age {
    background-size: 15px
}

.hide {
    display: none !important
}

p.compareInfo {
    font-size: 14px
}

.newsFeed .content:after {
    width: 1px;
    background-color: #0568a0
}

.defBtn {
    border: 0
}

.description,
.qualification {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6
}

.description table,
.qualification table {
    width: 100% !important
}

.description table th,
.qualification table th {
    font-weight: bold;
    background: #FAA61A !important
}

.description table th,
.description table td,
.qualification table th,
.qualification table td {
    padding: 10px
}

.productPanel .caption p {
    font-family: 'ubuntulight';
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
    font-weight: normal;
    letter-spacing: 0
}

@media screen and (max-width: 769px) {
    .historyPanel .image {
        margin-bottom: 0
    }
    .historyPanel .image .imageCaption {
        position: relative;
        top: auto;
        width: 100%;
        right: auto !important;
        left: auto !important
    }
}

.defBtn i {
    vertical-align: middle
}

.searchBtn {
    color: white;
    text-align: center
}

.searchBtn i {
    vertical-align: middle;
    line-height: 53px
}

.contactUs .leftPanel .contactBox a {
    padding-left: 0
}

.contactUs .leftPanel .contactBox a i {
    vertical-align: middle;
    font-size: 18px
}

.burgerMenu {
    width: 25px;
    margin-top: 5px !important;
    margin-left: 10px;
    position: absolute;
    right: 10px
}

.burgerMenu span {
    height: 2px
}

@media screen and (max-width: 768px) {
    nav ul {
        margin-top: 30px
    }
    nav ul li a {
        font-size: 14px
    }
    nav ul li .subMenu li a {
        font-size: 12px
    }
}

.positionPanel {
    font-family: 'ubuntulight';
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
    font-weight: normal;
    letter-spacing: 0
}

.positionPanel p {
    text-align: left !important;
    margin-bottom: 5px !important;
    color: inherit !important;
    letter-spacing: 0 !important
}

.positionPanel ul {
    list-style: inherit;
    list-style-type: disc;
    margin-left: 20px
}

.positionPanel ul li {
    list-style-type: disc;
    margin-bottom: 5px;
    display: block;
    position: relative
}

.positionPanel ul li:before {
    content: "·";
    position: absolute;
    left: -20px;
    font-size: 32px;
    top: -15px
}

.branchList table th,
.securityList table th,
.historyList table th {
    padding: 20px !important
}

table.dataTable.no-footer {
    border-bottom: 2px solid #faa61a;
    margin-bottom: 20px
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #004271 !important;
    border: none !important;
    color: white !important
}

.dataTables_length {
    display: none
}

.dataTables_wrapper .dataTables_filter label {
    font-size: 14px
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0.5em;
    border-radius: 0;
    margin-bottom: 20px;
    height: 40px !important;
    border: 0;
    background: #eee;
    min-width: 200px;
    padding: 0 15px;
    font-size: 14px
}

@media screen and (max-width: 769px) {
    .mainLogo {
        position: absolute;
        right: 75px;
        width: 120px;
        top: 10px
    }
}

@media screen and (max-width: 769px) {
    .bumnLogo img {
        width: 65%
    }
}

.wrapper-404 {
    padding: 80px 0;
    text-align: center
}

@media screen and (min-width: 769px) {
    .wrapper-404 {
        display: table;
        text-align: left
    }
}

.wrapper-404__image img {
    max-width: 100%;
    padding: 0 15px;
    display: inline-block
}

@media screen and (min-width: 769px) {
    .wrapper-404__image {
        width: 40%;
        display: table-cell;
        vertical-align: middle
    }
}

@media screen and (min-width: 769px) {
    .wrapper-404__content {
        width: 60%;
        display: table-cell;
        vertical-align: middle
    }
}

.wrapper-404__content section {
    padding: 30px 10px;
    font-size: 14px
}

@media screen and (min-width: 769px) {
    .wrapper-404__content section {
        padding: 30px 80px;
        font-size: 16px
    }
}

.wrapper-404__content section h1 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    color: #004271;
    margin-bottom: 15px;
    letter-spacing: 1px
}

@media screen and (min-width: 769px) {
    .wrapper-404__content section h1 {
        font-size: 28px
    }
}

.wrapper-404__content section p {
    margin-bottom: 20px
}

.wrapper-404__content section .defBtn {
    font-size: 12px
}

.kontak-sidebar {
    padding: 15px 20px !important
}

.kontak-sidebar a {
    padding: 0 !important
}

.kontak-sidebar li {
    padding: 15px 0;
    font-family: 'ubunturegular';
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    line-height: 1.8
}

.bottomNav .rightPanel .socMed a {
    float: none;
    display: inline-block;
    margin: 0 5px;
    font-size: 20px;
    position: relative;
    top: -6px;
    color: #FAA61A
}

.bottomNav .rightPanel .socMed a:first-child {
    margin-right: 0
}

footer {
    padding: 30px 15px
}

.sortlist {
    display: inline-block;
    background: url(../images/icon_arrow_dropdown_orange_1.png) no-repeat right center;
    background-size: 12px 6px;
    min-width: 200px
}

.sortlist select {
    -webkit-appearance: none;
    -moz-appearance: inherit;
    background: none;
    border: 0;
    font-family: 'ubuntumedium';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    outline: 0;
    display: block
}

body .branchOffice .sort--floating {
    float: none;
    position: relative;
    z-index: 10;
    max-width: 200px
}

@media screen and (min-width: 767px) {
    body .branchOffice .sort--floating {
        margin-bottom: -35px
    }
}

body .branchOffice .sort--floating select {
    width: 100%
}

.searchresult {
    padding: 60px 0
}

.searchresult .aboutPanel p {
    margin-bottom: 20px
}

.searchresult .aboutPanel p a {
    color: #faa61a
}

.searchresult h3 {
    font-family: 'ubuntumedium';
    font-size: 18px;
    color: #424242;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px
}

.pagination {
    clear: both;
    list-style: none;
    margin-top: 30px
}

.pagination li {
    display: inline-block;
    border-radius: 0;
    font-size: 0.875rem;
    padding: 0.1875rem 0.625rem
}

.pagination li.active {
    background: #004271;
    color: white
}

.pagination li.disabled {
    color: #cacaca;
    cursor: not-allowed
}

.pagination li a {
    color: #333
}

.row:after {
    display: block;
    clear: both;
    content: ''
}

.row+.row {
    margin-top: 3%
}

[class^="cols-"] {
    float: left;
    margin-right: 3%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

[class^="cols-"]:last-child {
    margin-right: 0%
}

@media screen and (max-width: 767px) {
    [class^="cols-"] {
        width: 100% !important
    }
}

[class^="cols-"] .formRow {
    padding: 0
}

[class^="cols-"] .formRow .select2-container {
    margin-bottom: 0 !important
}

.cols-1 {
    width: 5.5833333333%
}

.cols-2 {
    width: 14.1666666667%
}

.cols-3 {
    width: 22.75%
}

.cols-4 {
    width: 31.3333333333%
}

.cols-5 {
    width: 39.9166666667%
}

.cols-6 {
    width: 48.5%
}

.cols-7 {
    width: 57.0833333333%
}

.cols-8 {
    width: 65.6666666667%
}

.cols-9 {
    width: 74.25%
}

.cols-10 {
    width: 82.8333333333%
}

.cols-11 {
    width: 91.4166666667%
}

.cols-12 {
    width: 100%
}

.help-block strong {
    display: block;
    margin-bottom: 20px
}

.help-block--bordered strong {
    border: 1px solid #ef6868;
    padding: 5px;
    background: #f58c8c;
    color: white;
    font-size: 11px
}

.buttonBox {
    margin-bottom: 20px
}

#register2,
#register3 {
    display: none
}

.subMenu li {
    padding: 12px 10px
}

.subMenu li a {
    font-size: 11px !important
}

.date {
    background: #fff url(../images/icon_datepicker_1.png) no-repeat right 15px center;
    background-size: 18px
}

.article-navigation a {
    color: #004271;
    font-size: 14px
}

.article-navigation .cols-6:last-child {
    text-align: right
}

.accordion {
    margin-bottom: 30px !important
}

.ui-accordion .ui-accordion-header {
    font-family: 'latoregular' !important;
    color: #005584;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #f3f3f3 !important;
    border: 0 !important;
    outline: 0 !important;
    padding: 15px 15px !important;
    border-radius: 0 !important
}

.ui-accordion .ui-accordion-content {
    border-radius: 0 !important;
    border: 0 !important;
    background: #f9f9f9;
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 20px
}

p.compareInfo {
    font-family: 'ubuntulight';
    font-size: 14px;
    color: #424242;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 20px
}

.ui-accordion-header-icon {
    position: absolute !important;
    right: 10px;
    background: none !important;
    text-indent: 0 !important
}

.ui-accordion-header-icon:before {
    content: "\f107";
    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
}

.ui-state-active .ui-accordion-header-icon:before {
    content: "\f106"
}

.settingPanel .buttonBox {
    display: none
}

@media screen and (max-width: 767px) {
    .formWrapper {
        padding-left: 0 !important;
        padding-right: 0 !important
    }
    .productWrapper {
        padding: 0 !important
    }
    .policyWrapper .owl-carousel,
    .newsBox .owl-carousel {
        display: block !important
    }
    .productBox .description h2,
    .productBox .description a,
    .accessWrapper .accessInput .accessBox h3 {
        font-size: 20px
    }
    .accessWrapper .accessInput .accessBox {
        width: 80%
    }
    .settingPanel .inputWrapper {
        padding: 30px 0 !important
    }
    header .widthBox {
        padding: 10px 15px
    }
}

.alert {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 60px;
    padding: 8px 10px
}

.alert-success {
    background: #d2f7d2;
    color: green;
    border: 1px solid
}

.modal,
.modal-box {
    z-index: 900;
}

.modal-sandbox {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: transparent;
}

.modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .8);
    overflow: auto;
    z-index: 1001;
}

.modal-box {
    position: relative;
    width: 80%;
    max-width: 580px;
    margin: 100px auto;
    animation-name: modalbox;
    animation-duration: .3s;
    animation-timing-function: ease-out;
}

.modal-header {
    padding: 20px 20px;
    background: #fff;
    color: #004271;
    font-size: 20px;
}

.modal-body {
    background: #fff;
    padding: 40px 40px;
    text-align: center;
}

.modal-body img {
    border: 0px;
    outline: 0;
    margin: 0 auto;
}


/* Close Button */

.close-modal {
    text-align: right;
    cursor: pointer;
}


/* Animation */

@-webkit-keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}

@keyframes modalbox {
    0% {
        top: -250px;
        opacity: 0;
    }
    100% {
        top: 0;
        opacity: 1;
    }
}