/* Main page layout */

html, body, div, form 
{ 
	margin: 0px; 
	padding: 0px; 
}

html {
	width: 100%;
	height: 100%;
	position: absolute;
}

/* -------------------------------------------------- */

/* Header */

#HeaderDiv {
	height: 70px;
}

.Header
{
	width: 100%;
	background-color: #FFFFFF; 
	background-image: url(../images/background.png);
	background-position: top right;	
	background-repeat: no-repeat;
	padding-left: 10px;
	padding-right: 10px;
}

.HeaderAppLogo
{
	height: 70px;
	margin-top: 12px;
}

.HeaderLoginStatus
{
	text-align: right;
	vertical-align: middle;
}

.HeaderMainMenu
{
	padding-left: 10px;
	padding-right: 10px;
	height: 40px;	
}

.HeaderSubMenu
{
	width: 100%; 
	padding-left: 10px;
	height: 29px;
	background-color: #C0C0C0;
}

/* -------------------------------------------------- */

/* Split pages */

#MainDiv {
	/* nothing to be done here for now */
}

.Main {
	position: absolute;
    top: 72px;
    bottom: 29px;
    overflow-y: auto;
}

.WebViewerPane
{
	left: 0px;
	right: 260px;
	overflow: auto;
	padding: 4px 14px 4px 4px;
}

.RightPane
{
	right: 0px;
	width: 250px;
	overflow: auto;
	padding: 4px 4px 4px 4px;
	border-left: solid 2px #C0C0C0;
	text-align: justify;
}

.DetailsPanel
{
	padding: 4px;
}

/* -------------------------------------------------- */

/* Footer */

#FooterDiv 
{
    height: 29px;
    position: absolute;
    width: 100%;
    bottom: 0;
}

.Copyright
{
	padding-right: 4px;
}

.Version
{
	white-space: nowrap;
	padding-right: 6px;
	font-size: 10px;
	border-left: 1px solid #C0C0C0;
}

/* -------------------------------------------------- */

/* Fonts */

*
{
	font-family: Verdana;
	font-size: 12px;
}

h1
{
	font-size: 20px;
	border: 1px solid #C0C0C0;
	padding: 4px;
	background-color: #E0E0E0;
}

h2
{
	font-size: 16px;
}

h3
{
	font-size: 14px;
	border: 1px solid #C0C0C0;
	padding: 4px;
	background-color: #E0E0E0;
}

code
{
	font-family: Courier New;
}

pre 
{
	background-color: #EAEAEA;
	border: 1px dashed black;
	padding: 4px;
	font-family: Courier New;
}

/* -------------------------------------------------- */

/* Links */

a:link
{
	color: #000000;
}

a:visited
{
	color: #000000;
}

a:hover
{
	color: #000000;
	text-decoration: none;
}