/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			clear: left !important;
			/* REQUIRED */
			display: block;
			margin: 20px 0 40px 0;
		}
		
		.horizontal_accordion_toggle_active {
			background-color: #663333 !important;
			border-bottom: 4px solid #222244;
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: auto;	/* We need to define a height for the accordion as it stretches the width */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			overflow: visible;
			margin: 12px 0 40px 0;
			padding: 0 0 0 5px;
			width: 300px;
			display: block;
			clear: none;
		}
			
			.horizontal_accordion_content p {
				width: 400px;
				padding: 5px 10px 15px 10px;
			}
					
					
    /* Container styling*/
    #horizontal_container {
      margin: 0;
      padding: 0 0 30px 0;
      position: relative;
      top: 0
      left: 0;
      z-index: 1;
    }