/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background-image:url(http://www.technical-property.com/wp-content/themes/technical-property-theme/js/jc/images/h300.png) 0 0;
	width: 274px;
	border:none;	
	margin:5px 0 5px 0;
}

/* accordion header */
#accordion h2 {
	background-image:url(http://www.technical-property.com/wp-content/themes/technical-property-theme/js/jc/images/h30.png);
	margin:1px;
	padding:3px 10px 3px 15px;
	font-size:14px;
	font-weight:bold;
	border:none;
	cursor:pointer;
-moz-border-radius: 14px;-khtml-border-radius: 14px;-webkit-border-radius: 14px;border-radius: 14px;		
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#fff;color:#00aaff;
}

/* accordion pane */
#accordion div.pane {border:none;display:none;height:145px;padding:10px;color:#fff;font-size:12px;overflow:hidden}

/* a title inside pane */
#accordion div.pane h3 {font-weight:bold;margin:0 0 5px 0;font-size:14px;color:#fff;}

