@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	overflow: hidden;
	float:left;
	width:100%;
}

/* 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.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0 0 10px 0;
	padding: 0px;
	width:198px;
	border-left:1px solid #a5497b;
	border-right:1px solid #a5497b;
	border-top:1px solid #a5497b;
}

/* 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.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 */
.AccordionPanelTab {
	margin: 0;
	padding: 5px 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}
.AccordionPanelTab h3 {
	padding:0 0 0 10px;
	margin:0;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding:0;
	/*height:280px;*/
	border-bottom:1px solid #a5497b;	
}


.AccordionPanelContent ul{
	list-style-type:none;
	margin:0;
	padding:0 0 10px 0;
	
}

.AccordionPanelContent ul li{
	font-size:11px;
	font-family:"Trebuchet MS", Arial, Verdana, Helvetica, sans-serif;
	padding:5px 0 0 10px;
	margin:0;
	color:#e1dfe0;
}


.AccordionPanelContent ul li a{
	color:#e1dfe0;
	font-size:11px;
	text-decoration:none;
	padding:0;
	margin:0;
}

.AccordionPanelContent ul li a:hover{
	color:#F4D3E5;
	text-decoration:none;
}

.AccordionPanelContent ul li a.corrente{
	color:#F4D3E5;
	
}
