/*
 * Layout styles for the home page
 */
/* /// LAYOUT /// */
#divWrap {
 background: #faf8f1 url(../images/page_bkg.gif) repeat-y;
 margin: 0 auto;
 padding: 0;
 position: relative;
 text-align: left;/*set the text to align left to fix our bypass of a bug in IE when centering layouts*/
 width: 760px;
}
#divHead {
 background: #000 url(../images/header_bkg.jpg) no-repeat;
 height: 150px;
 width: 760px;
 margin: 0;
 padding: 0;
}
#divContent {
 margin: 28px 0 0 0;/*top margin set to bump down the content under the navigation*/
 padding: 0;
 /*width: 760px;*/
}
#divContent div.left {
	float:left;
	width:260px;
}
#divContent div.right {
	float:right;
	width:500px;
}
#divContentcenter {
 background: #E0F0FF;
 margin: 33px 0 15px 0;/*top margin set to bump down the content under the navigation*/
 text-align: center;
 /*width: 760px;*/
}
#divSidebar {
 margin: 0;
 padding: 0;
}
#divContact {
 clear: both;
 margin: 0;
 padding: 0;
 position: relative;/*set this to relative positioning so we can absolutely position some footer elements*/
 width: 758px;
}
#divFooter {
 background: #666666;
 clear: both;
 margin: 0 0 0 1px;
 padding: 0;
 border-bottom: 1px solid #000;
 position: relative;/*set this to relative positioning so we can absolutely position some footer elements*/
 width: 758px;
}