.cruddy-accordion
{
	border: 1px solid #bebebe;
}

.cruddy-accordion > .item > .header
{
	position: relative;
	padding: 20px;
	cursor: pointer;
	background-color: #ddd;
	border: 1px solid #bebebe;
	border-left: none;
	border-right: none;
	font-weight: bold;
}

.cruddy-accordion > .item > .header:hover
{
	background-color: #e8e8e8;
}

.cruddy-accordion > .item:first-child > .header
{
	border-top: none;
}

.cruddy-accordion > .item > .content
{
	display: none;
	padding: 20px;
}

.cruddy-accordion > .item.open .content
{
	border-bottom: 1px solid #bebebe;
}

.cruddy-accordion > .item:last-child .content,
.cruddy-accordion > .item:last-child .header
{
	border-bottom: none;
}