




/* General styles for all menus */
.spmenu {
	/*background: #47a3da;*/
	position: absolute;
	/*top:50px;*/
}

.spmenu h3 {
	/*color: #afdefa;*/
	font-size: 1.9em;
	padding: 20px;
	margin: 0;
	font-weight: 300;
	/*background: #0d77b6;*/
}

.spmenu a {
	display: block;
	/*color: #fff;*/
	font-size: 1.1em;
	font-weight: 300;
}

.spmenu a:hover {
	/*background: #258ecd;*/
}

.spmenu a:active {
	/*background: #afdefa;*/
	/*color: #47a3da;*/
}

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

.spmenu-vertical {
	/*width: 240px;*/
	width: 75%;
	height: 100%;
	/*top: 0;*/
	z-index: 2;
}

.spmenu-vertical a {
	/*border-bottom: 1px solid #258ecd;*/
	border-bottom: 1px solid rgba(0,0,0,0.3);
	padding: 1em;
}

.spmenu-horizontal {
	width: 100%;
	height: 150px;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.spmenu-horizontal h3 {
	height: 100%;
	width: 20%;
	float: left;
}

.spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	/*border-left: 1px solid #258ecd;*/
	border-left: 1px solid rgba(0,0,0,0.3);
}

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

.spmenu-left {
	/*left: -240px;*/
	left: -75%;
}

.spmenu-right {
	/*right: -240px;*/
	right: -75%;
}

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

.spmenu-right.spmenu-open {
	right: 0px;
}

/* Horizontal menu that slides from the top or bottom */

.spmenu-top {
	top: -150px;
}

.spmenu-bottom {
	bottom: -150px;
}

.spmenu-top.spmenu-open {
	top: 0px;
}

.spmenu-bottom.spmenu-open {
	bottom: 0px;
}

/* Push classes applied to the body */
/*
test alex c.---------------------------------------------------------------------------------------
*/
.spmenu-pushnew {
    overflow-x: hidden;
    /*position: relative;*/
    width: 100%;
    left: 0;
}

.spmenu-pushnew-toright {
    overflow-x: hidden;
    /*position: relative;*/
    width: 80%;
    left: 20%;
}
.spmenu-leftnew {
    /*left: -240px;*/
    left: -20%;

}
.spmenu-verticalnew {
    /*width: 240px;*/

    width: 20%;
    height: 100%;
    /*top: 0;*/
    z-index: 2;
}
/*
fine test alex c.---------------------------------------------------------------------------------------
*/

.spmenu-push {
	overflow-x: hidden;
	/*position: relative;*/
	left: 0;
}

.spmenu-push-toright {
	/*left: 240px;*/
	left: 50%;
}

.spmenu-push-toleft {
	/*left: -240px;*/
	left: -50%;
}

/* Transitions */

.spmenu,
/*[class*="spmenu"],*/
.spmenu-push {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.spmenu-pushnew,
.spmenu-pushnew-toright {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.spmenu-left,
.spmenu-open
{
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	transition: all 0.5s linear;
}


/* Example media queries */

@media screen and (max-width: 55.1875em){

	.spmenu-horizontal {
		font-size: 75%;
		height: 110px;
	}

	.spmenu-top {
		top: -110px;
	}

	.spmenu-bottom {
		bottom: -110px;
	}

}

@media screen and (max-height: 26.375em){

	.spmenu-vertical {
		font-size: 90%;
		width: 190px;
	}

	.spmenu-left,
	.spmenu-push-toleft {
		left: -190px;
	}

	.spmenu-right {
		right: -190px;
	}

	.spmenu-push-toright {
		left: 190px;
	}
}