@charset "utf-8";

/* *** box che contiene l'elenco delle news nella pag "elenco_news.php" 
       e "contenuto_news.php"  */
#box_news {
	position:absolute;
	width:396px;
	height:320px;
	z-index:2;
	text-align: left;
	left: 446px;
	top: 0px;
  border-width: 1px;
	border-style: solid;
	border-color: #999999;
	padding:10px;
}

/* *** box con il contenuto di una news nella pag "contenuto_news.php"  */
#box_contenuto_news {
	position:absolute;
	width:396px;
	height:325px;
	z-index:2;
	text-align: left;
	left: 446px;
	top: 0px;
  border-width: 1px;
	border-style: solid;
	border-color: #999999;
	padding:10px;
/* *** emulazione iframe */ 	
	overflow: auto;
}

/* *** box che contiene l' immagine corrispondente ad una news
       nella pag "contenuto_news.php" */
#immagine {
	position:absolute;
	left:230px;
	width:195px;
	/* height:245px; */
	z-index:2;
	text-align: center;
	top: 70px;
	border-width: 1px;
	border-style: solid;
	border-color: #999999;
	padding:5px;
}

/* *** box che contiene  il menu/barra per le pagine "elenco_news.php" 
       e "contenuto_news.php" Il menu è identico a quello della pag
       index, ma posizionato diversamente. Le regole sono identiche
       al layout orignale... */
#menu_news {
	position:absolute;
	left:230px;
	width:215px;
	height:325px;
	z-index:2;
	top: 0px;
}
#menu_news ul {
	list-style-type: none;
	margin-left: 0px;
	padding-left: 0px;
	margin-top: 0px;
	padding-top: 0px;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	width: 205px;
}
#menu_news a {
	width: 189px;
	height: 13px;
	display: block;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	padding: 8px;
}
#menu_news a:hover {
	background-color: #CCCCCC;
}

/* *** box destinato a contenere i numeri della paginazione dell'elenco
       di news nella sola pag "elenco_news.php" Per non stravolgere il
       layout della pagina il div è stato posto fuori dal box wrapper
       per questo font-family è stato nuovamente specificato */
#paginazione{
 	font-family: Verdana, Arial, Helvetica, sans-serif;
 	position:absolute;
	left:530px;
	width:420px;
	height:15px;
	padding:0px;
	top:412px;
  z-index:4;
  color: #999999;
}

/* *** classe per collegamenti/link usata per la paginazione  e 
       per la parola [segue] delle liste news nei files "elenco_news.php" 
       e "contenuto_news.php" */
a.collegamento:link, a.collegamento:visited {
	font-size: 12px;
	color: #999999;
	text-decoration: none;
}
a.collegamento:hover {
	font-size: 12px;
	text-decoration: none;
	color: #666666;
}



