/* Accordion Layout Styles */

.accordion {
	width: 90%;
	margin: 20px 5%;
	padding: 0;
	background: #ffffff;

}

.accordion .tab {
	display: block;
	height: 40px;
	margin: 0;
	padding: 20px 0 0 20px;
	font-weight: normal;
	text-decoration: none;
	color: #024869;
	
	text-shadow: 1px 1px 0px rgba(255,255,255, .2);

	background: #fcfcfc;
	border-top: 1px solid #cccccc;
	border-bottom: 1px solid #ffffff;
}

.accordion .tab:hover,
.accordion div:target .tab {
	color: #ffffff;
	font-weight: bold;
	
	text-shadow: 0px 1px 0px rgba(0,0,0, .15);

	background: #034ea2;
	border: 1px solid #363636;

}

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

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

.accordion > div {

	overflow: hidden;

	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
	-o-transition: all .5s ease-in-out;
	-ms-transition: all .5s ease-in-out;
	transition: all .5s ease-in-out;
}

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

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

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