/*
	Horizontal Accordion
*/

.horizontal_accordion_toggle {
	/* REQUIRED */
	float: left;	/* This make sure it stays horizontal */
	display: block;
	height: 377px; /* ALTURA DAS TABS */
	width: 30px;  /* LARGURA DOS TITULOS DAS TABS */
	color: #ffffff;
	text-decoration: none;
	outline: none;
	border-right: 0px solid #cde99f;
	cursor: pointer;
	margin: 0 0 0 0;
}

.horizontal_accordion_toggle_active {
	/*background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;*/
	border-right: 0px solid #f68263;
}

.horizontal_accordion_content {
	/* REQUIRED */
	height: 377px;	/* We need to define a height for the accordion as it stretches the width */
	float: left;	/* This make sure it stays horizontal */
	overflow: hidden;
	/*color: #444444;*/
}
	
.horizontal_accordion_content p {
	/*width: 900px;*/
	width:350px;
	line-height: 150%;
	padding: 5px 10px 15px 10px;
}
			
			
/* Container styling*/
#horizontal_container {
margin: 20px auto 20px auto;
height: 100px;    
}

#vertical_nested_container {
margin: 20px auto 20px auto;
/*width: 900px;*/
}












