/* General styles for all menus */
@font-face {
    font-family: 'GothamLight';
    src: url('../js/fonts/gotham-light-webfont.eot');
    src: url('../js/fonts/gotham-light-webfont.eot?#iefix') format('embedded-opentype'),
url('../js/fonts/gotham-light-webfont.woff') format('woff'),
url('../js/fonts/gotham-light-webfont.ttf') format('truetype'),
url('../js/fonts/gotham-light-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
button {
	border: none;
	background:url(../js/menujs/menu.png) no-repeat;
	filter: blur(add=true, direction=90, strength=10);
	color: #0C80A6;
	padding-left:20px;
	display: block;
	width: 120px;
	cursor: pointer;
	margin: 10px 0;
	font-size: 20px;
	font-weight: 400;
	font-family: 'GothamLight', sans-serif;
	float:right;
}
.cbp-spmenu {
    position: fixed;
}

.cbp-spmenu h3 {
    color: #FFF;
    font-size: 1.9em;
    padding: 20px;
    margin: 0;
    font-weight: 300;
    background: #697777;
	font-size:35px;
	font-weight: 300;
	font-family: 'GothamLight', sans-serif;
}
 
.cbp-spmenu a {
    display: block;
    color: #0C80A6;
	font-weight:300; font-size:1.1em;
	font-family: 'GothamLight', sans-serif;
}
.cbp-spmenu a:hover {
	-moz-border-radius: 5px;
	border-radius: 5px;
    border:1px solid rgba(12,128,166,.15);
    background:rgba(255,255,255,.55);
}
 
.cbp-spmenu a:active {
    background: #afdefa;
    color: #47a3da;
}
.cbp-spmenu a.current {
	-moz-border-radius: 5px;
	border-radius: 5px;
    border:1px solid rgba(12,128,166,.15);
    background:rgba(12,128,166,.45);
    color: #FFF;
} 
/* 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: 1px solid #258ecd;
	padding: 1em;
}

.cbp-spmenu-horizontal {
	width: 100%; min-width:980px;
	height: 100px;	
	z-index: 1000;
	overflow: hidden;
	
    border-bottom:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.70);
	-moz-box-shadow: 1px 2px 3px rgba(0,0,0,.3);
-webkit-box-shadow: 1px 2px 3px rgba(0,0,0,.3);
box-shadow: 1px 2px 3px rgba(0,0,0,.3);
}

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

.cbp-spmenu-horizontal a {
	float: right;
	padding: 5px 10px 5px 10px;
	text-decoration:none;
	text-align:center;
	margin-top:33px;
}
.separador {
    display: block;
    color: #EDEDED;
	font-weight:300; font-size:1.3em;
	font-family: 'GothamLight', sans-serif;
	float: right;
	padding: 5px;
	text-decoration:none;
	text-align:center;
	margin-top:33px;
} 
#menu2 {
	width:70%; min-width:700px;
	height:100px;
	text-align:center;
	display:block;
	margin-right:50px;
	float:right;
}
/* 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;
	}
}