.menu_bar {
	z-index:1000;
	display:none;
}

header {
	width: 100%;
}

header nav {
	background:white;
	border-radius: 25px;
	z-index:1000;
	max-width: 90%;
	width:100%;
	margin:10px auto;
}

header nav ul {
	list-style:none;
}

header nav ul li {
	display:inline-block;
	position: relative;
}

header nav ul .sletter2 {display:none;}

header nav ul li:hover {
	background:#FB5B53; /* color del bloque cuando estas encima de la opcion */
}

header nav ul li a {
	color:#023859;
	display:block;
	text-decoration:none;
	padding: 5px;
}

header nav ul li a span {
	margin-right:5px;
}

header nav ul li:hover .children {
	display:block;
}

header nav ul li .children {
	display: none;
	background:#FCC750; /* color de fondo de los submenus*/
	position: absolute;
	width: 200px; /*110%;*/
	z-index:1000;
}

header nav ul li .children li {
	display:block;
	overflow: hidden;
	border-bottom: 1px solid rgba(255,255,255,.5);
}

header nav ul li .children li a {
	display: block;
}

header nav ul li .children li a span {
	float: right;
	position: relative;
	top:3px;
	margin-right:0;
	margin-left:10px;
}

header nav ul li .caret {
	position: relative;
	top:3px;
	margin-left:10px;
	margin-right:0px;
	background:url(img/punto.png);
}


@media screen and (max-width: 800px) {
    

	.menu_bar {
		display:block;
		width:100%;
		height:85px;
		position: fixed;
		top:0;
		background:#023859; /*#E6344A;*/
	}

	.menu_bar .bt-menu {
		display: block;
		padding: 25px;
		color: #fff;
		overflow: hidden;
		font-size: 20px;
		font-weight: bold;
		text-decoration: none;
	}

	.menu_bar span {
		float: right;
		font-size: 30px;
	}

	header nav {
		width: 100%;
		height: calc(100%);
		position: fixed;
		top:80px;
		z-index:1000;
		right:100%;
		margin: 0;
		overflow: scroll;
		background:#EEEEEE;
		border-radius:0px;
	}

	header nav ul li {
		display: block;
		border-bottom:1px solid rgba(255,255,255,.5);
	}

header nav ul .sletter2 {display:block;}

	header nav ul li a {
		display: block;
	}

	header nav ul li:hover .children {
		display: none;
	}

	header nav ul li .children {
		width: 100%;
		position: relative;
	}

	header nav ul li .children li a {
		margin-left:10px;
		color:white;		
	}

	header nav ul li .caret {
		float: right;
	}
}