*{
	margin: 0;
	padding: 0;
}

header {
	width: 100%;
	background: rgba(250,142,13,.8);
	height: 70px;
	position: fixed;
	z-index: 10;/*Prioridad de profundidad, mas alto mas prioridad*/
}

.cabecera {
	width: 80%;
	height: 70px;
	/*background: red;*/
	margin: auto;
}

.logo{
	width: 50%;
	height: 70px;
	/*background: blue;*/
	float: left;
	padding-top: 10px;
	box-sizing: border-box;/*Para no sobrepasar los bordes de la caja*/
}

.logo p a{
	color: #fff;
	font-family: 'Orbitron', sans-serif;
	font-size: 40px;
	text-decoration: none;
	font-weight: bold;/*Ponemos en negrita*/
}

nav {
	width: 50%;
	height: 70px;
	/*background: olive;*/
	float: left;
	text-align: right;
	padding-top: 24px;
	box-sizing: border-box;/*Para no sobrepasar los bordes de la caja*/

}

nav ul{
	list-style: none;
	overflow: hidden;
}

nav ul li{
	float: left;
	width: 150px;
	margin-right: 2px;
	text-align: center;	
}
nav ul li a{
	color: #fff;
	font-family: 'Orbitron', sans-serif;
	font-size: 15px;
	text-decoration: none;
	text-transform: uppercase;/*Colocamos todo en mayusculas*/
	font-weight: bold;/*Ponemos en negrita*/
	letter-spacing: 1px;/*Ponemos una separacion entre las letras*/
	display: block;
}

nav ul li a:hover{
	color: #444;
	transition: all .3s;

}

nav ul li ul li{
	display: none;
}

nav ul li:hover ul li{
	display: block;
	
}

