﻿@import url(defaultstyles.css);
@import url(menu.css);

*html
{
    height:100%
}

/*** Layout ***/
body {
/* Always use margin:  0;  padding:  0; as margin controls for your page itself.  Setting both to 0 ensures that your page will spread to the outer edges of the browser window. */
	margin:  0;
	padding:  2;
	height:100%;
}

#BodyWrapper {
/* replace margin-top value with the height of your header. */
	margin-top:  140px;
	margin-left:  2px;
	margin-right:  2px;
	margin-bottom:  2px;
	padding:  0;
/*  Background of the right side menu.  Replace the URL and the background color (#FFFFFF) with your choices for each.  */
	background-color:#FFFFFF;
	color:  #000000;
	position:  relative;
	top:  0;
	left:  0;
	width:  100%;
	height:100%;
}

#Content {
 /* replace this value with the width of your left column */
 	margin-left:  180px;
	margin-right:  0;
	margin-bottom:  0;
	margin-top:  0;
	padding:  0 0 0 10px;
	height:100%;
}

#Navigation {
	position:  absolute;
	top:  0;
	left:  0;
	margin:  0;
	padding:  0;
/* Replace width with the width of your left column. */
	width:  180px;	
	color:  #FFFFFF;
}

#Header {
	position:  absolute;
	top:  0;
	left:  0;
	width:  100%;
/* replace this value with the height of your header. */
	height:  140px;
/* background for the header.  Replace the URL and the background color (#F2F2F2) with your choices for each.  */	
	color:  #000000;
/* put this in to ensure that your header doesn't overlap the body of your website. */
	overflow:  hidden;
}