/* 	[ COPYRIGHT CONTEGRO  - Intelligent Website Content Management ]   */
/* 	[ http://www.contegro.com ]   */



/* -----[ TEMPLATE ]-------------------------------------------------------------------------- */

/*
		Do not change class names or Container ID's. Alter attributes as required.
*/

/*
		The table structure below is complaint with the current W3C standards. 
		The layout technique that is used is will allow for a liquid centre and fixed sides. 
		
		--Width 
		The fluid width can be modified on the id called #outerWrapper.
		To set a fixed width - delete max-width, min-width, width: expression and add a width value.
		
		--Layouts
		The layouts can be set by changing the class on the main content wrapper.
		Currently there are three layout options available:
		1.	Layout 1 - Default 3 column layout
		2.	Layout 2 - 2 column layout (left column #cLS)
		3.	Layout 3 - 2 column layout (right column #cRS)*/

/* -----[ Main structure CSS]--------------------------------------------------------------------- */

body
{
	background: #71C6C6;
	margin: 0px; 
	padding: 0px; 
}

/* -----[ STRUCTURE]------------------------------------------------------------------------------ */

/* === [ wrappers to set width ] === */
#outerWrapper {
	position: relative;
	padding: 0px;
	margin: 10px auto;
	background: #FFFFFF;
	width: 800px;
}
	#mainWrapper {
		position: relative;
		display: inline-block;
		z-index: 20;
	}
	*html #mainWrapper 
	{
		display: block;
		height: 1%;
	}



/* === [ header ] === */
#cH {
	clear: both;
	position: relative;
	padding: 0px;
	margin: 0px;
	height: 1%;
	display: block;
	z-index: 200;
	background: #71C6C6;
}
/* === [ top  ] === */
#cT {
}
		/* === [ header - logo ] === */
		#cH .cLogo {
			float: left;
			padding: 0px;
			margin: 0px;
		}
		/* === [ header banner ] === */
		#cB {
			margin: 0px;
			float: right;
			text-align: right;
		}
	/* === [ main navigation ] === */
	#cN {
		clear: both;
		position: relative;
		display: block;
		padding: 2px 0px;
		margin: 0px auto;
		width: 800px;
		z-index: 300;
		background: #9CD7D7;
		height: 25px;
	}

/* === [ spare Container ] === */
#cS
{
	clear: both;
	position: relative;
	height: 100px;
	margin: 0px auto;
	background: #D4EEEF url(/Templates/Buzzonline/_images/back_cS.gif) no-repeat top left;
	padding: 10px 20px 10px 210px;
}
	#cS a {
		text-decoration: none;
		color: #333333;
	}
	#cS a:hover {
		text-decoration: none;
	}


/* === [ main navigation ] === */


/* === [ Primary Container Wrapper ] === */
#cPCWrapper
{
	float: left;
	width: 100%;
	z-index: 20;
}

/* === [ Primary Container ] === */
#cPC
{
	padding: 20px;
	min-height: 350px;
}
	.layout1 #cPC /* 3 column layout */
	{
		margin: 0 210px 0 210px;
	}
	.layout2 #cPC /* 2 column - inside */
	{
		margin: 0 0 0 210px;
	}
	.layout3 #cPC /* 2 column - home page */
	{
		margin: 0 210px 0 0;
	}

/* === [ Left Side Column ] === */
#cLS
{
	float: left;
	margin-bottom: 10px;
	margin-left: -100%;
	width: 200px;
	padding: 24px 0px 20px 10px;
}
/* === [ Right Side Column ] === */
#cRS 
{
	
	width: 200px;
	margin-bottom: 10px;
	padding: 24px 10px 20px 0px;
	float: right;
	margin-left: -100%;
}
/* === [ TopLeft Side Column ] === */
#cTL
{
}
/* === [ TopRight Side Column ] === */
#cTR 
{
}

/* === [ footer ] === */
#cF
{
	clear: both;
	padding: 0px 0px 4px 0px;
	text-align: right;
	background: #71C6C6;
}
	#cF a {
	}

	#cF a:hover {
	}

/* === [ copyRight ] === */
#cC  
{
	font-family: Arial, Helvetica, sans-serif;
	background: #71C6C6;
	font-size: 85%;
	padding: 10px 0px 20px 0px;
	margin: 0px 0px 0px 0px;
}
	#cC a {
	}
	#cC a:hover {
	}


/* -----[ HACKS ]------------------------------------------------------------------------------- */

* html #cRS
{
	margin-left: -210px;
}
*:first-child+html #cRS 
{
	margin-left: -210px;
}

/* -----[ Clearings ]-------------------------------------------------------------------------- */
.clearLeft,
.clear
{
	height: 0;
	font-size: 0;
	line-height: 0;
}
.clearLeft {
	clear: left;
}
.clear {
	clear: both;
}