/* This is just here for formatting purposes.  This has nothing to do with the layout. */
@import url(../CSS/defaultstyles.css);
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:  0;
}
#bodywrapper {
	margin:  0;
	padding:  0;
	position:  relative;
	top:  0;
	left:  0;
/* Replace width value with your choice of layout width. */
	width:  770px;
/*  Background of the left side menu.  Replace the URL and the background color (#FFFFFF) with your choices for each.)  */
	background:  url(../LayoutImages/body_bg.gif) top left repeat-y #FFFFFF;
	color:  #000000;
}
#contentarea {
	float: left;
 /* replace this value with the width of your left column */
	margin:  0;
	padding:  0;
	height:  1%;  /* IE hack */
/* Replace width value with your choice of content area width. */
	width:  570px;
}
#contentarea[id] {
/* Put in place for Firefox, and any browser that will render this section correctly.  IE has a bug involving float:  none. */
	float:  none;
	margin-left:  200px;
}
#leftcolumn {
	float:  left;
	width:  200px;
	margin:  0;
	padding:  0;
	z-index:  0;
}
#leftcolumncontent {
	position:  absolute;
	top:  0;
	left:  0;
/*  Background of the left side menu.  Replace the URL and the background color (#3F9BCF) with your choices for each.)  */
	background:  url(../LayoutImages/body_bg.gif) top left repeat-y #3F9BCF;
	color:  #FFFFFF;
	margin:  0;
	padding:  0;
/* Replace width with the width of your left column. */
	width:  200px;
	z-index:  500;
	visibility:  visible;
	overflow:  visible;
}
#footer {
/* This is needed to ensure that the footer appears below your content and menus. */
	clear:  both;
	margin:  0;
	padding:  0;
/* Replace width value with your choice of layout width.   Optional.  If you wanted to, you could make this portion liquid.  */
	width:  770px;
/* Replace with the height of your footer.  Optional.  */
	height:  20px;
	background:  url(../LayoutImages/body_bg.gif) top right repeat #3F9BCF;
	color:  #FFFFFF;
}
