/* -----[ 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
{
	padding: 0px;
	margin: 0px;
	background: #888C8F url("../_images/template/back.gif") repeat-x top left;
}

/* -----[ STRUCTURE]------------------------------------------------------------------------------ */

/* === [ wrappers to set width ] === */
#outerWrapper2
{
	position: relative;
	margin: 0px auto 20px auto;
	max-width: 880px;
	min-width: 760px;
	min-height: auto;
	padding: 0px;
}
#outerWrapper
{
	background-color: #eceded;
	width: 100%;
	margin: 0px;
	padding: 1px;
	border-left: 8px solid #515151;
	border-right: 8px solid #515151;
	border-bottom: 8px solid #515151;
}
#mainWrapper 
{
	display: inline-block;
	border: 1px solid #BDBDBD;
	margin: 0px;
	height: 1%;
}
* html #mainWrapper 
{
	height: 1%;
	display: block;
}

/* === [ header ] === */
#cH 
{
	position: relative;
	padding: 0px;
	clear: both;
	height: 80px;
	margin: 0px 0px 1px 0px;
	background:  url("../_images/template/Logo2.jpg") no-repeat top right;
}
	/* === [ header - logo ] === */
		#cH .cLogo
		{
			padding: 0px;
			border: 0;
		}
	
	
/* === [ header banner ] === */
#cB 
{
	position: relative;
	clear: both;
}
	.banner {
	text-align: center;
	}
	
/* === [ spare Container ] === */
#cS
{
}

/* === [ main navigation ] === */
#cN 
{
	background: #A9111A  url("../_images/template/Menu.gif") repeat-x left top;
	clear: both;
	border-bottom: 6px solid #dcddde;
}

/* === [ Primary Container Wrapper ] === */
#cPCWrapper
{
	float: left;
	width: 100%;
}

/* === [ Primary Container ] === */
#cPC
{
	padding: 0px 20px 0px 20px;
	min-height: 250px;
}
	.layout1 #cPC /* 3 column layout */
	{
		margin: 20px 210px 0 225px;
		border-left: 1px solid #FFFFFF;
	}
	.layout2 #cPC /* 2 column - inside */
	{
		margin: 20px 0 0 225px;
		border-left: 1px solid #FFFFFF;
		}
	.layout3 #cPC /* 2 column - home page */
	{
		margin: 20px 210px 0 0;
		border-left: 1px solid #FFFFFF;
	}
		.layout4 #cPC /* 1 column - home page */
		{
		margin: 1px 0 0 0;
		}

/* === [ Left Side Column ] === */
#cLS
{
	float: left;
	margin-left: -100%;
	width: 225px;
	padding: 0px;
	padding-top: 20px;
}
/* === [ Right Side Column ] === */
#cRS 
{
	float: right;
	margin-left: -100%;
	padding-top: 20px;
	width: 210px;
	min-height: 250px;
}
* html #cRS 
{
		height: 250px;
}

/* === [ footer ] === */
#cF
{
	position: relative;
	clear: both;
	font-size: 80%;	
	margin: 0px 10px 0px 225px;
	padding: 60px 0px 0px 20px;
	border-left: 1px solid #FFFFFF;
	height: 1%;
}

/* === [ copyRight ] === */
#cC  
{
	position: relative;
	clear: both;
	font-size: 80%;	
	margin: 0px 10px 0px 225px;
	padding: 10px 0px 10px 20px;
	border-left: 1px solid #FFFFFF;
	height: 1%;
}
	#cC a
	{
		color: #666666;
	}
	#cC a:hover
	{
		color: #999999;
	}

/* === [ Contact ] === */

.Contact {	
	position: relative;
	clear: both;
	margin: 15px;
}
	#cC a
	{
		color: #666666;
	}
	#cC a:hover
	{
		color: #999999;
	}

/* -----[ HACKS ]------------------------------------------------------------------------------- */

* html #cRS
{
	margin-left: -210px;
}
*:first-child+html #cRS 
{
	margin-left: -210px;
}


/* -----[ Clearings ]-------------------------------------------------------------------------- */
.clearLeft,
.clear {
	height: 0px;
	font-size: 0;
	line-height: 0;
}
.clearLeft {
	clear: left;
}
.clear {
	clear: both;
}