/* -----[ 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 - Default 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: #FFFFFF url(../Templates/back.gif) repeat-x top left;
}
div {
}

/* -----[ STRUCTURE]------------------------------------------------------------------------------ */

/* === [ wrappers to set width ] === */
#outerWrapper
{
	position: relative;
	margin: 0px auto;
	width: 860px;
}
#mainWrapper 
{
	display: inline-block;
	z-index: 20;
	background: url(../Templates/back_cPC2.gif) repeat-y;
}
* html #mainWrapper 
{
	height: 1%;
	display: block;
}
.Right #mainWrapper 
{
	background: url(../Templates/back_cPC2.gif) repeat-y top right;
}
.Home #mainWrapper 
{
	background: #0E677E;
}

/* === [ header ] === */
#cH 
{
	position: relative;
	display: block;
	padding: 0px;
	clear: both;
	height: 86px;
	width: 860px;
}

/* === [ header - logo ] === */
#cH .cLogo
{
	float: left;
	padding: 0px;
}

/* === [ header banner ] === */
#cB 
{
	padding: 0px;
	margin: 0px;
	float: right;
}

/* === [ top  ] === */
#cT {
	position: relative;
	clear: both;
	width: 100%;
	padding: 0px;
	margin: 5px 0px 0px 0px;
}

/* === [ main navigation ] === */
#cN 
{
	position: relative;
	clear: both;
	height: 30px;
	margin: 9px 0px 0px 0px;
	width: 100%;
	display: block;
	z-index: 200;
}

/* === [ Primary Container Wrapper ] === */
#cPCWrapper
{
	float: left;
	display: block;
	width: 100%;
	background: url(../Templates/back_cPC.gif) no-repeat top left;
	border-top: 1px solid #FFFFFF;
	z-index: 20;
}
.Home #cPCWrapper
{
	background: #0E677E url(../Templates/back_cPCWrapper.jpg) no-repeat top left;
}

/* === [ Primary Container ] === */
#cPC
{
	padding: 38px 30px 100px 30px;
	min-height: 300px;
}
.Home #cPC {
	padding: 20px 0px 30px 30px;
}
.layout1 #cPC /* 3 column layout */
{
	margin: 0 280px 0 280px;
}
.layout2 #cPC /* 2 column - inside */
{
	margin: 0 0 0 280px;
}
.layout3 #cPC /* 2 column - home page */
{
	margin: 0 280px 0 0;
}
.layout4 #cPC /* 1 column */
{
	margin: 0 0 0 0;
}
.layout5 #cPC /* 2 column - home page */
{
	margin: 0 280px 0 0;
}


/* === [ Left Side Column ] === */
#cLS
{
	float: left;
	margin: 30px 0px 8px 0px;
	margin-left: -100%;
	width: 280px;
	padding: 0px 0px 0px 0px;
	background: #0E677E url(../Templates/back_cLS.jpg) no-repeat top left;
	min-height: 380px;
}
/* === [ Right Side Column ] === */
#cRS 
{
	float: right;
	margin: 30px 0px 8px 0px;
	margin-left: -100%;
	width: 280px;
	padding: 0px 0px 0px 0px;
	background: #0E677E url(../Templates/back_cLS.jpg) no-repeat top right;
}
.Home #cRS
{
	margin: 60px 0px 8px 0px;
	margin-left: -100%;
	width: 280px;
	background: none;
}
/* === [ spare Container ] === */
#cS 
{
	margin: 30px 0px 0px 0px;
}

/* === [ footer ] === */
#cF
{
	clear: both;
	background: #253255 url(../Templates/back_cF.gif) no-repeat top left;
	height: 86px;
}
.Copyright 
{
	font-size: 85%;
	padding: 66px 0px 0px 10px;
	color: #FFFFFF;
}

/* === [ copyRight ] === */
#cC  
{
	font-size: 85%;
	padding: 10px 10px 50px 10px;
	display: none;
}
#cC a
{
}
#cC a:hover
{
}


/* -----[ HACKS ]------------------------------------------------------------------------------- */

* html #cRS
{
	margin-left: -280px;
}
*:first-child+html #cRS 
{
	margin-left: -280px;
}
* html .Home #cRS
{
	margin-left: -280px;
}
*:first-child+html .Home #cRS 
{
	margin-left: -280px;
}

/* -----[ Clearings ]-------------------------------------------------------------------------- */
.clearLeft,
.clear
{
	height: 0;
	font-size: 0;
	line-height: 0;
}
.clearLeft {
	clear: left;
}
.clear {
	clear: both;
}