﻿
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {

	height:200px;
	padding:10px 0 10px 20px;
	width:720px;
	border:0px solid #ddd;
}

/* 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 
{
background-color:black;
	width:0px;
	float:left;	
	display:none;		
	margin-right:10px;
	height:200px;
	padding-right:5px
}
/* content inside a pane should have fixed width */
#accordion div h1 {
	margin:0 0 -10px 0;
	width:100%;
	text-align:right;
}
	#accordion div p 
{
	width:510px;
	text-align:right;
}
