@charset "utf-8";

/* CSS Document */



body  {

	font: 100% Verdana, Arial, Helvetica, sans-serif;

	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */

	padding: 0;

	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */

	color: #000000;

	background-color: #751CAD;

	width: 100%;

	height: auto;

	background-image: url(images/purplepattern.png);

	background-repeat: repeat;

}

.twoColFixLtHdr #container {

	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */

	background: #FFFFFF;

	text-align: left; /* this overrides the text-align: center on the body element. */

	margin-top: 0;

	margin-right: auto;

	margin-bottom: 0;

	margin-left: auto;

	border-top-color: #FFF;

	border-right-color: #FFF;

	border-bottom-color: #FFF;

	border-left-color: #FFF;

} 

.twoColFixLtHdr #header {

	background-image: url(images/purplepattern.png);

	background-repeat: repeat;

	border-top-style: none;

	border-right-style: none;

	border-bottom-style: none;

	border-left-style: none;

	padding-top: 20;

	padding-right: 10px;

	padding-bottom: 0;

	padding-left: 20px;

} 

.twoColFixLtHdr #header h1 {

	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */

	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */

}

.twoColFixLtHdr #sidebar1 {

	float: left; /* since this element is floated, a width must be given */

	width: 325px;

	background-color: #FFF;

	padding-top: 15px;

	padding-right: 15px;

	padding-bottom: 15px;

	padding-left: 20px;

}

.twoColFixLtHdr #mainContent {

	margin-top: 10;

	margin-right: 0;

	margin-bottom: 0;

	padding-bottom: 0;

	padding-left: 10px;

	background-image: url(images/mommyandchild.jpg);

	background-repeat: no-repeat;

	background-position: center bottom;

	float: right;

	margin-left: 0px;

	padding-top: 20;

	padding-right: 50px;

	height: auto;

	width: 525px;

	color: #666;

} 

#mainContent p .mommyandme {

	float: right;

}

#mainContent h3 {

	font-family: Georgia, "Times New Roman", Times, serif;

	color: #F00;

	text-align: center;

}









#mainContent p {

	font-size: 14px;

	text-align: left;

	color: #000;

}

#mainContent h1 {

	font-family: "Comic Sans MS", cursive;

	color: #401E7F;

	text-align: center;

}

#form1 fieldset legend {

	font-family: "Comic Sans MS", cursive;

	text-align: left;

	clear: both;

	width: 500px;

	height: 500px;

	display: inline-block;

}

#mainContent #form1 {

	width: 500px;

	border: 2px dashed #5F1B98;

	padding-left: 15px;

	padding-right: 15px;

}







#sidebar1 {

	margin-top: 25px;

}



#sidebar1 img {

	margin-right: 10px;

	margin-left: 10px;

}

#sidebar1 .navmenu {

	padding-top: 35px;

	padding-left: 35px;

	background-color: #FFF;

}

.navmenu #MenuBar1 li {

	width: 175px;

	font-size: 18px;

	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;

	text-align: left;

	border-bottom-color: #401E7F;

	background-color: #FFF;

	border-bottom-width: 1px;

	border-bottom-style: dashed;

	color: #401E7F;

}

.navmenu #MenuBar1 li a:hover {

	background-color: #401E7F;

	color: #FFF;

}





.twoColFixLtHdr #footer {

	padding: 0 10px 0 20px;

	background-color: #401E7F;

	border-top-style: none;

	border-right-style: none;

	border-bottom-style: none;

	border-left-style: none;

	text-align: center;

	color: #FFF;

	font-size: 14px;

	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;

} 

.twoColFixLtHdr #footer p {

	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */

	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */

}

#footer p a {

	color: #FFF;

}



.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */

	float: right;

	margin-left: 8px;

}

.fltlft { /* this class can be used to float an element left in your page */

	float: left;

	margin-right: 8px;

}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */

	clear:both;

    height:0;

    font-size: 1px;

    line-height: 0px;

}


