/* 	[ 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 compliant 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.
		1.	Layout 1 - 3 column layout
		2.	Layout 2 - 2 column layout (left column #cLS)
		3.	Layout 3 - 2 column layout (right column #cRS)
		4.	Layout 4 - 1 column layout */


/* -----[ Main structure CSS]--------------------------------------------------------------------- */

* {
margin: 0px; }

body {
	background: #000000;
}

/* -----[ STRUCTURE]------------------------------------------------------------------------------ */

/* === [ wrappers to set width ] === */
#outerWrapper {
	position: relative;
	margin: 0px auto;
	width: 1018px;
	border-left: #f7931d 1px solid;
	border-right: #f7931d 1px solid;
}
	#mainWrapper {
		display: inline-block;
		width: 100%;
		background-color: #FFFFFF;
	}
	* html #mainWrapper {
		height: 1%;
		display: block;
	}

/* === [ header ] === */
#cH {
	position: relative;
	display: block;
	padding: 0px;
	clear: both;
	width: 1018px;
	border-bottom: 1px solid #f7931d;
	z-index: 200;
}

	/* === [ header - logo ] === */
		#cH .cLogo {
			float: left;
			padding: 0px;
			width: 345px;
			clear: none;
		}
	
	/* === [ header banner ] === */
		#cT {
			padding: 0px;
			margin: 20px 50px 86px 0;
			float: right;
		}
		* html #cT {
			margin: 20px 26px 86px 0;
		}

/* === [ top  ] === */
#cB{
	position: relative;
	display: block;
	padding: 0px;
	clear: both;
	height: 286px;
	border-bottom: #f7931d 1px solid;
	z-index: 20;
}

/* === [ main navigation ] === */
#cN {
	display: block;
	float: right;
	clear: none;
	width: 580px;
	background: #000000;
	height: 1%;
	z-index: 400;
}

/* === [ Primary Container Wrapper ] === */
#cPCWrapper {
	float: left;
	width: 100%;
}

/* === [ Primary Container ] === */
#cPC {
	padding: 20px 30px;
	display: block;
	border: #f7931d 1px solid;
}
	.layout1 #cPC /* 3 column layout */
	{
		margin: 18px 254px 20px 254px;
	}
	* html .layout1 #cPC /* 3 column layout */
	{
		margin: 18px 254px 20px 254px;
	}
	.layout2 #cPC /* 2 column layout (left column #cLS) */
	{
		margin: 18px 0 20px 234px;
	}
	.layout3 #cPC /* 2 column layout (right column #cRS) */
	{
		margin: 18px 234px 20px 0;
	}
	.layout4 #cPC /* 1 column layout */
	{
		margin: 18px 0 20px 0;
	}


/* === [ Left Side Column ] === */
#cLS {
	float: left;
	margin-left: -100%;
	width: 204px;
	padding: 18px 25px;
}
/* === [ Right Side Column ] === */
#cRS {
	float: right;
	margin-left: -100%;
	width: 204px;
	padding: 18px 25px 18px 0;
}

* html #cRS {
	padding: 18px 0px 18px 0;
}
/* === [ copyRight ] === */
#cC {
	color: #000000;
	font-size: 80%;
	padding: 10px 0 10px 25px;
	background: #f7931d;
	font-weight: bold;
}
	#cC a {
		color: #000000;
		text-decoration: none;
	}
	#cC a:hover {
		color: #FFFFFF;
	}


/* -----[ IE6 ]------------------------------------------------------------------------------- */

* html #cRS {
	margin-left: -229px;
}
*:first-child+html #cRS {
	margin-left: -229px;
}

/* -----[ Clearings ]-------------------------------------------------------------------------- */

.clearLeft,
.clear
{
	height: 0;
	font-size: 0;
	line-height: 0;
}
.clearLeft {
	clear: left;
}
.clear {
	clear: both;
}

/* -----[ Printing ]-------------------------------------------------------------------------- */

@media print {
	body {
		font-size: 12pt;
	}
	#cRS, #cLS, #cTL, #cS, #cT, #cB, #cH, #cN {
		display: none;
	}
	#cPC {
			margin: 0px;
			padding: 0px 0px 20px 0px;
			border-top-style: none;
			border-left-style: none;
		}
		.layout1 #cPC /* 3 column layout */
		{
			margin: 0px;
			padding: 0px 0px 20px 0px;
		}
		.layout2 #cPC /* 2 column - left */
		{
			margin: 0px;
			padding: 0px 0px 20px 0px;
		}
		.layout3 #cPC /* 2 column - right */
		{
			margin: 0px;
			padding: 0px 0px 20px 0px;
		}
		.layout4 #cPC /* 1 column */
		{
			margin: 0px;
			padding: 0px 0px 20px 0px;
		}
}