/*
			Vertical Accordions
		*/
		
		.accordion_toggle {
	display: block;
	height: 30px;
	width: 850px;
	line-height: 30px;
	color: #ffffff;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 12px;
	color: #000000;
	cursor: pointer;
	margin: 0;
	border: 1px solid #999999;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
		}
		
		.accordion_toggle_active {
	color: #ffffff;
	background-repeat: no-repeat;
	background-position: right top;
	border: 1px solid #999999;
		}
		
		.accordion_content {
			background-color: #ffffff;
			color: #444444;
			overflow: hidden;
		}
			
			.accordion_content h2 {
				margin: 15px 0 5px 10px;
				color: #0099FF;
			}
			
			.accordion_content p {
				line-height: 150%;
				padding: 5px 10px 15px 10px;
			}
			
		

		/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
	/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */

			display: block;
	height: 350px;
	width: 30px;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	border: 1px solid #999999;
		}
		
		.horizontal_accordion_toggle_active {
	border: 1px solid #999999;
		}
		
		.horizontal_accordion_content {
	/* REQUIRED */
			height: 350px;	/* 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;
	color: #444444;
	font-family: Verdana;
	font-size: 12px;
		}
			
			.horizontal_accordion_content p {
	width: 590px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
			}
					
					
    /* Container styling*/
    #horizontal_container {
      margin: 20px auto 20px auto;
      width: 850px;   
      height: 350px;    
    }

