.drawer {
	bottom: 0px;
	overflow: hidden;
	position: fixed;
	width: 100%;
	z-index: 5; /* make this what you need to */
}

.drawer > header {
	background: #000000; /* add image if you want */
	color: #ffffff;
	display: block;
	height: 25px;
	line-height: 25px;
	margin: auto;
	overflow: hidden;
	padding: 5px;
	text-align: center;
	width: 150px;
	
	/* Radius round corners - change radius or delete if need be */
	-moz-border-radius-topleft: 25px 40px;
	-moz-border-radius-topright: 25px 40px;
	border-top-left-radius: 25px 40px;
	border-top-right-radius: 25px 40px;
}

.drawer-content {
	background: url(../images/bg.html);
	border-collapse: collapse;
	width: 100%;
	border-top: 5px solid #000000;
	background: #ebeef4;
	padding: 20px;
}

.clickme {
  cursor: pointer;
}

.drawer-items {
	margin: auto;
	width: 960px;
}

.drawer-items ul {
  margin: 0px;
}

.drawer-items li {
  float: left;
  list-style: none;
  margin-left: 0px;
  width: 200px;
}

.drawer-items li a {
  color: #fff;
  display: block;
  height: 86px;
  padding: 12px;
  text-decoration: none;
  width: 176px;
}

.drawer-items li a:hover {
  background: #bd4929; /* change link hover color */
}

.drawer-items .title {
	color: #c4c4c4;
	font-size: 20px;
	line-height: 1.1;
}

/* Don't need these below it is just for full size image
-------------------------------------------------------- */
.background-image {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 1;
}

.background-image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  min-width: 50%;
  min-height: 50%;
}


@media(max-width: 992px){
	.drawer{
		z-index: 10;
	}
}

@media(max-width: 768px){
	.drawer{
		z-index: 10;
	}
}

@media(max-width: 320px){
	.drawer{
		z-index: 10;
	}
}