/* Start of CMSMS style sheet 'Infratech - Home' */
/*****************
browsers interpret margin and padding a little differently, 
we'll remove all default padding and margins and
set them later on
******************/
* {
margin:0;
padding:0;
}

/*****************
basic layout 
*****************/
body {
   background-color: #262626;
}

#container { 
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:10px;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 

div#content {
   width:900px;
height:720px;
position:relative;
float:left;
}
/* End of 'Infratech - Home' */

