html {
    /*IOS 300ms fix*/
/*    -ms-touch-action: manipulation;
    touch-action: manipulation;*/
    margin: 0;
    padding:0;
    height:100%;
}

::-webkit-scrollbar {
    display: none;
}

html body {
    }
    @media only screen and (min-width: 992px) {
    html body {
        width: 992px;
        margin: 0 auto;
    }
}

body.noScroll {
        overflow: hidden;
    }
    @media only screen and (min-width: 992px) {
    body.noScroll {
        overflow: visible;
    }
}

/* --  -- */
#pageTitle{
    height: 60px;
    width: 100%;
    background-color: #999999;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: left .2s linear;
    transition: left .2s linear;
}
    @media only screen and (min-width : 992px) {
        #pageTitle{}
    }

#pageTitle .logo {
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-family: arial;
    line-height: 60px;
    width: calc(100% - 140px);
    margin: 0 auto;
}

#pageTitle .logo a {
    text-decoration: none;
    display: block;
    font-size: 18px;
    font-family: monospace;
    line-height: 60px;
    color: #ffffff;
}

#contentWrapper > .container{
    height: 33vw;
    border: 10px solid #ccc;
}

/* --  -- */
#content{
    width: 100%;
    margin: 0 auto;
    overflow: auto;
    position: relative;
    left: 0;
    top: 0;
    z-index: 3000;
    padding-top: 60px;
    background-color: #e9e9e9;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition: left .2s linear;
    transition: left .2s linear;
}

#contentWrapper{}
