E` un sempice layout a due colonne con header e footer, tutto racchiuso in un "wrapper" centrato.

Se cerchi tra i layout pronti (alcuni riferimenti tra i "link utili") trovi sicuro qualcosa di gia` pronto.
L'unica cosa e` che devi inserire il layout dentro il contenitore:
codice:
HTML:
<body>
  <div id="wrapper">
    ... qui il layout a due colonne con heade e footer - dovrai anche usare il trucco delle "false colonne" ...
  </div> 
</body>

CSS:
html, body {
  width: 100%;
}
#wrapper {
  width: 600px;    /* definire secondo le tue esigenze */
  margin; 0 auto;
  background: url(falsecolonne.png) repeat-y;
}
#header {
  width: 100%;
  background: ...;
}
#sin {
  float: left;
  width: 400px;  /* da regolare */
}
#des {
  float: left;    /* o anche right, come preferisci */
  width: 200px;    /* da regolare */
}
#footer {
  clear: both;
  widht: 100%;
}