/* 	[ 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.
		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: #FFFFFF;
	margin: 0px; 
	padding: 0px; 
}

/* -----[ STRUCTURE]------------------------------------------------------------------------------ */

/* === [ wrappers to set width ] === */
#outerWrapper
{
	position: relative;
	margin: 0px;
	padding: 0px; 
	max-width: 1220px;
	min-width: 760px;
	width: expression( document.body.clientWidth <= 780 ? "760px" : document.body.clientWidth > 1200 ? "1220px" : "100%" );
	/* Use set width for fixed */
	/* width: 760px; */
}

#mainWrapper 
{
	background: url(../../Templates/_images/back_cPC.gif) repeat-y top left;
	display: inline-block;
}
* html #mainWrapper 
{
	height: 1%;
}
* html #mainWrapper 
{
	display: block;
}

/* === [ header ] === */
#cH 
{
	position: relative;
	display: block;
	padding: 0px;
	clear: both;
	min-height: 97px;
	min-width: 760px;
	background-image: url(../../Templates/_images/header_back.gif);
	background-position: top left;
	background-repeat: no-repeat;
}
* html #cH {
	height: 97px;
}

	/* === [ header - logo ] === */
		#cH .cLogo
		{
			float: left;
			padding: 0px;
			margin: 0px;
		}

		/* === [ top  ] === */
		#cT {
			padding: 0px 20px 5px 0px;
			margin: 0px;
			float: right;
		}
	
/* === [ header banner ] === */
#cB 
{
}

/* === [ spare Container ] === */
#cS
{
}

/* === [ main navigation ] === */
#cN 
{
	clear: both;
	min-height: 23px;
	margin-left: 240px;
	border-top: 1px solid #999999;
	border-left: 1px solid #999999;
	background: url(../../Templates/_images/back_menu.gif);
	padding-left: 6px;
}
* html #cN {
	height: 23px;
}

/* === [ footer ] === */
#cF
{
	font-size: 12px;
	margin: 0px 0px 9px 240px;
	clear: both;
	padding: 40px 0px 0px 0px;
	background: url(../../Templates/_images/footer.gif) no-repeat top left;
}
	#cF a:link,
	#cF a:hover,
	#cF a:visited {
		color: #005a74;
		text-decoration: none;
	}



/* === [ copyRight ] === */
#cC  
{
	font-size: 12px;
	margin: 0px 0px 9px 236px;
	clear: both;
	padding: 0px;
}
	#cC a
	{
		color: #005a74;
		text-decoration: none;
	}
	#cC a:hover
	{
		color: #005a74;
		text-decoration: none;
	}

/* === [ Primary Container Wrapper ] === */
#cPCWrapper
{
	float: left;
	width: 100%;
}

/* === [ Primary Container ] === */
#cPC
{
	/*margin: 0 250px 0 240px;*/
	padding: 20px 20px 50px 20px;
	border-left: 1px solid #999999;

}
	.layout1 #cPC /* 3 column layout */
	{
		margin: 0 220px 0 240px;
	}
	.layout2 #cPC /* 2 column - inside */
	{
		margin: 0 0 0 240px;
	}
	.layout3 #cPC /* 2 column - home page */
	{
		margin: 0 220px 0 0;
	}

/* === [ Left Side Column ] === */
#cLS
{
	float: left;
	margin-left: -100%;
	width: 240px;
}
/* === [ Right Side Column ] === */
#cRS 
{
	float: right;
	margin-left: -100%;
	width: 200px;
	padding-top: 10px;
	padding-right: 20px;
}
/* === [ TopLeft Side Column ] === */
#cTL
{
}
/* === [ TopRight Side Column ] === */
#cTR 
{
}

/* -----[ HACKS ]------------------------------------------------------------------------------- */

* html #cRS
{
	margin-left: -220px;
}
*:first-child+html #cRS 
{
	margin-left: -220px;
}

/* -----[ Clearings ]-------------------------------------------------------------------------- */
.clearLeft,
.clear
{
	height: 0;
	font-size: 0;
	line-height: 0;
}
.clearLeft {
	clear: left;
}
.clear {
	clear: both;
}