@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 MENU SUDINOI */

.Accordion_SUDINOI {
	border-left: solid 1px #d8d9db;
	border-right: solid 1px #d8d9db;
	border-bottom: solid 1px #d8d9db;
	overflow: hidden;
	width: 186px;
}

/* 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_SUDINOI {
	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.
 *
 * 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_SUDINOI {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-top: solid 1px #d8d9db;
	border-bottom: solid 0px #d8d9db;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-top: 6px;
	padding-bottom: 7px;
	text-align: right;
	padding-right: 26px;
	background: url(/SpryAssets/images/bg_SUDINOI.gif);
}

.AccordionPanelTab_SUDINOI a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #3569a5;
	text-decoration: 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.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") 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 content container.
 */
.AccordionPanelContent_SUDINOI {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #e2f0ff;
	padding-left: 14px;
	
}

.AccordionPanelContent_SUDINOI a {
	color: #3569a5;
	line-height: 14px;
	text-decoration: none;
}

.AccordionPanelContent_SUDINOI a:hover {
	color: #636363;
	text-decoration: none;
	line-height: 14px;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen_SUDINOI .AccordionPanelTab_SUDINOI {
	padding-top: 6px;
	padding-bottom: 7px;
	padding-left: 13px;
	text-align: right;
	background-image: url(/SpryAssets/images/bg_selected_INFO.gif);
	background-repeat: repeat-x;
}

.AccordionPanelOpen_SUDINOI .AccordionPanelTab_SUDINOI a {
	color: #FFFFFF;
	text-align: right;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
*/ 
.AccordionPanelTabHover_SUDINOI {
	text-align: right;
	background: url(/SpryAssets/images/bg_selected_INFO.gif) repeat-x;
	padding-left: 13px;
}

.AccordionPanelTabHover_SUDINOI a {
	color: #FFFFFF;
}

.AccordionPanelOpen_SUDINOI .AccordionPanelTabHover_SUDINOI  {
}

/* 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_SUDINOI .AccordionPanelTab_SUDINOI {
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused_SUDINOI .AccordionPanelOpen_SUDINOI .AccordionPanelTab_SUDINOI {
	/*background-color: #3c8fb2;*/
}



	
/* ACCORDION MENU SCUOLA */

.Accordion_SX {
	border-left: solid 1px #d8d9db;
	border-right: solid 1px #d8d9db;
	border-bottom: solid 1px #d8d9db;
	overflow: hidden;
	width: 186px;
}

/* 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_SX {
	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.
 *
 * 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_SX {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-top: solid 1px #d8d9db;
	border-bottom: solid 0px #d8d9db;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-top: 6px;
	padding-bottom: 7px;
	text-align: right;
	padding-right: 26px;
	background: url(/SpryAssets/images/bg_SX.gif);
}

.AccordionPanelTab_SX a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #ff9000;
	text-decoration: 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.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") 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 content container.
 */
.AccordionPanelContent_SX {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #ffefcd;
	padding-left: 14px;
	
}

.AccordionPanelContent_SX a {
	color: #ff9000;
	line-height: 14px;
	text-decoration: none;
}

.AccordionPanelContent_SX a:hover {
	color: #636363;
	text-decoration: none;
	line-height: 14px;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen_SX .AccordionPanelTab_SX {
	padding-top: 6px;
	padding-bottom: 7px;
	padding-left: 13px;
	text-align: right;
	background-image: url(/SpryAssets/images/bg_selected_SX.gif);
	background-repeat: repeat-x;
}

.AccordionPanelOpen_SX .AccordionPanelTab_SX a {
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
*/ 
.AccordionPanelTabHover_SX {
	text-align: right;
	background: url(/SpryAssets/images/bg_selected_SX.gif) repeat-x;
	padding-left: 13px;
}

.AccordionPanelTabHover_SX a {
	color: #FFFFFF;
}

.AccordionPanelOpen_SX .AccordionPanelTabHover_SX  {
}

/* 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_SX .AccordionPanelTab_SX {
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused_SX .AccordionPanelOpen_SX .AccordionPanelTab_SX {
	/*background-color: #3c8fb2;*/
}



/* ACCORDION MENU NOLEGGIO */

.Accordion_NOLEGGIO {
	border-left: solid 1px #d8d9db;
	border-right: solid 1px #d8d9db;
	border-bottom: solid 1px #d8d9db;
	overflow: hidden;
	width: 186px;
}

/* 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_NOLEGGIO {
	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.
 *
 * 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_NOLEGGIO {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-top: solid 1px #d8d9db;
	border-bottom: solid 0px #d8d9db;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-top: 6px;
	padding-bottom: 7px;
	text-align: left;
	padding-left: 26px;
	background: url(/SpryAssets/images/bg_NOLEGGIO.gif);
}

.AccordionPanelTab_NOLEGGIO a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #96c03a;
	text-decoration: 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.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") 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 content container.
 */
.AccordionPanelContent_NOLEGGIO {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #eff6e2;	
	padding-left: 14px;
}

.AccordionPanelContent_NOLEGGIO a {
	color: #96c03a;
	line-height: 14px;
	text-decoration: none;
}

.AccordionPanelContent_NOLEGGIO a:hover {
	color: #636363;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen_NOLEGGIO .AccordionPanelTab_NOLEGGIO {
	padding-top: 6px;
	padding-bottom: 7px;
	padding-right: 13px;
	text-align: left;
	background-image: url(/SpryAssets/images/bg_selected_NOLEGGIO.gif);
	background-repeat: repeat-x;
}

.AccordionPanelOpen_NOLEGGIO .AccordionPanelTab_NOLEGGIO a {
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
*/ 
.AccordionPanelTabHover_NOLEGGIO {
	text-align: left;
	background: url(/SpryAssets/images/bg_selected_NOLEGGIO.gif) repeat-x;
	padding-right: 13px;
}

.AccordionPanelTabHover_NOLEGGIO a {
	color: #FFFFFF;
}

.AccordionPanelOpen_NOLEGGIO .AccordionPanelTabHover_NOLEGGIO  {
}

/* 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_NOLEGGIO .AccordionPanelTab_NOLEGGIO {
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused_NOLEGGIO .AccordionPanelOpen_NOLEGGIO .AccordionPanelTab_NOLEGGIO {
	/*background-color: #3c8fb2;*/
}





/* ACCORDION MENU INFO */

.Accordion_INFO {
	border-left: solid 1px #d8d9db;
	border-right: solid 1px #d8d9db;
	border-bottom: solid 1px #d8d9db;
	overflow: hidden;
	width: 186px;
}

/* 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_INFO {
	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.
 *
 * 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_INFO {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-top: solid 1px #d8d9db;
	border-bottom: solid 0px #d8d9db;
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	padding-top: 6px;
	padding-bottom: 7px;
	text-align: left;
	padding-left: 26px;
	background: url(/SpryAssets/images/bg_INFO.gif);
}

.AccordionPanelTab_INFO a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #3569a5;
	text-decoration: 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.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") 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 content container.
 */
.AccordionPanelContent_INFO {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #e2f0ff;	
	padding-left: 14px;
}

.AccordionPanelContent_INFO a {
	color: #3569a5;
	line-height: 14px;
	text-decoration: none;
}

.AccordionPanelContent_INFO a:hover {
	color: #636363;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen_INFO .AccordionPanelTab_INFO {
	padding-top: 6px;
	padding-bottom: 7px;
	padding-right: 13px;
	text-align: left;
	background-image: url(/SpryAssets/images/bg_selected_INFO.gif);
	background-repeat: repeat-x;
}

.AccordionPanelOpen_INFO .AccordionPanelTab_INFO a {
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
*/ 
.AccordionPanelTabHover_INFO {
	text-align: left;
	background: url(/SpryAssets/images/bg_selected_INFO.gif) repeat-x;
	padding-right: 13px;
}

.AccordionPanelTabHover_INFO a {
	color: #FFFFFF;
}

.AccordionPanelOpen_INFO .AccordionPanelTabHover_INFO  {
}

/* 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_INFO .AccordionPanelTab_INFO {
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused_INFO .AccordionPanelOpen_INFO .AccordionPanelTab_INFO {
	/*background-color: #3c8fb2;*/
}




/* ACCORDION MENU CONTACT */

.Accordion_CONTACT {
	border-left: solid 1px #d8d9db;
	border-right: solid 1px #d8d9db;
	border-bottom: solid 1px #d8d9db;
	overflow: hidden;
	width: 450px;
}

/* 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_CONTACT {
	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.
 *
 * 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_CONTACT {
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	border-top: solid 1px #d8d9db;
	border-bottom: solid 0px #d8d9db;
	margin: 0px;
	padding: 0px;
	font-size: 11px;
	padding-top: 6px;
	padding-bottom: 7px;
	text-align: left;
	padding-left: 26px;
	background: url(/SpryAssets/images/bg_titolo_contact.gif);
	background-color: #1b5aa1;
}

.AccordionPanelTab_CONTACT a {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #3569a5;
	text-decoration: 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.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") 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 content container.
 */
.AccordionPanelContent_CONTACT {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	background-color: #e2f0ff;	
}

.AccordionPanelContent_CONTACT a {
	color: #3569a5;
	line-height: 14px;
	text-decoration: none;
}

.AccordionPanelContent_CONTACT a:hover {
	color: #636363;
	text-decoration: none;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen_CONTACT .AccordionPanelTab_CONTACT {
	padding-top: 6px;
	padding-bottom: 7px;
	background-image: url(/SpryAssets/images/bg_selected_INFO.gif);
	background-repeat: repeat-x;
	color: #FFFFFF;
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
*/ 
.AccordionPanelTabHover_CONTACT {
	background: url(/SpryAssets/images/bg_selected_INFO.gif) repeat-x;
	color: #FFFFFF;
	background-color: #1b5aa1;
}

.AccordionPanelOpen_CONTACT .AccordionPanelTabHover_CONTACT  {
}

/* 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_CONTACT .AccordionPanelTab_CONTACT {
	background-color: #1b5aa1;
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused_CONTACT .AccordionPanelOpen_CONTACT .AccordionPanelTab_CONTACT {
	background-color: #1b5aa1;
}

