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

			display: block;
			height: 115px;
			width: 89px;
			background-color: #ce0000;
			border-right: 3px solid #ffffff;
			color: #ffffff;
			text-decoration: none;
			outline: none;
			cursor: pointer;
			margin: 0;
		}
		
		.horizontal_accordion_toggle_active {
			background-color: #333333;
			border-right: 3px solid #ffffff;
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 115px;	/* 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: #ff0000;filter:alpha(opacity=85);-moz-opacity:.85;opacity:.85;
			color: #000000;
			}
			
			.horizontal_accordion_content p {
				width: 500px;
				line-height: 120%;
				padding: 0  0 0 5px;

			}
					
					
    /* Container styling*/
    #horizontal_container {
      margin: 0;
      height: 130px;
	    

    }


/* ----------------------------------------------------------------------------------------- */

