/*************************************************************************
* This is the SKIN style definition for the CSS menu.                    *
* Feel free to customize this section.                                   *
*************************************************************************/

/*
 * Menu container settings
 * Applies to the first level menu container
 */
.winter {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
 	font-weight: none;
} 

/*
 * Menu container settings
 * Applies to second (or more) level menu containers
 */
.winter ul {
 	border: 0px solid #637279;
}

/*
 * Menu items settings
 * Applies to all menu items in all menu containers
 */
.winter li {
	background-color: #637279;
	width: 170px;
	margin-top: 3px; /*margine tra le voci di sezione */
	margin-left: 3px; /*margine tra le voci di sezione */
 	border: 1px solid #637279;
	text-align: right;
}

/*
 * Menu items settings
 * Applies to second (or more) level menu items
 */
.winter ul li {
	width: 140px;
 	border: 1px solid #637279;
	margin: 1px; /*margine tra le voci di sezione */
	background-color: #637279;
	text-align: left;
}

/*
 * Menu link settings
 * Applies to links that are to be found within the menu items, no matter the menu level
 */
.winter a {
	text-decoration: none;
	color: white;
	line-height: 25px; /*altezza sezione 1° livello*/
	padding: 0px 2px;
	padding-left: 18px;
	cursor: pointer;
	text-transform: none;
}

/*
 * Menu link settings
 * Applies to links located in the second (or more) level menu items
 */
.winter ul a {
 	border: none;
 	color: white;
	line-height: 25px;
}

/***************************************************************************
* In this section, we will define what happens when mouse-overing an item  *
***************************************************************************/
/*
 * Mouse over on menu items
 * Applies to all menu items in all menu containers
 */
.winter li.hover {
	background-position: 0px 12px !important;
	background: white; /*colore rollover 1° livello*/
	background-image: none;
}
  
/*
 * Mouse over on menu items
 * Applies to second (or more) level menu items
 */
.winter ul li.hover {
  	background-color: white;
}

/*
 * Mouse over on links
 * Applies to all links in all menu items
 */
.winter a.hover {
	color:#637279;
	background-image: none;
}

/*
 * Mouse over on links
 * Applies to links located in the second (or more) level menu items
 */

.winter ul a.hover {
	color: #637279;
}
/*****************************************************************************
* In this section, we will define what happens when a menu item is selected  *
*****************************************************************************/
/*
 * Selected menu item
 * Applies to selected menu items in all menu containers
 */
.winter li.selected {
	background-position: 0px 22px;
	background: white; 
}

.winter li.selected .hover{
	background: #637279;
}

.winter li.selected a {
	background-position: 0px 22px; /*colore sezione selezionata*/
}

.winter li.selected a.hover {
	color: white;
}
/*
 * Selected menu item
 * Applies to second (or more) level selected menu items
 */
.winter ul li.selected {
}

/*
 * Selected links
 * Applies to selected links in all menu items
 */
.winter a.selected {
	color: #637279;
}

/*
 * Selected links
 * Applies to selected links located in the second (or more) level menu items
 */
.winter ul a.selected {
}
/******************************************************************************
* In this section, we will define the menu arrows behavior                    *
* An arrow is inserted next to the menu item when the menu item has sub-menus *
******************************************************************************/

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus
 */

.winter .arrow {
	background-image: url(img/arrow_white.gif);
	background-repeat: no-repeat;
	background-position: 3px center;
}

/* 
 * Define the arrow
 * Applies to all menu items that have sub-menus located in the second (or more) level
 */

.winter .hover ul .arrow,
.winter ul .arrow {
	background-image: url(img/arrow_white.gif);
	background-repeat: no-repeat;
	background-position: left center;
	background-position: 3px center;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus on mouse over
 */
.winter .hover .arrow {
	background-image: url(img/arrow_color.gif);
}

.winter li.selected .arrow ,
.winter li.selected a.hover {
	background-image: url(img/arrow_color.gif);
	background-repeat: no-repeat;
	background-position: left center;
	background-position: 3px center;
}

/* 
 * Define the arrow on mouse over
 * Applies to all menu items that have sub-menus located in the second (or more) level on mouse over
 */
.winter ul .hover .arrow {
	background-image: url(img/arrow_color.gif);
}

.winter ul .selected .arrow{
	background-image: url(img/arrow_color.gif);
	background-repeat: no-repeat;
	background-position: 3px center;
}



/*************************************************************************
* This is the LAYOUT style definition for the CSS menu                   *
* DO NOT alter this section, unless you know what you're doing           *
*************************************************************************/
div.horizontal {
	clear: both;
}
div.horizontal br {
	clear: both;
}
div.horizontal ul {
	margin: 00px;
	padding: 0px;
	display: block;
	float: left;
	clear: both;
}
div.horizontal li {
	list-style-type: none;
	display: block;
	float: left;
	clear: none;
	text-align: left;
   position: static;
	width: 156px;
}
div.horizontal li img {
	border: none;
}
div.horizontal a {
	clear: both;
	display: block;
	margin: 0px;
}
div.horizontal ul li ul {
	position: absolute;
	left: -5000px;
	top: -5000px;
	visibility: hidden;
	clear: both; 
}
div.horizontal ul li ul li {
	clear: both; 
}
div.horizontal ul li ul li a {
	clear: both;
}
.hasImg,
.hasImg a {
	padding: 0px !important;
	margin:	0px	!important;
	border:	none !important;
	outline: none !important;
	background:	transparent !important;
	width: auto !important;
}
/*************************************************************************
* This is the LAYOUT style definition for the CSS menu                   *
* DO NOT alter this section, unless you know what you're doing           *
*************************************************************************/
div.vertical {
	clear: both;
}
div.vertical br {
	clear: both;
}
div.vertical ul {
	margin: 0px;
	padding: 0px;
	display: block;
	float: left;
	clear: both;
}
div.vertical li {
	list-style-type: none;
	display: block;
	float: left;
	clear: both;
    position: static;
}
div.vertical li img {
	border: none;
}
div.vertical a {
	clear: both;
	display: block;
	margin: 0px;
}
div.vertical ul li ul {
	position: absolute;
	left: -5000px;
	top: -5000px;
	visibility: hidden;
	clear: both; 
}
div.vertical ul li ul li {
	clear: both; 
}

div.vertical ul li ul li a {
	clear: both;
}
.hasImg,
.hasImg a {
	padding: 0px !important;
	margin:	0px	!important;
	border:	none !important;
	outline: none !important;
	background:	transparent !important;
	width: auto !important;
}
