/*
	Vertical Accordions
*/

.vertical_accordion_container {
	width: 700px;
}

.accordion_toggle {
	display: block;
	height: 30px;
	width: 680px;
	background:  #eff2e3;
	padding: 0 10px 0 10px;
	line-height: 30px;
	font-weight: normal;
	text-decoration: none;
	outline: none;
	font-size: 10px;
	color: #656565;
	border-bottom: 1px solid #888;
	cursor: pointer;
	margin: 0 0 0 0;
}

#jobs_content h1.accordion_toggle {
	color: #656565;
	font-size: 0.8em;
}

#jobs_content h1.accordion_toggle:hover {
	background:  #ddd;
	font-size: 0.8em;
}


.accordion_toggle_active {
	background:  #76aac2;
	color: #ffffff;
	border-bottom: 1px solid #76aac2;
}

#jobs_content h1.accordion_toggle_active {
	color: #fff;
	font-size: 0.8em;
}

#jobs_content h1.accordion_toggle_active:hover {
	background:  #76aac2;
	font-size: 0.8em;
}


.accordion_content {
	background-color: #ffffff;
	color: #444444;
	overflow: hidden;
	font-size: 0.75em;
	line-height: 1.5em;
	padding: 5px 10px 15px 10px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}
	
.accordion_content h2 {
	margin: 15px 0 5px 10px;
	color: #0099FF;
}

.accordion_content p {
	line-height: 150%;
	padding: 5px 10px 15px 10px;
}
	
.accordion_content ul {
	margin-top: 0px;
	margin-bottom: 0px;
	line-height: 4px;
}
	
.accordion_content li {
	margin: 0px;
	padding: 0px;
	line-height: 11pt;
}
	
