@charset "utf-8";
/* CSS Document */
	
/*Vertical Accordions*/
.accordion_toggle {
	display: block;
	height: 32px;
	width: 750px;
	background: url(images/accordion_toggle.png) no-repeat top center;
	padding: 0 0px 0 0px;
	line-height: 31px;
	color: #BBAC7E;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	outline: none;
	font-size: 12px;
	color: #ffffff;
	cursor: pointer;
	margin: -1px 0 0 0;
}

.accordion_toggle active {
	background: url(images/accordion_toggle_active.png) no-repeat top center;
	color: #BBAC7E;
	border-bottom: opx solid #f68263;
}
.accordion_content {
	background: #003399 url(images/bgcontentbase.png) no-repeat top center;
	background-position: bottom;
	color: #BBAC7E;
	overflow: hidden;
	margin: 0 0 0 0;
	width:750px;
}
				
	.accordion_content h2 { 
		margin: 15px 20px 5px 20px;
		color: #BBAC7E;
	}			
	.accordion_content p {
		line-height: 150%;
		padding: 5px 20px 15px 20px;
	}

/*Vertical Accordion*/		
.vertical_accordion_toggle {
	display: block;
	height: 17px;
	width: 558;
	background: url(images/ver_accordion_toggle.png) no-repeat top left;
	padding: 0 10px 0 10px;
	line-height: 15px;
	color: #000000;
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	outline: none;
	font: verdana;
	font-size: 9px;
	border-bottom: 0px solid #cde99f;
	cursor: pointer;
}
.vertical_accordion_toggle b{
	font-size: 9px;
	color: #1f1208;
}
.vertical_accordion_toggle active {
	background: url(images/ver_accordion_toggle_active.png) no-repeat top left;
	color: #BBAC7E;
	border-bottom: 0px solid #f68263;
}
.vertical_accordion_content {
	color: #BBAC7E;
	overflow: hidden;
	text-align: center;
}
	.vertical_accordion_content h2 {
		margin: 15px 0 5px 10px;
		color: #BBAC7E;
	}
	
	.vertical_accordion_content h3 {
		left: 15px;
		color: #BBAC7E;
	}
	.vertical_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: 100px;
	width: 30px;
	background: url(images/h_accordion_toggle.jpg) no-repeat top left #a9d06a;
	color: #ffffff;
	text-decoration: none;
	outline: none;
	border-right: 1px solid #cde99f;
	cursor: pointer;
	margin: 0 0 0 0;
}	
.horizontal_accordion_toggle_active {
	background: url(images/h_accordion_toggle_active.jpg) no-repeat top left #e0542f;
	border-right: 1px solid #f68263;
}	
.horizontal_accordion_content {
	/* REQUIRED */
	height: 100px;	/* 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;
	background-color: #ffffff;
	color: #444444;
}		
	.horizontal_accordion_content p {
		width: 450px;
		line-height: 150%;
		padding: 5px 10px 15px 10px;
	}
									
/* Container styling*/
#horizontal_container {
	margin-top: 20px;
	margin-bottom: 20px;
}  
#vertical_nested_container {
    margin: 20px auto 20px auto;
    width: 558px;
}

