#accordion {
		margin: 3em 0;
	}
#accordion p {
		margin-bottom: 0;
	}
	#accordion .dinks {
		border-width: 1px;
		border-style: solid none none none;
		border-color: #858585;
	}
	#accordion .dinks:last-child {
		border-style: solid none !important;
		margin-bottom: 50px;
	}
	#accordion .accordion {
		color: #444;
		background-color: #fff;
		cursor: pointer;
		width: 100%;
		text-align: left;
		outline: none;
		border: none;
		font-size: 1.1rem;
		line-height: 2rem;
		font-weight: bold;
		transition: 0.4s;
		padding: 20px 0;
	}
	#accordion .accordion:last-child{
		border-style: solid none !important;
	}
	#accordion .accordion:after {
		content: '\002B';
		color: #b51412;
		font-size: 2rem;
		font-weight: lighter;
		float: right;
		margin-right: 8px;
	}
	#accordion .active:after {
		content: "\2212";
	}
	#accordion .panel {
		background-color: white;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.2s ease-out;
	}
	#accordion .panel p {
		padding: 0 0 25px 0;
	}