
div#test-accordion{
    border: 1px solid #eaeaea;
	background-color:#cdcdcd;
	margin-bottom: 18px;
	
}

div.accordion {
	position: relative; /* required for bounding */
	width:646px;
	overflow:hidden;
}

div.accordion-toggle{
    position: relative; /* required for effect */
    z-index: 10;		/* required for effect */
	background: #eeeeee;
	color:#333;
	font-size:1.4em; font-weight:bold;
	text-transform:uppercase;
    cursor: pointer;
	margin-bottom:1px;
	padding:12px 14px 12px 14px;
	border-top:1px solid #c6c6c6;	
}
div.accordion-toggle:hover, div.accordion-toggle-active{
	background-color:#f3f3f3;
	border-top:1px solid #2b9fd5;
}

div.accordion-content{
    overflow: hidden;	/* required for effect */
    background: #fff;
	padding:24px;
	color:#555;
	
	border-bottom:1px solid #eaeaea;
}