/* Layout Stylesheet */ 
<style type="text/css">

#header{
float: center;
}

#c-wrap{
float: left;
width: 100%;
}

#c-col{
margin: 0 200px 0 230px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
 height: 480px;
background-color: #AFBDC6;
 overflow: auto; 
 overflow-y: scroll;
 overflow-x: hidden;
}

#c-col-horiz{
margin: 0 200px 0 230px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
 height: 480px;
 background: #AFBDC6 url("../images/studio_lights.jpg");
 overflow: auto; 
 overflow-y: hidden;
 overflow-x: scroll;
}

#c-col-black{
margin: 0 200px 0 230px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
 background: #AFBDC6 url("../images/studio_lights.jpg");
 height: 480px;
}

#c-col-wide{
margin: 0 0 0 230px; /*Margins for content column. Should be "0 RightColumnWidth 0 LeftColumnWidth*/
 height: 480px;
 overflow: auto; 
 overflow-y: scroll;
 overflow-x: hidden;
}

#l-col{
float: left;
width: 260px; /*Width of left column*/
margin-left: -100%;
}

#r-col{
float: left;
width: 200px;
margin-left: -200px; /*Set left marginto -(RightColumnWidth)*/
}

#footer{
clear: left;
width: 100%;
color: #FFF;
text-align: center;
padding: 4px 0;
}

#footer a{
color: gray;
}

.in-pad{
margin: 5px; /*Margins for inner DIV inside each column (to provide padding)*/
margin-top: 0;
}

body {
position: absolute
	left: 0;
	top: 0;
	background-image: url(background_02.jpg);
	scrollbar-base-color: #83AFFF; 
	scrollbar-arrow-color: blue;
}	

</style>