/**
 * Sliding swipe menu CSS
 */
nav {
    height: 100%;
    background:#000;
    width: 280px;
    left: 0;
    top: -60px;
    z-index: 1000;
    position: fixed;
    overflow-y: hidden;
    overflow-x: hidden;
    transform: translate(-280px,0);
}
.ssm-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0,0,0,0.2);
    display: none;
    z-index: 1;
}

.opnav {
    height: 100%;
    background: #000;
    width: 280px;
    left: 0;
    /*top: -60px;*/
    z-index: 1000;
    position: fixed;
    overflow-y: hidden;
    overflow-x: hidden;
}