/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	width: 186px;
}

/* accordion header */
#accordion h2 {
	margin:0;
	cursor:pointer;
	font-weight: bold;
	text-transform: uppercase;
	width: 176px; 
	height: 22px; 
	padding: 10px 0 0 10px; 
	background: url('images/snd_top.jpg') no-repeat;
	}

.snd_top { float: left; width: 186px; height: 32px; padding: 0; background: url('images/snd_top.jpg') no-repeat;}

/* currently active header */
#accordion h2.current {
	cursor: default;
	background: url('images/snd_top_active.jpg') no-repeat;
}

/* accordion pane */
#accordion div.pane {
	display:none;
	width: 163px;
	padding: 5px 11px 5px 12px;
	color:#000;
	font-size:11px;
	text-align: left;
	background: url('images/content_snd_inn_bg.gif') 0 0 repeat-y;
}



