@charset "utf-8";

/* This CSS file is for myKinderCrib home page */

/* padding = space inside div, margin is space outside */
#main {
	padding: 0 0;
	margin: 100px 0px 0px 0px;
}


/* style for the baby hero image */
#imgBaby {
	/*margin: 100px 5px 5px 5px;*/
	background-color:#999999;
	border: 1px solid #000000;
	width: 1024px;
	height: 300px;
}


/* used to remove the blue or purple link border around the hero image in IE */
#imgBaby img {
      border: none;
}


/* style for the pre-k hero image */
#imgPK {

	background-color:#999999;
	border: 1px solid #000000;
	width: 508px;
	height: 325px;
	float: left;

}


/* used to remove the blue or purple link border around the hero image in IE */
#imgPK img {
      border: none;
}



/* style for the kindergarten hero image */
#imgKG {

	background-color:#999999;
	border: 1px solid #000000;
	width: 512px;
	height: 325px;
	float: right;

}


/* used to remove the blue or purple link border around the hero image in IE */
#imgKG img {
      border: none;
}


/* this is a class - helps maintain all floats in wrapper - place just after #main */
.clearfloat { 

	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

