@CHARSET "UTF-8";

@media screen {
	/* 	Horizontal Accordion */
	.horizontal_accordion_toggle {
		position: relative;
		/* REQUIRED */
		float: left; /* This make sure it stays horizontal */
		/* REQUIRED */
		display: block;
		height: 12px;
		background: white;
		color: #5a2c0e;
		font-size: 1em;
		font-weight: bold;
		text-transform: uppercase;
		text-decoration: none;
		outline: none;
		border-right: 1px solid white;
		cursor: pointer;
		margin: 0;
		padding: 4px 20px;
	}
	
	.horizontal_accordion_toggle_active {
		position: relative;
		background:  #eee8c6;
		border-right: 1px solid #eee8c6;
	}
	
	.horizontal_accordion_content {
		position: relative;
		display: block;
		/* REQUIRED */
		height: 20px; /* 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: #eee8c6;
		border-right: 1px solid white;
		cursor: pointer;
	}
	.horizontal_accordion_content img {
		height: 18px;
		*height: 20px;
	}
	.langue_accordion_content {
		position: relative;
		display: block;
		/* REQUIRED */
		height: 20px; /* 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: white;
	}
	
	/*.horizontal_accordion_content p {
		width: 450px;
		line-height: 150%;
		padding: 5px 10px 15px 10px;
	}*/
}
@media print {
}