<!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" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Dynamic Drive: CSS Liquid Layout #2.1- (Fixed-Fluid)</title>
<style type="text/css">

body{
margin:0;
padding:0;
line-height: 1.5em;
}

b{font-size: 110%;}
em{color: red;}


#topsection{
background: #16365d;
height: 60px; /*Height of top section*/
}

#topsection h1{
margin: 0;
padding-top: 8px;
}

#contentwrapper{
float: left;
width: 100%;
}

#contentcolumn{
margin-left: 230px; /*Set left margin to LeftColumnWidth*/
}

#leftcolumn{
float: left;
width: 230px; /*Width of left column*/
margin-left: -100%;
background: #16365d;
}

#footer{
clear: left;
width: 100%;
background: black;
color: #FFF;
text-align: center;
padding: 4px 0;
}

#footer a{
color: #FFFF80;
}

.innertube{
margin: 4px; /*Margins for inner DIV inside each column (to provide padding)*/
margin-top: 0;
}

</style>



</head>
<body>
<div id="maincontainer">

<div id="topsection"><div class="innertube"></div></div>

<div id="contentwrapper">
<div id="contentcolumn">
<div class="innertube"> </div>
</div>
</div>

<div id="leftcolumn">
<div class="innertube"></div>

</div>

<div id="footer">Copyright 2010 St. John the Evangelist</div>

</div>
</body>
</html>
