﻿/*
layout specific info goes here, actual styling should go in the skin css file
*/

body
{
	height: 100%; /*gives child divs something to inherit*/
	margin: 15px 1px 1px 1px;
	padding: 0;
}
#Layout_Main
{
	/*centered layout*/
	position: relative;
	margin: 0 auto;
	
	/*left justified layout
	position: absolute;
	*/
	
	width: 765px; /* 760 - border width */
	
	/*
	only the size is specified here since it affects the layout
	color and style of the border will be in the main style sheet;
	*/
	border:solid 1px black;
}

#Layout_Header, tr.Layout_HeaderPlaceHolder, #Header
{
	height:70px;
}

#Layout_Header
{
	position:absolute;
	left:0px;
	top:0px;
	z-index:100;
}

#Footer, #Layout_Footer
{
	height:60px;
}

#Layout_LeftNavPlaceHolder, #Layout_LeftNav, #LeftNav, .Layout_LeftNavBrace, .Layout_LeftNavBrace td
{
	width: 165px;
	
}

#Layout_Content
{
	width:600px;
	padding-left:10px;	
}

#Layout_LeftNav
{
	position:absolute;
	left:10px;
	top:166px; /* height of left nav */
	z-index:100;
	width:165px;
}


#Layout_Middle
{
	height:300px;
}



