.navi{
	background: rgba(237,109,0,0.5);
	border: 2;
	color: #EEE;
	font-size: 1em;
	left: 0;
	padding: 0em 0;
	position: relative;
	top: 0;
	width: 100%;
}
.nav li a{
	background-color: rgb(237,109,0);
	color:#EEE;
	display: block;
	font-weight: bold;
	text-align: left;
	text-decoration: none;
	padding: 0.5em 1.0em;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
}
.nav li a:hover{
	background-color: rgba(237,109,0,0.8);
	color: #222;
	font-weight: bold;
/*		transform: scale(1.5) rotate(-5deg);
	-webkit-transform: scale(1.5)  rotate(-5deg);
	border-radius: 0.3em;
*/
}
.nav >li {
	float:left;
}
.nav li ul{
	display:none;
	position:absolute;
	min-width:7em;
}
.nav li:hover > ul {
	display:block;
}
.nav li ul li{
	position: relative;
}
.nav li ul li ul{
	right:-7em;
	top:0px;
}

.cuerpo{
	top: 4em;
	padding: 0em 0;
	position: fixed;
	width: 100%;
}
