/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	height:130px;
	width:870px;
	background-attachment: scroll;
	background-image: url(../images/accord_bck.png);
	background-repeat: repeat-x;
	background-position: left top;
	padding-top:20px;
	padding-bottom:10px;
	padding-left:25px;
	padding-right:5px;
	border:1px solid #111;

}

/* accordion header */
#accordion img {
	float:left;
	margin-right:10px;
	cursor:pointer;
	opacity:0.5;
	filter: alpha(opacity=50);
}

/* currently active header */
#accordion img.current {
	cursor:default;
	opacity:1;
	filter: alpha(opacity=100);
}

/* 
	accordion pane. should initially have zero width and display:none.
	the first pane should override these with inline style
*/
#accordion div {
	width:0px;
	float:left;	
	display:none;		
	margin-right:10px;
}

/* content inside a pane should have fixed width */
#accordion div h3 {
	color:#b9b9b9;
	margin:0 0 -10px 0;
	width:350px;
	font-size:25px;
}
	
#accordion div p {
	font-size:14px;
	width:350px;
	color: #FFFFFF;
}

