﻿/*
layout specific info goes here, actual styling should go in the skin css file
*/

body
{
	height: 100%; /*gives child divs something to inherit*/
	margin: 20px 1px 1px 1px;
	padding: 0;
}
#Layout_Main
{
	/*centered layout*/
	position: relative;
	margin: 0 auto;
	
	/*left justified layout
	position: absolute;
	*/
	
	width: 750px; /* 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-width:1px;
}

#Layout_Header, tr.Layout_HeaderPlaceHolder
{
	
	width:750px;
	height:270px;
	
}

#Layout_Header1, tr.Layout_HeaderPlaceHolder1
{
	
	width:750px;
	height:545px;
	
}

#Header
{
    height:25px;
}

#Layout_Header
{
	position:absolute;
	left:0px;
	top:0px;
	z-index:100;
}

#Footer, #Layout_Footer
{
	height:70px;
	
}

#Layout_LeftNavPlaceHolder, #Layout_LeftNav, #LeftNav, .Layout_LeftNavBrace
{
	width: 0px;
}

#Layout_Content
{
	width:750px;
}

#Layout_LeftNav
{
	position:absolute;
	left:0px;
	top:70px; /* height of left nav */
	z-index:100;
}


#Layout_Middle
{
	height:300px;
}

/* for visualization only, can be deleted */

/*td.Layout_HeaderPlaceHolder
{
	background-color:Gray;
}*/

#Layout_LeftNavPlaceHolder
{
	background-color:white;
}

#Layout_Main
{
	background-color:white;
}

#Layout_LeftNav
{
	background-color:Fuchsia;
}
#Layout_Footer
{
	background-color:white;
	height:20px;
	text-align:right;
	padding-right:10px;
	
	
}


