
/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background:#f9ebde url(../images/bkgd-main-menu-index.jpg) repeat-x;
	height:375px;
	padding:25px 0 15px 15px;
	margin-bottom: 20px;
	width:834px;
	border:1px solid #d07034;
	outline:0;
	-moz-border-radius:6px;
}

/* accordion header */
#accordion h3 {
	float:left;
	margin-right:10px;
	cursor:pointer;
	width: 70px;
}


#accordion img.click {
	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:#000;
	width:314px;
}
	
#accordion div p {	
	width:314px;
}
