/* 	[ 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)
		4.	Layout 4 - 1 column layout (centre column #cPC)*/

/* -----[ Main structure CSS]--------------------------------------------------------------------- */

* { margin: 0px; padding: 0px; }

body
{
	background: #FFFFFF url(../../../Templates/Bravo/_images/bravo_toolbar_bg.jpg);
	margin: 0;
	padding: 0;
	border: none;
	background-color: #851b29;
	background-repeat: no-repeat;
	background-position: top right;		
}

/* -----[ STRUCTURE]------------------------------------------------------------------------------ */

/* === [ wrappers to set width ] === */
#outerWrapper
{
	position: relative;
	margin: 0px auto;
	/* Use set width for fluid
	max-width:960px;
	min-width:760px;
	width: expression( document.body.clientWidth <= 780 ? "760px" : document.body.clientWidth > 960 ? "960px" : "100%" ); */
	width: 760px;
}

#mainWrapper 
{
	display: inline-block;
}
* html #mainWrapper 
{
	height: 1%;
}
* html #mainWrapper 
{
	display: block;
}
#mainWrapper2 
{
	display: inline-block;
}
* html #mainWrapper2
{
	height: 1%;
}
* html #mainWrapper2 
{
	display: block;
}


/* === [ top  ] === */
#cT {
	padding: 10px 0px 10px 0px;
	text-align: right;
}

/* === [ header ] === */
#cH 
{
	position: relative;
	display: block;
	padding: 0px;
	clear: both;
	min-height: 100px;
	min-width: 760px;
}

	/* === [ header - logo ] === */
		#cH .cLogo
		{
			float: left;
			padding: 0px;
		}
	
/* === [ header banner ] === */
#cB 
{
	padding: 0px;
	margin: 0px;
}

/* === [ spare Container ] === */
#cS
{
	/*margin: 0 250px 0 180px;*/
	padding: 20px;
}
	.layout1 #cS /* 3 column layout */
	{
		margin: 0 200px 0 180px;
	}
	.layout2 #cS /* 2 column - inside */
	{
		margin: 0 0 0 180px;
	}
	.layout3 #cS /* 2 column - home page */
	{
		margin: 0 200px 0 0;
	}

/* === [ main navigation ] === */
#cN 
{
	clear: both;
	min-height: 20px;
	background: #490711;
	border: 1px solid #951F1D;
	margin:10px 0px;
}

/* === [ footer ] === */
#cF
{
	font-size: 80%;
	color: #FFFFFF;
	clear: both;
	padding: 10px 0 0 0;
	text-align: right;
}
	#cF a
	{
		color: #FFFFFF;
	}
	#cF a:hover
	{
		color: #FFFFFF;
	}
	
/* === [ copyRight ] === */
#cC  
{
	color: #FFFFFF;
	font-size: 80%;
	padding: 10px 0;
	text-align: right;
}
	#cC a
	{
		color: #FFFFFF;
	}
	#cC a:hover
	{
		color: #FFFFFF;
	}

/* === [ Primary Container Wrapper ] === */
#cPCWrapper
{
	position: relative;
	display: block;
	clear: both;
	float: left;
	background-color: #FFFFFF;
	min-width: 760px;
	min-height: 350px;
	background-image: url(../../../Templates/Bravo/_images/back_cPC.gif);
	background-repeat: no-repeat;
	background-position: top;
	padding-bottom: 50px;
	width: 100%;
}
#cPCWrapper2
{
	float: left;
	width: 100%;
}

/* === [ Primary Container ] === */
#cPC
{
	/*margin: 0 250px 0 180px;*/
	padding: 20px;
	width: auto;
}
	.layout1 #cPC /* 3 column layout */
	{
		margin: 0 200px 0 180px;
	}
	.layout2 #cPC /* 2 column - inside */
	{
		margin: 0 0 0 180px;
	}
	.layout3 #cPC /* 2 column - home page */
	{
		margin: 0 200px 0 0;
	}
	.layout4 #cPC /* 1 column - home page */
	{
		margin: 0 0 0 0;
	}
/* === [ Left Side Column ] === */
#cLS
{
	float: left;
	margin-left: -100%;
	width: 180px;
	padding: 10px;
}
/* === [ Right Side Column ] === */
#cRS 
{
	float: right;
	margin-left: -100%;
	width: 200px;
	padding-top: 10px;
}
/* === [ TopLeft Side Column ] === */
#cTL
{
	float: left;
	margin-left: -100%;
	width: 180px;
}
/* === [ TopRight Side Column ] === */
#cTR 
{
	float: right;
	margin-left: -100%;
	width: 200px;
}

/* -----[ HACKS ]------------------------------------------------------------------------------- */

* html #cRS
{
	margin-left: -200px;
}
*:first-child+html #cRS 
{
	margin-left: -200px;
}
* html #cTR
{
	margin-left: -200px;
}
*:first-child+html #cTR 
{
	margin-left: -200px;
}

/* -----[ Clearings ]-------------------------------------------------------------------------- */
.clearLeft,
.clear
{
	height: 0;
	font-size: 0;
	line-height: 0;
}
.clearLeft {
	clear: left;
}
.clear {
	clear: both;
}