/* **************************************************	*/
/*  Author:		    Roy DeHaven                         */
/*  CSS editor:		Roy DeHaven                         */
/*  editor Email: rynait@rt66.com                     */
/*  Current File:	1xColumn.css                        */
/*  Version: 		  1.0                                 */
/*  Purpose:		  creating Standard CSS               */
/*  Modified from: multicolumn.css                    */
/*  Create/edit: 	09/09/2009                          */
/*                                                    */
/* based on HTML sample from Matthew James Taylor     */
/* http://matthewjamestaylor.com                      */
/*                                                    */
/*        (as of 6/2009)                              */
/*                                                    */
/*                                                    */
/* **************************************************	*/
/* guide: 												                    */
/*                                                    */
/* use html coding base below, *** html & data ***    */
/*   means is your information - code                 */
/* **************************************************	*/
/*                              						          */
/*  <div class='colmask'><div class='fullpage'>  	    */
/*                              						          */
/*  <!-- Column 1 start -->            			          */
/*  <div class="col1">                 			          */
/*  *** html & data ******                            */
/*  </div>                            			          */
/*                              						          */
/* <!-- new column, centered -->          	          */
/*  <div class="cntrCol1">             			          */
/*  *** html & data ******                            */
/*  </div>                            			          */
/*                              						          */
/*  </div>                            			          */
/*  </div>                            			          */
/*                              						          */
/* **************************************************	*/


body {
margin:0;
padding:0;
border:0;			/* This removes the border around the viewport in old versions of IE */
width:100%;
background:#fff;
min-width:600px;		/* Minimum width of layout - remove line if not required */
						/* The min-width property does not work in old versions of Internet Explorer */
font-size:90%;
}

/* 'widths' sub menu */
#layoutdims {
clear:both;
background:#eee;
border-top:4px solid #000;
margin:0;
padding:6px 15px !important;
text-align:right;
}
  
/* column container */
.colmask {
position:relative;	/* This fixes the IE7 overflow hidden bug */
clear:both;
float:left;
width:100%;			/* width of whole page */
overflow:hidden;		/* This chops off any overhanging divs */
}

.col1, .col2, .col3, .cntrCol1 {
float:center;
position:relative;
padding:0 0 1em 0;
overflow:hidden;
}
  
/* Full page settings */
.fullpage {
background:#fff;		/* page background colour */
}
  
.fullpage .col1 {
width:60%;			/* page width minus left and right padding */
left:2%;			/* page left padding */
}
  
.fullpage .cntrCol1 { /* This is for block centering across the window */
width:60%;			/* page width minus left and right padding */
left:2%;			/* page left padding */
margin:0 auto;
}	
