@charset "utf-8";
/* CSS Document */

/* 
CSS3 Accordion Experiment
Date: 25th June 2009
Author: Paul Hayes
*/
 
.accordion {
}

.accordion h2 {
	margin: 12px 0;
}

.accordion h3 {
	margin: 5px 0;
	font-weight: bold;
	font-size: 14px;
	color: #333;
}
 
.accordion .section {
}
 
.accordion h3 a {
	display: block;
	text-decoration: none;
	font-size: 14px;
}

.accordion h3 a:hover {
	text-decoration: none;
	font-size: 14px;
	color: #999;
}

.accordion :target h3 a:hover {
	color: #333;
}
 
.accordion h3 + div {
	height: 0;
	overflow: hidden;
	-webkit-transition: height 0.3s ease-in;
	-moz-transition: height 0.3s ease-in;
	-o-transition: height 0.3s ease-in;
	-ms-transition: height 0.3s ease-in;
	transition: height 0.3s ease-in;
}

.accordion :target h3 a {
	font-size: 16px;
	text-decoration: none;
 	border-top: 1px solid #ccc;
}

.accordion :target h3 + div {
	height: auto;
 	border-bottom: 1px solid #ccc;
}

.accordion .section.large:target h3 + div {
	overflow: auto;
}