#container { 
	-webkit-transform: translate3d(0px, 0px, 1px);
	-webkit-transition: .2s -webkit-transform ease-in-out;
	z-index: 9999;
}
 
#container.show { 
	-webkit-transform: translate3d(240px, 0px, 1px);
	min-width: 320px;
}
 
#drawer.show {  
    height: 100%;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: z-index 0s linear .2s;
 }
 
#drawerContents {  
	display: none;
	height: 100%;
	position: relative;
	width: 240px;
}
 
#drawer {  
	background-color:
	rgba(255,197,26,1);
	top: 0;
	position: fixed;
	visibility: hidden;
	z-index: 9999;
	-webkit-transition: visibility 0s linear .2s;
 }