<style>
	
	/*
	*
	*    Author:    Michael Raffaele <michael@mraffaele.com>
	*    Date:    25th October 2011
	*    Info:     http://www.mraffaele.com/blog/2011/10/25/css-accordion-no-javascript/
	*
	*/
	
	/* Shared for all accordion types */
	.accordion {
			/*font-family:Arial, Helvetica, sans-serif; */
			font-family: Century Gothic,CenturyGothic,AppleGothic,sans-serif;
			margin:0 auto;
			font-size:12px;
			border:none; /*1px solid #2b179c; */
			border-radius:5px;
			width:100%;
			padding:5px;
			background:#fff;
	}
	.accordion ul {
			list-style:none;
			margin:0;
			padding:0;    
	}
	.accordion li {
			margin:0;
			padding:0;
	}
	.accordion [type=radio], .accordion [type=checkbox] {
			display:none;
	}
	.accordion label {
			display:block;
			font-size:16px;
			line-height:16px;
			background: #2b179c; /* #4682B4; */
			border: none; /* 1px solid #542437; */
			color:white;
			text-shadow:1px 1px 1px rgba(255,255,255,0.3);
			font-weight:700;
			cursor:pointer;
			text-transform:capitalize;
			-webkit-transition: all .2s ease-out;
			-moz-transition: all .2s ease-out;
	}
	.accordion ul li label:hover, .accordion [type=radio]:checked ~ label, .accordion [type=checkbox]:checked ~ label {
			background: #2b179c; /* #B1C9E4; */
			color:#FFF;
			text-shadow:1px 1px 1px rgba(0,0,0,0.5)
	}
	.accordion .content {
			padding:0 10px;
			overflow:hidden;
			border:1px solid #2b179c; /* Make the border match the background so it fades in nicely */
			-webkit-transition: all .5s ease-out;
			-moz-transition: all .5s ease-out;
	}	
	.accordion p {
			color:#333;
			margin:0 0 10px;
	}
	.accordion h3 {
			color:#542437;
			padding:0;
			margin:10px 0;
	}
	.accordion a {
			color:black;
			padding:0;
			margin:10px 0;
		font-weight:600;
	}
	
	/* Vertical */
	.vertical ul li {
			overflow:hidden;
			margin:0 0 1px;
	}
	.vertical ul li label {
			padding:5px;
	}
	.vertical [type=radio]:checked ~ label, .vertical [type=checkbox]:checked ~ label {
			border-bottom:0;
	}
	.vertical ul li label:hover {
			border:1px solid #2b179c; /* We don't want the border to disappear on hover */
	}
	.vertical ul li .content {
			height:0px;
			border-top:0;
	}
	.vertical [type=radio]:checked ~ label ~ .content, .vertical [type=checkbox]:checked ~ label ~ .content {
			height:440px;
			border:1px solid #542437;	
	}
	

	</style>
	
