/* CSS Document */

			/* General styles */
			body
			{
				margin	:	0;
				padding	:	0;
				border	:	0;
				/* This removes the border around the viewport 
				in old versions of IE */
				width		:	1000px;
				background-color:#FFFFFF;
			}
	
			/* Header styles */
			#header 
			{
				clear	:	both;
				float	:	left;
				width	:	100%; /* 100% of 1000px */
				background-color	:	#FF0000;
			}
			
			#header
			{
				border-bottom	:	3px solid #000;
			}
			
			/* 'widths' sub menu */
			#layoutdims 	/*	1000px */
			{
				clear				:	both;
				background	:	#eee;
				margin			:	0px;
				padding			:	0px 0px !important;
				text-align	:	left;
			}
			
			/* column container - Main Container - Level-1*/
			.colmask
			{
				/* This fixes the IE7 overflow hidden bug */
				position	:	relative;		
				clear			:	both;
				float			:	left;
				/* width of whole page 1000px */
				width			:	100%;		
				/* This chops off any overhanging divs */	
				overflow	:	hidden;	

				/* main page background */
/*				background	:	url(image/backgrounds/moobackgrounds_color_light_.jpg);*/
				background	:	url(image/backgrounds/moobackgrounds_02.jpg);
			}

			/* common column settings */
			.colright,
			.colmid, 	/* Level-2 */
			.colleft 	/* Level-3 */
			{
				float			:	left;
				width			:	100%;
				position	:	relative;
			}
			
			/* Level-4 - Inside colLeft */
			.col1,	/* Center - Level-4 */
			.col2,	/* Left   - Level-4 */
			.col3		/* Right  - Level-4 */ 
			{
				float				:	left;
				position		:	relative;
				padding			:	0 0 0 0;	
				/* no left and right padding on columns, 
				we just make them narrower instead
				only padding top and bottom is included 
				here, make it whatever value you need */
				overflow		:	hidden;
			}
			
			.col1 	/*	Midle column */
			{	
				width				:	820px;
				background	:	none;
				padding-bottom	:	10px;				
			}
			.col2		/*	Left column */
			{	
				width				:	170px;
				background	:	url('image/column_left/left_background-1_moobackgrounds-color-dark-blue3.jpg');
			}
			.col3		/*	Right column */
			{	
				width	:	10px;
/*				background:#FF0000;
				border:#0000FF thick*/; 			
			}
			
			/* 3 Column settings */
			.threecol 
			{
				background:#eee;		
			}
			
			.threecol .colmid 
			{
				right	:	25%;			
				/* width of the right column */
				background	:	#fff;
			}
			
			.threecol .colleft 
			{
				right	:	50%;				
				/* width of the middle column */
				background	:	#f4f4f4;		
				/* left column background colour */
			}
			
			.threecol .col1 
			{
				width	:	46%;
				/* width of center column content (column 
				width minus padding on either side) */
				left	:	102%;				
				/* 100% plus left padding of center column */
			}
			.threecol .col2 
			{
				width	:	21%;				
				/* Width of left column content (column 
				width minus padding on either side) */
				left	:	31%;
				/* width of (right column) plus (center 
				column left and right padding) plus 
				(left column left padding) */
			}

			.threecol .col3 
			{
				width	:	21%;
				/* Width of right column content (column 
				width minus padding on either side) */
				left	:	85%;
				/* Please make note of the brackets here:
				(100% - left column width) plus (center 
				column left and right padding) plus (left 
				column left and right padding) plus 
				(right column left padding) */
			}
			
			/* Footer styles */
			#footer
			{
				clear	:	both;
				float	:	left;
				width	:	998px; /* width 1000-2x1pxl = 998px*/
				/*	border-top	:	1px solid #000;	*/				
				border	:	1px solid #000;
				padding-top:1px;
			}
		

