/* General */
* {margin: 0; padding: 0; border: 0; outline: none; text-decoration: none; background: none; font-weight: normal; border-collapse: collapse;}
html, body {width: 100%; height: 100%;}
textarea {resize : none;}
table {vertical-align: top;}
sub {vertical-align: sub;}
sup {vertical-align: super;}
b, strong {font-weight : bold;}

.d-flex {
    display: flex;
}

/*** typography ***/
.typo-main-text, .typo-main-text-bold {
    font-weight: 500!important;
    font-size: 15px!important;
    line-height: 26px!important;
    color: #3D4153!important;
}

.typo-main-text-bold {
    font-weight: 700!important;
}

.typo-small-menu-text, .typo-button-text {
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
}

.typo-button-text {
    font-weight: bold;
}

/*** typography ***/



body {
    /*overflow : hidden;*/
    color : #474747;
    font: normal 15px/22px 'Roboto', Georgia, serif;
}

a {
    cursor : pointer;
    color : #EE7950;
    text-decoration : none;
    -webkit-transition : all 0.2s ease-out 0.01s;
    -moz-transition : all 0.2s ease-out 0.01s;
    -o-transition : all 0.2s ease-out 0.01s;
    transition : all 0.2s ease-out 0.01s;
}

a:hover {
    text-decoration : none;
}

.animated {
    -webkit-transition : all 0.2s ease-out 0.01s;
    -moz-transition : all 0.2s ease-out 0.01s;
    -o-transition : all 0.2s ease-out 0.01s;
    transition : all 0.2s ease-out 0.01s;
}

.float_l {float : left;}
.float_r {float : right;}
.float_n {float : none;}

.overflow_h {overflow : hidden;}

.clear_l {clear : left;}
.clear_r {clear : right;}
.clear_b {clear : both;}

.align_t {vertical-align : top;}
.align_m {vertical-align : middle;}
.align_b {vertical-align : bottom;}

.align_l {text-align : left;}
.align_r {text-align : right;}
.align_c {text-align : center;}
.align_j {text-align : justify; cursor : default;}
.align_j:after {
    content: "";
    display : inline-block;
    width : 100%;
    height : 0;
    overflow : hidden;
    line-height : 0;
}

.hidden {display:none;}
.clear {clear:both;}
.bold, .strong {font-weight:bold;}

.page {
    overflow: auto;
    position: fixed;
    left : 0;
    top : 0;
    z-index : 5;
    width : 100%;
    height : 100%;
    background-color : #ffffff;
}

.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


/*** head ***/
.head {
    width:100%;
    background-color : #ffffff;
}

/*** head ***/

/*** foot ***/
.foot {
    background-color : #3D4153;
    height: 124px;
}

.foot-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.foot_menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.foot_menu_item, .copy-logo {
    margin: 0 15px;
    color: #FFFFFF;
}

.foot_menu_item {
    margin: 0 15px;
    display: block;
}

.foot_menu_item:hover {text-decoration:underline;}

@media (max-width: 1300px) {
    .foot_menu_item {
        margin: 0 8px;
    }
}

@media (max-width: 1100px) {
    .foot {
        padding: 20px 0;
    }

    .foot_menu {
        margin: 10px 0;
    }

    .foot_menu_item {
        display: block;
        margin: 0 15px;
    }

    .foot-content {
        flex-direction: column;
    }
}
/*** foot ***/

/*** head-top ***/

.header-top {
    background-color: #f5f5f5;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    height: 50px;
    align-items: center;
}

.header-top-content .top-menu-text {
    opacity: 0.65;
    line-height: 17px;
}

.header-top-content .header-top-menu {
    display: flex;
    align-items: center;
}

.header-top-content .top_menu_item, #lang_switch {
    margin: 0 13px;
    min-width: 70px;
    text-align: center;
}

.header-top-content .top_menu_item:hover {
    text-decoration : underline;
}
.header-top-content .top_menu_item_sel {
    color : #e9764b;
}

/*** head-top ***/

/*** lang_switch ***/
.lang-switch {
    position:relative;
    cursor: pointer;
}

.lang-switch img {
    transition: transform 0.2s ease-in-out;
}

.lang-switch.opened img {
    transform: rotate(180deg);
}

.lang-switch a {
    color: #3D4153;
}

.lang-switch-options {
    position:absolute;
	left : -10px;
	top : 35px;
    z-index:10000;
    display: none;
    width: 110px;
    padding-top: 10px;
    background-color : #ffffff;
    opacity: 0.9;
    box-shadow: 0 2px 5px rgba(150, 148, 179, 0.46);
}

.lang-switch-options .option {
    overflow:hidden;
    cursor:pointer;
    display:block;
    padding: 5px 13px 5px 22px;
}

.mobile-menu .lang-switch-options {
    position: relative;
    left:0;
    top: 0;
    box-shadow: none;
}

.lang-switch-options .option:hover {
    color: #E75F2F;
}

.mobile-menu .lang_switch {
    margin: 0;
}

/*** lang_switch ***/


/*** header-main ***/

.header-main {
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-main .logo-wrapper img, .head-mobile .logo-wrapper img{
    width: 100%;
}

.head-mobile-content .logo-wrapper a {
    display: block;
    margin-right: 50px;
}

.head-mobile {
    display: none;
}

/*@media (max-width:1250px) {*/
/*    .header-main {*/
/*        padding: 0 60px !important;*/
/*    }*/
/*}*/

.head-mobile-content {
    display: flex;
    justify-content: space-between;
    height: 90px;
    align-items: center;
}

@media (max-width:950px) {
    .head {
        display: none;
    }

    .head-mobile {
        display: block;
    }

    .burger-wrapper {
        cursor: pointer;
    }
}

.mobile-menu-wrapper {
    display: none;
}

.mobile-menu-wrapper.visible {
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top:0;
    left:0;
    background-color: #181515;
    opacity: 0.7;
    height:100vh;
    width: 100vw;
    z-index: 1000;
    cursor: pointer;
}

.mobile-menu {
    display: block;
    position:fixed;
    right: -55vw;
    top:0;
    z-index: 1010;
    height: 100vh;
    background-color: #ffffff;
    width: 50vw;
    padding: 30px;
    transition: all 0.4s ease-in-out;
    overflow-y: auto;
}

.menus {
    padding-bottom: 70px;
}

.mobile-menu.visible {
    right: 0;
}

.mobile-menu .logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu .logo-wrapper .close-icon {
    margin-left: 15px;
    cursor: pointer;
}

.mobile-menu .logo-wrapper img {
    width: 100%;
    max-width: 300px;
}

.mobile-menu .top-menu-text {
    margin-top: 15px;
}

.mobile-menu-wrapper .main_menu_search_wrap {
    max-width: 170px;
    width: unset;
}

.mobile-menu-wrapper .subscription{
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.top-menu-wrapper, .bottom-menu-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 1px solid #e5e5e5;
}

.top-menu-wrapper .main_menu_item {
    border: none;
    padding: 5px 0;
    font-size: 15px;
    margin: 0;
}

.top-menu-wrapper .main_menu_item.main_menu_item_sel, .bottom-menu-wrapper .top_menu_item.top_menu_item_sel {
    color: #EE7950;
}

.bottom-menu-wrapper .top_menu_item {
    border: none;
    padding: 5px 0;
    font-size: 12px;
}

.subscription-wrapper {
    display: flex;
    justify-content: flex-end;
}

.subscription {
    text-transform: uppercase;
    font-size: 10px;
    display: flex;
    align-items: center;
    margin-right: 35px;
}

.subscription-helper-text {
    font-weight: 500;
    color: #3D4153;
    opacity: 0.5;
}

.subscriber, .change_subs {
    font-weight: bold;
    font-size: 11px;
}

.change_subs {
    padding-left: 10px;
}

.subscription_warning {
    position:absolute;
    right:15px;
    top:20px;
    background-color : #ffffff;
    width:350px;
    display:none;
    border: 1px solid #8270A6;
    white-space:normal;
    padding:10px;
    z-index:100;
    text-align: left;
}

.subscription_warning_close {
    text-decoration:underline;
}

.search-wrapper {
    padding-left: 35px;
    border-left: 0.5px solid #3D4153;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.5;
    height: 36px;
}

.search-wrapper.opened {
    border-left: none;
}

.search-icon {
    height: 21px;
    cursor: pointer;
    display: none;
}

.search-icon.visible {
    display: block;
}

.search-input {
    display: none;
    position: relative;
}

.search-input.visible {
    display: block;
}

.mobile-menu .search-input {
    display: flex;
    width: 100%;
    justify-content: center;
}

.main_menu_search_wrap {
    overflow: hidden;
    display : block;
    border: 1px solid rgba(104, 99, 167, 0.3);
    border-radius: 52px;
    padding: 6px 45px 6px 20px;
    width: 250px;
}

.mobile-menu .main_menu_search_wrap {
    position: relative;
}

.main_menu_search_input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width : 100%;
    font-size: 12px;
    line-height: 17px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color : #3D4153;
}
.main_menu_search_submit {
    position: absolute;
    cursor: pointer;
    z-index: 2;
    width : 30px;
    right: 12px;
    top: 8px;
    height: 21px;
    background : transparent url('/i/search-icon.png') no-repeat center center;
}

/*** header-main ***/

/*** main_menu ***/
.main_menu {
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.main_menu_item {
    flex-grow : 1;
    position : relative;
    text-transform : uppercase;
    text-align : center;
    text-decoration: none;
	white-space: nowrap;
    margin: 0 12px;
    font-weight: 600;
    font-size: 13px;
    color: #3D4153;
    transition: none;
    border-bottom: 2px solid #ffffff;
}

.main_menu_item_sel, .main_menu_item:hover {
    border-bottom-color: #e9764b;
}

/*** main_menu ***/

/*** popup ***/
.popup {
    display : none;
    min-width : 300px;
    max-width : 1000px;
    margin : 115px auto;
    background-color : ffffff;
}

.popup_mid {
    max-width : 840px;
}

.popup_video {
    display : inline-block;
    min-width : 0;
}

.popup_min {
    max-width : 450px;
}

.popup_map {
    overflow : hidden;
    height : 80%;
    max-width : none;
    margin : 0 10%;
    box-sizing: border-box;
}

.popup_area {
    overflow : scroll;
    position : fixed;
    top : 0;
    left : 0;
    display : none;
    width : 100%;
    height : 100%;
    z-index : 9;
    background : rgba(0,0,0,0.9);
    text-align : center;
}
.popup_area:before {
    display: block;
    content: "";
    height: 10%;
}
.popup_area:after {
    display: block;
    content: "";
    height: 10%;
}

.popup_frame {
    background-color : ffffff;
    padding : 40px;
    overflow : hidden;
}
.popup_close_button {
    position : relative;
    z-index : 2;
    float : right;
    height : 30px;
    width : 30px;
    margin-bottom : -30px;
    background : url("/i/popup_close.png") no-repeat center center;
}
.popup_close_button:hover {
    background-color : #71b9d4;
}
/*** popup ***/

.content-wrapper, .header-top-content, .header-main, .foot-content, .home-footer-content, .page-header-content {
    margin: 0 auto;
    max-width : 1440px;
    padding: 0 110px;
}

@media (max-width: 1100px) {
    .content-wrapper, .header-top-content, .header-main, .foot-content, .home-footer-content, .page-header-content {
        margin: 0 auto;
        padding: 0 20px;
    }
}

.body {
    overflow:hidden;
    flex-grow: 1;
}

.bar_title {
    margin-bottom : 12px;
    padding : 18px 0 5px;
    border-bottom : 4px solid #e9764b;
    font : bold 13px/18px 'Palatino Linotype', Georgia, serif;
    text-transform: uppercase;
    color : #474747;
}
.bar_title:first-child {padding-top : 0;}

.sub_title {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #3D4153;
}

@media (max-width: 1100px) {
    .sub_title {
        font-size: 25px;
        line-height: 30px;
    }
}

.page-header-wrapper {
    height: 192px;
    background: url('/i/page-header-banner.png') center no-repeat;
    background-size: cover;
    margin-bottom: 45px;
}

.page-header-content {
    display: flex;
    align-items: flex-end;
    height: 100%;
    flex-wrap: wrap;
}

.article-header-content {
    overflow: hidden;
}

.page-header-content.centered {
    align-items: center;
}

.page-header-title {
    font-size: 42px;
    color: #3D4153;
    width: 100%;
    line-height: 48px;
    margin-bottom: -37px;
}

@media (max-width: 950px) {
    .page-header-wrapper {
        min-height: 140px;
        height: auto;
        padding: 15px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-header-title {
        margin-bottom: 0;
        font-size: 30px;
        line-height: 26px;
    }

    .page-header-subtitle {
        margin-top: 15px;
        margin-bottom: 0!important;
    }
}


@media (max-width: 700px) {
    .page-header-title {
        text-align: center;
    }
}

.page-header-content.centered .page-header-title {
    align-items: center;
    margin-bottom: 0;
}

.page-header-subtitle {
    display: flex;
    margin-bottom : 20px;
}

.page-header-subtitle a {
    font-weight: bold;
    font-size: 16px;
    line-height: 26px;
}

.page-header-subtitle a:hover {
    text-decoration: underline;
}
/*** home ***/
.home_left {
}
.home-content {
    display: flex;
}

.page-content {
    flex-grow: 1;
    margin-right: 120px;
    padding-top: 78px;
    margin-bottom: 99px;
}

.home-content .sidebar {
    padding-top: 153px;
    min-width: 505px;
    max-width: 505px;
}

@media (max-width: 1300px) {
    .page-content {
        margin-right: 20px;
        padding-top: 40px;
    }
}

@media (max-width: 1200px) {
    .home-content .sidebar {
        min-width: 400px;
        max-width: 400px;
    }
}

@media (max-width: 1000px) {
    .home-content {
        flex-wrap: wrap;
    }

    .home-content .sidebar {
        padding-top: 10px;
    }

    .page-content {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .home-content-item {
        margin-bottom: 30px!important;
    }

    .home-content .sidebar {
        width: 100%;
        padding-top: 20px;
        min-width: auto;
        max-width: none;
    }
}

 .sidebar {
     min-width: 295px;
     max-width: 295px;
}

 .sidebar.navigation-sidebar {
     min-width: 380px;
     max-width: 380px;
 }

 @media (max-width: 950px) {
     .sidebar {
         max-width: none;
         min-width: auto;
         width: 100%;
         margin-top: 40px;
     }
 }

.content-item, .home-content-item {
    margin-bottom: 86px;
}

.home-content-item.video-gallery .video_item{
    min-width: 47%;
    max-width: 47%;
}

.supporters {
    background-color: #F5F5F5;
    padding: 25px 32px 34px 37px;
}

@media (max-width: 750px) {
    .supporters {
        padding: 20px 25px;
        text-align: center;
    }

    .support-logos {
        flex-direction: column;
    }

    .big-logo {
        margin: 30px 0;
    }
}

.supporters .home_sub_title {
    padding-bottom: 0;
}

.support-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.small-logos, .top-logo-row, .bottom-logo-row {
    display: flex;
}

.small-logos {
    flex-direction: column;
}

.small-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-logo-row .small-logo.left {
    border-right: 1px solid #c8c9cd;
}

.bottom-logo-row .small-logo.left {
    border-top: 1px solid #c8c9cd;
    border-right: 1px solid #c8c9cd;
}

.bottom-logo-row .small-logo.right {
    border-top: 1px solid #c8c9cd;
}


/*** home-slider ***/

.home_slides {
    position : relative;
}

.home_slides_container {
    position : relative;
    z-index : 1;
}

.home_slides_controls {
    position : absolute;
    z-index : 2;
    top: calc(50% - 45px);
    right: 50px;
}

.home_slides_button {
    position : relative;
    width : 90px;
    height : 90px;
    border-radius : 45px;
    text-align : center;
    background-color: #706BAC;
    display: block;
}

.home_slides_button:hover {
    background: #E75F2F;
    opacity: 0.85;
}

.home_slides_button img {
    display: block;
    position: absolute;
    top: 37px;
    left: 30px;
}

.home_slide {
    width : 100%;
}

.slide-content {
    position: absolute;
    left: 12.5%;
    z-index: 10;
    top: 12%;
}

@media (max-width: 700px) {
    .slide-content {
        left: 3%;
    }
}

.slide-header-title span {
    color: #3D4153;
    font-weight: 500;
    font-size: 42px;
    line-height: 48px;
}

.slide-search {
    margin-top: 10%;
    margin-bottom: 20px;
}

.search-input-wrapper {
    font-size: 15px;
    border-radius: 52px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    flex-wrap: nowrap;
    max-width: 450px;
    border: 1px solid #ffffff;;
}

@media (max-width: 1350px) {
    .slide-header-title span {
        font-size: 30px;
        line-height: 36px;
    }

    .slide-search {
        margin-top: 5%;
    }
}

.search-input-wrapper:focus-within {
    border-color: rgba(104, 99, 167, 0.3);
}

.search-input-label {
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    flex-grow: 1;
}

.search-input-label input {
    width: 100%;
    color: #3D4153;
    opacity: 0.7;
}

.search-input-label input:focus {
    opacity: 1;
}

.search-input-button {
    background: #EE7950 url("/i/search-icon-small.png") no-repeat center;
    height: 50px;
    width: 50px;
    border-radius: 25px;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .slide-header-title span {
        font-size: 25px;
        line-height: 30px;
    }

    .search-input-wrapper {
        height: 40px;
    }

    .search-input-button {
        height: 40px;
        width: 40px;
        border-radius: 20px;
        margin-right: -1px;
    }
}

.search-input-button:hover {
    background-color: #E75F2F;
}

.slide-subtext span {
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    text-transform: uppercase;
    color: #3D4153;
    opacity: 0.85;
}

@media (max-width: 950px) {
    .home_slide {
        height: 350px;
        overflow: hidden;
    }

    .home_slide .slide-background img {
        width: auto;
    }
}

/*** home-slider ***/

/** home-footer **/

.home-content-footer-wrapper {
    padding-top: 76px;
    padding-bottom: 93px;
    background-color: #F5F5F5;
}

.home-footer-content {
    display: flex;
}

@media (max-width: 1000px) {
    .home-content-footer-wrapper {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .home-footer-content {
        flex-wrap: wrap;
    }
}

/** home-footer **/

/** events **/

.events {
    min-width: 505px;
    max-width: 505px;
}

.event-link {
    display : block;
    color : #696969;
    margin-bottom: 15px;
}

.event-link .event-info {
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #71758B;
}

.event-link:hover .event-name {text-decoration: underline;}

.events-list-show-all {
    font-weight: bold;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding-bottom: 3px;
}

.events-list-show-all:hover {
    color: #E75F2F;
}

.events-list-show-all img {
    margin-left: 4px;
}

@media (max-width: 1200px) {
    .events {
        min-width: 400px;
        max-width: 400px;
    }
}

@media (max-width: 1000px) {
    .events {
        width: 100%;
        min-width: auto;
        max-width: none;
    }
}


/** events **/

/** top-users **/

.top-users {
    flex-grow: 1;
    margin-right: 120px;
}

@media (max-width: 1300px) {
    .top-users {
        margin-right: 20px;
        min-width: 520px;
        margin-bottom: 40px;
    }
}

@media (max-width: 1000px) {
    .top-users {
        margin-right: 0;
        min-width: auto;
    }
}

.top-users-list {
    flex-wrap: wrap;
}

.top-users-row {
    width: 100%;
}

.top-users-row, .top-users-list {
    display: flex;
}

.top-users-item {
    background: #FFFFFF;
    border: 1px solid rgba(211, 216, 225, 0.8);
    width: calc(50% - 10px);
    height: 124px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.top-users-item:hover {
    border-color: rgba(104, 99, 167, 0.5);
}

.top-users-item.first {
    margin-right: 20px;
}

.top-users-item .top-user-text {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.top-users-item:hover .top-user-text {
    font-weight: bold!important;
}

@media (max-width: 700px) {
    .top-users-item {
        height: 154px;
    }

    .top-users-item.first {
        margin-right: 10px;
    }
}

.top-user-logo {
    max-width: 90%;
}

.top-user-logo img {
    width: 100%;
}

/** top-users **/

.home_title {
    padding-top : 20px;
    padding-bottom : 18px;
    color : #474747;
    font : normal 30px/34px 'Palatino Linotype', Georgia, serif;
    letter-spacing: -0.6px;
}
.home_title:first-child {
    margin-top : -7px;
    padding-top : 0;
}
.home_sub_title {
    padding-bottom: 20px;
}

/*** home ***/

/** contact **/

.contact_form_wrapper {
    max-width: 800px;
    margin: 0 auto 30px auto;
}

#contactForm {
    margin-top: 40px;
}

.home_form_label {
    position : relative;
    z-index : 1;
    display : block;
    margin-bottom : 6px;
    padding : 0 0 0 13px;
    border : 1px solid #cacdd3;
    border-radius : 8px;
    background : #fefefe;
}

.home_form_text:first-child {padding-top : 0;}
.home_form_text:last-child {padding-bottom : 0;}

/** contact **/

/*** sidebar ***/

.sidebar-wrapper {
    width: 100%;
}

.how-it-works-wrapper {
    line-height: 97px;
    margin-bottom: 50px;
    display: flex;
    height: 155px!important;
    justify-content: center;
}

.sidebar.home-sidebar {
    font-size: 21px;
    line-height: 30px;
}

.contribute-wrapper {
    margin-top: 65px;
}

@media (max-width: 950px) {
    .contribute-wrapper {
        margin-top: 30px;
    }
}

.contribute-text {
    opacity: 0.85;
    margin-top: 20px;
    margin-bottom: 20px;
}

.show-more {
    background: url('/i/arrow-left-black.png') left no-repeat;
    height: 20px;
    width: 40px;
    cursor: pointer;
    display: block;
    transition: none;
}

.show-more:hover {
    background-image: url("/i/arrow-left-black-hover.png");
}

.bottom-images.vertical {
    display: none;
}

.sidebar.vertical-images .bottom-images.vertical {
    display: flex;
    justify-content: center;
}

.sidebar.vertical-images .bottom-images.horizontal {
    display: none;
}


.bottom-images {
    margin-top: 65px;
    margin-bottom: 60px;
}

.bottom-image {
    position: relative;
    cursor: pointer;
    display: block;
    margin-bottom: 20px;
}

.bottom-image:hover .image-text {
    text-decoration: underline;
}

.bottom-image img {
    width: 100%;
    height: auto;
}

.bottom-images.vertical .bottom-image {
    margin-right: 20px;
}

.bottom-images.vertical .bottom-image:last-child {
    margin-right: 0;
}

.bottom-images .bottom-image .image-text {
    position: absolute;
    bottom: 11%;
    left: 8%;
    font-style: normal;
    font-weight: bold;
    font-size: 21px;
    line-height: 30px;
    color: #FFFFFF;
    z-index: 2
}

.bottom-images.vertical .bottom-image {
    display: flex;
    justify-content: center;
}

.bottom-images.vertical .bottom-image .image-text {
    left: unset;
}

@media (max-width: 700px) {
    .bottom-images.vertical .bottom-image .image-text {
        font-size: 13px;
    }
}

/*** sidebar ***/


/*** atoz ***/
.atoz {
    /*border-bottom : 2px solid #cacdd3;*/
    line-height: 0;
}
.atoz_item {
    position : relative;
    text-align : center;
    margin-right: 14px;
}

.atoz_item_sel {
    color : #3D4153!important;
}

/*** atoz ***/

/*** navigation ***/

.navigation_right {
    width: 100%;
    margin-left: 30px;
}

.navigation-sidebar .sub_title {
    margin-bottom: 14px;
}

/*** navigation ***/

/*** article ***/

.article-content-wrapper {
    display: flex;
    flex-wrap: nowrap;
}

@media (max-width: 950px) {
    .article-content-wrapper {
        flex-wrap: wrap;
    }

    .article_content {
        margin-right: 0!important;
    }

    .article-subtitle {
        display: flex;
        flex-direction: column;
    }

    .article-subtitle .separator {
        display: none;
    }
}

.page-header-subtitle .separator {
    margin-left: 10px;
    margin-right: 10px;
}

.page-header-subtitle .article_doi a {
    overflow: hidden;
}

.sidebar-map-navigation {
    width: calc(100% - 50px);
    background-color: #F5F5F5;
    padding: 10px 25px;
    margin-bottom: 45px;
}

.article_content {
    flex: 1;
    margin-right: 50px;
}

.article_right_visual {
    display: flex;
    align-items: center;
    height : 75px;
    padding-left : 90px;
    border-bottom : 1px solid #c8c9cd;
    background : transparent url('/i/icon_visual_map.png') no-repeat 12px center;
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
}
.article_right_visual_links {background-image : url('/i/icon_visual_links.png');}
.article_right_visual_atoz {
    background-image : url('/i/icon_visual_atoz.png');
    border: none;
}

.article_right_visual:hover {
    text-decoration: underline;
}

.article_related {
    display: flex;
    align-items: center;
    height : 90px;
    margin-bottom : 12px;
    border: 1px solid rgba(211, 216, 225, 0.8);
    padding-right: 44px;
}

.article_related:hover {
    border-color : #e9764b;
}

.article_related_img {
    min-width: 135px;
    max-width: 135px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article_related_img img {
    vertical-align: middle;
}

.article_related_inner  {
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
    flex-grow: 1;
}

.article_related_inner_big {
    font-size : 15px;
    line-height : 20px;
}

.article_head {
    padding-bottom:20px;
}

.article_authors {
    padding-bottom : 3px;
}

.article_content .sect1 .titlepage {
    display : none;
}
.article_content .sect1 .sect2 .titlepage {
    display : block;
}

.article_statistics {
    margin-top:20px;
    padding:5px;
    background-color : #d9e0e7;
    text-align:center;
    text-transform: none;
}

.article_statistics span {
    padding:0 10px;
    white-space:nowrap;
}

/*** article ***/

/*** tree ***/

@media (max-width: 1100px) {
    .navigation-wrapper {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .navigation_right {
        margin: 0;
    }

    .sidebar.navigation-sidebar {
        max-width: none;
        min-width: auto;
        width: 100%;
    }
}

.tree {
    background-color: #f5f5f5;
    padding: 10px 20px;
    width: calc(100% - 40px);
    margin-bottom: 38px;
}

.tree_item {
    display : block;
    margin-bottom : 1px;
    padding :11px 5px 11px 30px;
    cursor : pointer;
    font-weight: 500;
    font-size: 11px;
    line-height: 17px;
    color: #3D4153;
}
.tree_item:hover {
    color : #e9764b;
    background-color : #eaebee;
}

.tree_item.sel {
    background-color : #e3e3e5;
}

.tree_level {
    padding-left : 15px;
}

.tree_item:before {
    content : '';
    float : left;
    width : 11px;
    height : 11px;
    margin: 3px 0 0 -20px;
    background : #e9764b url('/i/tree_dot.png') no-repeat center center;
    vertical-align: top;
}
.tree_item_show:before {
    background-image : url('/i/tree_plus.png');
}
.tree_item_hide:before {
    background-image : url('/i/tree_minus.png');
}
.tree_item_art:before {
    width : 8px;
    height : 16px;
    margin: 0 0 0 -12px;
    background:url('/i/tree_art.png') no-repeat center center;
}
.tree_item_sub:before {
    width : 8px;
    height : 15px;
    margin: -2.5px 0 0 -12px;
    background:url('/i/tree_sub.png') no-repeat center center;
}
.tree_item_man:before {
    width : 8px;
    height : 17px;
    margin: 0 0 0 -12px;
    background:url('/i/tree_man.png') no-repeat center center;
}

.tree_item_list {
    font : bold 15px/17px 'Palatino Linotype', Georgia, serif;
}

.topics-wrapper {
    margin-bottom: 33px;
}

.topics_item{
    height: 37px;
    font-weight: 500;
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
    width: 100%;
    display:flex;
    align-items: center;
    border-bottom: 1px solid #cfd0d5;
}

.topics_item:hover {
    color : #e9764b;
}

/*** tree ***/

/*** columns ***/
.content-wrapper .float_cols {
    margin-bottom: 45px;
}

.float_cols {
    overflow : hidden;
    display: flex;
    flex-wrap: wrap;
}

.four_cols_item {
    width : 23%;
    margin-right: 2%;
}

@media (max-width: 1100px) {
    .three_cols_tablet {
        width: 30%;
        margin-right: 3%;
    }
}

@media (max-width: 700px) {
    .two_cols_mobile{
        width : 45%;
        margin-right: 5%;
    }
    .one_col_mobile{
        width : 100%;
        margin-left: 5%;
    }
}


/*** columns ***/

/*** az index ***/

.float_cols .content-item {
    font-weight: 500;
    font-size: 15px;
    color: #3D4153;
    margin-bottom: 11px;
    display: block;
}

.float_cols .content-item:hover {
    text-decoration: underline;
    font-weight: bold;
    transition: none;
}

/*** az index ***/


/*** contact form ***/
.contact {
    width : 470px;
    margin : 0 auto;
    color : #2e393d;
}
.contact_alert {color : red; font-weight:bold; line-height:26px;}
.contact_success {padding-top:15px; color : #248cb3; font-weight:bold; text-align:center;}

.contact_form, .form_panel {
    margin-top : 10px;
    padding : 10px;
    background : #dee0e5;
}

/*** contact form ***/

/*** subscription policy ***/
.page-description-wrapper {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 12px;
}

.page-description-wrapper .description {
    margin-right: 50px;
}

@media (max-width: 950px) {
    .page-description-wrapper {
        flex-wrap: wrap;
    }

    .page-description-wrapper .description {
        margin-right: 0;
    }
}

/*.conf_center h1 {
    color : #474747;
    font : normal 30px/34px 'Palatino Linotype', Georgia, serif;
    margin: 13px 0 11px;
    letter-spacing: -0.6px;
}*/

.page-description-wrapper .description h2 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #3D4153;
    margin-top: 30px;
    margin-bottom: 12px;
    display: block;
}

.page-description-wrapper .description ul {
    padding: 0;
    list-style: none;
}
.page-description-wrapper .description ul li {
    padding-bottom: 5px;
}
.page-description-wrapper .description ul li:before {
    content: "– ";
}
.page-description-wrapper p, .page-description-wrapper ul {
    margin-bottom: 15px;
}

.page-description-wrapper .list_pre {
    margin-bottom: 5px;
}

.table-price {
    width: 100%;
    margin-bottom: 40px;
}

.table-price-header {
    background: #6863A7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 26px;
    text-align: center;
    color: #FFFFFF;
    height: 40px;
}

@media (max-width: 950px) {
    .table-price-header {
        flex-direction: column;
        min-height: 50px;
        height: auto;
    }

    .table-price-header span {
        display: block;
    }
}

.table-price-row {
    display: flex;
    background-color: #F5F5F5
}

.table-price-col {
    flex-grow: 1;
    margin-bottom: 17px;
    margin-top: 14px;
    text-align: center;
}

.table-price-col:first-child {
    border-right: 1px solid #cfd0d5;
}


	
/***  subscription policy ***/

.list_def_item {
    overflow : hidden;
    display : block;
	padding: 15px 0;
	border-top: 1px solid #cacdd3;
	font: normal 16px/24px 'Palatino Linotype', Georgia, serif;
}
.list_def_item:last-child {border-bottom: 1px solid #cacdd3;}

/*** donations ***/

.donations-sidebar {
    background-color: #f5f5f5;
    padding: 26px 32px;
    margin-bottom: 30px;
}

.donation-option-buttons-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    margin-top: 20px;
}

.donation-option-button {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.donation-option-button, .donation-amount-button, .donation-pay-card-button, .donation-pay-service-button {
    background: #E3E3E5;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
    font-weight: bold;
    cursor: pointer;
}

.donation-option-button:hover, .donation-amount-button:hover, .donation-pay-card-button:hover, .donation-pay-service-button:hover {
    background: #c8c8c8;
}

.donation-amount-button-sel, .donation-amount-button-sel:hover,
.donation-pay-card-button-sel, .donation-pay-card-button-sel:hover,
.donation-pay-service-button-sel, .donation-pay-service-button-sel:hover {
    background-color: #EE7950;
    color: #FFFFFF;
}

.donation-option-button:first-child {
    margin-right: 20px;
    background-color: #EE7950;
    color: #FFFFFF;
}

.donation-option-button:first-child:hover {
    background-color: #E75F2F;
}

.donation-amount-buttons-wrapper {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
}

.donation-amount-button {
    height: 70px;
    width: 23%;
    margin-right: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.donation-amount-button:last-child {
    flex-wrap: wrap;
}

.donation-amount-button input {
    width: 90%;
    background-color: #ffffff;
    height: 24px;
    display: block;
    margin: -15px 8px 0 8px;
    padding: 0 5px;
}

.donation-pay-button-wrapper {
    width: 100%;
    /*display: flex;*/
    /*justify-content: space-between;*/
    justify-content: center;
    margin-bottom: 40px;
    margin-top: 20px;
}

.card-options-wrapper {
    height: 50px;
    background: #E3E3E5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card-options-wrapper.multiple {
    justify-content: space-evenly;
}

.sidebar-footer-text {
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: #3D4153;
    opacity: 0.85;
}


/*** donations ***/

/***  conferences ***/
	.conf_center {
		overflow : hidden;
		margin : 0 297px 0 0;
		font: 15px/24px Palatino;
		color : #474747;
	}

	.right_schedule_title {
		font: bold 12px/24px 'Palatino Linotype', Georgia, serif;
		color : #474747;
		margin-top: 13px;
		text-transform: uppercase;
	}

	.conf_item a {
		font-weight: bold;
	}
	.button_blue {
		display: inline-block;
		height: 20px;
		width: 13px;
		padding: 0 0 0 7px;
		border-radius: 3px;
		background: #258cb3;
		color : #ffffff;
		font: bold 12px/20px 'Palatino Linotype', Georgia, serif;
		cursor: pointer;
	}
	#custom-curr {width:20px;}
/***  conferences ***/

/*** pub_item ***/
	.pub_item {
		min-height : 28px;
		line-height : 28px;
		padding-left : 43px;
		background : transparent no-repeat left center;
	}
	.pub_item_text {
		font-weight : bold;
		line-height : 24px;
	}
	.pub_item_img {
		float : left;
		width : 28px;
		height : 28px;
		margin-left : -43px;
	}

/*** inputs ***/
.button {
    display : inline-block;
	min-width : 120px;
	max-width : 100%;
    padding: 10px 17px;
    border-radius: 8px;
    background : #6f6ba8;
    font : bold 16px/23px 'Palatino Linotype', Georgia, serif;
    color : #ffffff;
	text-align : center;
    cursor : pointer;
}

a.button {height: 23px;}

.button:hover {
    background-color : #433f7d;
}

.label_left {
    float : left;
    width : 145px;
    padding-right : 5px;
    text-align : right;
}

.input_wrap_label {
    margin-bottom: 30px;
    display: block;
}

.input_wrap_label.multiple {
    display: flex;
}

.input_wrap_label.multiple .input_wrap {
    margin-right: 20px;
}

.input_wrap_label.multiple>div:last-child .input_wrap {
    margin-right: 0;
}

.input_wrap_label.multiple > div {
    flex-grow: 1;
}

.input_wrap {
    background: #F5F5F5;
    padding: 12px 10px 12px 20px;
    display: block;
    border: 1px solid #F5F5F5;
}

.input_wrap_label.captcha .input_wrap {
    background: #ffffff;
    padding: 0;
    display: block;
    border: none;
}

.input_wrap input, .input_wrap textarea {
    width: 100%;
    color: #3D4153;
}

.input_wrap textarea {
    min-height: 70px;
}

.input_wrap input:disabled, .input_wrap textarea:disabled {
    opacity: 0.85;
    color : #8d8d8d;
}

.input-label {
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
    opacity: 0.65;
    margin-bottom: 10px;
}

.input_wrap:focus-within {
    border-color: rgba(104, 99, 167, 0.3)
}

.input_wrap.input_wrap_error {
    border-color: #E72F2F;
}

.input-error-text {
    display: none;
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: #E72F2F;
}

.input_wrap.input_wrap_error + .input-error-text {
    display: block;
}

.input_text {
    width : 100%;
    height : 28px;
    font : normal 12px/28px 'Palatino Linotype', Georgia, serif;
    color : #474747;
}

.input_textarea {
    width : 100%;
    height : 84px;
    font : normal 12px/28px 'Palatino Linotype', Georgia, serif;
    color : #474747;
}

.form-submit-button {
    width: 150px;
    height: 50px;
    background-color: #EE7950;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.form-submit-button.big {
    width: 250px;
}

.form-submit-button:hover {
    background-color: #E75F2F;
}

.form-submit-button img{
    margin-left: 8px;
}

/*** inputs ***/

/*** video ***/

.video_left {
    display: flex;
    flex-wrap: wrap;
}

.video_item {
	line-height : 97px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    min-width : 22%;
    max-width : 22%;
    margin-right : 3%;
}

@media (max-width: 1100px) {
    .video_item {
        min-width : 30%;
        max-width : 30%;
    }
}

@media (max-width: 700px) {
    .video_item {
        min-width : 45% !important;
        max-width : 45% !important;
        margin-right : 5%;
    }
}

.video_item_text {
	display : inline-block;
	overflow : hidden;
    line-height : 24px;
    margin-top: 8px;
}

.video_item_image {
	position : relative;
    height : auto;
}
.video_item_image:after {
	position : absolute;
	left : 50%;
	top : 50%;
	content : '';
    width : 64px;
    height : 64px;
    margin : -32px 0 0 -32px;
    background : #0e0e0f69 url('/i/play-control.png') no-repeat center center;
    background-size : initial;
    border-radius: 32px;
} 

.video_item_image img {
    width : 100%;
    height : 100%;
}

.video_item_description, .video_item_source {
    display : block;
    font-weight: 500;
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
}

.video_item_source:hover {
    text-decoration : underline;
}

.video_item_authors  {
    display : block;
}

.video_item_authors a  {
    color : #474747;
}
.video_item_authors a:hover  {
    text-decoration : underline;
}
/*** video ***/

.alphabet_cont {background:#ffffff; padding-bottom:20px;}
.alphabet { border-bottom:1px solid #cfd4d6;}
.alphabet a {
    display:inline-block;
    float:left;
    width:39px;
    height:25px;
    font:bold 14px/25px 'Palatino Linotype', Georgia, serif;
    text-align:center;
}
.alphabet a:hover {text-decoration:underline; background-color : #f0f0f0;}
.alphabet a.sel {background-color : #dee5e8;}
.alphabet a.all {width:41px;}

.show_hide_togg.group {padding:5px 5px 5px 15px; background:url('/i/tree_exp.png') no-repeat 5px 10px; color : #2e393d;
    cursor:pointer;
}
.show_hide_togg.group.hide {background-image:url('/i/tree_col.png');}

.article_table_list {width:100%;}
.article_table_list td {border:2px solid #ffffff; border-left:0; padding:5px 15px; white-space:normal; background-color : #f2f2f2;
    font:normal 12px 'Palatino Linotype', Georgia, serif;
    vertical-align:top;
}
.article_table_list td.art {background:#f2f2f2 url('/i/tree_art.png') no-repeat 4px 7px;}
.article_table_list td.sub {background:#f2f2f2 url('/i/tree_sub.png') no-repeat 4px 7px;}
.article_table_list a:hover {text-decoration:underline;}

/*** search page ***/
.search-form {
    margin-top: 16px;
    margin-bottom: 30px;
    display: flex;
}

@media (max-width:1100px) {
    .search-sidebar {
        min-width: 300px!important;
        max-width: 300px!important;
        margin-right: 50px;
    }
}

@media (max-width:900px) {
    .search-sidebar {
        min-width: 200px!important;
        max-width: 200px!important;
        margin-right: 30px;
    }
}

@media (max-width:700px) {
    .search-sidebar {
        min-width: auto!important;
        max-width: unset!important;
        margin: 0 0 30px 0;
        width: 100%;
    }

    .search-content {
        flex-wrap: wrap;
    }
}


.search-page-input-label {
    width: 40%;
}

.search-page-submit {
    width: 150px;
    height: 50px;
    background-color: #EE7950;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-page-submit img {
    margin-left: 10px;
}

.search_item, .search_results .show_hide_area {
    margin-bottom:25px;
}

.search_item.inner {margin:0 0 5px 15px;}

.search_item_title {
    opacity: 0.85;
    text-transform:uppercase;
}
.search_item_title:hover, .search_item_author:hover {text-decoration:underline;}

.search_item_area, .search_item_author, .search_results .show_hide_togg.group {
    font-size: 10px;
    line-height: 17px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #3D4153;
}

.search_item_area {
    margin-top: 4px;
    margin-bottom: 4px;
}

.search_item .article_content {
    font-size: 11px;
    line-height: 17px;
    letter-spacing: 0.02em;
    color: #3D4153;
}
.search_item_area:hover {text-decoration:underline;}
/*** search page ***/

/*** author details ***/

.author-header {
    display: flex;
}

@media (max-width: 950px) {
    .author-header {
        flex-direction: column;
    }

    .author_info {
        margin: 0!important;
    }

    .author_photo {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }

    .author_details .author_tabs {
        flex-wrap: wrap;
    }
}

.author_info {
    margin-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.author_details .author_photo img {width:174px;}
.author_details .author_more a:hover {text-decoration:underline;}

.author_details .author_name {
    font-size:30px;
}

.author_details .author_block {
    padding-top:20px;
}

.author_details .author_block {
    padding-top:20px;
}

.author_details .author_tabs {
    margin:20px 0;
    display: flex;
    justify-content: space-evenly;
    background: #f5f5f5;
}

.author_details .author_tab {
    height: 40px;
    font-style: normal;
    font-weight: 500;
    font-size: 11px;
    line-height: 17px;
    text-align: center;
    color : #3D4153;
    flex-grow: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    min-width: 100px;
}

.author_details .author_tab.show_switch_togg {
    opacity: 1;
}

.author_details .author_tab.show_switch_togg:hover, .author_details .author_tab.sel {
    background: #e3e3e5;
    font-weight: bold;
}

.author_details .author_article_item {padding-bottom:11px;}

.author_more {
    margin-bottom: 20px;
    margin-top: 30px;
}

.author_sub_title {
    font-weight: bold;
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 15px;
}

.artDesc {
    margin-top: 10px;
}
/*** author details ***/

/*** submissions ***/

.submissions-content {
    margin-right: 50px;
    margin-bottom: 70px;
}

.submissions-content p {
    padding-bottom: 15px;
    text-align: justify;
}

.submissions-content ul, .submissions-content ol{
    margin-left:20px;
}

.submissions-content ul li {
    padding-bottom: 5px;
}

.submissions-content .article_table_list>div {
    padding-top: 5px;
    padding-bottom: 5px;
}

@media (max-width: 950px) {
    .submissions-wrapper {
        flex-wrap: wrap;
    }

    .submissions-content {
        flex-grow: 1;
        margin-bottom: 0;
        margin-right: 0;
    }

    .tab_menu_item {
        font-size: 13px!important;
    }
}

.submissions-header-main {
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    line-height: 42px;
}

.submissions-header {
    font-style: normal;
    font-weight: bold;
    font-size: 21px;
    line-height: 30px;
    margin-bottom: 16px;
    margin-top: 14px;
}

.instructions-list>li::marker {
    font-style: normal;
    font-weight: bold;
    font-size: 21px;
    line-height: 30px;
}

.instructions-list ul {
    list-style: disc;
}

.tab_menu {
    width: 100%;
    display: flex;
    flex-direction: column;
}
.tab_menu_item {
    height: 40px;
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    font-style: normal;
    font-size: 11px;
    line-height: 17px;
    color: #3D4153;
    padding-left: 20px;
}

.tab_menu_item.sel, .tab_menu_item:hover {
    font-weight: bold;
    background: #ececee;
}

/*** submissions ***/

/*** editorial board ***/
.editorial_board {
    color : #2e393d;
}

.editorial_board .editor_name, .editorial_board .editor_name_link {
    display:block;
}

.editorial_board .editor_name_link {
    margin-top: 15px;
}

.editors-top-row {
    display: flex;
    justify-content: center;
}

.editors-top-row .editor_name, .editorial_board h4 {
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    text-align: center;
    color: #3D4153;
}

@media (max-width: 700px) {
    .editors-top-row .editor:first-child {
        margin-right: 20px!important;
    }

    .editors-row {
        flex-wrap: wrap!important;
    }

    .editors-section {
        width: 50%;
    }

    .editorial_board h4, .editors-top-row .editor_name {
        font-size: 25px;
    }

    .editors-row .editors-section {
        margin-left: 0!important;
    }
}

.editors-row {
    display: flex;
    justify-content: space-evenly;
}

.science-editors.editors-row {
    flex-wrap: wrap;
}

.science-editors.editors-row .editor {
    width: 25%;
}

@media (max-width:950px) {
    .science-editors.editors-row .editor {
        width: 33%;
    }
}

@media (max-width:700px) {
    .science-editors.editors-row .editor {
        width: 50%;
    }
}

.editors-row .editors-section {
    margin-left: 15px;
}

.editors-row .region {
    font-weight: 500;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
    color: #3D4153;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.editors-top-row .editor:first-child {
    margin-right: 60px;
}

.editors-row .editor, .editors-top-row .editor {
    text-align: center;
}

.editors-row .editor_name {
    font-weight: bold;
}

.editorial_board h4 {
    margin-top: 40px;
}

.science-editors-header {
    margin-bottom: 15px;
}

.editors-row.science-editors .editor{
    margin-top: 10px;
}

.editorial_board {
    margin-top: 10px;
    margin-bottom: 30px;
}

.editorial_board table {width:100%;}

.chief_editors_table {
    margin: 25px auto 0;
}

.editorial_board td {vertical-align:top; text-align:center;}

/*** editorial board ***/

.proposal-form-wrapper {
    margin: 50px 0;
}

.proposal_form .proposal_alert {color : red; font-weight:bold; line-height:26px;}
.proposal_form .proposal_success {padding-top:15px; color : #248cb3; font-weight:bold; text-align:center;}
.proposal_form .proposal_attach {
    margin-bottom:15px;
    border: 2px dashed #cfd4d6;
    padding: 15px;
}

.proposal_form .proposal_attach input[type='file'] {
    margin-left: 15px;
}

/* add and override styles from article_style.css */
#tharticle .article_relates {font-size:14px; line-height:18px;}
#tharticle .simplesect.ref {display:none;}
#tharticle .article_relates .rel_products{margin:10px 22px 0 0;}

/*** Manage content***/
.contentPanel {border:1px solid #d2d2d2; z-index:100;}
.contentPanel .inner {border:1px solid #ffffff; padding:10px; background-color : #f4f4f4;}
.contentPanel {border:1px solid #d2d2d2; z-index:100;}
.contentPanel .inner {border:1px solid #ffffff; padding:10px; background-color : #f4f4f4;}
/*.contentPanel .inner td {vertical-align:top;}*/
.contentPanel .separ {width:10px;}
.contentPanel .panL {background-color : #ffffff; padding:10px; width:320px; vertical-align:top;}
.contentPanel .panL.small {width:auto;}
.contentPanel .panL.wide {width:500px;}
.contentPanel .panL .buttons {border-bottom:1px solid #dcdcdc; margin-bottom:10px; padding-bottom:5px; overflow:hidden;}
.contentPanel .panL .buttons div {clear:both;}
.contentPanel .panL .list .area {padding:10px 0 5px;}
.contentPanel .panL.small .list .area {white-space:nowrap;}
.contentPanel .panL .list .area p, .contentPanel .panL .list .area a {font:normal 11px Tahoma; padding:0;}
.contentPanel .panL .list .area .children{padding-left:15px;}
.contentPanel .panL .list .area .ttl {padding:0 5px 0 18px; background:url(/i/tree_reg.png) no-repeat 2px 3px; font-size:11px; color : #000000; display:inline-block; line-height:17px; cursor:pointer;}
/*.contentPanel .panL .list .area .reg, .contentPanel .panL .list .area .art, .contentPanel .panL .list .area .exp, .contentPanel .panL .list .area .col {padding:0 5px 0 15px; background:url(/i/tree_reg.png) no-repeat left 3px; font-size:11px; color : #000000; display:inline-block; line-height:17px; cursor:pointer;}*/
.contentPanel .panL .list .area .ttl.art {
    background: url(/i/tree_art.png) no-repeat left 1px;
    color : #2E55A2;
    text-transform:uppercase;
}
.contentPanel .panL .list .area .ttl.sub {
    background:url(/i/tree_sub.png) no-repeat left 1px;
    color : #2E55A2;
}
.contentPanel .panL .list .area .ttl.exp {background-image:url(/i/tree_exp.png)}
.contentPanel .panL .list .area .ttl.col {background-image:url(/i/tree_col.png)}
.contentPanel .panL .list .area .sel {background-color : #e9e9e9;}
.contentPanel .panR {border:1px solid #dadada; background-color : #ffffff; padding:15px 30px; vertical-align:top;}
.contentPanel .w20px {width:20px}
.contentPanel .panL .list .area {
    color : #2E55A2;
    cursor:pointer;
    display:block;
}
.contentPanel .panL .list .area.sel {
    color : #163777;
    text-decoration:underline;
}

.select_area {
    margin: 10px !important;
    border: 1px solid #dcdcdc;
    overflow-x:scroll;
    overflow: -moz-scrollbars-horizontal;
}

/* navigator */
.navigator_wrap {
    position : relative;
    height : 300px;
    padding : 20px;
    /*background : #f0f0f1;
    border : 1px solid #c9c9c9;*/
}

.navigator {
    position : relative;
    height : 100%;
    width : 100%;
    text-align : center;
    overflow : hidden;
}
/* navigator */

.related_list {
    padding : 25px 50px;
    font-size : 14px;
    text-align : left;
}
.related_list li {
    padding-bottom : 10px;
}
.related_list li:last-child {
    padding-bottom : 0;
}

.rel_pub-bh {background-image: url('/i/tmp_bh.png');}
.rel_pub-hedh {background-image: url('/i/tmp_hedhme.png');}
.rel_pub-arht {background-image: url('http://dl.begellhouse.com/ii/5756967540dd1b03_small.gif');}
.rel_pub-ichmt {background-image: url('http://dl.begellhouse.com/ii/1bb331655c289a0a_small.gif');}
.rel_pub-ihtc13 {background-image: url('http://dl.begellhouse.com/ii/IHTC13_small.gif');}

.rel_pub-wcnt {background-image: url('http://dl.begellhouse.com/ii/e-WCNT_small.gif');}
.rel_pub-wdst {background-image: url('http://dl.begellhouse.com/ii/who_small.gif');}
.rel_pub-eman {background-image: url('http://dl.begellhouse.com/ii/259d705b1b5449e7_small.gif');}
.rel_pub-tsfp {background-image: url('http://dl.begellhouse.com/ii/3ce1b491115b5c16_small.gif');}
