#nav {
		margin:0; 
		padding:0; 
		list-style:none;
		font-size:10px;
		font-style:normal;
		font-variant:normal;
		font-weight:normal;
		text-transform:uppercase;
		line-height:2px;
		text-shadow: 1px 1px 0 #fff;
	}	
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block; 
			background:none; 
			position:relative;
			z-index:500; 
			margin:2px;
			padding:0 19px; 
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			font-weight:700;  
			height:20px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#333;
		}

		#nav li a:hover {
			color:green;
			background:url(freccia.15.png);
		}

		#nav li a:hover ul{
		display: block;
	}
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:0; 
			list-style:none;
		}
		
		#nav ul li {
			width:90; 
			float:left; 
			background:url(freccia.15.png) top;
			margin:0;
			/*border-color:#E1E1E1 #CDCDCD #CDCDCD #E1E1E1;*/
			border-style:solid;
			border-width:1px;
		}
		
		#nav ul li:hover {
			background:url(freccia.15.png) bottom;
			margin:0;
			/*border-top:1px solid #fff;
			border-left:1px solid #fff;
			border-bottom:1px solid #ccc;
			border-right:1px solid #ccc;*/
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			line-height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px;
		}

		
	
		/* make the LI display inline */
		/* it's position relative so that position absolute */
		/* can be used in submenu */
		#nav li {
			float:left; 
			display:block; 
			background:none; 
			position:relative;
			z-index:500; 
			margin:2px 0;
		}
		
		/* this is the parent menu */
		#nav li a {
			display:block; 
			padding:18px 5px 0 5px; 
			text-decoration:none; 
			color:#fff; 
			text-align:center; 
			color:#333;
		}

		#nav li a:hover {
			color:#333;
			background:none;
		}
		
		#nav li>ul a{
			text-align: left; 
		}
		
		#nav li>ul>li a:hover {
			color:#fff;
			background:none;
			text-shadow:none;
		}
	
		/* you can make a different style for default selected value */
		#nav a.selected {
			color:#f00;
		}
	
		/* submenu, it's hidden by default */
		#nav ul {
			position:absolute; 
			left:0; 
			display:none; 
			margin:0 0 0 -1px; 
			padding:2px 0 0 0; 
			list-style:none;
		}
		
		#nav ul li {
			width:150px; 
			float:left; 
			background:url(freccia.15.png) top;
			margin:0;
			/*border-color:#E1E1E1 #CDCDCD #CDCDCD #E1E1E1;*/
			border-style:solid;
			border-width:0;
		}
		
		#nav ul li:hover, #nav li > ul > li a:hover {
			background:#ffe43c;
			margin:0;
			color:#333;

		}

		#nav li ul{
			display:none; 
		}

		#nav li:hover ul{
			display:block; 
		}
		
		/* display block will make the link fill the whole area of LI */
		#nav ul a {
			display:block;  
			height:15px;
			padding: 8px 5px; 
			color:#666;
		}
		

		/* fix ie6 small issue */
		/* we should always avoid using hack like this */
		/* should put it into separate file : ) */
		*html #nav ul {
			margin:0 0 0 -2px; 
		}
		
		#nav ul li ul li{
			text-align:left;
		}