/*
***********************************************************
Title:     Main
Author:    Emile Blume - Netcreators.com
Updated:   02/05/2007
***********************************************************
*/
/* Global reset ////////////////////////////////////////////////////////////////////////////////*/
*	    { 	
	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;
}

/* Layout 3 cols ///////////////////////////////////////////////////////////////*/
#container {
	margin: auto;
	width: 800px;
	position: relative;	
}

#main, #left, #center, #right, #footer {
	float: left;
	display: inline; /* workaround for IE6*/
}

#main {
	min-height: 450px;
	height: auto !important;
	height: 450px;
}

#header{
	height: 255px;
	width: 800px;
}

#header span, .hide{
	display: none;
}

/* Left  ////////////////////////////////////////////////////////////////////////*/
#left {
	width: 200px;
	padding-right: 20px;
}

/* Center ///////////////////////////////////////////////////////////////////////*/
#center{
	width: 320px;
	padding-left: 20px;
	padding-right: 20px;
}

/* Right ////////////////////////////////////////////////////////////////////////*/
#right{
	width: 200px;
	padding-left: 20px;
}

/* Footer ////////////////////////////////////////////////////////////////////////*/
#footer{
	text-align: center;
	margin: auto;
	padding-top: 4px;
	padding-bottom: 4px;
	width: 800px;
}