
		/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */

			display: block;
			height: 293px;
			width: 13px;
			background: url(/refonte/images/accordeon/normal.gif) no-repeat top left;
			text-decoration: none;
			outline: none;
			border: 1px solid #161616;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.horizontal_accordion_toggle_active {
			background: url(/refonte/images/accordeon/hover.gif) no-repeat top left;
			border: 1px solid #000000;
		}
		
		.horizontal_accordion_toggle_hover {
			background: url(/refonte/images/accordeon/hover.gif) no-repeat top left;
			border: 1px solid #000000;
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 293px;	/* 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;
			width:405px;
		}
			
			.horizontal_accordion_content p {
				width: 450px;
				line-height: 150%;
				padding: 0px 0px 0px 0px;
			}
					
					
    /* Container styling*/
    #horizontal_container {
      width: 650px;   
      height: 302px;    
    }
    
    #vertical_nested_container {
      width: 650px;
    }
