/* CSS Document */
html, body{
background-color: #fff;
background-image:url(images/fondo.jpg);
background-repeat: repeat-x;
	padding:0;
	margin:0;
    text-align: center;   /*centra in IE 5.x */
}

#container {
	margin: 0px auto;   /*centra negli altri browsers*/
    text-align: left;   /*ripristina l' allineamento*/
	padding-top:3px;
	width:872px;
}


#contenuto {
	margin-left: 180px;
	margin-top:20px;
	margin-bottom:20px; 
    text-align: justify; 
	width:630px;
	font-family:Geneva, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:20px;
	color:#333333;
	
}


h1{font-size:20px; font-weight:bold; color:#e2001a;}
h2{font-size:14px; color:#0093d1; text-align: left;}

#cornice {border: 1px solid #119ad4; width:630px; padding-top:10px; padding-left:10px;}

li {margin-bottom:8px; padding:0;}

a:link {color: #04435e;} 
a:hover {color: #568ba2;} 
a:visited {color: #04435e;} 

a.ne:link {color: #fff;} 
a.ne:hover {color: #fff;} 
a.ne:visited {color: #fff;} 

.dida{color:#7b7b7b; font-style:italic; font-size:12px; font-family:"Times New Roman", Times, serif;}




/*CSS per gli ingrandimenti pagina processi produttivi*/

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: white;
padding: 10px;
left: -1000px;
border: 1px solid red;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: -120px;
left: 20px; /*position where enlarged image should offset horizontally */

}