/* Start of CMSMS style sheet 'Accordion' */
/*
			Horizontal Accordion
		*/
		
		.horizontal_accordion_toggle {
	/* REQUIRED */
			float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */

			display: block;
	height: 350px;
	width: 40px;
	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: 350px;	/* We need to define a height for the accordion as it stretches the width */
	float: left;	/* This make sure it stays horizontal */
	/* REQUIRED */
			width:537px;
	overflow: hidden;
	
}

.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: 700px;
	height: 350px;
	overflow:hidden;
}
#vertical_nested_container {
	margin: 20px auto 20px auto;
	width: 620px;
}

/* End of 'Accordion' */

