﻿/*
layout specific info goes here, actual styling should go in the skin css file
*/

body
{
	height: 100%; /*gives child divs something to inherit*/
	margin: 25px 1px 1px 1px;
	padding: 0;
}
#Layout_Main, .StandAlone /*Stand alone pages,(ex: privacy page), there is no master page*/
{
	/*centered layout*/
	position: relative;
	margin: 0 auto;
	
	/*left justified layout
	position: absolute;
	*/
	
	width: 798px; /* 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;
	background-color:Gray;
}

#Layout_Header, tr.Layout_HeaderPlaceHolder, #Header
{
	height:150px;
}



#Layout_Header
{
	position:absolute;
	left:0px;
	top:0px;
	z-index:100;
}

#Footer, #Layout_Footer
{
	height:30px;
}


#Layout_Content
{
	width:780px; 
	padding-left:10px;	
}




#Layout_Middle
{
	height:250px;
	min-height:250px;
}

/* for visualization only, can be deleted */

td.Layout_HeaderPlaceHolder
{
	
}



#Layout_Main
{
	background-color:White;
}


#Layout_Footer
{
	
}


