
div.accordion
{
}

/* This class is the only one that should be left alone */
div.accordion_content
{
	position: absolute;
	top: -5000px;
	left: 0px;
	visibility: hidden;
	font-size: 14pt;
	width: 550px;
/* Make sure this matches the actual width you want to display, 
 otherwise browsers will give us the wrong height for the popup.
 It's complicated, but obviously when the width shrinks, the height gets bigger from text wrapping.
 Javascript doesn't return what the height should be given its width inheritence.
 Setting an absolute height like this solves the problem. */
}

div.accordion_content_scroll
{
	background: url(note.png) bottom repeat-x;
	overflow: hidden;
	line-height: 1.0;
}

a.accordion_link
{
	display: block;
	outline: none;
	padding: 2px;
	background: url(title.png) repeat-x;
	/*color: white;*/
	margin-left: 0px;
}