/* CSS DI LAYOUT */
/* Qui: misure, posizionamento, margini e padding */
body {
margin:0;  
}

/* Contenitore principale subito dopo body */
#main {
width:715px;
display:table;
margin: 20px auto 0px auto; 
}


#header {
width:715px;
}


#content {
width:715px;
display:table;
}

#content #left {
width:220px;
float:left;
display:table-cell;
}

#content #right{
width:495px;
float: right;
}


#footer{
width:715px;
clear:both;
}


