ul, li {
    list-style-type: none;
}
@font-face {
    font-family: headFont;
    src: url(../font/hfont.ttf);
}
.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.flex {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}
.flex-row.center, .flex-col.center {
    align-items: center;
}
.white-view {
    background: #fff;
    border: 0 none;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 5px 1px rgb(0 0 0 / 40%);
    box-shadow: 0 0 5px 1px rgb(0 0 0 / 40%);
    padding: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
img {
    border-radius: 8px;
    max-width: 100%;
    /*    height: 100%;*/
}
#header {
    font-family: headFont;
    color: #FFF;
    font-size: 2em;
    text-shadow: 2px 2px #000;
    text-align: center;
    text-decoration: underline;
    display: flex;
    align-items: center;
    padding: 24px 16px;
    justify-content: space-between;
}
#header .body {
    flex: 1;
}
body {
    line-height: 1;
    font-family: Calibri, Arial, sans-serif;
    background: #eedfcc url(../image/background.jpg) no-repeat center top;
    background-size: cover;
    overflow-y: scroll;
    overflow-x: hidden;
    background-attachment: fixed!important
}

ul#menu
{
    padding: 0;
    padding-right: 5px;
    position: relative;
    margin: 5px;
   
}

ul#menu li
{
    display: inline;
}

ul#menu li a
{
    background-color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    line-height: 2.8em;
    color: #000;
    border-radius: 4px 4px 0 0;
}

ul#menu li a:hover
{
    background-color: #2F4F4F;
    text-decoration: underline;
    color: white;
}


#itopL {
    float: left;
    width: 45%;
    height: 350px;
    border-radius: 4px;
    background: #fff;
    background: -o-linear-gradient(#fff, #f9fdff);
    background: -webkit-linear-gradient(#fff, #f9fdff);
    padding: 20px;
    border-color: rgba(4, 129, 177, 0.4);
}
#itopR {
    float: right;
    width: 45%;
    height: 450px;
    border-radius: 4px;
    background: #fff;
    background: -o-linear-gradient(#fff, #f9fdff);
    background: -webkit-linear-gradient(#fff, #f9fdff);
    padding: 20px;
    border-color: rgba(4, 129, 177, 0.4);
}
.idx-title {
    font: bold 36px Georgia, "Times New Roman", Times, serif;
    color: #99CC00;
    text-shadow: 0 1px 0 #ccc, 0 2px 0 #000, 0 3px 0 #000, 0 3px 0 #000, 0 3px 0 #000, 0 6px 1px rgba(0, 0, 0, .1), 0 0 5px rgba(0, 0, 0, .1), 0 1px 3px rgba(0, 0, 0, .3), 0 3px 5px rgba(0, 0, 0, .2), 0 5px 10px rgba(0, 0, 0, .25), 0 10px 10px rgba(0, 0, 0, .2), 0 20px 20px rgba(0, 0, 0, .15);
}
.idx-subtitle {
    font: bold 22px/1.5em Garamond, Georgia, "Times New Roman", Times, serif;
    color: #99D6FA;
    text-shadow: 0 1px 1px #000000;
}
.menu-wrapper {
    display: flex;
    justify-content: flex-start;
}
.menupointer {
    cursor: pointer;
    display: none;
}
@media (max-width: 1015px) {
    #header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background-color: #fff;
    }
    .menupointer {
        display: inline-block;
        font-size: 3rem;
    }
    .menu-wrapper {
        height: 100%;
        background-color: #fff;
        display: flex;
        justify-content: flex-end;
        position: fixed;
        width: 250px;
        z-index: 10000;
        top: 0;
        left: 0;
        overflow-y: auto;
        overflow-x: hidden;
        transform: translateX(-100%);
        transition: translateX 0.3s ease-in;
    }
    .menu-wrapper.active {
        transform: translateX(0);
    }
    .menu-wrapper .menupointer {
        position: absolute;
        right: 0;
        top: 0px;
    }
    ul#menu {
        padding-top: 64px;
        overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
    }
    ul#menu li {
        display: block;
    }
}

#page_logo{
    font-family: headFont;
    color: #337ab7;
    font-size: 2em;
    text-shadow: 2px 2px #000;
    padding: 24px 16px;
}
/*.menu-wrapper {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-wrapper .menu {
    display: flex;
    align-items: center;
}
.menu-wrapper .menu {
    height: 40px;
    padding: 4px 8px;
    color: #fff;
    font-size: 24px;
    border-radius: 16px;
}
.menu-wrapper .menu li{
    background-color: transparent;
    border: none;
    outline: none;
}
.menu-wrapper .menu .menu_item+{
    margin-left: 8px;
}
*/


#google_translate_element {
    display: flex;
    align-items: center;
    min-width: 150px;
}
#google_translate_element .goog-te-combo{
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    outline: none;
}
#google_translate_element .goog-te-combo:focus{
    border: 1px solid rgba(0, 0, 0, 0.3);
    
}
.home_page .white-view{
    min-height: 470px;
    margin: 16px 0px !important ;
}
.home_page .button_box{
    width: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.sideBarButton {
    -moz-box-shadow:inset 0px 1px 3px 0px #91b8b3;
    -webkit-box-shadow:inset 0px 1px 3px 0px #91b8b3;
    box-shadow:inset 0px 1px 3px 0px #91b8b3;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #768d87), color-stop(1, #6c7c7c));
    background:-moz-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
    background:-webkit-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
    background:-o-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
    background:-ms-linear-gradient(top, #768d87 5%, #6c7c7c 100%);
    background:linear-gradient(to bottom, #768d87 5%, #6c7c7c 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#768d87', endColorstr='#6c7c7c',GradientType=0);
    background-color:#768d87;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
    border-radius:5px;
    border:1px solid #566963;
    display:inline-block;
    cursor:pointer;
    color:#fff;
    font-family:Georgia;
    font-size:15px;
    font-weight:bold;
    padding:11px 23px;
    text-decoration:none;
    text-shadow:0px -1px 0px #2b665e;
}
.sideBarButton:hover {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #6c7c7c), color-stop(1, #768d87));
    background:-moz-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
    background:-webkit-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
    background:-o-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
    background:-ms-linear-gradient(top, #6c7c7c 5%, #768d87 100%);
    background:linear-gradient(to bottom, #6c7c7c 5%, #768d87 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6c7c7c', endColorstr='#768d87',GradientType=0);
    background-color:#6c7c7c;
        color: black;
}
.sideBarButton:active {
    position:relative;
    top:1px;
}

 h2.idx-title {
        margin: 0;
    }