@charset "utf-8";
/* CSS Document */

/* grobal nav
-------------------------------------------------------------------*/
.btnGnav a {
    display: block;
    width: 50px;
    height:50px;
    border-radius:25px;
    -webkit-border-radius:25px;
    -moz-border-radius:25px;	
    background:#3c8cd0;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 101;
}
.btnGnav a span {
    display: block;
    background: #fff;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 13px;
    transition: all 0.4s;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
}
.btnGnav a span:first-child {
    top: 15px;
}
.btnGnav a span:nth-child(2) {
    margin-top: -1px;
    top: 50%;
}
.btnGnav a span:last-child {
    bottom: 15px;
}
.btnGnav .btn-close {
    background: #ffffff;
}
.btnGnav .btn-close span {
    background: #3c8cd0;
}
.btnGnav .btn-close span:first-child {
    -webkit-transform: translateY(9px) rotate(45deg);
    -moz-transform: translateY(9px) rotate(45deg);
    -ms-transform: translateY(9px) rotate(45deg);
    transform: translateY(9px) rotate(45deg);
}
.btnGnav .btn-close span:nth-child(2) {
    opacity: 0;
}
.btnGnav .btn-close span:last-child {
    -webkit-transform: translateY(-9px) rotate(-45deg);
    -moz-transform: translateY(-9px) rotate(-45deg);
    -ms-transform: translateY(-9px) rotate(-45deg);
    transform: translateY(-9px) rotate(-45deg);
}

/*-----------------------------------*/
.overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    display: none;
    overflow: auto;
    width: 100%;
    height: 100%;
    background:#ffffff;
}
#menu {
    padding:0px;
}
#menu ul {
    width:100%;
    margin:30px 0 0 0;
    padding: 0;
    list-style: none;
}
#menu .logo {
    width:63%;
    height:auto;
    margin-top:10px;
}
#menu li a {
    display:block;
    padding:13px 0;
    color:#222222;
    font-size:16px;
    text-decoration:none;
    text-align:center;
}
#menu hr.bd {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin:10px 0px;
    border: 0;
}
#menu p {
    padding: 13px 0;
    line-height: 1.7;
    font-size: 12px;
}
#menu p, #menu p a {
    color: #222222;
    text-align: center;
}
#menu p.logo {
    margin: 17px auto;
}
#menu address {
    padding: 15px 0;
    color: #ffffff;
    font-style: normal;
    text-align: center;
    font-size: 8px;
}

@media (max-width: 767px) {
    #menu li a {
        font-size: 16px;
        padding: 8px 0;
        }
}