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

			display: block;
			height: 269px;
			width: 39px;
			background: url(images/h_accordion_toggle.jpg) no-repeat top left #000;
			color: #000;
			text-decoration: none;
			outline: none;
			border-right: 1px solid #000;
			cursor: pointer;
			margin: 0 0 0 0;}
		
		.horizontal_accordion_toggle_active {
			background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;
			border-right: 1px solid #000;}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 269px;	/* We need to define a height for the accordion as it stretches the width */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			
			width:575px;
			
			overflow: hidden;
			background-color: #000;
			color: #444444;}
			
			.horizontal_accordion_content p {
				width: 540px;
				height:269px;
				/*padding: 5px 10px 15px 10px;*/
				padding:0;
				margin:0;}
					
					
    /* Container styling*/
    #horizontal_container {
      margin: 0px auto 20px auto;
      width: 700px;   
      height: 269px;
	  border:1px solid #fff;
	  background:url(/lecture_series/_includes/hp-slideshow/imgs/bg.jpg) no-repeat right;}
