/* CSS document */

body{
	text-align: center;
	font-size: 12px;
	background: #ddd;
	}
	/*** div contenitore ***/
div#centro {
       position: relative;
	width: 90%;
	/*height: 580px;altezza per adesso non serve, si determina con #text
	background: #ff0000;*/
	font-family: Helvetica, Geneva, Futura, Arial;
       }
	
	/*** table header ***/
	
table#header {
	width: 100%;
	border: solid 2px #ff6611; /*bordo header arancione*/
	height: 100px;
	background: #009C41;
	color: #fff;
	padding: 5px;
	//font-size: 20px;
	font-weight: bold;
	line-height: .8;
	}
table#header td.dwnld{
	vertical-align: bottom;
	text-align:left;
	height: 20px;
	width:10%;
	margin-right:0;
	font-size:10px;
	line-height: 1;
	font-family: arial;
	}
table#header td.dwnld a{
	color:#fff;
	text-decoration:none;
	}
table#header td.dwnld a:hover{
	text-decoration:underline;
	}
	
	/*** table menu ***/
	
table#menu {
	margin:0;
	padding:0;
	background: #000069;
	width: 100%;
	text-align: center;
	}
table#menu td {
	background: #000069;
	font-size: 13px;
	font-family:  Helvetica, Futura, Arial;
	width: 14%;
	border-right: 1.5px solid #ff6611;
	border-left: 1.5px solid #ff6611;
	}
table#menu td:hover{
	background: #ff6611;
	*background: #000069; /*conditional comment for IE*/
	}
table#menu td a{
	text-align: center;
	//background: #000069;
	font-size: 13px;
	//font-family:  Arial;
	text-decoration: none;
	color: #ddd;
	}
table#menu td a:hover{
	background: #ff6611;
	color: #fff;
	font-size: 13px;
	text-decoration: underline;
	}
table#menu td.selected{
	background: #ff6611;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	}
	
	/*** table contenuti ***/
	
table#text, #home{
	width: 100%;
	border: solid 1px #ff6611;  /*bordo arancione*/
	height: 475px;
	background: #ff6611;  /*arancione*/
	padding: 1px;
	text-align: center;
	*text-align:left;  /*conditional comment for IE*/
	}
table#text td{
	border: solid 1px #ff6611;
	vertical-align: top;
	}
table#home td{
	border: solid 1px #ff6611;
	vertical-align: top;
	/***  padding est la distance entre le text et le margin; pour changer l'alignement du text (pour le mettre a gauche) ça suffit
	changer les parametres i.e.: padding-left: 10%; padding-right: 50%;  
	Pour modifier l'image il faut modifier directement index.html  ***/
	padding-left: 60%;
	padding-right: 10%;
	text-align: left;
	line-height: 2.3;
	}
div.ovflow{
		/*condictional comments for IE*/
	*position:absolute;
	*margin-left:0;
	*overflow: auto;
		/*end of conditional comments*/
	height: 469px;
	overflow: auto;
	padding: 0px;
	width: 99%;
	position:absolute;
	margin-left:0;
	}
	
	/*** table footer ***/
	
table#footer {
	width: 100%;
	border: solid 2px #ff6611;  /*bordo del footer arancione*/
	height: auto;
	background: #fff;
	text-align:center;
	}
table#footer td{
	width:30%;
	text-align: center;
	}