/* General styles for all menus */
.cbp-spmenu {
	background: #fff;
	position: fixed;
		border-left: 2px solid rgba(44, 69, 130, 1);
}

    .cbp-spmenu h3 {
        font-family: Georgia, "Times New Roman", Times, serif;
        font-size: 28px;
        font-weight: bold;
        color: white;
        padding: 20px;
        margin: 0;
        background: rgba(44, 69, 130, 1); /* Specific blue color */
        background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBnremFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0icmdiYSg0NCwgNjksIDEzMCwgMC44KSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0icmdiYSg0NCwgNjksIDEzMCwgMSkiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSJyZ2JhKDI1LCA0MCwgOTUsIDEpIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg==);
        background: -moz-linear-gradient(top, rgba(44, 69, 130, 0.8) 0%, rgba(44, 69, 130, 1) 50%, rgba(25, 40, 95, 1) 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(44, 69, 130, 0.8)), color-stop(50%,rgba(44, 69, 130, 1)), color-stop(100%,rgba(25, 40, 95, 1)));
        background: -webkit-linear-gradient(top, rgba(44, 69, 130, 0.8) 0%,rgba(44, 69, 130, 1) 50%,rgba(25, 40, 95, 1) 100%);
        background: -o-linear-gradient(top, rgba(44, 69, 130, 0.8) 0%,rgba(44, 69, 130, 1) 50%,rgba(25, 40, 95, 1) 100%);
        background: -ms-linear-gradient(top, rgba(44, 69, 130, 0.8) 0%,rgba(44, 69, 130, 1) 50%,rgba(25, 40, 95, 1) 100%);
        background: linear-gradient(to bottom, rgba(44, 69, 130, 0.8) 0%,rgba(44, 69, 130, 1) 50%,rgba(25, 40, 95, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#703c4582', endColorstr='#19285f',GradientType=0 );
    }

    .cbp-spmenu a {
        display: block;
        color: Black;
        font-size: 1.5em;
        font-weight: 300;
    }

    .cbp-spmenu a:hover {
        color: white;
        background: rgba(44, 69, 130, 1);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(25, 40, 95, 1)), to(rgba(44, 69, 130, 1)));
        background: -webkit-linear-gradient(top, rgba(25, 40, 95, 1), rgba(44, 69, 130, 1));
        background: -moz-linear-gradient(top, rgba(25, 40, 95, 1), rgba(44, 69, 130, 1));
        background: -ms-linear-gradient(top, rgba(25, 40, 95, 1), rgba(44, 69, 130, 1));
        background: -o-linear-gradient(top, rgba(25, 40, 95, 1), rgba(44, 69, 130, 1));
    }

.cbp-spmenu a:active {
	background: #d9e4f5;
	color: rgba(44, 69, 130, 1);
}

/* 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 {
	border-bottom: 2px solid rgba(44, 69, 130, 1);
	padding: 1em;
}

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

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

.cbp-spmenu-horizontal a {
	float: left;
	width: 20%;
	padding: 0.8em;
	border-left: 1px solid rgba(44, 69, 130, 0.7);
}

/* 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;
	}
}