body {
	font: 13px Arial, Helvetica, sans-serif;
	color: #1e1e1e;
}
#accordion{
	width:100%;
}
#accordion .item {
	margin:0px 5px 0px 0px;
	height: 30px; /* height = total height of A child element */
	overflow: hidden;
	
	transition: height ease-in-out 500ms; /* css3 transition */
	-o-transition: height ease-in-out 500ms;
	-moz-transition: height ease-in-out 500ms;
	-webkit-transition: height ease-in-out 500ms;
	
	border: 1px solid #ccc;
	margin-bottom: 2px;

	font-family: 'TeXGyreAdventorRegular',Helvetica,Arial,sans-serif;
    font-size: 100%;
	text-transform: uppercase;
	
	
	
}
#accordion a {
	display: block;
	height: 20px;
	line-height: 20px;
	
	background: #e6e6e6;
	padding: 5px;
	color: #1e1e1e;
	text-decoration: none;
}
#accordion p {
	height: 150px;
	padding: 5px;
}
#accordion div:hover {
	height: 270px; /* height = total height of A and P elements */
}
#accordion div:hover a {
	border-bottom: 1px solid #ccc;
	font-weight: bold;
}