@import url('../fonts/fonts.css');
nav {
	width:  100%;
	margin:-30px 0px 20px auto;
	overflow:hidden;
	border-radius:2px;
	border-bottom:1px solid #555555;

	/*ultimate css gradient generator-------http://www.colorzilla.com/gradient-editor/*/
	background: #5291cb; /* Old browsers */
 	background: -moz-linear-gradient(top, #5291cb 0%, #2989d8 50%, #207cca 51%, #5291cb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5291cb), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#5291cb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* IE10+ */
	background: linear-gradient(to bottom, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5291cb', endColorstr='#5291cb',GradientType=0 ); /* IE6-9 */

}

ul, ol {
	list-style: none;	
}

.nav2 {
	width:  15%;
	margin:-30px 0 20px auto;
	overflow:hidden;
	border-radius:2px;
	border-bottom:1px solid #555555;

	/*ultimate css gradient generator-------http://www.colorzilla.com/gradient-editor/*/
	background: #5291cb; /* Old browsers */
	background: -moz-linear-gradient(top, #5291cb 0%, #2989d8 50%, #207cca 51%, #5291cb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#5291cb), color-stop(50%,#2989d8), color-stop(51%,#207cca), color-stop(100%,#5291cb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* IE10+ */
	background: linear-gradient(to bottom, #5291cb 0%,#2989d8 50%,#207cca 51%,#5291cb 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5291cb', endColorstr='#5291cb',GradientType=0 ); /* IE6-9 */

}

.menu {
	width:100%;
	display:table;
	table-layout:fixed;		/* todos los botones tienen el mismo tamaño */
	float:left;
	transition:all .5s ease;
}

.menu li {
	display:table-cell;
	overflow:hidden;
	width:100%;
	border-right:1px solid #9ECCE0;
	border-left:1px solid rgba(44,37,107,.2);
}

.menu li:first-child {
	border-left:none;
	width: 100%;
}

.menu li:first-child:hover {
	border-left:none;
}

.menu li a {
	color:#fff;
	display:block;
	font-family:"verdana";
	font-size:80%;
	padding:10px 0;
	text-align:center;
	text-decoration:none;
	text-shadow:1px 1px 0px rgba(0,0,0,.3);
}

.menu li:hover {
	background:rgba(0,0,0,.3);
	border-right:1px solid transparent;
	border-left:1px solid transparent;
	border-bottom:none;
}

.menu li:active {
	background:rgba(0,0,0,.3);
	box-shadow:inset 0px 3px 2px rgba(0,0,0,1);
}

.icon-layout {
	display:block;
	position:relative;
	top:2px;
}

.menuB {
	color: white;
	padding:30px 30px;}

.menuB a{
	color: white;
}

#menu_bar {
	display: none;
}
#menuMovil{
	display: none;
}

@media screen and (max-width: 646px) {
	#menuMovil {
	display: block;	
	margin: 0;
	width: 80%;
	}
	#menu_bar{
		display: block;
	}
	#menuMovil>.menu{
		margin-left: -100%;
	}
}