/*	Content: 
	******************************************************************************************
	**																						**
	**	div#main				:	container for #menu-1, #content, #colMiddle, #colRight	**
	**	div#content				:	content area											**
	**	div#colMiddle			:	column on the right of #content							**
	**	div#forw-backw-bottom	:	blue section at the bottom of #content and #colMiddle	**
	**																						**
	******************************************************************************************

	**************************************************************************
	**																		**
	**	for 		div#colMiddle											**
	**				div#forw-backw-bottom									**
	**	the following values were set to avoid display:						**
	**				position:absolute;										**
	**				width:0px;												**
	**				height:0px;												**
	**				visibility:hidden;										**
	**	overwrite with suitable values if display is needed					**
	**																		**
	*************************************************************************/

/**	div#main				:	container for #menu-1, #content, #colMiddle, #colRight	****/
#main{
	background-image:url(images/bg_main-3cols.jpg);
}

/**	div#content				:	content area											****/
#content{
	width:383px;
	margin-bottom:73px;	/* div#forw-backw-bottom goes here */
}

/**	div#colMiddle			:	column on the right of #content							****/
#colMiddle{
	position:static;
	width:188px;
	height:auto;
	visibility:visible;
	float:left;
	padding: 24px 0px 88px 0px; 	/* 28px space at the top for light bg-img */
									/* 73px padding-bottom for div#forw-backw-bottom */
	overflow:hidden;
	background:url(images/bgimg-colMiddle-top.jpg) top left no-repeat; /* light grey bit at the 
																		  top of #colMiddle */
}
#colMiddle p{
	font-size:10px;
	color:#fff;
	margin:0px 7px 0px 7px;
}
#colMiddle a{
	color:#fff;
}
#colMiddle h6{
	margin:0px 0px 0px 0px;
}
#colMiddle img{
	border:0px;
	margin:0px;
	padding:0px;
}

/**	div#forw-backw-bottom	:	blue section at the bottom of #content and #colMiddle	****/
#forw-backw-bottom{
	position:absolute;
	width:571px;
	height:73px;
	visibility:visible;
	bottom:10px;			
	left:191px;
	background:url(images/bg_colMiddle.jpg) repeat;
	border-top:1px solid #fff;
}
* html #forw-backw-bottom{ 	/* correct bottom distance for IE */
							/* ignored by browsers other than IE */
	bottom:9px;
}
#forw-backw-bottom a{
	color:#ff7701;
	border:0px;
	text-decoration:none;
}
#forw-backw-bottom img{
	border:0px;
}
#forw-backw-bottom p{
	color:#fff;
}