﻿/*
layout specific info goes here, actual styling should go in the skin css file
*/

body
{
	height: 100%; /*gives child divs something to inherit*/
	margin: 0px 0px 0px 0px;
	padding: 0;
	
}
#Layout_Main
{
	/*centered layout*/
	position: relative;
	margin: 0 auto;
	
	/*left justified layout
	position: absolute;
	*/
	
	width: 948px; /* 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-bottom:none;
	border-top:none;
	border-left:solid 3px #806135;
	border-right:solid 3px #806135;
}

#Layout_Header, tr.Layout_HeaderPlaceHolder, #Header
{
	height:120px;
}

#Layout_Header
{
	position:absolute;
	left:0px;
	top:0px;
	z-index:100;
}

#Footer, #Layout_Footer
{
	height:25px;
	
}

#Layout_LeftNavPlaceHolder, #Layout_LeftNav, #LeftNav, .Layout_LeftNavBrace
{
	width: 280px;
  z-index:2;
  height:1px;
	margin-left:1px;
	
}

#Layout_Content
{
	width:662px;	
	padding-top:10px;
	background-color:#BDBC9E;
	margin-right:3px;
	
}

#Layout_LeftNav
{
	position:absolute;
	left:0px;
	top:10px; /* height of left nav */
	z-index:100;
	width:284px;
}


#Layout_Middle
{
	
}

/* for visualization only, can be deleted */

td.Layout_HeaderPlaceHolder
{
	background-color:Gray;
}

#Layout_LeftNavPlaceHolder
{
	background-color:White;
}

#Layout_Main
{
	background-color:#BDBC9E;
}

#Layout_Footer
{
	background-color:#BDBC9E;
	height: 95px;
}


