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

/* Contenitore principale subito dopo body */
#main {
width:750px;
background-image:url('../imgs/sfondo.gif');
background-repeat:repeat-y;
display:table;
}

/* HEADER */

#header {
width:750px;
  height: 160px;
}
/* Main content, sezione centrale con dentro navbar e content*/

#maincontent {
width:750px;
border-top:5px solid #FFFFFF;
}

#navbar {
width:100%;
height:39px;
background-color:#FFDC8B;
}

#left {
width:137px;
float:left;
}

#content {
width:470px;
float:left;
}


#right {
width:137px;
float:right;
}

