[HTML]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style>
.wrapper {
width:808px;
border:1px #CCCCCC solid;
padding:3px;
}
.left_column {
width:147px;
float:left;
text-align:center;
border:1px #CCCCCC solid;
margin:1px;
}
.central-colunm {
width:300px;
float:left;
border:1px #CCCCCC solid;
margin:1px;
}
.right_column {
width:147px;
float:left;
text-align:center;
border:1px #CCCCCC solid;
margin:1px;
}
.col {
width:198px;
float:right;
text-align:center;
border:1px #CCCCCC solid;
margin:1px;
}
.spacer{
clear:both;
margin:0;
padding:0;
line-height:0px;
}
</style>
</head>
<body>
<div class="wrapper">
<div class="left_column">stuff here</div>
<div align="center" class="central-colunm">stuff here</div>
<div class="right_column">stuff here</div>
<div class="col">Text Here</div>
<div class="left_column">stuff here</div>
<div align="center" class="central-colunm">stuff here</div>
<div class="right_column">stuff here</div>
<div class="col">Text Here</div>
<div class="left_column">stuff here</div>
<div align="center" class="central-colunm">stuff here</div>
<div class="right_column">stuff here</div>
<div class="col">Text Here</div>
<div class="spacer"></div>
</div>
</body>
</html>
[/HTML]