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

			display: block;
	height: 181px;
	width: 65px;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	margin: 0 0 0 0;
}
/*.horizontal_accordion_toggle_active {
			background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;
			
		}*/
		
		.horizontal_accordion_content {
	/* REQUIRED */
			height: 181px;	/* We need to define a height for the accordion as it stretches the width */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
			width:490px;
	overflow: hidden;
	background-color: #ffffff;
	
}

.horizontal_accordion_content h1{
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	color:#003d69;
	margin-left:70px;
	margin-top:15px;
	font-size:24px;
}

.horizontal_accordion_content p {
	width:231px;
	margin:0;
	padding:0;
	height: 181px;
	margin-left:70px;
}

.horizontal_accordion_content p a{
font-weight:bold;
color:#003d69;
text-decoration:none;}

/* Container styling*/
    #horizontal_container {
	margin:0;
	width: 880px;
	height: 181px;
	background-image:url(../images/retail_test.jpg);
	background-repeat:no-repeat;
	background-position:390px 0;
	overflow:hidden;
	background-color:#ffffff;
}
#vertical_nested_container {
	margin: 20px auto 20px auto;
	width: 620px;
}

