/* Home.css, the style sheet for SewardBirdhouse.com */

/* to reset browser-specific settings */
* {
  margin: 0;
  padding: 0;
  border: 0 solid;
}


/* basic elements */
body {
  color: #000;
  background: #a6c1ea; /* #7ea5de or #b3bfbc or #9abff6 */
  font: 90% Arial, Helvetica, sans-serif;
  text-align: center; /* this is asking IE to center the container */
}


/* basic divs centering the layout */
#container { 						
  width: 50em;
  margin: 0 auto; /* shorthand writing: top and bottom 0, right and left automatic */
  border-left: 1px solid #a6c1ea; 	
}


/* basic div container */
div.Section1
	{
	width:100%;
	position: relative;
  top: 0;
  left: 0;
  color: #000;
  background: transparent;
  padding: 0 0px;
  margin-left: 0px;
  margin-top: 0px;
  }/* this sets the width and left margin for the body */
