﻿/* ************************ Layout ************************ */
* {
	margin: 0;
	border: 0;
	padding: 0;
}
body {
	position: relative;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 960px; /* Page width */
	height: 100%;
	margin: 15px;
}
#LayoutBanner {
}
* html #LayoutBanner {
	height: 1%;
}
#LayoutPage {
	position: relative;
	width: 100%;
	height: 100%;
}
#LayoutTop {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 2.8em; /* Top menu height */
}
#LayoutLeft {
	position: absolute;
	top: 2.8em;
	left: 0;
	width: 200px; /* Left menu width */
}
#LayoutRight {
	position: absolute;
	top: 2.8em;
	right: 0;
	width: 200px; /* Right menu width */
}
#LayoutMain {
	padding: 2.8em 200px 0 200px;
}
#LayoutBody {
	min-height: 400px; /* Minimum body height */
}
* html #LayoutBody {
	height: 400px;
}
#LayoutFooter {
}

