﻿/*
layout specific info goes here, actual styling should go in the skin css file
*/

body
{
	height: 100%; /*gives child divs something to inherit*/
	margin: 1px 1px 1px 1px;
	padding: 0;
}

#Layout_Main
{
	/*centered layout*/
	position: relative;
	margin: 0 auto;
	
	/*left justified layout
	position: absolute;
	*/
	
	width: 958px; /* 960 - 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-width:1px;
}

#Layout_Header, tr.Layout_HeaderPlaceHolder, #Header
{
	height:228px;
}

#Layout_Header
{
	position:absolute;
	left:0px;
	top:0px;
	z-index:100;
	width:956px;
	border-left:solid 1px #6C6869;
	border-right:solid 1px #6C6869;
}

#Footer, #Layout_Footer
{
	height:55px;
	width:958px;
}

#Layout_LeftNavPlaceHolder, #Layout_LeftNav, #LeftNav, .Layout_LeftNavBrace
{
	width:150px;
	vertical-align:top;
}

#Layout_Content
{	
	
	
}

#Layout_LeftNav
{
	position:absolute;
	left:10px;
	top:325px; /* height of left nav */
	z-index:100;
}

#Layout_Middle
{
	height:300px;
	
}

#Layout_RightNavPlaceHolder, #Layout_RightNav, #RightNav, .Layout_RightNavBrace
{
	width: 180px;
}

#Layout_RightNav
{
	position:absolute;
	right:10px;
	top:325px; /* height of right nav */
	z-index:5;
}