.collapsible {
	width: 100%;
	cursor: pointer;
	margin: 20px auto auto auto;
	padding: 10px;
	outline: none;
    background-color: transparent;
	color: #1f9cdb;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	text-align: left;
	border: none;
	border-bottom: 2px solid #1f9cdb;
}
.active, .collapsible:hover {
	background: #1f9cdb;
	color: #fff;
	border-bottom: 2px solid transparent;;
}
.collapsible:after {
    content: '\002B';
    float: right;
    margin-left: 5px;
}
.active:after {	
    content: "\2212";
}
.collapsible-content {
	width: auto;
    max-height: 0;
	padding: 0 18px;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
	background: #f0f8ff;
	font-size: 14px;
	text-align: justify;
}