/* General styles for all menus */
.cbp-spmenu-push .main {
float:left;
padding-top:2.5em
}
.bt_menu {
float:left;
cursor:pointer;
}
.cbp-spmenu {
	background: #37424b;
	position: fixed;
    opacity:0.98;
}

.cbp-spmenu h3 {
	color: #6b7885;
	margin: 0;
	font-weight: 300;
	background: #2c3137;
}

.cbp-spmenu a {
	display: block;
	color: #aeb4ba;
	font-size: 0.88em;
	font-weight: 400;
    text-decoration:none
}

.cbp-spmenu a:hover {
	background: #1e252d;
}

.cbp-spmenu a:active {
	background: #5e6e7d;
	color: #aeb4ba;
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
    padding-top:2em
}

.cbp-spmenu-vertical a {
	padding: 1em;
    font-size:0.8em;
}
.cbp-spmenu-vertical h3 a{
    font-size:0.7em;
    color:#6b7885;
}
.cbp-spmenu-horizontal {
	width: 100%;
	height: 158px;
	z-index: 1000;
    overflow:hidden;
    max-width:1000px;
}

.cbp-spmenu-horizontal h3 {
	height: 2em;
	width: 100%;
	float: left;
}
.cbp-spmenu-horizontal h3 a{
	border: 0;
    float: left;
    padding: 0.55em;
    width: initial;
    font-size:0.7em;
    color:#6b7885;
}
.cbp-spmenu-horizontal h3 a img{
    float: left;
    padding-right:7px
}
.cbp-spmenu-horizontal h3 a:hover{
    background:none !important;
    color:#fff;
}

.cbp-spmenu-horizontal a {
	border-bottom: 1px solid #626a72;
    border-left: 1px solid #626a72;
    float: left;
    padding: 1.5em 1.87em;
    width: 28%;
}
/*.cbp-spmenu-horizontal a {
	border-bottom: 1px solid #626a72;
    border-left: 1px solid #626a72;
    float: left;
    padding: 1.74em;
    width: 20%;
}*/
.cbp-spmenu-horizontal a:first-child, .cbp-spmenu-horizontal a:nth-child(4) {
    border-left: 0;
}

/* Vertical menu that slides from the left or right */

.cbp-spmenu-left {
	left: -240px;
}

.cbp-spmenu-right {
	right: -240px;
}

.cbp-spmenu-left.cbp-spmenu-open {
	left: 0px;
}

.cbp-spmenu-right.cbp-spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.cbp-spmenu-top {
	top: -174px;
    position:absolute
}


.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
	
}


/* Push classes applied to the body */

.cbp-spmenu-push {
	/*overflow-x: hidden;*/
	position: relative;
	left: 0;
}

.cbp-spmenu-push-toright {
	left: 240px;
}

.cbp-spmenu-push-toleft {
	left: -240px;
}

/* 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 (max-width: 63.9em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 134px;
	}

	.cbp-spmenu-top {
		top: -134px;
	}
    	

}

@media screen and (max-height: 26.375em){

	.cbp-spmenu-vertical {
		font-size: 90%;
		width: 190px;
	}

	.cbp-spmenu-left,
	.cbp-spmenu-push-toleft {
		left: -190px;
	}

	.cbp-spmenu-right {
		right: -190px;
	}

	.cbp-spmenu-push-toright {
		left: 190px;
	}
}