body {
	font-family: sans-serif;
	font-size: 1em;
	margin: 0;
}
button {
	appearance: none;
	-webkit-appearance: none;
	background: none;
	border: none;	
	cursor: pointer;
	outline: none;
}
img {
	display: block;
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
.header {
	background: rgba(0,0,0,.75);
	color: white;
	left: 0;
	position: fixed;
	top: 0;	
	width: 100%;
	z-index: 9999;
}
.header .menu {
	display: flex;
	/* height: 48px; */
	justify-content: space-between;
	margin: auto;
	max-width: 1200px;
	position: relative;
	width: 100%;
}
.header .menu .logotipo {
	position: absolute;
	left: 10px;
	top: 10px;
	width: 120px;
}
.header .menu .elMenu {
	font-size: .9em;
	height: 100%; /*auto en pc*/
	margin-left: 0px;
	width: 100%;
}
.header .menu .elMenu span {
	cursor: pointer;
	display: block;
	font-size: 1.5em;
	padding: .5em;
	text-align: right;
}
.header .menu .elMenu ul {
	display: none;
	flex-wrap: wrap;
	height: 100%; /*auto en pc*/
	justify-content: center;	
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.header .menu .elMenu ul li {	
	cursor: pointer;
	line-height: 3em;
	position: relative;
	text-align: center;
	transition: .5s;
	-webkit-transition: .5s;
	width: 100%;
}
.header .menu .elMenu ul li:hover {
	background: rgba(0,0,0,.5);
}
.header .menu .elMenu ul li ul {
	background: rgba(0,0,0,.75);
	display: none;
	position: relative;
	top: 0;
	width: 100%;
}
.header .menu .elMenu ul li ul li {
	font-size: .9em;
	text-align: center;
	width: 100%;
}
#inicio {
	height: 44px;
}
@media(min-width: 960px){
	.header .menu {
		width: 98%;
	}
	.header .menu .logotipo {		
		width: 130px;
	}
	.header .menu .elMenu {		
		height: auto; /*auto en pc*/
		margin-left: 140px;
		width: calc(100% - 140px);		
	}
	.header .menu .elMenu span {
		display: none;
	}
	.header .menu .elMenu ul {
		display: flex;
		flex-wrap: nowrap;
		height: auto; /*auto en pc*/
		justify-content: space-between;	
		list-style: none;
		margin: 0;
		padding: 0;
		width: 100%;
	}
	.header .menu .elMenu ul li ul {
		position: absolute;
		top: 100%;
		width: 150%;
	}
	#inicio {
		height: 43px;
	}
}