﻿
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background: #FFFFFF url('h150.png') 0 0;
	height: 85px;
	width: 570px;
	border: 1px none #ddd;
	font-family: Tahoma;
	font-size: 8pt;
}

/* accordion header */
#accordion img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50); font-family:Tahoma; font-size:8pt
}

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100); font-family:Tahoma; font-size:8pt
}

/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
#accordion div {
	width:0px;
	float:right;	
	display:none;		
	margin-right:10px; font-family:Tahoma; font-size:8pt
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#444444;
	width:190px;
	font-size:8pt;font-family:Tahoma; margin-left:0; margin-right:0; margin-top:0; margin-bottom:-10px	
}
	
#accordion div p {	
	font-size:8pt;
	width:190px; font-family:Tahoma
}