﻿/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	background: transparent;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
	color: black;
	background: white;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
/* End of CSS Reset */

body
{
	margin: 0;
	padding: 0;
	border: 0;
	overflow: hidden;
	height: 100%;
	max-height: 100%;
}
#divContentLeft, #divContentRight
{
	/*position: absolute;
	top: 0;*/
	left: 0;
	height: 100%;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	color: white;
}

#divContentRight
{
	left: auto;
	right: 0;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	color: white;
}

#divContentBottom
{
	/*position: absolute;
	bottom: 0;*/
	width: auto;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	color: white;
	padding-top: 10px;
	padding-left: auto;
	padding-right: auto;
	padding-bottom: 10px;
	text-align: center;
}

#divContentMain
{
	/*position: fixed;
	top: 0;*/
	overflow:hidden;
}

* html #divContentMain
{
	/*IE6 hack*/
	height: 100%;
	width: 100%;
}

* html #divContentBottom
{
	/*IE6 hack*/
	width: 100%;
}

.ContentLeft, .ContentRight
{
	position: absolute;
	/*top: 0;*/
	/*left: 0;*/
	height: 100%;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	color: white;
	padding-top: 5px;
}

.ContentRight
{
	left: auto;
	right: 0;
	overflow: hidden; /*Disable scrollbars. Set to "scroll" to enable*/
	color: white;
}

.ContentBottom
{
	/*position: absolute;*/
	/*bottom: 0;*/
	width: auto;
	color: white;
	padding-top: 10px;
	padding-left: auto;
	padding-right: auto;
	text-align: center;
	vertical-align: middle;
	height: 100%;
}

.ContentMain
{
	position: absolute;
	top: 0;
	overflow: hidden;
	text-align: center;
	padding-left: auto;
	padding-right: auto;
	padding-top: 5px;
}

* html .ContentMain
{
	/*IE6 hack*/
	height: 100%;
	width: 100%;
}

* html .ContentBottom
{
	/*IE6 hack*/
	height: 100%;
	width: 100%;
}

