@charset "utf-8";
/* CSS Document */
/*--------------- PARA EL ACORDEON -------------------*/	
	
#container_accordion {
	width:320px;
}
/* Vertical Accordions */
		
.accordion_toggle {
	display: block;
	height:15px;
	width: 300px;
	background: #ff5c44;
	padding: 0 10px 10px 10px;
	line-height: 30px;
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	outline: none;
	font-size: 11px;
	border-bottom: 2px solid #fff;
	cursor: pointer;
	margin: 0 0 0 0;
}
.accordion_toggle h4 {
	color: #fff;
}
* html.accordion_toggle h4 {
	line-height:15px;
	padding-top: 5px;
}
.accordion_toggle_active {
	background: #ff5c44;
	color: #ffffff;
	height:15px;
	border-bottom: 1px solid #ff5c44;
}
.accordion_content {
	background-color: #ffffff;
	color: #333;
	overflow: hidden;
}
.accordion_content h2 {
	margin: 15px 0 5px 10px;
	color: #333;
}
.accordion_content p {
	line-height:100%;
	padding: 5px 10px 15px 10px;
}
.vertical_accordion_toggle {
	display: block;
	height: 15px;
	width:300px;
	background:#ff5c44;
	padding:0 10px 10px 10px;
	line-height: 30px;
	color: #ffffff;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 11px;
	color: #000000;
	border-bottom: 2px solid #fff;
	cursor: pointer;
	margin: 0 0 0 0;
}
.vertical_accordion_toggle_active {
	background:#ff5c44;
	color: #ffffff;
	border-bottom: 1px solid #fff;
}
.vertical_accordion_content {
	background-color: 2px solid #fff;
	color: #333;
	overflow: hidden;
}
.vertical_accordion_content h2 {
	margin: 15px 0 5px 10px;
	color: #FFF;
}
.vertical_accordion_content p {
	line-height: 100%;
	padding: 5px 10px 15px 10px;
}
/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
	/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
			background:#ff5c44;
	display: block;
	height: 100px;
	width: 30px;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	border-right: 1px solid #cde99f;
	cursor: pointer;
	margin: 0 0 0 0;
}
.horizontal_accordion_toggle_active {
	background:#ff5c44;
	border-right: 1px solid #FFF;
}
.horizontal_accordion_content {
	/* REQUIRED */
			height: 100px;	/* 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: #333;
}
.horizontal_accordion_content p {
	width: 320px;
	line-height: 150%;
	padding: 5px 10px 15px 10px;
}
/* Container styling*/
    #horizontal_container {
	margin: 20px auto 20px auto;
	width: 320px;
	height: 110px;
}
#vertical_nested_container {
	margin: 20px auto 20px auto;
	width: 320px;
}
