
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	
	width:694px;
	/*border:1px solid #333;	*/
	
	
}

/* accordion header */
#accordion h2 {
	margin:3px 0 0 0;
	padding:0 0 0 22px;
	font-family:Arial, Helvetica, sans-serif;
	color:#333333;
	font-size:14px;
	font-weight:bold;
	height:34px;
	width: 680px;
	line-height:35px;
	cursor:pointer;
	background-color:#FFF;
	background-image:url(../images/tabbg.jpg);
	background-position:left top;
	background-repeat:no-repeat;
	
	
}

/* currently active header */
#accordion h2.current {
	cursor:default;
	background-color:#FFF;
	font-family:Arial, Helvetica, sans-serif;
	color:#333333;
	font-size:14px;
	font-weight:bold;
	padding:0 0 0 22px;
	height:45px;
	width:675px;
	line-height:38px;
	background-image: url(../images/acctab.gif);
	background-position:left top;
	background-repeat:no-repeat;
	border:none;
}

/* accordion pane */
#accordion .pane {
	
	display:none;
	height:auto;
	padding:0px;
	color:#fff;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	color:#333;
	width:694px;
	text-align:justify;
	background-color:#FFF;
}

/* a title inside pane */
#accordion .pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}
