body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	background-color: #92AFC0;
	background-image: url(img/background.png);
	background-repeat: repeat-x;
}
#container {
	width: 730px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
a{
	font-size: 12px;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}
a:hover{
	background-color: #FFCC00;
}
#header {
	background-image: url(img/top_bar.jpg);
	height: 173px;
} 
#header h1 {
	margin: 0;
}
#sidebar_dx {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	background-color: #FFFFFF;
}
#sidebar_dx ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#sidebar_dx li {
	margin: 0;
	padding: 0;
	display: inline;
}
#sidebar_dx a {
	background-image: url(img/spunta.png);
	width: 145px;
	margin-left: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	text-decoration: none;
	font-weight: bold;
	color: #52677A;
	padding-left: 15px;
	border-bottom-width: 1px;
	border-bottom-style: dashed;
	border-bottom-color: #93BEBD;
	display: block;
	background-repeat: no-repeat;
	padding-top: 2px;
	padding-bottom: 2px;
}
#sidebar_dx a:hover {
	color: #FF9900;
	background-color: #FFFFFF;
}
#sidebar_dx .select {
	color: #FF9900;
}
#main {
	background-image: url(img/back_main.png);
	background-repeat: no-repeat;
	min-height: 400px;
	width: 550px;
	float: left;
}
#main .testo {
	font-size: 12px;
	line-height: 20px;
	padding: 20px;
}
#main .titolo {
	font-size: 18px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #46586A;
	font-style: italic;
	font-weight: bold;
} 
#main .citta {
	font-size: 22px;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FF9900;
	font-style: italic;
	font-weight: bold;
}
#footer {
	background-image: url(img/footer.jpg);
	height: 35px;
	text-align: center;
	background-repeat: no-repeat;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#menu {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding-left: 10px;
	font-weight: bold;
}
#menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#menu li {
	margin: 0;
	padding: 0;
	display: inline;
}
#menu a {
	float: left;
	background-image: url(img/menu_off.png);
	text-decoration: none;
	height: 19px;
	width: 101px;
	text-align: center;
	padding-top: 2px;
	color: #FFFFFF;
}
#menu a:hover {
	background-image: url(img/menu_on.png);
	color: #000000;
}
#menu .selezionato {
	background-image: url(img/menu_on.png);
	color: #000000;
}
.dl_progetto {
	background-image: url(img/dl_progetto.gif);
	height: 32px;
	padding-top: 8px;
	padding-left: 35px;
}
.dl_resoconto {
	background-image: url(img/dl_resoconto.gif);
	height: 32px;
	padding-top: 8px;
	padding-left: 35px;
}
