body{
margin: 0;
padding: 0;
border: 0;
overflow: hidden;
height: 100%; 
max-height: 100%; 
font-family: Verdana, Arial, sans-serif;
font-size: 0.9em;
}

#nav, #banner{
position: absolute; 
top: 0; 
left: 0; 
width: 125px; /*Width of nav*/
height: 100%;
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background: #fff;
color: black;
}

#banner{ 
left: 125px; /*Set left value to Width of nav*/
right: 0;
top: 2px;
width: auto;
height: 34px; /*Height of banner*/
overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
background-color: #fff;
color: black;
}

#mainbox{
position: fixed; 
left: 125px; /*Set left value to Width of nav*/
top: 40px; /*Set top value to Height of banner*/
right: 0;
bottom: 0;
overflow: auto; 
background: #fff;
}

.innertube{
margin: 15px; /*Margins for inner DIV inside each DIV (to provide padding)*/
}

.header {
  clear:both;
  background: #ECE5B6;
  padding: 8px;
  margin: 0;
  overflow:hidden;
  float:left;
}

.content {
  clear: both;
  position: relative;
  float: top;
  margin: 0 0 20px 0;
  width: 720px; /*Width of the content area*/
  overflow: auto;
  background: #fff;
}

.footer {
  clear:both;
  background: #ECE5B6;
  padding: 8px;
  margin: 20px 0 20px 0;
  overflow:hidden;
  float:left;
  font-size: .7em;
}

a:link {
text-decoration: none;
color: #0000FF;
}

a:hover {
text-decoration: underline;
}

a:visited {
color: #0000FF;
}

* html body{ /*IE6 hack*/
padding: 34px 0 0 125px; /*Set value to (Height of banner 0 0 Width of nav)*/
}

* html #maincontent{ /*IE6 hack*/
height: 100%; 
width: 100%; 
}

* html #framecontentTop{ /*IE6 hack*/
width: 100%;
