#wrapper {
   -webkit-transform: translate3d(0px, 0px, 1px);
   -webkit-transition: .2s -webkit-transform ease-in-out;
   z-index: 1;
}
#wrapper.show {
   -webkit-transform: translate3d(200px, 0px, 1px);
   min-width: 180px;
}
#drawer.show {
    height: 100%;
    visibility: visible;
    z-index: 1;
    -webkit-transition: z-index 0s linear .2s;
}
#drawerContents {
   display: none;
   height: 100%;
   position: relative;
   width: 180px;
}
#drawer {
   background: url(../img/bg.png) repeat;
   left: 0;
   top: 0;
   position: fixed;
   visibility: hidden;
   z-index: -1;
   -webkit-transition: visibility 0s linear .2s;
}
#drawer ul li a{
   display: block;
   font-size:18px;
   padding: 15px 15px 15px 18px;
   font-weight: bold;
   color: #000 !important;
   border-bottom: 1px solid #f0da00;
   font-family: 'Oxygen', sans-serif;
}