/*
			Vertical Accordions
		*/
		
		.accordion_box {
	width: 475px;
	float:right;
	padding-right: 20px;
		}
		
		.accordion_toggle {
			display: block;
			height: 46px;
			width: 475px;
			outline: none;
			font-size: 12px;
			cursor: pointer;
			margin-bottom: 5px;
		}
		.acordion_toggle:hover {
			background-image:url(images/timeline_heading_hover.jpg);
		}
		
		.accordion_toggle_active {
			color: #ffffff;
		}
		
		.accordion_content {
			overflow: hidden;
			width: 475px;
			margin: 0px;
			padding: 0px;
		}
			
		.vertical_accordion_toggle {
			display: block;
			height: auto;
			width: auto;
			color: #ffffff;
			font-weight: normal;
			text-decoration: none;
			outline: none;
			font-size: 12px;
			color: #000000;
			cursor: pointer;
			margin: 0 0 0 0;
		}

		.vertical_accordion_toggle_active {
			color: #ffffff;
		}

		.vertical_accordion_content {
			width: 470px;
			float:left;
			height: auto;
			background-color: #ffffff;
			color: #444444;
			overflow: hidden;
		}

			.vertical_accordion_content h2 {
				color: #0099FF;
			}

			.vertical_accordion_content p {
				line-height: 150%;
			}
  			
		/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */

			display: block;
			height: 300px;
			width: 20px;
			color: #ffffff;
			text-decoration: none;
			outline: none;
			cursor: pointer;
			margin: 0 0 0 0;
			padding: 0px;
		}
		
		.horizontal_accordion_toggle_active {
			background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;
			border-right: 1px solid #f68263;
		}
		
		.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: hidden;
			background-color: #ffffff;
			color: #444444;
		}
			
			.horizontal_accordion_content p {
				width: 470px;
				line-height: 150%;
			}
					
					
    /* Container styling*/
    #horizontal_container {  
	width: 470px;
      height: auto; 
	  overflow: hidden;
	  display: block;
    }
    
    #vertical_nested_container {
	width: 470px;
    }

