@charset "UTF-8";
/* CSS Document */

/*
	Horizontal Accordion
*/

.horizontal_accordion_toggle {
	/* REQUIRED */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */

	display: block;
	height: 150px;
	width: 26px;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	margin: 0;
	background-color: #403f37;
}

.horizontal_accordion_toggle_active {
}

.horizontal_accordion_content {
	/* REQUIRED */
	height: 150px;	/* We need to define a height for the accordion as it stretches the width */
	float: left;
	/* REQUIRED */

	color: #444444;
	background-color: #bfbca4;
	overflow:hidden;
}
	
.horizontal_accordion_content p {
	line-height: 150%;
	padding: 10px;
}
			
			
/* Container styling*/
#horizontal_container {
	margin: 0;
	width: 645px;
	height: 150px;
	overflow: hidden;
}
</style>
