/* ACCORDION */
.accordion {
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1em;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.accordion>div.title {
	padding: 10px 7px;
	background-color: #e5ebc7;
	font-weight: bold;
}
.accordion>div.title:hover {
	cursor: pointer;
}
.accordion>div.title>p {
	font-size: 1.4em;
	margin-bottom: 0px;
	text-align: left;
	color: black;
}
.accordion>div.title>p>span {
	float: left;
	color: black;
	font-weight: bold;
	margin-right: 10px;
}
.accordion>div.content {
	font-size: 1.1em;
	display: none;
	text-align: left;
    border: 1px solid #e5ebc7;
    padding: 0.5em;
    border-top: 0px;
    margin-bottom: 1em;
}
.accordion>div.content p:last-child {
	margin-bottom: 0px;
}
.accordion>div.title>p>span.minus {
	display: none;
}
.accordion>div.title>p>span.plus {
	display: block;
}

/* YOUTUBE VIDEO */
div.agresta-youtube {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	margin-bottom: 3em;
}
div.agresta-youtube > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 10px 16px 0 rgba(0, 0, 0, .6), 0 6px 20px 0 rgba(0, 0, 0, .19);
}