/*------------------------------------*\
-------- DEMO Code: accordion
\*------------------------------------*/
/*----- Accordion -----*/
.accordion, .accordion * {
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
	
}
.accordion-section {margin: 0; width:100%; height:100%; overflow:hidden;}
.accordion {
	overflow:hidden;
	width:100%;
	margin:0;
	padding:0;
	max-width:550px;
}

/*----- Section Titles -----*/
.cont-tac {width:100%;  overflow:hidden;}
.accordion-section-title {
	width:100%;
	height:100px;
	padding:0 10px;
	display:inline-block;
	background:url(../img/ico-mas.png) no-repeat scroll 95% 0;
	transition:all linear 0.15s;
	/* Type */
	color:#606060;
	text-decoration:none;
	font-size:1.3em; font-weight:700;}
	

 .accordion-section-title:hover {
	color:#00abf2;
	/* Type */
	text-decoration:none;
}
.accordion-section-title.active {background:url(../img/ico-menos.png) no-repeat scroll 95% 0;
	color:#00abf2;
	/* Type */
	text-decoration:none;}

.accordion-section:last-child .accordion-section-title {
	
}

.subtitle-ac {font-size: .7em !important; font-weight: 300;  margin: 0;}

/*----- Section Content -----*/
.accordion-section-content {
	padding:10px ;
	display:none;
	margin: -60px 0 0;
	max-width:510px;
	line-height:25px;
}

.accordion-section-content ul { padding:0 0 0 15px}
.accordion-section-content ul li { margin:0 0 12px;}

@media (max-width: 768px){
.accordion-section-title { padding: 0 40px 0 0;}
}

@media (max-width: 480px) { 
.accordion-section-title {font-size:1.1em;height:70px;padding:0 40px 0 0;}
}