/* Stili generici per l'elemento body */
body {
/*Layout*/
background-color:white;
margin: 0;
padding: 0; /*elimina il fastidioso bordo in mozilla!;*/
height: 100%;
width:100%;
/*Font*/
font-size: 12px;
font-family: Garamond, Arial, sans-serif;
color: black;
}

/**************************HEADER***************************** */
#header {
/*Layout*/
width: 100%;
height: 120px;
border-bottom : 7px solid black;
/*Font*/
text-align: center;
}

/* Stile delle componenti di header */
#title{
position: absolute;
left: 40%;
top:5px;
/*Font*/
font-weight: bolder;
font-size: 3.9em; /*3.5*font-size del body*/
color: #9f000f;
}
#subtitle{
position: absolute;
left: 40%;
top: 60px;
/*Font*/
font-weight: bolder;
font-size: 1.9em;
color: #9f000f;
}
img#ImgHead{
width: 100%;
height: 120px;
}
/**************************MENU******************************/
#menu {
/*Layout*/
height: 35px;
padding-right:5px;
padding-left: 5px;
/*Font*/
background-color:black;
font-family: Verdana, Palatino Linotype;
font-weight: bold;
}

/* Stile delle componenti di menu */
#menu a {
/*Font*/
color : #800000;
}
#menu a:visited {
/*Font*/
color : white;
}
img#menimg{
/*Layout*/
border: 0;
}

/**************************FOOTER******************************/
#footer{
/*Layout*/
width:100%;
/*Font*/
text-align: center;
font-size: 10px;
font-weight:bold;
font-family:Century Schoolbook, Arial;
}


