/* CSS Document */

/* use this to constrain the overall width of the whole accordion */
.accordion {
	width: 95%;
}


#content .accordion h4 {
	margin: 0px;
	color: #000;
	border-bottom: 1px solid #999;
	padding: 5px;
	font-size: .9em;
	cursor: default;
	background-image:url(/medschool/images/toggle_plus.png);
	background-repeat: no-repeat;
	padding-left:24px;
	background-position: left center;
	position:relative; /* to make the links clickable in ie6*/
}

#content .accordion h4:hover {
	background-color: #e3e2e2;
}

#content .accordion h4.active {
	margin: 0px;
	color: #000;
	border-bottom: 1px solid #999;
	padding: 5px;
	font-size: .9em;
	cursor: default;
	background-image:url(/medschool/images/toggle_minus.png);
	background-repeat: no-repeat;
	padding-left:24px;
	background-position: left center;
	position:relative; /* to make the links clickable in ie6*/
}
/*#content .accordion p {
	background: #fff;
	margin: 0;
	padding: 10px 15px 20px;
	
}*/

.accordion div.acc-content {
	background: #fff;
	margin: 0;
	padding: 10px 15px 20px;
	
}
