/* Accordian styles */

/* use this to constrain the overall width of the whole accordian */
.ac-container {
	width: 95%;
}

/* Determines how the headers to each item looks */
.ac-container div.reveal-header 
{
	margin: 0px;
	color: #000;
	border-bottom: 1px solid #999;
	padding: 5px;
	font-size: .9em;
	cursor: default;
	background-image:url(http://med.umich.edu/medschool/images/open-triangle.gif);
	background-repeat: no-repeat;
	padding-left:24px;
	background-position: left center;
	position:relative; /* to make the links clickable in ie6*/
	
}

/* Mouse hover effect for the headers */
.ac-container div.reveal-header:hover
{
	text-decoration: underline;
	cursor: pointer;
	

}


/* Determines how the revealed text looks */
.ac-container div.revealed {
	margin:0px;
	color: #000;
	background-color: #fff;
	padding: 5px;
}
