@charset "utf-8";
/* CSS Document */
		*{
		margin: 0;
		padding: 0;
		}
		
		a{
		padding: 0px;
		color: #d9a72c;
		text-decoration: underline;
		}
		
		a:hover {
		color: #FFFFFF;
		text-decoration: underline;
		}
		
		#container{
		font-family: Tahoma, Helvetica, Arial, serif;
		width: 90%;
		height: 492px;
		}

		.horizontal_accordion_toggle {
			/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			display: block;
			height: 490px;
			width: 65px;
			text-decoration: none;
			outline: none;
			border-right: 1px solid #000000;
			cursor: pointer;
			margin: 0 0 0 0;
		}
		
		.horizontal_accordion_toggle_active {
			border-right: 1px solid #000000;
		}
		
		.horizontal_accordion_content {
			/* REQUIRED */
			height: 490px;	/* To define a height for the accordion as it stretches the width */
			width: 90%;
			float: left;	/* This make sure it stays horizontal */
			/* REQUIRED */
			overflow: hidden;
			color: #FFFFFF;
			text-align: center;
		}
			
		.horizontal_accordion_content p {
			width: 90%;
			line-height: 100%;
			padding: 5px 10px 15px 10px;
			font-size: 14px;
		}
		
		.horizontal_accordion_content p a {
			color: #d9a72c;
			text-decoration: underline;
		}
		
		.horizontal_accordion_content p a:hover {
			color: #FFFFFF;
			text-decoration: underline;
		}
		
		.horizontal_accordion_content h2 {
			width: 90%;
			line-height: 100%;
			padding: 10px 10px 15px 7px;
			font-family: Tahoma, Helvetica, Arial, serif;
			font-size: 18px;
			font-weight: lighter;
			color: #a19079;
		}
					
					
    /* Container styling*/
    #horizontal_container {
	  float: left;
	  background-color: #302a1f;
	  font-family: Tahoma, Helvetica, Arial, serif;
	  font-size: 12px;
      width: 100%;   
      height: 490px; 
	  border: 1px solid #302a1f;   
    }
