/* Vertical Accordions	*/
		
.accordion_toggle {
	font-family : "Trebuchet MS", Arial, Verdana, Helvetica;
	font-size : 14px;
	font-weight : bold;
	color : #00518B;
	cursor: pointer;
	background-image: url(/images/toggle_off.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #00518B;
	padding-bottom: 5px;
	padding-top: 5px;
}
.accordion_toggle:hover {
	font-family : "Trebuchet MS", sans-serif;
	font-size : 14px;
	font-weight : bold;
	color : #b78a02;
	cursor: pointer;
	background-image: url(/images/toggle_on.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b78a02;
}

		
.accordion_toggle_active {
	font-family : "Trebuchet MS", sans-serif;
	font-size : 14px;
	font-weight : bold;
	color : #b78a02;
	cursor: pointer;
	background-image: url(/images/toggle_on.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #b78a02;
}
		
.accordion_content {
	overflow: hidden;
	border-bottom-color: #b78a02;
	padding-bottom: 10px;
	padding-top: 10px;
	padding-left: 17px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	margin-bottom: 10px;
	margin-right: 0px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #b78a02;
	border-left-color: #b78a02;
	background-color: #FDFDFB;
	padding-right: 10px;
		
}
