/* CSS DI LAYOUT */
/* Qui: misure, posizionamento, margini e padding */
body {
margin:0;
  
}


/* Contenitore principale subito dopo body */
#main {
width:730px;
display:table;
margin: 0px auto 0px auto; 
}

/* HEADER */

#header {
width:730px;
  height: 106px;
}

#navbar {
width:730px;
  height: 65px;
}


/* Main content, sezione centrale con dentro navbar e content*/

#maincontent {
width:730px;
}


#content {
width:730px;
}



#footer{
width:730px;
clear:both;
}


