@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
.Accordion {
	/*border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	*/
	overflow: hidden;
	outline: none;
}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
 
 /* qui quelli non  attivi */
.AccordionPanelTab {
	/*background-color: #CCCCCC;*/
	color: #666;
	font-size:15px;
	/*
	border-top: solid 1px black;*/
	border-bottom: dotted 1px #4D6073;;
	/*border-left: solid 6px #2C3641;*/
	background:url(../images/frecciasx.gif) no-repeat 5px left;
	padding-left:12px;
	
	margin: 0px;
	/*padding: 2px;*/
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
*/
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 180px;
}

/* panel tab that is currently open */
.AccordionPanelOpen .AccordionPanelTab {
	/*background-color: #EEEEEE;*/
	border-bottom:2px solid #900;
	border-left:6px solid #900;
	background:none;
	padding-left:6px;
}


/* appearance of the panel tab as the mouse hovers over it.*/
.AccordionPanelTabHover {
color: #ddd;
outline: none;
}
.AccordionPanelOpen .AccordionPanelTabHover {
color: #900;
outline: none;
}

/* Tll the panel tabs when the Accordion has focus */
.AccordionFocused .AccordionPanelTab {
/*background-color: #3399FF;*/
outline: none;
}

 
/* currently open when the Accordion has focus.*/
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
/*background-color: #33CCFF;*/
outline: none;
}

