@charset "utf-8";

/***** LAYOUT *****/

body {
	margin:0;
	padding:0;
	width:100%;
}

#fixed {
   margin:0 auto;
   width:1000px;   /* you can use px, em or % */
   text-align:left;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:1px;
    font-size: 1px;
    line-height: 1px;
}


#header {
	float:left;
	width:100%;
/*	height:80px;*/
	padding:0;
	margin:0;
}

#colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;		/* This chops off any overhanging divs */
	
}

#colmid {
	float:left;
	width:200%;
	position:relative;
	left:185px; /*width of left column*/
}

#colright {
	float:left;
	width:100%;
	position:relative;
	left:50%;
	margin-left:-255px; /*width of left + rt columns*/
}

#col1wrap {
	float:right;
	width:50%;
	position:relative;
	right:100%;
}

#col1pad {
	/*padding for center column content*/
	margin-top:0;
	margin-right: 0px; /*center column content right padding*/
	margin-bottom:0;
	margin-left: 255px; /*positioning for center column content= left column width + right column width + left padding for content*/
	overflow:hidden;
}

/* content containers for columns */

#col_center {
	width:100%;
	overflow:hidden;
}

#col_left {
	float:left;
	width:185px; /* width of left column content - left and right padding */
	position:relative;
	margin-left:-50%;
	left:70px; /*width of RIGHT column + left padding for left column content*/
	overflow:hidden;
}

#col_right {
	float:left;
	width:70px; /* width of right column content*/
	position:relative;
	left:0px; /*left padding for right column content */
	overflow:hidden;
	height:506px;
	background-image:url(../images/landscapearchitecture.gif);
	background-position:20px 25px;
	background-repeat:no-repeat;
}

#footer {
	clear:both;
	float:left;
	width:100%;
	padding:0;
	margin:0;
}

/*need to change color based on layout all other non layout styling is done in styles.css */
#colmid {
	background:#1c1c1c;    	/* Center column background colour */
}
