/*
 * Layout styles for the home page
 */
/* /// LAYOUT /// */
#divWrap {
 background: #ffffff;
 border: 2px solid #fff;
 margin: 35px auto;
 margin-bottom: 10px;
 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: 750px;
}
#divHead {
 background: #509ede;
 height: 195px;
 width: 750px;
 margin: 0;
 padding: 0;
}
#divContent {
 margin: 0;
 padding: 0;
 width: 750px;
}
#divContact {
 clear: both;
 margin: 0;
 padding: 0;
 text-align: center;
 position: relative;/*set this to relative positioning so we can absolutely position some footer elements*/
}
#divFooter {
 clear: both;
 margin: 0;
 padding: 0;
 position: relative;/*set this to relative positioning so we can absolutely position some footer elements*/
}