﻿body
{
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	border: none;
	background-color: #ffffff;
}

.header
{
	position:absolute; 
	z-index: 100;
	left: 0px;
	top: 0px;
	padding: 10px;
	height: 30px;
	right: 0px;
	background-color: #336699;	
}

.PersonalMenu
{
	position: absolute;
	z-index: 100;
	top: 0px;
	right: 0px;
	margin-right: 10px;
}

.menu
{
	position: absolute;
	z-index: 50;
	left: 0px;
	top: 50px;
	right: 0px;
	margin-left: auto;
	margin-right: auto;
	background-color: #275078;	
	padding-left: 160px;
	border-bottom: solid 3px White;
}

.tasks
{
	position:absolute; 
	left: 0px;
	top: 90px;
	bottom: 0;		
	width: 160px;
	margin-left: auto;
	margin-right: auto;
	background-color: #275078;
}

.content
{
	margin-top: 90px;
	margin-left: 170px;
	margin-right: 10px;
	padding: 0px;
	text-align: left;	
	background-color: White;
}

@media print
{
	.header, .menu, .tasks, .PersonalMenu
	{
		display: none;
	}		
	
	.content
	{
		margin: 0;
		width: 100%;
	}
}

