/**
 * Sliding swipe menu CSS
 */
nav {
    height: 100%;
    width: 280px;
    background-color: #f2f2f2;
    left: 0;
    top: 0;
    z-index: 99;
    position: fixed;
    overflow-y: auto;
    overflow-x: visible;
    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: 97;
}
a.menu-mobile {
    padding: 10px 10px 10px 10px;
    margin:0;
    font-size:15px;
    line-height:12px;
        color: #f2f2f2;
        text-decoration: none;
        font-weight:bold;
        background-color: #fd8901;
    left: -30px;
    top: 8%;
    z-index: 98;
    position: fixed;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
a.menu-mobile:hover {
    text-decoration: none;
}