/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
    width: 180px;
    background:url(images/head_bg.jpg) #fff;
	position: fixed;
	top: 187px;
	z-index: 1000;
    border-bottom: 1px solid #5f5f5f;
    border-right: 1px solid #5f5f5f;
    border-top: 1px solid #d5d5d5;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

/* Transitions */

.cbp-spmenu,
.cbp-spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/* Example media queries */

@media screen and (min-width: 741px){
.cbp-spmenu-vertical{display: none;}
}

@media screen and (max-width: 650px){
.cbp-spmenu-vertical{top: 165px;}
}

@media screen and (max-width: 450px){
.cbp-spmenu-vertical{top: 135px;}
}