/*
Horizontal Accordion
*/

.accordion_content {
	width: 760px;
	margin: 0 auto;
}

.horizontal_accordion_toggle {
/* REQUIRED */
float: left;	/* This make sure it stays horizontal */
/* REQUIRED */

display: block;
height: 300px;
width: 46px;
background-repeat: no-repeat;
background-position: top;
background-color: #DDD;
color: #ffffff;
text-decoration: none;
outline: none;
border-right: 1px solid #FFF;
cursor: pointer;
margin: 0 0 0 0;
}

.horizontal_accordion_toggle_active {
background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #8b7863;
border-right: 1px solid #FFF;
}

.horizontal_accordion_content {
/* REQUIRED */
height: 198px;	/* 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: #444444;
position: relative;
}

.horizontal_accordion_content .content {
	width: 500px;
	height: 278px;
	border: 1px solid #CCC;
	margin: 0 1px;
	line-height: 2em;
	padding: 10px;
	overflow: auto;
	position: relative;
}

/* Container styling*/
#horizontal_container {
margin: 10px auto;
width: 760px;
}
