@CHARSET "UTF-8";

#menu-superior-mob {
	display: none;
	
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	text-align: left;
	padding: 12px 0 10px 0;
	margin: 10px 0 0 0;
	
	font-size: 1.4em;
	line-height: 1.4em;
	font-weight: 400;
	color: #333;
}
#menu-superior-mob i {
	float: right;
}

.menu { 
	position: relative;
	float: none;
	clear: both;
	margin: 0;
	padding: 0;
	height: auto;
	width: 100%;
	min-width: inherit;
	max-width: 100%;
	 
	text-align: left;
	border: none;	
	z-index: 2001;
}
.menu > ul { 
	position: relative;
	display: block;
	margin: 0 0 15px 0;
	padding: 0;
	border: none;
	background: none;
	background-color: transparent;
	
	list-style: none;
	z-index: 101;
}
/*
.menu > ul:after {
	content: "";
	clear: both;
	display: block;
}
*/
.menu > ul li {
	display: block;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background: none;
	background-color: transparent;
	text-align: left;
}
.menu > ul li > a {
	position: relative;
	display: block;
	margin: 0;
	padding: 8px 23px 6px 0;
	width: calc(100% - 23px);
	background: none;
	background-color: transparent;
	border: none;
	border-bottom: 1px solid #999;
	
	font-weight: 400;
	color: #333;
	font-size: 14px;
	text-decoration: none;
	line-height: inherit;
	text-align: left;
	vertical-align: top;
}
.menu > ul li > a:hover, .menu > ul li > a.selec {
	color: #800000;
}
.menu > ul li > a.selec {
	font-weight: bold;
}


/* Submenús */
.menu > ul li ul {
	max-height: 0;
	
	overflow: hidden;
	display: inherit;
	position: relative;
	left: auto;
	top: auto;
	border: none;
	width: 100%;
	margin: 0;
	padding: 0;
	background: none;
	
	-webkit-transition: max-height 0.3s ease-out;
	-moz-transition: max-height 0.3s ease-out;
	-ms-transition: max-height 0.3s ease-out;
	-o-transition: max-height 0.3s ease-out;
	transition: max-height 0.3s ease-out;
}
.menu > ul li ul.active {
	max-height: 5000px;
	
	-webkit-transition: max-height 3s linear;
	-moz-transition: max-height 3s linear;
	-ms-transition: max-height 3s linear;
	-o-transition: max-height 3s linear;
	transition: max-height 3s linear;
}

/* 2on nivell */
.menu > ul > li > ul > li > a {
	width: calc(100% - 33px);
	padding-left: 10px;
	font-size: 13px;	
}
/* 3er nivell */
.menu > ul > li > ul > li > ul > li > a {
	width: calc(100% - 43px);
	padding-left: 20px;
	font-size: 12px;
}
/* 4rt nivell */
.menu > ul > li > ul > li > ul > li > ul> li > a {
	width: calc(100% - 53px);
	padding-left: 30px;
	font-size: 11px;	
}
/* 5e nivell */
.menu > ul > li > ul > li > ul > li > ul> li > ul> li > a {
	width: calc(100% - 63px);
	padding-left: 40px;
	font-size: 10px;	
}


/* + i - desplegable */
.menu > ul li.has-submenu>a>i:after {
	content: '+';
	position: absolute;
	display: block;
	top: 0;
	right: 0;
	padding: 4px 4px 0 10px;
	font-size: 20px;
	text-decoration: none;
	font-style: normal;
}
.menu > ul li.has-submenu>a.active>i:after {
	content: "-";
	padding-right: 6px;
	
}
.menu > ul li.has-submenu>a:hover>i:after {
	
}