/* Horizontal Accordion */
.horizontal_accordion_toggle {
	/* REQUIRED */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
	display: block;
	height: 14px;
	color: #232020;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	margin: 0px 0px 0px 0px;
	}
.horizontal_accordion_toggle_active {
	}
.horizontal_accordion_content {
	/* REQUIRED */
	height: 14px;	/* 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;
	color: #fff;
	}
.horizontal_accordion_content p {
	width:450px; height:14px;
	overflow:hidden;
	padding: 0px 10px 15px 0px;
	}

/* Container styling*/
#horizontal_container {
	margin: auto;
	width: 100%;   
	height: 14px;  
	overflow:hidden;  
	}