/* root element for accordion. decorated with rounded borders and gradient background image */
.accordion{

	width:600px;

	-background:#666;
}

/* accordion header */
.accordion h2 {
	background-image:url(images/acordeon.png);
	background-repeat:no-repeat;
	margin:0;
	width:599px;
	height:39px;
	font-size:14px;
	font-weight:normal;
/*	border:1px solid #F00;
	border-bottom:1px solid #ddd;*/
	cursor:pointer;
}

/* currently active header */
.accordion h2.current {
	cursor:default;
	/*background-color:#fff;*/
	background-position:0px -39px;
}

/* accordion pane */
.accordion div.pane {
	background-image:url(images/acordeon_bg.png);
	background-repeat:repeat-y;
	display:none;
	height:200px;
	overflow:auto;
	padding:15px;
	color:#fff;
	font-size:12px;

    -webkit-border-bottom-right-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-bottomright: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-right-radius: 10px;
	border-bottom-left-radius: 10px;

}

/* a title inside pane */
.accordion div.pane h3 {
	font-weight:normal;
	margin:0 0 -5px 0;
	font-size:16px;
	color:#999;
}

