/* root element for accordion. decorated with rounded borders and gradient background image */
#accordion {
	background: url(images/fondo_accordion.png); background-repeat:no-repeat;
	height:100px;
	margin-top:20px;
	margin-left:0px;
	padding:10px 0px 0px 30px;
	width:700px;
}

/* accordion header */
#accordion img {
	background-color:#fff;
	border:1px solid #ccc;
	padding:4px;
	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:#333333;
	margin:0 0 -10px 0;
	width:180px;
	font-size:14px;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	text-align: left;
	text-shadow: 0px 1px #f5f5f5;
}
	
#accordion div p {
	font-size:12px;
	width:180px;
	font-family: "Trebuchet MS";
	text-align: left;
	line-height: 15px;
}
#accordion div a {
	color: #333333;
	text-decoration: none;
}
#accordion div a:hover {
	color: #666666;
	text-decoration: none;
	background-image: url(images/go.png);
	background-position:center center;
	display: block;
	background-repeat: no-repeat;
}
