
/*
	Vertical Accordions
*/


	
#vertical_container {
	padding: 0px 0px 20px 0px;
	margin:auto;
}

.accordion_toggle {
	display: 			block;
	height: 			30px;
	width: 			610px;
	background-color:		#f9f9f9;
	border-bottom: 		solid 1px #333;
	padding:			10px;
	line-height: 		15px;
	cursor: 			pointer;
	margin: 			1px 0px 10px 0px;
	font-size: 			120%; 
	font-weight:		bold;
	color: 			#003366;
}

.click {
	font-size: 			70%; 
	font-weight:		normal;

}

.accordion_toggle:hover {
	color: 			#3399FF;
}

.accordion_content {
	overflow: 			hidden;
}
	
.accordion_content h2 {
	margin: 			15px 0 5px 10px;
	color: 			#0099FF;
}
	
.accordion_content p {
	line-height: 		150%;
	padding: 			5px 10px 0px 10px;
}