/* GENERALI -------------------------------------------------------------------- */
.fixed-nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  -webkit-transform: translateZ(9999px);
  transform: translateZ(9999px);
  width: 100%;
  height: 50px;
}
.fixed-nav-bar li, .fixed-nav-bar a {
  height: 40px;
  line-height: 40px;
}
.fixed-nav-bar, .submenu-UL {
	background-color: #222;
}
/* GENERALI ----------------------------------------------------------------fine */

/* MENU ------------------------------------------------------------------------ */
.menu-DIV {
  position: relative;
  font-family: 'MenuFont', arial;
  font-size: 1.05em;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.menu-DIV a{
	text-decoration: underline;
}
.menu-DIV a, .menu-DIV a:visited {
  color: #fff;
}
.menu-DIV a:hover{
  color: #880;
}
/* MENU --------------------------------------------------------------------fine */

/* SITENAME -------------------------------------------------------------------- */
.sitename-A {
  position: absolute;
  top: 0;
  font-family: 'TitoloFont';
  font-size:1.4em;
  display: inline-block;
  margin-top: 3px;
  margin-right: 5px;
  margin-left: 5px;
  opacity: 1.0;
}
a.sitename-A, a:visited.sitename-A {
 text-decoration: none;
}
a.sitename-A:hover, a.sitename-A:target {
	opacity: 0.7;
}
/* SITENAME-----------------------------------------------------------------fine */

/* MENU-ITEMS ------------------------------------------------------------------ */
.menu-UL {
  float: right;
  display: inline-block;
}
.menu-UL a {
  text-decoration: none;
}
.menu-UL li {
  display: inline-block;
  margin-right: 10px;
  margin-left: 10px;
  padding-top: 7px;
  /*margin-top: 7px;*/
}
/* MENU-ITEMS --------------------------------------------------------------fine */

/* SUBMENU-ITEMS --------------------------------------------------------------- */
.submenu-UL {
	position: absolute;
  	display: none;
}
.submenu-UL li {
	display: block;
	padding-top:0;
}
/* SUBMENU-ITEMS -----------------------------------------------------------fine */

/* SHOW/HIDE SUBMENU ----------------------------------------------------------- */
.hide-submenu-A {
	opacity: 0.6;
	display: none;
}
.show-submenu-arrows {
	float:right; width:15px; padding-top:15px;
}
/* SHOW/HIDE SUBMENU ----------------------------------------------------------- */

/* SHOW/HIDE SUBMENU ACTIONS --------------------------------------------------- */
#show-submenu0:target .show-submenu-A, #show-submenu1:target .show-submenu-A,
#show-submenu2:target .show-submenu-A, #show-submenu3:target .show-submenu-A
{ 
	display: none; 
}
#show-submenu0:target .hide-submenu-A, #show-submenu1:target .hide-submenu-A,
#show-submenu2:target .hide-submenu-A, #show-submenu3:target .hide-submenu-A,
#show-submenu0:target > .submenu-UL, #show-submenu1:target > .submenu-UL,
#show-submenu2:target > .submenu-UL, #show-submenu3:target > .submenu-UL
{
	display: block;
}
/* SHOW/HIDE SUBMENU ACTIONS -----------------------------------------------fine */

/* SHOW/HIDE MOBILE MENU ------------------------------------------------------- */
.show-A, .hide-A {
  display: none;
  padding-left: 15px;
  padding-top: 5px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center left;
  color: #dde1e2;
}
.show-A {
  background-image: url(down-arrow-icon.png);
}
.hide-A {
  background-image: url(up-arrow-icon.png);
  opacity: 0.5;
}
/* SHOW/HIDE MOBILE MENU ---------------------------------------------------fine */


/* SMALL SCREEN WIDTH ########################################################## */
@media only screen and (max-width: 880px) {

	/* GENERALI ------------------------------------------------------------@@@@ */
	.fixed-nav-bar li, .fixed-nav-bar a {
		height: auto;
	}
	.content {
		padding-top: 30px;
	}
	/* GENERALI ------------------------------------------------------------fine */
	
	/* MENU ----------------------------------------------------------------@@@@ */
	.menu-DIV { 
		width: 100%;
	}
	/* MENU ----------------------------------------------------------------fine */
	
	/* MENU-ITEMS & SUBMENU-ITEMS ------------------------------------------@@@@ */
	.menu-UL a, .menu-UL li, .submenu-UL a, .submenu-UL li {
		line-height: 18px;
	}
	/* MENU-ITEMS & SUBMENU-ITEMS ------------------------------------------fine */
	
	/* MENU-ITEMS ----------------------------------------------------------@@@@ */
	.menu-UL {
	display: none;
	text-align: right;
	margin-top: 50px;
	background-color: #555;
	opacity: 0.9;
	}
	@media only screen and (max-height: 390px) {
		.menu-UL {
			height: 155px;
			overflow: visible;
			overflow-y: scroll;
		}
	}
	.menu-UL li {
	display: block;
	text-align: left;
	}
	/* MENU-ITEMS ----------------------------------------------------------fine */
	
	/* SUBMENU-ITEMS -------------------------------------------------------@@@@ */
	.submenu-UL {
		display: block;
		position:relative;
		background: none;
		padding-top: 0;
	}
	.submenu-UL a:before{
		font-family: 'Arial';
		color: #fff;
		content: "\21b3 \0020";
	}
	/*
	.menu-here {
		color: #9c9;
	}
	*/
	/* SUBMENU-ITEMS -------------------------------------------------------fine */
	
	/* SHOW/HIDE SUBMENU ---------------------------------------------------@@@@ */
	.show-submenu-arrows {
		display: none;
	}
	/*.show-submenu:after{
		content: none;
	}*/
	.show-submenu-A, .show-submenu-A:hover{
		opacity: 0.3;
		pointer-events: none; /* NO ACTION */
	}
	/* SHOW/HIDE SUBMENU ---------------------------------------------------fine */
	
	/* SHOW/HIDE MOBILE MENU -----------------------------------------------@@@@ */
	.show-A, .hide-A {  
		position: absolute;
		top: 0;
		right: 15px;
	}
	.show-A {
		display: block;
	}
	.hide-A {
		display: none;
	}
	/* SHOW/HIDE MOBILE MENU -----------------------------------------------fine */

	/* SHOW/HIDE MOBILE MENU ACTIONS ---------------------------------------@@@@ */
	#menu-DIV:target .show-A {
		display: none;
	}

	#menu-DIV:target .hide-A, #menu-DIV:target .menu-UL {
		display: block;
	}
	/* SHOW/HIDE MOBILE MENU ACTIONS ---------------------------------------fine */
}
/* SMALL SCREEN WIDTH ######################################################fine */

/* SMALLEST SCREEN WIDTH ####################################################### */
@media only screen and (max-width: 300px) {
	.sitename-A, .show-A, .hide-A, .menu-DIV a {
		font-size: 14px;
	}
}
/* SMALLEST SCREEN WIDTH ###################################################fine */