/* root element for accordion. decorated with rounded borders and gradient background image */
#vertaccordion {
	background:#000;
	width: 100%;
	padding:0;
	margin:0;
}

/* accordion header */
#vertaccordion h3 {
	background:#990000 url(../files_images/heading_bg_red.jpg) repeat-x; 
	padding:3px 10px; color:#FFF; 
	font-weight:bold; font-size:9pt; 
	font-family:Arial, Helvetica, sans-serif;
	text-align:right; letter-spacing:2pt;
	cursor:pointer		
}

/* currently active header */
#vertaccordion h3.current {
	cursor:default;
	background:#990000 url(../files_images/heading_bg_blue.jpg) repeat-x;
}

/* accordion vpane */
#vertaccordion div.vpane {	
	display:none;
	height:160px;
	padding:10px;
	vertical-align:top
}

/* a title inside vpane */
#vertaccordion div.vpane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}
