@font-face {
	/*Insertamos la ruta donde se
	encuentra el archivo de la tipografia
	y el formato de la tipografia*/
	font-family: "ailerons";
	src: url(../css/fonts/Ailerons-Typeface.otf) format("truetype");
}

@font-face {
	/*Insertamos la ruta donde se
	encuentra el archivo de la tipografia
	y el formato de la tipografia*/
	font-family: "Futura Light";
	src: url(../css/fonts/FuturaStd-Light.otf) format("truetype");
}

/*INICIO MENU*/
.menu
{
	list-style: none;
	line-height: 32px;
	margin: 20px auto;
	margin-top:50px;
	/*outline: 1px solid red;*/
	padding-left: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 14em;
	background-color:#000000;
}

.menu a
{
	/*background: url(icons.png) no-repeat left top;*/
	color: #ffffff;
	display: block;
	padding-left: 0;
	text-decoration: none;
	text-transform: uppercase;
	--webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
	width: 100%;
	font-size:22px;
	font-weight:500;
	font-family: "ailerons";
}

.menu a:hover
{
	 text-decoration:line-through; transition: all 0.2s ease-out;
}

.menu li
{
	margin-bottom: 3px;
	padding-left: 0;
	/*outline: 1px solid green;*/
	--webkit-transition: all .5s;
	-o-transition: all .5s;
	transition: all .5s;
}

.menu li:hover
{
}

.menu li:nth-child(2) a
{
	background-position: 0 -42px;
}

.menu li:nth-child(3) a
{
	background-position: 0 -84px;
}

.menu li:nth-child(4) a
{
	background-position: 0 -126px;
}

.menu li:nth-child(5) a
{
	background-position: 0 -168px;
}

.menu li:last-child a
{
	background-position: 0 -210px;
}
/*FIN MENU*/


/*POSICION RESPONSIVE MENU*/
#menuNavegacio {
	box-sizing: border-box;
	left: -18em;
	height: 100%;
	
	position: absolute;
	top: 0;
	transition: all .3s;
	z-index: 20;
}

#menuNavegacio.mostrar {
	left: 0;
}

#mostrar-nav {
	background: url(menu-icon.png);
	cursor: pointer;
	left: 0;
	height: 30px;
	position: absolute;
	top: 10px;
	width: 30px;
	z-index: 30;
	display:block;
}

#ocultar-nav {
	background: url(menu-cerrar.png);
	cursor: pointer;
	left: 0;
	height: 30px;
	position: absolute;
	top: 10px;
	width: 30px;
	z-index: 30;
}