<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html,
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.snap-content {
    float: right;
    position: absolute;
    top: 45;
    right: 0;
    bottom: 0;
    left: 110px;
    width: 75%;
    height: auto;
    z-index: 1;
    overflow: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.snap-drawers {
    position: absolute;
    top: 45;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
}

.snap-drawer {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0px;
    width: 110px;
    height: auto;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -ms-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}

.snap-drawer-left {
    left: 0;
    z-index: 1;
}

.snap-drawer-right {
    right: 0;
    z-index: 1;
}

.snapjs-left .snap-drawer-right,
.snapjs-right .snap-drawer-left {
    display: none;
}

.snapjs-expand-left .snap-drawer-left,
.snapjs-expand-right .snap-drawer-right {
    width: 100%;
}

.snapjs-right .snap-drawer-left {
    display: block;
    right: 0;
    left: auto;
}


/* Hide the actual "Right" drawer in the demo */

.snapjs-right .snap-drawer-right {
    display: none;
}


/* Show the "Drag" background in the demo */

#content {
    background: #fff;
}

.snap-drawers {
    background: #5a5959;
}

.snap-drawer {
    background: #5a5959;
    color: #eee;
}

.snap-drawer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.snap-drawer h3 {
    border-bottom: solid #333 1px;
    box-shadow: 0 1px 0 #727272;
    color: #fff;
    background: #666666;
    font-size: 14px;
    font-family: arial;
    text-decoration: none;
    width: 110px;
    display: block;
    padding: 10px 0px 10px 10px;
    text-shadow: 0px 1px 1px #000000;
}

.snap-drawer h4 &gt; a {
    border-bottom: solid #FFF 1px;
    /*box-shadow: 0 1px 0 #727272;*/
    color: #fff;
    font-size: 12px;
    font-family: arial;
    text-decoration: none;
    /*width: 120px;*/
    display: block;
    padding: 10px 0px 10px 10px;
    /*text-shadow: 0px 1px 1px #000000;*/
}

.swipe_left i {
    font-size: 50px;
    color: #CCCCCC;
}
.list-item {
    display: none;
    border-bottom: solid #333 1px;
    /*box-shadow: 0 1px 0 #727272;*/
    color: #fff;
    font-size: 12px;
    font-family: arial;
    text-decoration: none;
    width: 110px;
    padding: 10px 0px 10px 10px;
    /*text-shadow: 0px 1px 1px #000000;*/
}

.list-item p &gt; a {
    color: #FFF;
    line-height: 35px;
    height: 35px;
}

#mask_bg {
    display: none;
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: black;
    z-index: 1001;
    -moz-opacity: 0.7;
    opacity: .70;
    filter: alpha(opacity=70);
}

#mask_show {
    display: none;
    position: absolute;
    top: 25%;
    left: 22%;
    width: 53%;
    height: 49%;
    padding: 8px;
    border: 8px solid #E8E9F7;
    background-color: white;
    z-index: 1002;
    overflow: auto;
}
</pre></body></html>