﻿/*container for header & footer*/
#maincontainer 
{
    margin-bottom: 10px; /* = footercontainer height */
}

/*footer container*/
#footercontainer
{
	height: 0px; /* = maincontainer bottom margin */
	width: 1000px;
	top:40px;
}

/*forced background*/
#forcedbackground, #contentcontainer
{
	width: 1000px;
}

/*center design containers*/
#menu, #forcedbackground, #content, #contentcontainer
{
    width: 1000px;
}

/* header container */
#headercontainer
{
    width:1000px; /* page width (in pixles) or 100% */
    height:200px;
}

/* content container */
#contentcontainer
{
	top: 50px;
    width:1000px; /* page width (in pixles) or 100% */
    height:500px;
    overflow: auto;
}

/* bottom whitespace */
#footerspace
{    
    height:0px; /* = footercontainer width - footer width */
}

/* top whitespace */
#headerspace
{    
    height:10px;
}

/* header line */
#headerline
{    
    height:46px;
    width: 1000px;
}

/* footer content container */
#footer
{
    width:1000px;
    height:0px; /* max = footercontainer height - footerspace height */
    margin-top: 5px;
}




