/* Horizontal Accordion - business 	*/
	
		.horizontal_accordion_toggle {
	/* REQUIRED */
	float: right;	/* This make sure it stays horizontal */
	/* REQUIRED */

	display: block;
	height: 272px;
	width: 90px;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	cursor: pointer;
	margin: 0 0 0 0;
}
.horizontal_accordion_toggle_active {
	width: 90px;
}
.horizontal_accordion_content {
	/* REQUIRED */
	height: 272px;	/* We need to define a height for the accordion as it stretches the width */
	float: right;	/* This make sure it stays horizontal */
	/* REQUIRED */
			
	overflow: hidden;
	color: #01357A;
	background-image: url(../../_images/hor_spry/background.jpg);
	background-repeat: no-repeat;
	width: 200px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	text-align: right;
}
.horizontal_accordion_content p {
	line-height: 140%;
	padding: 0px 25px 5px 100px;
	text-align:right;
}
/* Container styling*/
    #horizontal_container {
	width: 650px;
	height: 272px;
	margin: 0 0 0 0;
	overflow: hidden;
}
#vertical_nested_container {
	margin: 10px auto 10px auto;
	width: 620px;
}
a.TPL:link {
	text-decoration: underline;
	color:#0d2566
}
a.TPL:visited {
	text-decoration: underline;
	color:#0d2566
}
a.TPL:active {
	text-decoration: underline;
	color:#0d2566
}
a.TPL:hover {
	text-decoration: underline;
	color:#0069aa;
}