/* General styles for all menus */
#showLeft, #showLeft2 {
	border:0px;
	background:#090;
	float:left;
	width:32px;
	height:32px;
	background:url(../img/ico_menu.png) no-repeat center center;
	background-size:32px 32px;
	cursor:pointer;
	margin:10px;
	margin-right:0px;
}

#showLeft2 {
	background:url(../img/ico_menu_cerrar.png) no-repeat center center;
	background-size:32px 32px;
	float: right;
	margin:0px;
}

.cbp-spmenu {
	background: #2c3137;
	position: fixed;
}

.cbp-spmenu h3 {
	color: #FFF;
	font-size: 1.8em;
	padding: 14px;
	padding-top:15px;
	margin: 0;
	font-weight: 300;
	background: #101214;
	height:32px;
	text-align:left;
}

.cbp-spmenu a {
	display: block;
	color: #fff;
	font-size: 1.7em;
	font-weight: 300;
}

.cbp-spmenu a.seleccionado,
.cbp-spmenu a.seleccionado:hover{
	background: #000;
	cursor:default;
}

.cbp-spmenu a:hover {
	background: #3caa31;
}

.cbp-spmenu a:active {
	background: #afdefa;
	color: #47a3da;
}

/* Orientation-dependent styles for the content of the menu */

.cbp-spmenu-vertical {
	width: 240px;
	height: 100%;
	top: 0;
	z-index: 1000;
}

.cbp-spmenu-vertical a {
	
	padding:14px;
	margin-bottom:2px;
	text-decoration:none;
	text-align:left;
}


/* 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: -150px;
}

.cbp-spmenu-bottom {
	bottom: -150px;
}

.cbp-spmenu-top.cbp-spmenu-open {
	top: 0px;
}

.cbp-spmenu-bottom.cbp-spmenu-open {
	bottom: 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: 55.1875em){

	.cbp-spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.cbp-spmenu-top {
		top: -110px;
	}

	.cbp-spmenu-bottom {
		bottom: -110px;
	}

}

@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;
	}
}