/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:transparent url() repeat scroll 0;
	width:719px;
	border:0px solid #ddd;
}

.accordioncontent{
background:#ffffff;
padding:6px;

}

/* accordion header */
#accordion img {
	float:left;
	margin-right:0px;
	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:0	px;
}

/* content inside a pane should have fixed width */
#accordion div {
font-family:arial;
background:#ffffff;
height:353px;
}

#accordion div h1 {
	color:#444;
	margin:-4px 0 -10px 0;
	width:190px;
	font-size:15px;	
}
	
#accordion div p {	
	font-size:11px;
	width:540px;
	background-color:;
}

#accordion div a{	
color:#6f7273;
text-decoration:none;
}

#accordion div a:hover{	
color:#ea1c24;
text-decoration:none;
}