@import url(http://fonts.googleapis.com/css?family=Arimo);
@import url(http://fonts.googleapis.com/css?family=Roboto);

/*main style*/
body {
    font-family:  Helvetica,Arial,sans-serif;
    color: #000;
    line-height: 160%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    margin:0 auto;
    /* //background-image: url('../img/bg_main.jpg'); */

}
.container fieldset {
    display: block;	
    padding: 15px 0px 15px 0px;
    border: none;
    /*transparent lite silver color*/
    background: rgba(255,255,255,.9);
}
/*border of each fieldset*/
.container fieldset + fieldset {
    border-top: 1px solid rgba(0,0,0,.1);
}
.container section {
    margin-bottom: 10px;
}


.container li {
    font-size: 14px;
    margin-top: 5px;
}

.container .label {
    display: block;
    margin-bottom: 6px;
    line-height: 19px;
}
.container .label.col {
    margin: 0;
    padding-top: 10px;
}
.container .input,
.container .select,
.container .textarea,
.container .button {
    position: relative;
    display: block;
}
.container .input input,
.container .select select,
.container .textarea textarea {

    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    height: 39px;
    padding: 8px 10px;
    outline: none;
    border-width: 2px;
    border-style: solid;
    border-radius: 0;
    background: #f5f5f5;
    font: 14px  Arial, Helvetica, sans-serif;
    color: #2a8ed5;
    appearance: normal;
    -moz-appearance: none;
    -webkit-appearance: none;
}

/**/
/* selects */
/**/
.container .select i {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 5px;
    height: 11px;
    background: #f5f5f5;
    box-shadow: 0 0 0 12px #fff;
}
.container .select i:after,
.container .select i:before {
    content: '';
    position: absolute;
    right: 0;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.container .select i:after {
    bottom: 0;
    border-top: 4px solid #404040;
}
.container .select i:before {
    top: 0;
    border-bottom: 4px solid #404040;
}
.container .select-multiple select {
    height: auto;
}


/**/
/* textareas */
/**/
.container .textarea textarea {
    height: auto;
    resize: none;
}
.container .textarea-resizable textarea {
    resize: vertical;	
}
.container .textarea-expandable textarea {
    height: 39px;
}
.container .textarea-expandable textarea:focus {
    height: auto;
}



/**/
/* buttons */
/**/
.container .button {
    float: right;
    height: 39px;
    overflow: hidden;
    margin: 10px 0 0 0px;
    padding: 0 25px;
    outline: none;
    border: 0;
    font: 300 15px/39px  Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}
.container .icon-append {
    position: absolute;
    top: 5px;
    width: 29px;
    height: 29px;
    font-size: 15px;
    line-height: 29px;
    text-align: center;
    right: 5px;
    padding-left: 3px;
    border-left-width: 1px;
    border-left-style: solid;
}
.container .input + input,
.container .textarea + textarea {
    padding-left: 46px;
}
.container .input .icon-append + input,
.container .textarea .icon-append + textarea {
    padding-right: 46px;
}
.container .input + .icon-append + input,
.container .textarea + .icon-append + textarea {
    padding-left: 46px;
}


/**/
/* grid */
/**/
.container .row {
    padding-left: 15px;
    padding-right: 15px;
}
.container .row:after {
    content: '';
    display: table;
    clear: both;
}
.container .col {
    float: left;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.container .col-name {
    width: 50%;
}

.container .col-lists {
    width: 40%;
}
@media screen and (max-width: 600px) {
    .container .col {
        float: none;
        width: 100%;
    }
}




/**/
/* tooltips */
/**/
.container .tooltip {
    position: absolute;
    z-index: 1;
    left: -9999px;
    padding: 2px 8px 3px;
    font-size: 11px;
    line-height: 16px;
    font-weight: 400;
    background: rgba(0,0,0,0.9);
    color: #fff;
    opacity: 0;
    transition: margin 0.3s, opacity 0.3s;
    -o-transition: margin 0.3s, opacity 0.3s;
    -ms-transition: margin 0.3s, opacity 0.3s;
    -moz-transition: margin 0.3s, opacity 0.3s;
    -webkit-transition: margin 0.3s, opacity 0.3s;
}
.container .tooltip:after {
    content: '';
    position: absolute;
}
.container .input input:focus + .tooltip,
.container .textarea textarea:focus + .tooltip {
    opacity: 1;	
}

.container .tooltip-top-right {
    bottom: 100%;
    margin-bottom: 15px;
}
.container .tooltip-top-right:after {
    top: 100%;
    right: 16px;	
    border-top: 4px solid rgba(0,0,0,0.9);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}
.container .input input:focus + .tooltip-top-right,
.container .textarea textarea:focus + .tooltip-top-right {
    right: 0;
    left: auto;
    margin-bottom: 5px;
}

.container .tooltip-right {
    top: 9px;
    white-space: nowrap;
    margin-left: 15px;
}
.container .tooltip-right:after {
    top: 6px;
    right: 100%;
    border-top: 4px solid transparent;
    border-right: 4px solid rgba(0,0,0,0.9);
    border-bottom: 4px solid transparent;
}
.container .input input:focus + .tooltip-right,
.container .textarea textarea:focus + .tooltip-right {
    left: 100%;
    margin-left: 5px;
}
.container .tooltip-bottom-right {
    top: 100%;
    margin-top: 15px;
}
.container .tooltip-bottom-right:after {
    bottom: 100%;
    right: 16px;	
    border-right: 4px solid transparent;
    border-bottom: 4px solid rgba(0,0,0,0.9);
    border-left: 4px solid transparent;
}
.container .input input:focus + .tooltip-bottom-right,
.container .textarea textarea:focus + .tooltip-bottom-right {
    right: 0;
    left: auto;
    margin-top: 5px;
}

/**/
/* normal state */
/**/
.container .input input,
.container .select select,
.container .textarea textarea,
.container .checkbox i,
.container .icon-append {
    border-color: #2a8ed5;
    transition: border-color 0.3s;
    -o-transition: border-color 0.3s;
    -ms-transition: border-color 0.3s;
    -moz-transition: border-color 0.3s;
    -webkit-transition: border-color 0.3s;
}
.container .button {
    background-color: #1e90ff;
    opacity: 0.8;
    transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -webkit-transition: opacity 0.2s;
}

.container .icon-append {
    color: #2a8ed5;
}


/**/
/* hover state */
/**/
.container .input:hover input,
.container .select:hover select,
.container .textarea:hover textarea,
.container .checkbox:hover i {
    border-color: #8dc9e5;
}
.container .button:hover {
    opacity: 1;
}
.container .button1:hover {
    opacity: 1;
}
.container .button2:hover {
    opacity: 1;
}
.container .button3:hover {
    opacity: 1;
}


/**/
/* focus state */
/**/
.container .input input:focus,
.container .select select:focus,
.container .textarea textarea:focus,
.container .checkbox input:focus + i {
    border-color: #2da5da;
}


/**/
/* file inputs */
/**/
.container .input-file .button {
    position: absolute;
    top: 4px;
    right: 4px;
    float: none;
    height: 31px;
    margin: 0;
    padding: 0 20px;
    font-size: 13px;
    line-height: 31px;
}
.container .input-file .button:hover {
    box-shadow: none;
}
.container .input-file .button input {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    font-size: 30px;
    cursor: pointer;
    opacity: 0;
}


@-webkit-keyframes bounceIn { 
    0% { 
        opacity: 0; 
        -webkit-transform: scale(.3); 
    } 

    50% { 
        opacity: 1; 
        -webkit-transform: scale(1.05); 
    } 

    70% { 
        -webkit-transform: scale(.9); 
    } 

    100% { 
        -webkit-transform: scale(1); 
    } 
} 

@keyframes bounceIn { 
    0% { 
        opacity: 0; 
        transform: scale(.3); 
    } 

    50% { 
        opacity: 1; 
        transform: scale(1.05); 
    } 

    70% { 
        transform: scale(.9); 
    } 

    100% { 
        transform: scale(1); 
    } 
} 

.bounceIn { 
    -webkit-animation-name: bounceIn; 
    animation-name: bounceIn; 
}

@-webkit-keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;} 
} 
@keyframes fadeIn { 
    0% {opacity: 0;} 
    100% {opacity: 1;} 
} 
.fadeIn { 
    -webkit-animation-name: fadeIn; 
    animation-name: fadeIn; 
}

.nav > li > a {
    color: #fff;
}

.nav > li > a:hover {
    background: #fff;
    color: #000;
}

#activeArea{
    -webkit-transition: fill .4s ease;
    -moz-transition: fill .4s ease;
    -o-transition: fill .4s ease;
    transition: fill .4s ease;   
    fill:#000;
}
#activeArea:hover path{
    -webkit-transition: fill 0.3s ease;
    -moz-transition: fill 0.3s ease;
    -o-transition: fill 0.3s ease;
    transition: fill 0.3s ease;  
    fill:#e6e6e6;
}

.navbarBrand img{
    height: 48px;
    width:216px;
}

#bottommap1:hover{
    margin-left:10px;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}

#bottommap2:hover{
    margin-left:10px;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}

/*nav styles*/
.newsbar {
    background: white; border-top: 6px solid hsl(180, 40%, 60%);
    width: 200px; margin: 0 auto;
}
.newsbar li {
    list-style-type: none;
    /*relative positioning for list items along with overflow hidden to contain the overflowing ripple*/
    position: relative;
    overflow: hidden;
}
.newsbar li a {
    font: normal 14px/28px Montserrat; color: hsl(180, 40%, 40%);
    display: block; padding: 10px 15px;
    text-decoration: none;
    cursor: pointer; /*since the links are dummy without href values*/
    /*prevent text selection*/
    user-select: none;
    /*static positioned elements appear behind absolutely positioned siblings(.ink in this case) hence we will make the links relatively positioned to bring them above .ink*/
    position: relative;
}

/*.ink styles - the elements which will create the ripple effect. The size and position of these elements will be set by the JS code. Initially these elements will be scaled down to 0% and later animated to large fading circles on user click.*/
.ink {
    display: block; position: absolute;
    background: hsl(180, 40%, 80%);
    border-radius: 100%;
    transform: scale(0);
}
/*animation effect*/
.ink.animate {animation: ripple 0.65s linear;}
@keyframes ripple {
    /*scale the element to 250% to safely cover the entire link and fade it out*/
    100% {opacity: 0; transform: scale(2.5);}
}

.footerDrop ul {
    position:absolute;
    display:none;
}

.footerDrop:hover ul {
    position:absolute;
    display:block; left:120px;
    top:0;
}

.badge {
    background: #fff;
    border-radius: 3px;
}

.countVisitors {
    color: #fd964c;
}

.top_bar {
    position: absolute;
    z-index: 5;
    text-align: left;
    padding: 0;
    margin: 0;
    top: 35px;
}

.top_list {
    margin: 0;
    padding: 10px 0 0 0;
}

.top_list li {
    list-style: none;
    display: inline;
    color: #000;
}

#svgmap {
    z-index: 0;
}

/*list*/

.content .statTop {
    padding-top:65px;
}

.statTop .listParent {
    position:relative; 
    margin-bottom: 0;
}

.sitemap {
    height:600px; 
    margin-top: 50px;
}

.mapstyle {
    top: 0; 
    z-index:0; 
    padding:0;
}

.secondstyle {
    padding-top: 0; 
    margin-top: 0;
}

.secondstyle .container {
    padding-top: 0; 
    margin-top: 0;
}

.oroltsoo {
    padding-top: 30px; 
    padding-bottom:60px;
}

.oroltsooblock .col-xs-2 {
    padding: 20px;
}

.iconstyle {
    position: absolute;
}

.iconstyle img {
    width: 110px; 
    height: 110px; 
    margin-left:25px;
}

.oroltsoobox {
    margin-top:60px; 
    padding-top: 45px; 
    padding-bottom: 40px; 
    border: 1px solid #d2d2d2; 
    border-radius: 6px;
}

.oroltsoobox h3{
    color:#000; 
    font-size: 12px; 
    font-weight: 500;
}

.oroltsoobox p{
    text-align:justify; 
    color: #757575; 
    margin-top: 40px; 
    font-size: 12px;
    color:#000;
}

.oroltsoobox1 p{
    text-align:justify; 
    color: #6B6B6B; 
    margin-top: 38px; 
    font-size: 12px;
}

.oroltsoobox2 p{
    text-align:justify; 
    color: #757575; 
    margin-top: 25px; 
    font-size: 12px;
}

.oroltsoobox .oroltsoobutton{
    border-radius: 4px; 
    background: #ff9933; 
    margin-top: 40px; 
    color:#fff;
    text-align: center;
}

.newsArea {
    padding-top: 30px; 
    padding-bottom: 60px;
}

.panel-default > .newsBody {
    margin-top: 40px;
}

.panel-default > .newsBody > .row {
    padding-left:0px; padding-right:0px;
}

.newsColumn {
    padding-right: 10px; padding-left: 10px;
}

.photo-grid img {
    margin-bottom: 20px; width:100%;
}

.panel-body-margin > .row {
    padding-left: 0px; padding-right: 0px;
}

.chemStyle {
    margin-top: 50px;
}

.chemStyle > .row {
    margin-top: 20px;
}

.chemTitle {
    margin-top:15px; 
    margin-bottom: 25px;
}

.chemName {
    text-align:center;
}

.chemName p {
    color:#000; font-size:14px; font-weight:bold;
}

.chemContent {
    text-align: justify; padding-left: 0px; padding-right: 0px; margin-top: 20px;
}

.chemContent > .content1 {
    background:#fff; border: 1px solid #f5f5f5; padding: 20px;
}
.chemContent > .content2 {
    background:#fff; border: 1px solid #f5f5f5; padding: 20px;
}
.chemContent > .content3 {
    background:#fff; border: 1px solid #f5f5f5; padding: 20px;
}
.chemContent > .content4 {
    background:#fff; border: 1px solid #f5f5f5; padding: 20px;
}
.chemContent > .content5 {
    background:#fff; border: 1px solid #f5f5f5; padding: 20px;
}

.chemContent p {
    color: #202020;
}

.chemContent img {
    height: 140px;
}

.chanarStyle {
    margin-top: 70px;
}

.chanarStyle h3 {
    color:#192e4d; font-weight:500;
}

.sectionTimeline {
    margin-bottom:70px;
}

.contactUb {
    padding-top:50px; padding-bottom:50px;
}

.ubColumn {
    padding-right:60px;
}

.ubTitle {
    margin-bottom: 50px;
}

.ubTitle h3 {
    color:#192e4d; font-weight:500;
    text-transform: uppercase;
}

.uzegdel {
    margin-top:30px; padding-left: 0px; padding-right: 0px;
}

.uzegdel-num {
    padding-left: 0px; padding-right: 0px;
}

.contactUb img {
    text-align:center;
}

.contactArea {
    padding-left:60px;
}

.contactArea h3 {
    color:#192e4d; font-weight:500;
}

.contactBody {
    margin-top: 25px;
}

.contactButton {
    margin-top: 20px; padding-left: 0px; padding-right: 0px;
}

.footerMainLogo {
    border-right: 1px solid #1b5c89;
}

.footerContact {
    border-right: 1px solid #1b5c89; padding-left: 25px;
}

.footerContact h3 {
    font-weight: 400; font-size:20px;
    text-align: left;
    color:#fff;
}

.footerContact .row {
    padding-left: 0px; padding-right: 0px;
    text-align: left;
}

::-webkit-input-placeholder {
    color: #1f689c !important;
}
:-moz-placeholder {
    color: #1f689c !important;
}
::-moz-placeholder {
    color: #1f689c !important;
}
:-ms-input-placeholder {
    color: #1f689c !important;
}

#contact_name, #contact_email, #contact_phone, #contact_comment {background-color: #d4e8f7}

.footerVisit {
    border-right: 1px solid #1b5c89; ; padding-left: 25px;
}

.footerVisit h3 {
    font-weight: 400; font-size:20px;
    text-align: left;
    color:#fff;
}

.footerVisit .row {
    padding-left: 0px; padding-right: 0px;
    text-align: left;
}

.footerMenu {
    padding-left: 50px;
}

.footerMenu h3 {
    font-weight: 400; font-size:20px;
    text-align: left;
    color:#fff;
}

.footerMenu .row {
    padding-left: 0px; padding-right: 0px;
}

.footerMenu ul {
    text-align: left;
}
.statTop ul {
    padding:0;
    z-index: 999;
}

.statTop ul li {
    width:11.85%; 
    /* // margin-right: 5%;  */
    padding:0;
    background-color: white;
    float:left;
    border-radius: 4px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.statTop ul li p{
    font-size: 13px;
}

.statTop > ul > li:last-child {
    /* width:16%; */
    float:left;
    margin-right:0px;
}

.statTop > ul > li:last-child p {
    font-size: 11px;
}

.statTop > ul > li > .station_container > div > .row {
    margin-left:0px; 
    margin-right:0px;
    padding:0;
}

.statTop > ul > li > .station_container > div > .row > .rightSide {
    margin:0; 
    padding:0;
}

.statTop > ul > li > .station_container > div > .row > .rightSide > p {
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #fff;
    line-height: 20px;
}

.statTop > ul > li > .station_container > div > .row > .rightSide > h3 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    line-height: 36px;
}

.statTop > ul > li > .station_container > div > .row > .leftSide {
    text-align:left; 
    padding: 3px;
    background: #fafafa;
    line-height: 1.4;
}

.statTop > ul > li > .station_container > div > .row > .leftSide > p {
    font-size: 11px;
    padding: 0;
    text-align: center;
}

.statTop > ul > li > .station_container > div > .row > .bottomSide {
    text-align:left; 
    padding: 5px;
}

.statTop > ul > li > .station_container > div > .row > .bottomSide > h3 {
    color:#000;
    margin:0;
    padding:0;
}

@media (max-width: 1200px) {
    /*
    .statTop > ul > li > .station_container > div > .row > .rightSide {
        margin:0; 
        padding:1px 5px 5px 10px;
    }

    .statTop > ul > li > .station_container > div > .row > .rightSide > p {
        text-align: left;
        color: #fff;
        font-size: 10px;
    }

    .statTop > ul > li > .station_container > div > .row > .rightSide > h3 {
        margin: 0;
        text-align: left;
        color: #fff;
        font-size: 20px
    }

    .statTop > ul > li > .station_container > div > .row > .leftSide {
        text-align:left; 
        padding: 5px;
        background: #f3f3f3;
        line-height: 1.2;
    }

    .statTop > ul > li > .station_container > div > .row > .leftSide > p {
        font-size: 10px;
        padding: 0;
    }

    .statTop > ul > li > .station_container > div > .row > .bottomSide {
        text-align:left; 
        padding: 5px;
    }

    .statTop > ul > li > .station_container > div > .row > .bottomSide > h3 {
        color:#000;
        margin:0;
        padding:0;
    }
    */
}

@media (max-width: 650px) {
    .statTop ul li {
        width:20%; 
        margin-right: 5%; 
        padding:0;
        float:left;
    }

    .statTop > ul > li:last-child {
        width:20%;
        float:left;
        margin-right:0px;
    }

    .statTop > ul > li > .station_container > div > .row {
        margin-left:0px; 
        margin-right:0px;
        padding:0;
    }
    .statTop > ul > li > .station_container > div > .row > .rightSide {
        margin:0; 
    }

    .statTop > ul > li > .station_container > div > .row > .rightSide > p {
        text-align: left;
        color: #fff;
        font-size: 8px;
    }

    .statTop > ul > li > .station_container > div > .row > .rightSide > h3 {
        margin: 0;
        text-align: left;
        color: #fff;
        font-size: 18px
    }

    .statTop > ul > li > .station_container > div > .row > .leftSide {
        text-align:left; 
        padding: 5px;
        background: #f3f3f3;
        line-height: 1.2;
    }

    .statTop > ul > li > .station_container > div > .row > .leftSide > p {
        font-size: 9px;
        padding: 0;
    }

    .statTop > ul > li > .station_container > div > .row > .bottomSide {
        text-align:left; 
        padding: 5px;
    }

    .statTop > ul > li > .station_container > div > .row > .bottomSide > h3 {
        color:#000;
        margin:0;
        padding:0;
    }
}

.statBottom ul {
    margin-top: -72px;
    padding:0;
    z-index: 999;
}

.statBottom ul li {
    width:11.85%; 
    /* // margin-right: 5%;  */
    padding:0;
    background-color: white;
    float:left;
    border-radius: 4px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.statBottom ul li p{
    font-size: 13px;
}

.statBottom > ul > li:last-child {
    /* width:16%; */
    float:left;
    margin-right:0px;
}

.statBottom > ul > li:last-child p {
    font-size: 11px;
}

.statBottom > ul > li > .station_container > div > .row {
    margin-left:0px; 
    margin-right:0px;
    padding:0;
}

.statBottom > ul > li > .station_container > div > .row > .rightSide {
    margin:0; 
    padding:0;
}

.statBottom > ul > li > .station_container > div > .row > .rightSide > p {
    background-color: rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #fff;
    line-height: 20px;
}

.statBottom > ul > li > .station_container > div > .row > .rightSide > h3 {
    margin: 0;
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
    line-height: 24px;
    padding-top: 5px;
}

.statBottom > ul > li > .station_container > div > .row > .leftSide {
    text-align:left; 
    padding: 3px;
    background: #fafafa;
    line-height: 1.4;
}

.statBottom > ul > li > .station_container > div > .row > .leftSide > p {
    font-size: 11px;
    padding: 0;
    text-align: center;
}

.statBottom > ul > li > .station_container > div > .row > .bottomSide {
    text-align:left; 
    padding: 5px;
}

.statBottom > ul > li > .station_container > div > .row > .bottomSide > h3 {
    color:#000;
    margin:0;
    padding:0;
}

@media (max-width: 1200px) {
    /*
    .statBottom > ul > li > .station_container > div > .row > .rightSide > p {
        text-align: left;
        color: #fff;
        font-size: 10px;
        line-height: 1.2;
    }

    .statBottom > ul > li > .station_container > div > .row > .rightSide > h3 {
        margin: 0;
        text-align: left;
        color: #fff;
        font-size: 20px;
    }

    .statBottom > ul > li > .station_container > div > .row > .leftSide {
        text-align:left; 
        padding: 5px;
        background: #f3f3f3;
        line-height: 1.2;
    }

    .statBottom > ul > li > .station_container > div > .row > .leftSide > p {
        font-size: 10px;
        color:#000;
    }

    .statBottom > ul > li > .station_container > div > .row > .bottomSide > h3 {
        color:#000;
        margin:0;
        padding:0;
    }

    .statBottom > ul > li > .station_container > div > .row > .bottomSide {
        text-align:left; 
        padding: 5px;
    }
    */
}

@media (max-width: 650px) {
    .statBottom ul li {
        width:20%; 
        margin-right: 5%; 
        padding:0;
        float:left;
    }

    .statBottom > ul > li:last-child {
        width:20%;
        float:left;
        margin-right:0px;
    }

    .statBottom > ul > li > .station_container > div > .row {
        margin-left:0px; 
        margin-right:0px;
        padding:0;
    }

    .statBottom > ul > li > .station_container > div > .row > .rightSide {
        margin:0; 
    }

    .statBottom > ul > li > .station_container > div > .row > .rightSide > p {
        text-align: left;
        color: #fff;
        font-size: 10px;
    }

    .statBottom > ul > li > .station_container > div > .row > .rightSide > h3 {
        margin: 0;
        text-align: left;
        color: #fff;
        font-size: 18px;
    }

    .statBottom > ul > li > .station_container > div > .row > .leftSide {
        text-align:left; 
        padding: 5px;
        padding-top: 0;
        /* background: #f3f3f3; */
        line-height: 1.4;
    }

    .statBottom > ul > li > .station_container > div > .row > .leftSide > p {
        font-size: 9px;
        color:#000;
    }

    .statBottom > ul > li > .station_container > div > .row > .bottomSide > h3 {
        color:#000;
        margin:0;
        padding:0;
    }
}


/*test*/
.statDate {
    font-size: 10px
}

.box-share {
    position: absolute;
    z-index: 999;
    /* height: 54px; */
    bottom: 0;
    overflow:hidden;
    transition: height 450ms;
    -moz-transition: height 450ms;
    -webkit-transition: height 450ms;
}

.box-share:hover {
    /* height: 95px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.35);
    -moz-box-shadow:    0px 0px 8px 0px rgba(50, 50, 50, 0.35);
    box-shadow:         0px 0px 8px 0px rgba(50, 50, 50, 0.35); */
}

.share-title {
    width: 100%;
    text-align: center;
    background: white;
}

.share-items {
    width: 100%;
    background: #fff;
}

.item {
    display: inline-block;
    height: 100%;
    float:left;
    text-align: center;
}

.box-share1 {
    position: absolute;
    width: 16%;
    z-index: 999;
    /* height: 54px; */
    top: 0;
    overflow:hidden;
    transition: height 450ms;
    -moz-transition: height 450ms;
    -webkit-transition: height 450ms;
}

.box-share1:hover {
    /* height: 95px;
    -webkit-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.35);
    -moz-box-shadow:    0px 0px 8px 0px rgba(50, 50, 50, 0.35);
    box-shadow:         0px 0px 8px 0px rgba(50, 50, 50, 0.35);
    z-index:999; */
}

.listParent li:nth-child(1) {
    margin-left:0;
}
.listParent li:nth-child(2) {
    margin-left:12.5%;
}
.listParent li:nth-child(3) {
    margin-left:25%;
}
.listParent li:nth-child(4) {
    margin-left:37.5%;
}
.listParent li:nth-child(5) {
    margin-left:50%;
}
.listParent li:nth-child(6) {
    margin-left:62.5%;
}
.listParent li:nth-child(7) {
    margin-left:75.5%;
}
.listParent li:nth-child(8) {
    margin-left:88%;
}

.listParent .box-share:nth-child(1) {
    margin-left:0;
}
.listParent .box-share:nth-child(2) {
    margin-left:14.35%;
}
.listParent .box-share:nth-child(3) {
    margin-left:28.7%;
}
.listParent .box-share:nth-child(4) {
    margin-left:43.05%;
}
.listParent .box-share:nth-child(5) {
    margin-left:57.4%;
}
.listParent .box-share:nth-child(6) {
    margin-left:71.75%;
}
.listParent .box-share:nth-child(7) {
    margin-left:86.1%;
}

.titleh3 {
    color:#192e4d; 
    font-weight: 500;
}

.test132:hover {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    -o-transform: scale(2);
    transform: scale(2);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}


.chart {
    position: relative;
    display: inline-block;
    text-align: center;
}
.chart canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.percent {
    display: inline-block;
    line-height: 110px;
    z-index: 2;
}
.col-md-4 span{
    color: #888888;
    font-size: 12px;
    margin: 0 auto;
    text-align: center;
}

.col-md-4 span:after {
    /* //content:'%'; */
}
.percent:after {
    content: '%';
    margin-left: 0.1em;
    font-size: .8em;
}

.ss-style-triangles::before,
.ss-style-triangles::after {
    left: 50%;
    width: 100px;
    height: 100px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.ss-style-triangles::before {
    top: -50px;
    background: #000;
    z-index:90;
}

.ss-style-triangles::after {
    bottom: -50px;
    z-index: 10;
    background: inherit;
}

.detailStat {
    float:right;  
    margin-top: 65px;
    width:100%;
}

.detailtable {
    border-radius: 4px;
    overflow: hidden;
    background:#fff; margin-top:40px; padding: 15px; padding-top:0px; -webkit-box-shadow: 0px 0px 8px 0px rgba(50, 50, 50, 0.35);
    -moz-box-shadow:    0px 0px 8px 0px rgba(50, 50, 50, 0.35);

    box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.35);
}

.detailtable .row {
    padding:0;
}

.detailtitlerow {
    padding:0; margin-top: 10px; line-height: 1.4; border-bottom: 1px solid #f3f3f3;
}

.detailtitlerow .col-xs-3 {
    padding: 0;
}

.detailtitlerow .col-xs-4 {
    padding: 0;
}

.detailcontentrow {
    padding:0; line-height: 1.5; 
    border-bottom: 1px dotted #f3f3f3;
}

.detailcontentrow .col-xs-3 {
    padding: 0;
}

.detailcontentrow .col-xs-4 {
    padding: 0;
}

.detailElementTitle {
    font-size: 12px; color: #2b8ed4; 
    text-transform: uppercase; 
    font-weight: bold;
}

.detailTitle h3{
    color:#000; font-size: 18px; margin-top:0
}

.detailTemp {
    padding-left:30px;
}

.detailtempBox {
    border-radius: 4px;
    text-align:center;
}

.detailtempBox h1 {
    margin:6px 0 6px 0;
    color:#fff;
}

.tempdetail {
    line-height: 1.4;
}
.tempdetail p{
    font-size: 12px;
}

@media only screen and (max-width : 320px) {
    /* Styles */

}

.percentStatTable0 {
    width:220px; 
    height:65px;  
    background: #fff; 
    margin-bottom: 3px;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
    margin-left: 10px;
}

.percentStatTable0 h1 {
    color: #2b8ed4;
    line-height: 1;
    padding: 0;
    margin: 0;
    font-size: 30px;
}
.percentStatTable0 p {
    color: #2b8ed4;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.percentStatTable1 {
    width:230px; 
    height:60px; 
    border-left: 10px solid red; 
    background:#fff; 
    margin-bottom: 3px;
}

.percentStatTable2 {
    width:230px; 
    height:60px; 
    border-left: 10px solid #fd964c; 
    background:#fff; 
    margin-bottom: 3px;
}

.percentStatTable3 {
    width:230px; 
    height:60px; 
    border-left: 10px solid #11d45f; 
    background:#fff; 
    margin-bottom:15px;
    border-bottom-right-radius: 4px;
}

.percentStatTitle {
    position: relative; 
    top: 50%; 
    transform: translateY(-50%);
}

.bottomSide h3 {
    font-size: 18px;
}

.newspageBody {
    padding-right: 0; padding-left: 0;
}

.newspageBody h3 {
    color:#192e4d; font-weight: 300;
}

.newspageBody > .row {
    padding-top: 10px; 
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right:15px;
}

.newspageBody > .row > .col-md-3 {
    padding-right: 0;
    padding-left: 0;
}

.newspageBody > .row > .col-md-3 > .row {
    padding-left: 0;
    padding-right: 0;
}

.newspageBody > .row > .col-md-3 > .demo-row {
    background: #2b8ed4; padding-bottom:40px; margin-bottom: 35px;
}

.newspageBody > .row > .col-md-3 > .row > .list-group {
    padding-left: 15px;
    padding-right: 15px;
}

.newspageBody > .row > .col-md-9 {
    padding-right: 0;
    margin-top:-10px;
}

.newspageBody > .row > .col-md-9 > .row {
    padding-right: 0; padding-left: 0; margin-bottom: 15px; padding-top: 0;
}

.newspageBody .col-md-9 > .row > .col-md-4 {
    padding-left: 0;
}

.newspageBody .col-md-9 {
    padding-left: 30px;
}

.pageNumber {
    text-align: right;
    padding-right: 30px;
}

@media (max-width: 712px) {
    .breadcrumb {
        padding-top: 64px;
    }

    nav#nav-main li a {
        font-size: 10px;
        line-height: 0.5;
    }
}

@media (max-width: 992px) {
    .newspageBody .col-md-9 {
        padding-left: 0px;
    }
    .pageNumber {
        text-align: center;
    }
    nav#nav-main li a {
        font-size: 8px;
        line-height: 0.5;
    }
}



.newspageBox {
    padding-right: 0px; padding-left: 30px;
}

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

.newspageContent {
    padding-left: 0px; padding-right: 0px;
}

.navbar-brand img {
    height: 48px; 
    margin-top: 8px;
}

.mapbuttonArea {
    position:absolute; z-index:9; margin-top: 85px;
}

.googlemapButton {
    border-right:5px solid red; width: 125px;
}

.sitemapButton {
    border-right:5px solid red; width: 125px;
}

.mapArea {
    position: absolute; z-index: 0; width: 100%; height: 600px;
}

.oroltsoobox a {
    text-decoration: none;
}

.newsreadmore {
    padding-left: 0px; padding-right: 0px; padding-top:10px;
}

.newsreadmore .readmore {
    color:#fd964c;
    font-size: 14px;}

.topspace {
    padding-top: 59px;
}

.leftSideTarhalt {
    position: absolute; z-index: 7; 
    top: 20%;
}

.leftSideTarhalt p {
    font-size:12px;
}

.leftSideTarhalt1 {
    position: absolute; z-index: 7; 
    top: 35%;
}

.leftSideTarhalt1 p {
    font-size:12px;
    color:#000;
}

.rightLogin {
    width: 240px; position:absolute; right:0; z-index:7; 
    top: 24%; 
    background: rgba(243, 243, 243, 0.7);
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;

    /* padding:15px; */
}

.tarhaltGraph {
    min-width: 310px; max-width: 800px; height: 400px; margin: 0 auto;
}

.graphTable {
    padding-top: 50px;
    padding-bottom: 50px;
}

.noPadding > .col-md-6 {
    padding-left: 0;
    padding-right:0;
}

.languageButton {
    height: 20px; width: 45px; line-height: 1px; margin-top: 10px;
}

.languageSwitch > .languageButton {
    line-height: 0;
    padding: 15px 13px;
    border-radius: 4px;
}

ul#slider1 {
    width: 100%;
    height: 585px;
    list-style: none;
}
/*
  Adjust the left and right position to be about the same size as the
  outer wrapper padding (.anythingslider-metallic)
*/
.prev-thumb, .next-thumb {
    display: none;
    position: absolute;
    width: 140px;
    height: 70px;
    left: 25px; /* adjust this as needed */
    background: #0355a3;
    top: 50%;
    margin-top: -35px;
}
.next-thumb {
    left: auto;
    right: 25px; /* adjust this as needed */
}
.prev-thumb img, .next-thumb img {
    width: 100px;
    height: 60px;
    margin: 5px;
}
.prev-thumb img {
    float: right;
}
.back:hover ~ .prev-thumb, .forward:hover ~ .next-thumb, .prev-thumb:hover, .next-thumb:hover {
    display: inline;
}

.logoScroll {
    width: 400px;
    height:120px;
}

.block {
    text-align: center;
}

.block h1 {
    font-size: 136px;
    font-weight: bold;
    color: #2b8fd5;
    line-height: 0.8;
}

.block h3 {
    color: #2b8fd5;
    line-height: 1;
    font-size: 23px;
}

/* The ghost, nudged to maintain perfect centering */
.block:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em; /* Adjusts for spacing */
}

/* The element to be centered, can
   also be of any width and height */ 
.centered {
    display: inline-block;
    vertical-align: middle;
}

.failtext h4 {
    color: #fff;
}
.failtext p{
    line-height: 2;
    color: #fff;
}

.failtext p {
    font-size: 12px;
}

.btn-fail { 
    color: #FFFFFF; 
    background-color: #ff8610; 
    border-color: #ff8610; 
} 

.btn-fail:hover, 
.btn-fail:focus, 
.btn-fail:active, 
.btn-fail.active, 
.open .dropdown-toggle.btn-fail { 
    color: #FFFFFF; 
    background-color: #0E77C2; 
    border-color: #2B8FD5; 
} 

.btn-fail:active, 
.btn-fail.active, 
.open .dropdown-toggle.btn-fail { 
    background-image: none; 
} 

.btn-fail.disabled, 
.btn-fail[disabled], 
fieldset[disabled] .btn-fail, 
.btn-fail.disabled:hover, 
.btn-fail[disabled]:hover, 
fieldset[disabled] .btn-fail:hover, 
.btn-fail.disabled:focus, 
.btn-fail[disabled]:focus, 
fieldset[disabled] .btn-fail:focus, 
.btn-fail.disabled:active, 
.btn-fail[disabled]:active, 
fieldset[disabled] .btn-fail:active, 
.btn-fail.disabled.active, 
.btn-fail[disabled].active, 
fieldset[disabled] .btn-fail.active { 
    background-color: #2B8FD5; 
    border-color: #2B8FD5; 
} 

.btn-fail .badge { 
    color: #2B8FD5; 
    background-color: #FFFFFF; 
}

.map_label {
    padding-bottom:10px;
}

.text-download {
    color:#000;
    padding-left: 5px;
}

.icon-download {
    vertical-align: middle;
    font-size: 30px;
    color:#2B8FD5;
}

.download-title {
    color: #428bca; font-size: 14px; font-weight:bold; margin-bottom: 10px;
}

.download-col {
    padding-top: 15px;
}

.download-col a {
    margin-left:0;
    display: inline-block;
    margin-right:10px;
    margin-bottom: 10px;
    text-decoration: none;
    width: 100%;
}

.text-download:hover {
    color: #2B8FD5;
}

#player {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: #000;
    position: relative;
    border: solid 1px #000;
}

.youtube .carousel {
    width: 15%;
    height: 100%;
    overflow: auto;
    position: absolute;
    right: 0px;
    z-index: 3;
}

.youtube .thumbnail {
    margin: 2px;
    height:  110px;
    width: 94%;
    border:1px solid #000;
    border-bottom:1px solid #f5f5f5; 
}

.youtube iframe.player {
    width: 85%;
    height: 600px;  
    overflow: auto;
    border: 0;
}

.subMenu1 {
    border-bottom:1px dotted #f5f5f5;
    line-height: 1;
    margin-top:0;
    padding:0;
    margin-left: 20px;
}
.subMenu1 a{
    color:#717171;
    text-decoration: none;
}

.subMenu1 a:hover{

}
.subMenu2 {
    border-bottom:1px dotted #f5f5f5;
    line-height: 1;
    margin-top:0;
    padding:0;
    padding-left: 20px;
}
.subMenu2 a{
    color:#000;
    text-decoration: none;
}

.subMenu2 a:hover{

}
.subMenu3 {
    border-bottom:1px dotted #f5f5f5;
    line-height: 1;
    margin-top:0;
    padding:0;
    padding-left: 20px;
}
.subMenu3 a{
    color:#000;
    text-decoration: none;
}

.subMenu3 a:hover{

}

.uzegdel .col-md-12 {
    padding-left:0;
}

.newsArea img{
    border-style: none;
    vertical-align: top;
}
.newsArea a{
    text-decoration: underline;
    color: #9fa4a4;
}
.newsArea a:hover{text-decoration: none;}
.newsArea a:active{background-color: transparent;}

/* clean fix */
.previews .holder:after,
.box:after {
    content: '';
    display: block;
    clear: both;
}

.box {
    background: #fff;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    -webkit-box-shadow: 0 2px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px rgba(0, 0, 0, 0.05), 0 0 1px rgba(0, 0, 0, 0.2);
}

/* preview articles */
.previews{
    margin: 55px 0 30px;
    overflow: hidden;
}
.previews .holder{
    margin: -63px 0 63px -63px;
}

/* preview article */
.previews .box{
    float: left;
    padding: 0 20px 57px 24px;
    position: relative;
    line-height: 16px;
}

.box h3 {
    height: 60px; overflow: hidden;
}

.box-news-body {
    height: 95px; overflow: hidden;
}
.box a {
    text-decoration: none;
}
.img-preview{
    position: relative;
    margin: 0 -20px 15px -25px;
}
.img-preview:hover {
    opacity: 0.7;
    transition: opacity .5s ease-out;
    -moz-transition: opacity .5s ease-out;
    -webkit-transition: opacity .5s ease-out;
    -o-transition: opacity .5s ease-out;
}

.img-preview img {
}

.img-preview a{display: block;}
.icon,
.plus,
.icon:active,
.plus:active{
    position: absolute;
    left: 53%;
    margin-left: -34px;
    bottom: -33px;
    background: rgba(67, 67, 67, .15);
    width: 52px;
    height: 52px;
    padding: 6px;
    text-indent: -9999px;
    overflow: hidden;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    border-radius: 32px;
}
.icon span,
.plus span{
    display: block;
    height: 40px;
    width: 40px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
}

.previews h3{
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
    letter-spacing: 1px;
    word-spacing: -1px;
    color: #000000;
    margin: 0 0 12px;
}
.box.doc h3{padding-left: 5px;}
.previews h3 a{
    color: #9ab26b;
    text-decoration: none;
}
.previews .heading{padding: 10px 0 0;}
.previews p{
    /* margin: 0 0 15px; */
    word-spacing: 2px;
    text-align: justify;
    color: #757575;
}
.bottom-panel{
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 1px solid #e9e8e8;
    border-bottom: 1px solid #e9e8e8;
    background: #fafafa;
    width: 100%;
    height: 45px;
    padding: 13px 21px 0 20px;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    overflow: hidden;
}
.bottom-panel a{text-decoration: none;}
.bottom-panel a:hover{text-decoration: underline;}
.btn-more{
    font-size: 12px;
    color:#757575;
    float: right;
    padding: 1px 0 0 16px;

}

.date{
    font-size: 12px;
    color:#f5f5f5;
    float: left;
    padding: 1px 0 0 22px;
    background: url(../img/news/ico-calendar.png) no-repeat 0 2px;
    /* width: 100%; */
}

.wrap{
    width: 100%;
    margin: 0 0 64px;
}

.news-col {
    padding-left: 15px; 
    padding-right: 15px;
}

@media screen and (max-width: 1200px) {
    .news-col {
        padding-left:0px;
        padding-right:0px;
    }
}

.front-pagination a {
    text-decoration: none;
}

.front-pagination p:hover {
    color: #2b8ed4;
}

.front-pagination p {
    font-size: 13px;
    color: #5F5F5F;
    line-height: 22px;
}

.activeSection p{
    font-size: 14px;
    color: #2b8ed4;
    text-decoration: none;
    line-height: 30px;
}

@font-face {
    font-family: 'entypo';
    font-style: normal;
    font-weight: normal;
    src: url('http://weloveiconfonts.com/api/fonts/entypo/entypo.eot');
    src: url('http://weloveiconfonts.com/api/fonts/entypo/entypo.eot?#iefix') format('eot'), 
        url('http://weloveiconfonts.com/api/fonts/entypo/entypo.woff') format('woff'), 
        url('http://weloveiconfonts.com/api/fonts/entypo/entypo.ttf') format('truetype'), 
        url('http://weloveiconfonts.com/api/fonts/entypo/entypo.svg#entypo') format('svg');
}

.entypo-note:before{content:"\266a"}.entypo-note-beamed:before{content:"\266b"}.entypo-music:before{content:"\1f3b5"}.entypo-search:before{content:"\1f50d"}.entypo-flashlight:before{content:"\1f526"}.entypo-mail:before{content:"\2709"}.entypo-heart:before{content:"\2665"}.entypo-heart-empty:before{content:"\2661"}.entypo-star:before{content:"\2605"}.entypo-star-empty:before{content:"\2606"}.entypo-user:before{content:"\1f464"}.entypo-users:before{content:"\1f465"}.entypo-user-add:before{content:"\e700"}.entypo-video:before{content:"\1f3ac"}.entypo-picture:before{content:"\1f304"}.entypo-camera:before{content:"\1f4f7"}.entypo-layout:before{content:"\268f"}.entypo-menu:before{content:"\2630"}.entypo-check:before{content:"\2713"}.entypo-cancel:before{content:"\2715"}.entypo-cancel-circled:before{content:"\2716"}.entypo-cancel-squared:before{content:"\274e"}.entypo-plus:before{content:"\2b"}.entypo-plus-circled:before{content:"\2795"}.entypo-plus-squared:before{content:"\229e"}.entypo-minus:before{content:"\2d"}.entypo-minus-circled:before{content:"\2796"}.entypo-minus-squared:before{content:"\229f"}.entypo-help:before{content:"\2753"}.entypo-help-circled:before{content:"\e704"}.entypo-info:before{content:"\2139"}.entypo-info-circled:before{content:"\e705"}.entypo-back:before{content:"\1f519"}.entypo-home:before{content:"\2302"}.entypo-link:before{content:"\1f517"}.entypo-attach:before{content:"\1f4ce"}.entypo-lock:before{content:"\1f512"}.entypo-lock-open:before{content:"\1f513"}.entypo-eye:before{content:"\e70a"}.entypo-tag:before{content:"\e70c"}.entypo-bookmark:before{content:"\1f516"}.entypo-bookmarks:before{content:"\1f4d1"}.entypo-flag:before{content:"\2691"}.entypo-thumbs-up:before{content:"\1f44d"}.entypo-thumbs-down:before{content:"\1f44e"}.entypo-download:before{content:"\1f4e5"}.entypo-upload:before{content:"\1f4e4"}.entypo-upload-cloud:before{content:"\e711"}.entypo-reply:before{content:"\e712"}.entypo-reply-all:before{content:"\e713"}.entypo-forward:before{content:"\27a6"}.entypo-quote:before{content:"\275e"}.entypo-code:before{content:"\e714"}.entypo-export:before{content:"\e715"}.entypo-pencil:before{content:"\270e"}.entypo-feather:before{content:"\2712"}.entypo-print:before{content:"\e716"}.entypo-retweet:before{content:"\e717"}.entypo-keyboard:before{content:"\2328"}.entypo-comment:before{content:"\e718"}.entypo-chat:before{content:"\e720"}.entypo-bell:before{content:"\1f514"}.entypo-attention:before{content:"\26a0"}.entypo-alert:before{content:"\1f4a5'"}.entypo-vcard:before{content:"\e722"}.entypo-address:before{content:"\e723"}.entypo-location:before{content:"\e724"}.entypo-map:before{content:"\e727"}.entypo-direction:before{content:"\27a2"}.entypo-compass:before{content:"\e728"}.entypo-cup:before{content:"\2615"}.entypo-trash:before{content:"\e729"}.entypo-doc:before{content:"\e730"}.entypo-docs:before{content:"\e736"}.entypo-doc-landscape:before{content:"\e737"}.entypo-doc-text:before{content:"\1f4c4"}.entypo-doc-text-inv:before{content:"\e731"}.entypo-newspaper:before{content:"\1f4f0"}.entypo-book-open:before{content:"\1f4d6"}.entypo-book:before{content:"\1f4d5"}.entypo-folder:before{content:"\1f4c1"}.entypo-archive:before{content:"\e738"}.entypo-box:before{content:"\1f4e6"}.entypo-rss:before{content:"\e73a"}.entypo-phone:before{content:"\1f4dE"}.entypo-cog:before{content:"\2699"}.entypo-tools:before{content:"\2692"}.entypo-share:before{content:"\e73c"}.entypo-shareable:before{content:"\e73e"}.entypo-basket:before{content:"\e73d"}.entypo-bag:before{content:"\1f45c'"}.entypo-calendar:before{content:"\1f4c5"}.entypo-login:before{content:"\e740"}.entypo-logout:before{content:"\e741"}.entypo-mic:before{content:"\1f3a4"}.entypo-mute:before{content:"\1f507"}.entypo-sound:before{content:"\1f50a"}.entypo-volume:before{content:"\e742"}.entypo-clock:before{content:"\1f554"}.entypo-hourglass:before{content:"\23f3"}.entypo-lamp:before{content:"\1f4a1"}.entypo-light-down:before{content:"\1f505"}.entypo-light-up:before{content:"\1f506"}.entypo-adjust:before{content:"\25d1"}.entypo-block:before{content:"\1f6ab"}.entypo-resize-full:before{content:"\e744"}.entypo-resize-small:before{content:"\e746"}.entypo-popup:before{content:"\e74c"}.entypo-publish:before{content:"\e74d"}.entypo-window:before{content:"\e74e"}.entypo-arrow-combo:before{content:"\e74f"}.entypo-down-circled:before{content:"\e758"}.entypo-left-circled:before{content:"\e759"}.entypo-right-circled:before{content:"\e75a"}.entypo-up-circled:before{content:"\e75b"}.entypo-down-open:before{content:"\e75c"}.entypo-left-open:before{content:"\e75d"}.entypo-right-open:before{content:"\e75e"}.entypo-up-open:before{content:"\e75f"}.entypo-down-open-mini:before{content:"\e760"}.entypo-left-open-mini:before{content:"\e761"}.entypo-right-open-mini:before{content:"\e762"}.entypo-up-open-mini:before{content:"\e763"}.entypo-down-open-big:before{content:"\e764"}.entypo-left-open-big:before{content:"\e765"}.entypo-right-open-big:before{content:"\e766"}.entypo-up-open-big:before{content:"\e767"}.entypo-down:before{content:"\2b07"}.entypo-left:before{content:"\2b05"}.entypo-right:before{content:"\27a1"}.entypo-up:before{content:"\2b06"}.entypo-down-dir:before{content:"\25be"}.entypo-left-dir:before{content:"\25c2"}.entypo-right-dir:before{content:"\25b8"}.entypo-up-dir:before{content:"\25b4"}.entypo-down-bold:before{content:"\e4b0"}.entypo-left-bold:before{content:"\e4ad"}.entypo-right-bold:before{content:"\e4ae"}.entypo-up-bold:before{content:"\e4af"}.entypo-down-thin:before{content:"\2193"}.entypo-left-thin:before{content:"\2190"}.entypo-right-thin:before{content:"\2192"}.entypo-up-thin:before{content:"\2191"}.entypo-ccw:before{content:"\27f2"}.entypo-cw:before{content:"\27f3"}.entypo-arrows-ccw:before{content:"\1f504"}.entypo-level-down:before{content:"\21b3"}.entypo-level-up:before{content:"\21b0"}.entypo-shuffle:before{content:"\1f500"}.entypo-loop:before{content:"\1f501"}.entypo-switch:before{content:"\21c6"}.entypo-play:before{content:"\25b6"}.entypo-stop:before{content:"\25a0"}.entypo-pause:before{content:"\2389"}.entypo-record:before{content:"\26ab"}.entypo-to-end:before{content:"\23ed"}.entypo-to-start:before{content:"\23ee"}.entypo-fast-forward:before{content:"\23e9"}.entypo-fast-backward:before{content:"\23ea"}.entypo-progress-0:before{content:"\e768"}.entypo-progress-1:before{content:"\e769"}.entypo-progress-2:before{content:"\e76a"}.entypo-progress-3:before{content:"\e76b"}.entypo-target:before{content:"\1f3af"}.entypo-palette:before{content:"\1f3a8"}.entypo-list:before{content:"\e005"}.entypo-list-add:before{content:"\e003"}.entypo-signal:before{content:"\1f4f6"}.entypo-trophy:before{content:"\1f3c6"}.entypo-battery:before{content:"\1f50b"}.entypo-back-in-time:before{content:"\e771"}.entypo-monitor:before{content:"\1f4bb"}.entypo-mobile:before{content:"\1f4f1"}.entypo-network:before{content:"\e776"}.entypo-cd:before{content:"\1f4bf"}.entypo-inbox:before{content:"\e777"}.entypo-install:before{content:"\e778"}.entypo-globe:before{content:"\1f30e"}.entypo-cloud:before{content:"\2601"}.entypo-cloud-thunder:before{content:"\26c8"}.entypo-flash:before{content:"\26a1"}.entypo-moon:before{content:"\263d"}.entypo-flight:before{content:"\2708"}.entypo-paper-plane:before{content:"\e79b"}.entypo-leaf:before{content:"\1f342"}.entypo-lifebuoy:before{content:"\e788"}.entypo-mouse:before{content:"\e789"}.entypo-briefcase:before{content:"\1f4bc"}.entypo-suitcase:before{content:"\e78e"}.entypo-dot:before{content:"\e78b"}.entypo-dot-2:before{content:"\e78c"}.entypo-dot-3:before{content:"\e78d"}.entypo-brush:before{content:"\e79a"}.entypo-magnet:before{content:"\e7a1"}.entypo-infinity:before{content:"\221e"}.entypo-erase:before{content:"\232b"}.entypo-chart-pie:before{content:"\e751"}.entypo-chart-line:before{content:"\1f4c8"}.entypo-chart-bar:before{content:"\1f4ca"}.entypo-chart-area:before{content:"\1f53e"}.entypo-tape:before{content:"\2707"}.entypo-graduation-cap:before{content:"\1f393"}.entypo-language:before{content:"\e752"}.entypo-ticket:before{content:"\1f3ab"}.entypo-water:before{content:"\1f4a6"}.entypo-droplet:before{content:"\1f4a7"}.entypo-air:before{content:"\e753"}.entypo-credit-card:before{content:"\1f4b3"}.entypo-floppy:before{content:"\1f4be"}.entypo-clipboard:before{content:"\1f4cb"}.entypo-megaphone:before{content:"\1f4e3"}.entypo-database:before{content:"\e754"}.entypo-drive:before{content:"\e755"}.entypo-bucket:before{content:"\e756"}.entypo-thermometer:before{content:"\e757"}.entypo-key:before{content:"\1f511"}.entypo-flow-cascade:before{content:"\e790"}.entypo-flow-branch:before{content:"\e791"}.entypo-flow-tree:before{content:"\e792"}.entypo-flow-line:before{content:"\e793"}.entypo-flow-parallel:before{content:"\e794"}.entypo-rocket:before{content:"\1f680"}.entypo-gauge:before{content:"\e7a2"}.entypo-traffic-cone:before{content:"\e7a3"}.entypo-cc:before{content:"\e7a5"}.entypo-cc-by:before{content:"\e7a6"}.entypo-cc-nc:before{content:"\e7a7"}.entypo-cc-nc-eu:before{content:"\e7a8"}.entypo-cc-nc-jp:before{content:"\e7a9"}.entypo-cc-sa:before{content:"\e7aa"}.entypo-cc-nd:before{content:"\e7ab"}.entypo-cc-pd:before{content:"\e7ac"}.entypo-cc-zero:before{content:"\e7ad"}.entypo-cc-share:before{content:"\e7ae"}.entypo-cc-remix:before{content:"\e7af"}.entypo-github:before{content:"\f300"}.entypo-github-circled:before{content:"\f301"}.entypo-flickr:before{content:"\f303"}.entypo-flickr-circled:before{content:"\f304"}.entypo-vimeo:before{content:"\f306"}.entypo-vimeo-circled:before{content:"\f307"}.entypo-twitter:before{content:"\f309"}.entypo-twitter-circled:before{content:"\f30a"}.entypo-facebook:before{content:"\f30c"}.entypo-facebook-circled:before{content:"\f30d"}.entypo-facebook-squared:before{content:"\f30e"}.entypo-gplus:before{content:"\f30f"}.entypo-gplus-circled:before{content:"\f310"}.entypo-pinterest:before{content:"\f312"}.entypo-pinterest-circled:before{content:"\f313"}.entypo-tumblr:before{content:"\f315"}.entypo-tumblr-circled:before{content:"\f316"}.entypo-linkedin:before{content:"\f318"}.entypo-linkedin-circled:before{content:"\f319"}.entypo-dribbble:before{content:"\f31b"}.entypo-dribbble-circled:before{content:"\f31c"}.entypo-stumbleupon:before{content:"\f31e"}.entypo-stumbleupon-circled:before{content:"\f31f"}.entypo-lastfm:before{content:"\f321"}.entypo-lastfm-circled:before{content:"\f322"}.entypo-rdio:before{content:"\f324"}.entypo-rdio-circled:before{content:"\f325"}.entypo-spotify:before{content:"\f327"}.entypo-spotify-circled:before{content:"\f328"}.entypo-qq:before{content:"\f32a"}.entypo-instagrem:before{content:"\f32d"}.entypo-dropbox:before{content:"\f330"}.entypo-evernote:before{content:"\f333"}.entypo-flattr:before{content:"\f336"}.entypo-skype:before{content:"\f339"}.entypo-skype-circled:before{content:"\f33a"}.entypo-renren:before{content:"\f33c"}.entypo-sina-weibo:before{content:"\f33f"}.entypo-paypal:before{content:"\f342"}.entypo-picasa:before{content:"\f345"}.entypo-soundcloud:before{content:"\f348"}.entypo-mixi:before{content:"\f34b"}.entypo-behance:before{content:"\f34e"}.entypo-google-circles:before{content:"\f351"}.entypo-vkontakte:before{content:"\f354"}.entypo-smashing:before{content:"\f357"}.entypo-sweden:before{content:"\f601"}.entypo-db-shape:before{content:"\f600"}.entypo-logo-db:before{content:"\f603"}
[class*="entypo-"]:before {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    text-align: center;
    font-family: 'entypo', sans-serif;
}

.side-panel {
    /* padding: 30px 0; */
    top:39%;
    position:fixed;
    z-index:5;
    border-radius: 4px;
    border-radius: 4;
}
.side-panel:nth-child(2n) {
    /* background: #483430; */
}
.side-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1;
}
.side-panel > ul > li:first-child {
    border-top-right-radius: 3px;
}
.side-panel > ul > li:first-child a {
    padding-top: 13px;
}
.side-panel > ul > li:last-child {
    border-bottom-right-radius: 3px;
}
.side-panel > ul > li:last-child a {
    padding-bottom: 13px;
}
.side-panel > ul ul {
    width: 150px;
    padding-left: 10px;
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
}
.side-panel > ul ul li:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-right-color: #efefef;
}
.side-panel > ul ul li:first-child:before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid #efefef;
    border-right-color: inherit;
}
.side-panel > ul ul li:first-child:hover {
    border-right-color: #fff;
}
.side-panel > ul ul li:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}
.side-panel li {
    position: relative;
    /* background: #e6e6e6; */
}
.side-panel li:hover {
    background: #d3d3d3;
}
.side-panel li:hover > ul {
    display: block;
}
.side-panel a {
    display: inline-block;
    padding: 8px 15px;
    cursor: pointer;
}


.b li [class*="entypo-"] {
    display: inline-block;
    position: relative;
    left: 150px;
    transform: translateX(0);
    transition: all .3s ease-in-out;
    transition-delay: .1s;
}

.b > ul {
    position: relative;
    left: -157px;
    transform: translate(0) translateZ(0);
    width: 205px;
    transition: transform .3s .1s ease-in-out;
}

@media screen and (min-width: 1500px) {
    .b .menu-item {
        display: inline-block;
        opacity: 0;
        -webkit-transition: opacity .3s ease-in-out;
        -moz-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        -ms-transition: opacity .3s ease-in-out;
        padding-left:0px;
        font-size: 12px;
    }
    .b > ul {
        position: relative;
        left: 0px;
        -webkit-transform: translate(0) translateZ(0);
        -moz-transform: translate(0) translateZ(0);
        -o-transform: translate(0) translateZ(0);
        -ms-transform: translate(0) translateZ(0);
        width: 205px;
        -webkit-transition: transform .3s .1s ease-in-out;
        -moz-transition: transform .3s .1s ease-in-out;
        -o-transition: transform .3s .1s ease-in-out;
        -ms-transition: transform .3s .1s ease-in-out;
    }
    .b > ul li [class*="entypo-"] {
        -webkit-transform: translateX(-150px);
        -moz-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -webkit-transition-delay: 0;
        -moz-transition-delay: 0;
        -o-transition-delay: 0;
        -ms-transition-delay: 0;
    }
    .b > ul {
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -o-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
    }
    .b > ul li [class*="entypo-"] {
        -webkit-transform: translateX(-150px);
        -moz-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -webkit-transition-delay: 0;
        -moz-transition-delay: 0;
        -o-transition-delay: 0;
        -ms-transition-delay: 0;
    }
    .b > ul .menu-item {
        opacity: 1;
    }
    .b > ul ul {
        display: block;
        opacity: 0;
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -o-transform: translate(0);
        -ms-transform: translate(0);
        z-index: 1;
    }
    .b li ul {
        opacity: 1;
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -o-transform: translate(0);
        -ms-transform: translate(0);
    }

}

@media screen and (max-width: 1500px) {
    .b .menu-item {
        display: inline-block;
        opacity: 0;
        -webkit-transition: opacity .3s ease-in-out;
        -moz-transition: opacity .3s ease-in-out;
        -o-transition: opacity .3s ease-in-out;
        -ms-transition: opacity .3s ease-in-out;
        padding-left:0px;
        font-size: 12px;
    }
    .b > ul:hover {
        -webkit-transform: translateX(160px);
        -moz-transform: translateX(160px);
        -o-transform: translateX(160px);
        -ms-transform: translateX(160px);
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        background: #fff;
    }
    .b > ul:hover li [class*="entypo-"] {
        -webkit-transform: translateX(-150px);
        -moz-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -webkit-transition-delay: 0;
        -moz-transition-delay: 0;
        -o-transition-delay: 0;
        -ms-transition-delay: 0;
    }
    .b > ul:hover .menu-item {
        opacity: 1;
        -webkit-transition: transform .3s .2s ease-in-out;
        -moz-transition: transform .3s .2s ease-in-out;
        -o-transition: transform .3s .2s ease-in-out;
        -ms-transition: transform .3s .2s ease-in-out;
    }
    .b > ul ul {
        display: block;
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        z-index: 1;
    }
    .b li:hover ul {
        opacity: 1;
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -o-transform: translate(0);
        -ms-transform: translate(0);
    }
}

#menu a {
    text-decoration: none;
}

.newspageContent {
    height: 105px;
    overflow: hidden;
}


.news-title {
    height: 45px;
    overflow: hidden;
}

#main-container {
    width: 100%;
    height: 330px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    border:1px solid #e6e6e6;
}
.tab {
    height: 55px;
    -webkit-transition: background .1s ease-out;
    -moz-transition: background .1s ease-out;
    -o-transition: background .1s ease-out;
    -ms-transition: background .1s ease-out;
    transition: background .1s ease-out;
}
.tab h3 {
    margin: 0 0 0 20px;
    line-height: 50px;
    cursor: pointer;
    font-size: 16px;
    font-family: sans-serif;
    display: inline-block;
    float: left;
    -webkit-transition: color .1s ease-out;
    -moz-transition: color .1s ease-out;
    -o-transition: color .1s ease-out;
    -ms-transition: color .1s ease-out;
    transition: color .1s ease-out;
}
.notification {
    display: inline-block;
    width: 39px;
    line-height: 24px;
    float: right;
    margin: 15px 15px;
    text-align: center;
    color: #fff;
    font-size: 11px;			
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    -webkit-transition: background .1s ease-out;
    -moz-transition: background .1s ease-out;
    -o-transition: background .1s ease-out;
    -ms-transition: background .1s ease-out;
    transition: background .1s ease-out;
}
.tabSelected {
    background: #2b8ed4;
}
.tabSelected h3 {
    color: #ffffff;
}
.tabSelected .notification {
    background: #fff;			
}

.tabSelected .notification {
    color: #2b8ed4;			
}

.tabSelected .notification:hover {
    background: #fff;
}
.tabNoSelected {
    background: #ffffff;
    border-bottom: solid 1px #e6e6e6;	
}
.tabNoSelected:hover {
    border: solid 1px #F2F2F2;
}
.tabNoSelected h3 {
    color: #363a3d;
}
.tabNoSelected .notification {
    background: #2b8ed4;
}
.tabNoSelected .notification:hover {
    background: #2eb398;
}
.tabBody {
    background: #f5f5f5;
    height: 110px;
    display: none;
    border-top: solid 1px #e6e6e6;
}
.tabBodyOptions {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.tabBodyOptions a {
    display: block;
    color: #000;
    font-size: 13px;
    line-height: 32px;
    padding-left: 20px;
    -webkit-transition: background .3s ease-out;
    -moz-transition: background .3s ease-out;
    -o-transition: background .3s ease-out;
    -ms-transition: background .3s ease-out;
    transition: background .3s ease-out;
}
.tabBodyOptions a:hover {
    background: #e6e6e6;
    color: #ffffff;
}
.tabBodyOptions span {
    font-size: 18px;
}

.logos .row {
    padding-top: 40px;
    padding-bottom: 40px;
}

.logos .row .col-sm-4 img {
    opacity: 0.3;
}

.logos .row .col-sm-4 img:hover {
    opacity: 1;
}

.top
{
    width:50px;
    height:50px;
    line-height:50px;
    font-family:verdana;
    padding:5px;
    text-align:center;
    background:rgba(235, 235, 235, 0.7);
    color:#2b8ed4;
    position:fixed;
    bottom:20px;
    right:30px;
    border-radius: 4px;
    /* border-radius:50%; */
    text-decoration:none;
    display:none
}

.top:hover {
    background: #fff;
    color: #2b8ed4;
}

.scrollTop a {
    text-decoration: none;
}

.dropdown1:hover .dropdown-menu1 {
    display: block;
}

.dropdownmid {
    text-align: left;
    display: inline;
    margin: 0;
    padding: 15px 4px 17px 0;
    list-style: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
.dropdownmid li {
    font: bold 12px/18px sans-serif;
    display: inline-block;
    margin-right: -4px;
    position: relative;
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
}
.dropdownmid li:hover {
    background: #555;
    color: #fff;
}
.dropdownmid li ul {
    padding: 0;
    position: absolute;
    top: 48px;
    left: 0;
    width: 150px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transiton: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    -transition: opacity 0.2s;
}
.dropdownmid li ul li { 
    background: #555; 
    display: block; 
    color: #fff;
    text-shadow: 0 -1px 0 #000;
}
.dropdownmid li ul li:hover { background: #666; }
.dropdownmid li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
}

.loadingLogo {
    position: absolute;
    left: 50%;
    top: 55%;
    margin: -60px 0 0 -60px;
    background: url('../img/loadingLogo.png') no-repeat;
    width: 80px;
    height: 80px;
    border-radius: 100%;
    border: 5px solid #fff;
    z-index:999;
    opacity: 1;
}
.loadingLogo:after {
    content: '';
    background: trasparent;
    width: 140%;
    height: 140%;
    position: absolute;
    border-radius: 100%;
    top: -20%;
    left: -20%;
    opacity: 0.7;
    box-shadow: #19bee1 -4px -5px 3px -3px;
    -webkit-animation: rotate 2s infinite linear;
    -o-animation: rotate 2s infinite linear;
    -ms-animation: rotate 2s infinite linear;
    -moz-animation: rotate 2s infinite linear;
    animation: rotate 2s infinite linear;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@-o-keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@-ms-keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

@-moz-keyframes rotate {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg);
    }
}

.loadingScreen {
    position: absolute;
    background: #f5f5f5;
    opacity: 0.7;
    z-index: 998;
    height:700px;
    width:100%;
    top:0;
}

#loadingScreen {
    display: none;
}


#cssmenu1 {
    /* background: #f3f3f3; */
    width: auto;
    margin-top:  25px;
    margin-bottom: 40px;
}
#cssmenu1 ul {
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 1;
    display: block;
    zoom: 1;
}
#cssmenu1 ul:after {
    content: " ";
    display: block;
    font-size: 0;
    height: 0;
    clear: both;
    visibility: hidden;
}
#cssmenu1 ul li {
    display: inline-block;
    padding: 0;
    margin: 0;
}
#cssmenu1.align-right ul li {
    float: right;
}
#cssmenu1.align-center ul {
    text-align: center;
}
#cssmenu1 ul li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 15px 25px;
    font-weight: normal;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    -webkit-transition: color .25s;
    -moz-transition: color .25s;
    -ms-transition: color .25s;
    -o-transition: color .25s;
    transition: color .25s;
}
#cssmenu1 ul li a:hover {
    color: #2b8ed4;
}
#cssmenu1 ul li a:hover:before {
    width: 100%;
}
#cssmenu1 ul li a:after {
    content: "";
    display: block;
    position: absolute;
    right: -3px;
    top: 19px;
    height: 6px;
    width: 6px;
    background: #2b8ed4;
    opacity: .5;
}
#cssmenu1 ul li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: #2b8ed4;
    -webkit-transition: width .25s;
    -moz-transition: width .25s;
    -ms-transition: width .25s;
    -o-transition: width .25s;
    transition: width .25s;
}
#cssmenu1 ul li.last > a:after,
#cssmenu1 ul li:last-child > a:after {
    display: none;
}
#cssmenu1 ul li.active a {
    color: #2b8ed4;
}
#cssmenu1 ul li.active a:before {
    width: 100%;
}
#cssmenu1.align-right li.last > a:after,
#cssmenu1.align-right li:last-child > a:after {
    display: block;
}
#cssmenu1.align-right li:first-child a:after {
    display: none;
}
@media screen and (max-width: 768px) {
    #cssmenu1 ul li {
        float: none;
        display: block;
    }
    #cssmenu1 ul li a {
        width: 100%;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        border-bottom: 1px solid #fb998c;
    }
    #cssmenu1 ul li.last > a,
    #cssmenu1 ul li:last-child > a {
        border: 0;
    }
    #cssmenu1 ul li a:after {
        display: none;
    }
    #cssmenu1 ul li a:before {
        display: none;
    }
}

#menutab1 {
    display: block;
}
#menutab2 {
    display: none;
}
#menutab3 {
    display: none;
}
#menutab4 {
    display: none;
}

.navbar1 {
    max-height:2000px;
}

.navbar-nav > li {
    margin-top:5px;
}

.social-icons a {
    text-decoration: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.hide-svg {
    display: none;
}

.social-icons .icon {
    width: 30px;
    height: 30px;
    fill: #f6f9eb;
    float: left;
    margin: 5px 12px 5px 5px;
    display: inline-block;
}

.social-icons a {
    position: fixed;
    display: block;
    width: 120px;
    height: 32px;
    padding: 7px;
    color: #f6f9eb;
    font: 0.9em Helvetica,Arial,sans-serif normal;
    z-index: 15;
}
.social-icons a span {
    display: block;
    padding-left:5px;
}
.social-icons a:hover {
    opacity: 0.8;
}
.social-icons a.facebook-button {
    background: #438591;
    top: 310px;
    right: 0;
    margin-right: -82px;
}
.social-icons a.facebook-button:hover {
    margin-right: 0;
}
.social-icons a.instagram-button {
    background: #d19300;
    top: 350px;
    right: 0;
    margin-right: -82px;
}
.social-icons a.instagram-button:hover {
    margin-right: 0;
}
.social-icons a.trip-button {
    background: #515448;
    top: 390px;
    right: 0;
    margin-right: -82px;
}
.social-icons a.trip-button:hover {
    margin-right: 0;
}
.social-icons a.foursquare-button {
    background: #79b6c1;
    top: 182px;
    right: 0;
    margin-right: -120px;
}
.social-icons a.foursquare-button:hover {
    margin-right: 0;
}
#nav-main .dropdown-menu li a {
    color:#000;
}
#nav-main .dropdown-menu li a:hover {
    background: #2b8ed4;
    color: #fff;
}

.container {
    width:1170px;
}

.tabNews {
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 300;
    color: #888;
    height:400px;
    -webkit-font-smoothing: antialiased;
}

.tabsNews {
    display: table;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
}
.tabsNews li {
    float: left;
    overflow: hidden;
    padding: 0;
    position: relative;
    margin-top:0;
}
.tabsNews a {
    height:30px;
    color: #888;
    font-weight: 500;
    display: block;
    letter-spacing: 0;
    outline: none;
    padding: 0 15px;
    padding-top:5px;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.tabs_item {
    display: none;
    padding: 15px 0;
}

.tabs_item:first-child {
    display: block;
}

.current a {
    color: #fff;
    background: #2b8ed4;
}

/* entire container, keeps perspective */


.flip-container {
    height:90px;
    perspective: 1000;
    transition:height 0.5s;
    -webkit-transition:height 0.5s;
}
.flip-container2 {
    height:80px;
    perspective: 1000;
    transition:height 0.5s;
    -webkit-transition:height 0.5s;
}
/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
    transform: rotateY(180deg);
}

.flip-container:hover {
    height:140px;
    transition:height 0.5s;
    -webkit-transition:height 0.5s;
}

.flip-container1:hover {
    height:70px;
    transition:height 0.5s;
    -webkit-transition:height 0.5s;
}

.flip-container {
    transition:height 0.5s;
    -webkit-transition:height 0.5s;
}
/* flip speed goes here */
.flipper {
    transition: 0.6s;
    transform-style: preserve-3d;

    position: relative;
}

/* hide back of pane during swap */
.front {
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

/* front pane, placed above back */
.front {
    z-index: 2;
    /* for firefox 31 */
    transform: rotateY(0deg);
}

/* back, initially hidden pane */
.back {
    transform: rotateY(180deg);
}

/* //Stove */
.chartStove {
    height: 50px;
    width: 50px;
}

.stoveTable thead tr{
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.stoveTable thead tr th {
    background: #2b8ed4;
}
.stoveTable tbody tr th {
    background:#fff;
    color:#000;
    border-top:1px solid #ccc;
    font-weight:normal;
    font-size:12px;
}

.stoveTable tbody tr th span{
    color:#000;
    font-weight: bold;
    font-size: 15px;
}

.stoveTitle h4{
    font-size: 15px;
    font-weight: bold;
}

.normalStove {
    border-bottom:1px solid #ccc; 
    margin-top: 0px;
}

.normalStove span {
    font-size: 20px; 
    color:#545454;
}

.barchart1 {
    /*width:600px;*/
    height:125px;
}
.barchart2 {
    /*width:600px;*/
    height:125px;
}

.upgradedStove {
    border-bottom:0px solid #ccc; 
    width:100%; 
    height:175px; 
    padding-left: 20px;
}

.upgradedStove span {
    font-size: 20px; 
    color:#545454;
}

#StoveContent1 {
    display: block;
}
#StoveContent2 {
    display: none;
}
#StoveContent3 {
    display: none;
}

.stoveTitle h1{
    color:#747474;
    font-weight: 700;
}

.stoveTitle h4{
    color:#616161;
}

.currentStove h4 {
    color:#2b8ed4;
}

.currentStove h1 {
    color:#2b8ed4;
}

.stoveText {
    margin-top: 60px;
}

.stoveCount h3 {
    font-size: 20px;
    margin: 0;
}

.stoveCount span {
    font-size: 14px;
    color:#6e6e6e;
    font-weight: bold;
}

.stove_11 {
    height:550px;
    background-image: url("../img/stove/stove_map.png");
    background-repeat: no-repeat;
}

#ub_chart1 {
  width: 100%;
  height: 350px;
}

#ub_chart2 {
  width: 100%;
  height: 350px;
}

#ub_chart3 {
  width: 100%;
  height: 350px;
}

#ub_chart4 {
  width: 100%;
  height: 350px;
}
#ub_chart5 {
  width: 100%;
  height: 350px;
}

#ub_chart6 {
  width: 100%;
  height: 350px;
}

.ub_board_header {
	border:1px solid #ccc;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
}

.ub_board_header h4{
	color:#585858;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 14px;
	font-weight: bold;
}

.ub_board_body {
	border: 1px solid #ccc;
	border-top: 0px solid #ccc;
	padding-top: 5px;
	padding-bottom: 5px;
}

.ub_board_body h4 {
	font-size: 16px;
	font-weight: bold;
	margin-top:5px;
	margin-bottom:5px;
}

.ub_boards {
	margin-top: 20px;
}

.ub_board_detail {
	background-color: #ccc;
	border-radius: 3px;
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 10px;
}

.ub_board_detail p {
	padding-top: 10px;
	padding-bottom: 10px;
	color:#fff;
	font-weight: bold;
	margin:0;
}

.ub_arrow {
	padding-top: 200px;
	font-size: 80px;
	color:#939393;
}

.internal-concept {
  padding: 20px;
  margin: 0 auto;
}

.break-content {
  height: 10px;
}

.chart-area {
  position: relative;
  margin-bottom: 30px;
}

.pie-chart-text-wrapper {
  width: 160px;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -80px;
  top: 25px;
}
.pie-chart-text-wrapper .pie-chart-text {
  position: relative;
  display: block;
  text-align: center;
}
.pie-chart-text-wrapper .pie-chart-text span {
  font-size: 20px;
  line-height: 26px;
  color: #808080;
}
.pie-chart-text-wrapper .pie-chart-text span.big {
  font-size: 35px;
}

.chart-data-legend {
  color: #787d82;
  font-weight: normal;
}


.header12{
	position: absolute;
	top: calc(50% - 100px);
	left: calc(37%);
	z-index: 2;
}

.header12 div{
	float: left;
	color: #fd964c;
	font-size: 30px;
	font-weight: bold;
}

.header13{
	position: absolute;
	top: calc(60%);
	left: calc(40%);
	z-index: 2;
}

.header13 div{
	float: left;
	color: #ccc;
	font-size: 16px;
	font-weight: bold;
}

.header13 div span{
	color: #5379fa !important;
}

.header12 div span{
	color: #5379fa !important;
}

.login12 {
	position: absolute;
	top: calc(50% - 50px);
	left: calc(40%);
	height: 150px;
	width: 350px;
	padding: 10px;
	z-index: 2;
}

.login12 input[type=text]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid #2b8ed4;
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
}

.login12 input[type=password]{
	width: 250px;
	height: 30px;
	background: transparent;
	border: 1px solid #2b8ed4;
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 4px;
	margin-top: 10px;
}

.login12 input[type=button]{
	width: 250px;
	height: 35px;
	background: #2b8ed4;
	border: 1px solid #2b8ed4;
	cursor: pointer;
	border-radius: 2px;
	color: #fff;
	font-family: 'Exo', sans-serif;
	font-size: 16px;
	font-weight: 400;
	padding: 6px;
	margin-top: 10px;
}

.login12 input[type=button]:hover{
	opacity: 0.8;
}

.login12 input[type=button]:active{
	opacity: 0.6;
}

.login12 input[type=text]:focus{
	outline: none;
	border: 1px solid #2b8ed4;
}

.login12 input[type=password]:focus{
	outline: none;
	border: 1px solid rgba(255,255,255,0.9);
}

.login12 input[type=button]:focus{
	outline: none;
}

::-webkit-input-placeholder{
   color: rgba(255,255,255,0.6);
}

::-moz-input-placeholder{
   color: rgba(255,255,255,0.6);
}

.body12{
	position: absolute;
	top: -20px;
	left: -20px;
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	background-image: url("../img/ub.jpg");
	background-size: cover;
	-webkit-filter: blur(6px);
        z-index: -1;
}

.grad12{
	position: absolute;
	top: -20px;
	left: -20px;
	right: 0px;
	bottom: 0px;
	width: auto;
	height: auto;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	z-index: 0;
	opacity: 0.7;
}

.latestnews li {
    padding-left:10px;
    padding-top:5px;
    margin-top:0;
}
.latestnews .active a {
    color:#fff;
}

.latestnews .active {
    background-color:#2b8ed4;
}
.bxslider li {
    width: 100% !important;
}