body .side-menu
{
	display:none;
}

body.side-open 
{
	overflow:hidden;
}

body.side-open .door
{
 	overflow-x: hidden;
	position: relative;
}

body.side-open .door .side-menu
{
	left:0;
	position:absolute;
	z-index: 999;
	width:265px;
	overflow:hidden;
	display:block;
}

body.side-open .door .side-content
{
    -webkit-transform: perspective(0) translateX(265px);
    transform: perspective(0) translateX(265px);
    -moz-transform: perspective(1px) translateX(265px);

}

body .door .side-content , body:before{
	-webkit-transition: -webkit-all .13s ease-out;
    transition: -webkit-all .13s ease-out;
    transition: all .13s ease-out;
    transition: all .13s ease-out,-webkit-all .13s ease-out;
}

body:before{
	content: " ";
    background: #f1f1f1;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0px;
    -webkit-box-shadow:inset -41px 0px 20px -35px rgba(0,0,0,.2);
    box-shadow:inset -41px 0px 20px -35px rgba(0,0,0,.2);
    z-index: 1;
}

body.side-open:before
{
	width: 265px;
}


.side-menu a
{

}