/*
Setup main settings here,
fonts, margins, bgcolors, font-colors, etc...
*/

html, body {
	margin: 0;
	padding: 0;
	border: 0;
	height: 100%;
}

body, table, td {
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 0.75em;
	color: #333;
	background-color: #000;
	text-align: center;
	min-width: 818px;
}

/*
We use canvas to draw our page on
*/
#canvas {
/* This sets the background for the actual contents */
	background-color: #fff;
	background-image: url(images/background_shade.jpg);
	background-repeat: no-repeat;
	text-align: left;
/* This will center contents on the window */
	width: 818px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	min-height: 100%;
	height: auto;
}
/*html>body #CANVAS {
	height: auto;
}*/
/* IE Height Fix */
/*\*/
* html #canvas {
	height: 100%;
}
/**/
/*
Shown on welcome screen, with language selection and all...
*/
#canvas_welcome {
	background-color: #000;
	text-align: left;
	width: 818px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	min-height: 100%;
	height: auto;
}
/* IE Height Fix */
/*\*/
* html #canvas_welcome {
	height: 100%;
}
/**/

/*
Left and right sidebars
*/
#sidebar_left {
	width: 44px;
	height: 100%;
	position: absolute;
/* Position is relative to #CANVAS */
	left: 0;
	top: 0;
/* Background properties */
	background-color: #000;
	background-image: url(images/topdowntext_left.gif);
	background-repeat: repeat-y;
}

#sidebar_right {
	width: 44px;
	height: 100%;
	position: absolute;
/* Position is relative to #CANVAS */
	right: 0;
	top: 0;
/* Background properties */
	background-color: #000;
	background-image: url(images/topdowntext_right.gif);
	background-repeat: repeat-y;
}

/*
Colors and fonts begin here
---------------------------
*/
/*
Main link colors
*/
a:link {
	text-decoration: underline;
	color: #f90;
}
a:visited {
	text-decoration: underline;
	/*color: #c90;*/
	color: #f90;
}
a:hover, a:active {
	text-decoration: none;
	color: #0cf;
}

/*
Fix container height when using floats.
Place <div class="clear"></div> at the end of your container.
*/
.clear {
	clear: both;
}