@charset "utf-8";
/* CSS Document */

button.accordion {
	background-color: #FFF;
	color: #333;
	cursor: pointer;
	padding: 10px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 1.3em;
	transition: 0.4s;
	line-height: 2em;
}
button.accordion.active, button.accordion:hover {
	background-color: #4b9feb;
	color: #FFF;
}
button.accordion:after {
	content: '\002B';
	color: #fff;
	font-weight: bold;
	float: right;
	margin-left: 0px;
	text-align : center;
	font-size:1.2em;
	background: #4b9feb;
	width: 36px;
	height:36px;
	background: 
 -moz-linear-gradient(#4b9feb, #197ba8) 0px 0px no-repeat, -moz-linear-gradient(#e8e8e3, #e8e8e3) 0px 0px no-repeat, -moz-linear-gradient(blue, blue) 0px 0px no-repeat, -moz-linear-gradient(gray, gray) 0px 0px no-repeat;
	line-height: 1.6em;
}
button.accordion.active:after {
	content: "\2212";
}
div.panel {
	padding: 0 20px;
	background-color: #FFF;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	margin-bottom: 4px;
	border: none !important;
}
.panel p {
	text-align:justify;
}
