@charset "UTF-8";

.Accordion {
	overflow: hidden;
}

/* 
 * ########### pannello principale ############
 */
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* 
 * ########### pannello chiuso ############
 */
.AccordionPanelTab {
	color:#FF3300;
	background:url(../images/base/freccia-opere.gif) left center no-repeat;
	margin:10px 0 0 0;
	padding:2px 2px 2px 20px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* 
 * ########### CONTENUTO ############
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0 0 10px 0;
	padding: 20px;
	height: 200px;
	background-color:#ddd;
}

/* 
 * ############# pannello aperto - stile della barra titolo #############
 */
.AccordionPanelOpen .AccordionPanelTab {
	background:url(../images/base/freccia-opere-on.gif) left center no-repeat;
	background-color:#8D8F6A;
	color:#fff;
}
/* 
 *  ##### rollover della barra titolo ################
 */
.AccordionPanelTabHover {
	background:url(../images/base/freccia-opere-on.gif) left center no-repeat;
	color:#fff;
	background-color:#8D8F6A;
}
/*
* ################# rollover della barra del titolo selezionata ###############
*/

.AccordionPanelOpen .AccordionPanelTabHover {
	color:#666;
	background-color:#CCC;
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.

.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}
 */
 
/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
}
 */