@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


/*	Spry MenuBarHorizontal per mostrare riquadro passando sopra una parola. NOME:"MBHorTIP"	*/

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/
 


/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MBHorTIP
{
	 margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: auto; /* "AUTO" impagina corrett su IE */
	display: inline; /* "inline" */
	float: none;/**/
	position: relative;/* INS  
						absolute: FF Hgiusta ma NONIMPAG hor; IE7: coll OK, ma sovraimpresso al testo
						relative:(=vuoto) FF COLLOC sbagliatissima, ma IMP ok; IE7: imp ok
						*/ 
	background-color: #FFFF99;
	letter-spacing:2px;
	
	
}

/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}

/*	RIQUADRO MENU */
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MBHorTIP li
{
	 margin: 0px;
	padding: 0px;
	list-style-type: none;
	position: relative;	/*/*MOD DEFauLT:"relative"  |  NO EFFETTI su IE7 
					 FF: con ESCLUSO o "STATIC" almeno il menu è impaginato ALL?INTERNO DEL MAIN CONTENT*/
	
	float: none; /* MOD DEFAULT "left" | 
				 non sembra avere effetti su IE. con "NONE" il menu va all'altezza GIUSTA, ma NON E? IMPAGINATO */ 
	display:inline; /* SERVE PER FF */	
	width:auto;	/*  inheritNO */ 
	
							 
				 
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MBHorTIP ul
{
	padding: 0px;
	list-style-type: none;
	font-size: 100%;
	z-index: 1010;
	width: 300px;
	position: absolute;  /*"ABSOLUTE" */
	left: -1000em;	/* piazza il SUB MENU fuori quando NON serve */

}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MBHorTIP ul.MenuBarSubmenuVisible
{
	/* left: auto; MOD DEFAULT:left */
	 top: 20px;
	LEFt: 60px;  
	/* bottom: 0px;*/
	position: absolute; /* "RELATIVE" colloca bene, ma sballa IMPAG FF e IE 	*/
	table-layout: auto;
	text-align:justify;
	white-space: inherit;
	padding:6px;
	background-color: #FFFFFF;
	elevation:above;
	z-index:1010;
	}
	
/* Menu item containers are same fixed width as parent */
ul.MBHorTIP ul li
{
	width: 200px;
	font:verdana;
	font-size:12px;
	letter-spacing:normal;
	
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MBHorTIP ul ul
{
	position:absolute;
	/* margin: -5% 0 0 95%;*/
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MBHorTIP ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MBHorTIP ul
{
	border: 1px solid #FF0000; /* ROSSO */
	
	
}


/* Menu items are a light gray block with padding and no text decoration */
ul.MBHorTIP a
{
/*	display: inline; */
	cursor: help;
	color: #003300; /* #006600; */
	text-decoration: none;
}
/* Menu items that have mouse over or focus  */
ul.MBHorTIP a:hover, ul.MBHorTIP a:focus
{

}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MBHorTIP a.MenuBarItemHover, ul.MBHorTIP a.MenuBarItemSubmenuHover, ul.MBHorTIP a.MenuBarSubmenuVisible
{
	background-color:#000099; /* BLU SCURO */
	color: #FFF;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MBHorTIP a.MenuBarItemSubmenu
{
	background-repeat: no-repeat;
	z-index:1000;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MBHorTIP ul a.MenuBarItemSubmenu
{
	background-repeat: no-repeat;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MBHorTIP a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MBHorTIP ul a.MenuBarItemSubmenuHover
{
	background-repeat: no-repeat;
}

/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MBHorTIP iframe
{
	position: absolute;
	z-index: 1000;
	display:none;

}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MBHorTIP li.MenuBarItemIE
	{
		display: inline;
		flo/at: ;
	}
}

