 
 
 
 
 
@charset "utf-8";
body {
	font: 75% Arial, Helvetica, sans-serif;
	background: #dcdadc;
	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;
		background-image:url(Immagini/back.jpg);
	background-repeat:no-repeat;
	background-position:center;
}
#container {
	width: 735px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #ffffff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	
	text-align: left; /* this overrides the text-align: center on the body element. */
}
a{
color:#000000;
font-weight:normal;
text-decoration:underline;
}

a:link{
color:#000000;
text-decoration:underline;
}

a: visited {
color:#000000;
text-decoration:underline;
}

a: hover {
color:#000000;
text-decoration:underline;
}

a:active{
color:#000000;
text-decoration:underline;
} 
#header {
	background: #ffffff; 
	padding: 0 0 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #ffffff;
}
#left {
	margin-top:-7px;
	margin-left:0;
	width:374px;
	float:left;
	padding-top:10px;
	background: #FFFFFF;
}
#left ul {
margin-left:-28px;
font:bold;
	list-style:none;
}
#left ul li p{
	font:100% Arial, Helvetica, sans-serif;
	width:420px;
	margin-right:80px;
	margin-bottom:1px;
}
#left ul li img{
	margin-left:70px;
	margin-bottom:-50px;
}

#right {
	margin-top:-20px;
	margin-left:422px;
	padding-top:20px;
	background: #FFFFFF;
	height:379px;
}
#rightbox {
	margin:0;
	width:282px;
	background: #fff1e5;
	border:2px solid #e54040;
}
#rightbox ul {
	
	margin-left: -25px;
	list-style:none;
}
#rightbox ul li {
	margin-bottom:8px;
	font-size:11px;
}
#rightbox ul li p {
font-size:11px;
}

#rightbox ul li img{
	margin-left:40px;
	margin-top:-14px;
	margin-right:5px;
}
#asso ul li a img{
text-decoration:none;
border:none;
}
#asso ul li a:link{
text-decoration:none;
border:none;
}
#asso ul li a:visited{
text-decoration:none;
border:none;
}
#asso ul li a:hover{
text-decoration:none;
border:none;
}
#asso ul li a:active{
text-decoration:none;
border:none;
}
#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#dcdadc;
	background-image:url(Immagini/footer.png);
	background-repeat:no-repeat;
	background-position:left;
	width:800px;
	height:106px;
}
#footer p {
    font: 85% Arial, Helvetica, sans-serif;
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 65px 5px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */

}