.clear {
	clear: both
}

/* remove the list style */
#nav {
	margin: 0;
	padding: 0;
	list-style: none;
}

#navContainer {
	margin-left: auto;
    margin-right: auto;	
}

/* make the LI display inline */
/* it's position relative so that position absolute */
/* can be used in submenu */
#nav li {
	float: left;
	display: block;
	/*width: 100px; */
	/*background: #ccc;*/
	position: relative;
	z-index: 500;
	margin: 0 1px;
}

/* this is the parent menu */
#nav li a {
	display: block;
	padding: 8px 5px 0 5px;
	height: 23px;
	text-decoration: none;
	text-align: center;
	color: #ffffff;
}

#nav li a:hover {
	background-color: #ff6600;
	text-decoration: underline;
	color: #ffffff;
}

/* you can make a different style for default selected value */
#nav a.selected {
	color: #f00;
}

/* submenu, it's hidden by default */
#nav ul {
	background: #f0f0f0;
	position: absolute;
	left: 0;
	display: none;
	margin: 0 0 0 -1px;
	padding: 0;
	list-style: none;
	border-width: 1px;
	border-color: #383838;
	border-style: solid;
	border-top-style: none;
	border-top-width: 0px;
}

#nav ul li {
	background: #f0f0f0;
	width: 200px;
	float: left;
	/*border-top: 1px solid #fff;*/
}

/* display block will make the link fill the whole area of LI */
#nav ul a {
	display: block;
	height: 15px;
	padding: 8px 5px;
	color: #666;
}

#nav ul a:hover {
	text-decoration: underline;
}

/* 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;
}

.barraSinistra {
	border-right-color: #ffffff;
	border-right-style: dotted;
	border-right-width: 1px;
}