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

	display: block;
	height: 184px;
	width: 46px;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	margin: 0 0 0 0;
}

.horizontal_accordion_toggle_active {

}

.horizontal_accordion_content {
	/* REQUIRED */
	height: 184px;	/* We need to define a height for the accordion as it stretches the width */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
	
	overflow: hidden;
	background-color: #ffffff;
	color: #FFFFFF;
}
	
.horizontal_accordion_content p {
	width: 687px;
	line-height: 150%;
	padding: 5px 10px 15px 10px;
}

/* Container styling*/
#horizontal_container {
	margin: 1px auto 1px auto;
	width: 868px;   
	height: 100px;    
}	
