/* Accordion Layout Styles */

.accordion {
	margin: 1.5em 2%;
	padding: 0;
	background: #ffffff;
	width: 96%;
	border: 1px solid #000;
}

.accordion .tab {
	display: block;
	margin: 0;
	padding: 0.7em 0 0.6em 1em;
	font-size: 1.2em;
	text-decoration: none;
	color: #024869;
	border-bottom: 1px dashed #cccccc;
}

.accordion .tab:hover,
.accordion div:target .tab {
	color: #ffff00;
	background: #df0024;
	border: 1px solid #363636;
}

.accordion div .content-1 {
	display: none;
	margin: 1em;
}

.accordion div:target .content-1 {
	display: block;
}

.accordion > div {
	overflow: hidden;
	-webkit-transition: all 2s ease;
	-moz-transition: all 2s ease;
	-o-transition: all 2s ease;
	-ms-transition: all 2s ease;
	transition: all 2s ease;
}

.accordion > div:target {
	height: auto;
}

.accordion p {
	color: #F3080C;
}

.accordion p span {
	color: #000;
}

@media all and (max-width: 480px) {
	
.accordion {
	width: 96%;
	margin: 20px 2%;
}

.accordion .tab {
	height: auto;
	padding: 20px 0 20px 10px;
}
	}
