Non sono online, comunque questo è il codice lato CSS:
codice:
body {
	background-color: White;
	margin: 0px;
	padding: 0px;
	font-family: Verdana, sans-serif;
	font-size: 0.9em;
	text-align: center;
	line-height: 2em;
}

#wrap {
	margin: 15px auto;
	padding: 0px;
	font-size: 95%;
	text-align: left;
  	width: 775px;
	background: url(../img/left-right.gif) repeat-y;
}

#left_img {
float: left;
}

#right_img {
float: right;
}

#main {
	float: left;
	width: 723px; 
}

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

#nav2 {
	float: left;
	width: 142px;
	background-color: #E6E6FA;
}

#content {
	float: right;
	width: 581px; 
	background-color: #FAE6FA;
}

#content img {
	float: right;
}

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

#footer {
	clear: both;
	width: 100%;
	background: #003366;
}
Lato HTML, invece:
codice:
<div id="wrap">
	<div id="left_img">[img]img/left-up.gif[/img]</div>
	<div id="right_img">[img]img/top.jpg[/img]</div>
        <div id="left"></div>
	<div id="main">
        <div id="nav2">Navigation</div>
	     <div id="content">Content</div>
	</div>
	<div id="right"></div>
	<div id="footer"></div>
</div>
Grazie