.horizontal_accordion_toggle {
	/* REQUIRED */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
	display: block;
	height: 130px;
	width: 16px;
	background: #FF6500;
	color: #000000;
	text-decoration: none;
	outline: none;
	border-right: 1px solid #333333;
	cursor: pointer;
	margin: 0 0 0 0;
	text-align:center;
	font-size:12px;
	line-height:12px;
	padding-top:5px;
}
.horizontal_accordion_toggle_active {
	background: #FF0000;
	border-right: 1px solid #333333;
	color:#FFFFFF;
}

.horizontal_accordion_content {
	/* REQUIRED */
	height: 140px;	/* 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: #000000;
}
	.horizontal_accordion_content p {
		width: 160px;
		line-height: 150%;
		padding: 5px 5px 5px 5px;
	}
/* Container styling*/
#vertical_nested_container {
margin: 10px auto 10px auto;
width: 150px;
} 