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