div#test-accordion{
	font-family: Verdana;
	color: black;
	font-size: 9pt; 
    margin: 10px;
	width:770px;
}

div.accordion {
	position: relative; /* required for bounding */
}

div.accordion-toggle{
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	padding:5px;
	padding-left:10px;
	color:#666666;
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background: #eeeeee;
    cursor: pointer;
	border-bottom: 1px solid #aaa;
}

div.accordion-toggle:hover{
	background: #cccccc;
}

div.accordion-toggle-active{
	font-family:Arial, Helvetica, sans-serif;
	background: #cccccc;
	font-size:13px;
	color:#666666;
	font-weight:bold;
	padding:5px;
	padding-left:10px;
}

div.accordion-content{
	overflow:hidden;/* required for effect */
	overflow-y: auto;
	height:150px;
	padding:5px;
	padding-left:10px;
}
