/* ACCORDION */
.clip {
    width: 272px;
    height: 272px;
    float: left;
    shape-outside: circle(50% at 50% 50%);
    -webkit-clip-path: circle(2 5% at 50% 50%);
    margin: 10px;
}
.cont-discapacidades {
	position: relative;
}
.accordion {
	float: left;
	max-width: 100%;
	margin: 0 auto 100px;
	/*border-top: 1px solid #d9e5e8;*/
	padding: 0px;
	width: 100%;
}
.accordion li {
	border-bottom: 1px solid #d9e5e8;
	position: relative;
	list-style-type: none;
    float: left;
    width: 100%;
}
.accordion li p {
	display: none;
	padding: 10px 25px 30px;
	color: #555;
}
.accordion li p span {
    float:left;
	position: relative;
	margin-bottom:15px;
}
.accordion li p font {
	float:left;
	position: relative;
	margin-bottom:15px;
}
.accordion a {
	width: 100%;
	display: block;
	color: #026502;
	cursor: pointer;
	font-weight: 600;
	line-height: 3;
	font-size: 16px;
	text-indent: 15px;
	user-select: none;
}
.accordion a:hover {
	text-decoration: none;
	color: rgba(2, 101, 2, 0.75);
}
.accordion a:after {
	width: 8px;
	height: 8px;
	border-right: 1px solid #026502;
	border-bottom: 1px solid #026502;
	position: absolute;
	right: 10px;
	content: " ";
	top: 17px;
	transform: rotate(-45deg);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.accordion p {
	font-size: 14px;
	line-height: 2;
	padding: 10px;
}

a.active:after {
	transform: rotate(45deg);
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
