@charset "UTF-8";
/* CSS Document */

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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: #B30838;
}
.Fairyhouse #container {
	width: 850px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
} 
#MAIN #NavBar {
	margin: 0px;
	padding: 0px;
	height: 50px;
}
.Fairyhouse #header {
	background-image: url(../Constants/Header_Back.gif);
	height: 120px;
	padding-top: 30px;
	padding-right: 25px;
	padding-bottom: 0px;
	background-repeat: no-repeat;
	margin-bottom: 020px;
	margin-top: 20px;
	margin-right: 0px;
	margin-left: 0px;
} 


.Fairyhouse  #MainText {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.Fairyhouse #container #MAIN {
	background-color: #FFFFFF;
	padding: 20px;
}


.Fairyhouse #footer {
	margin: 0px;
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 170px;
	background-image: url(../Constants/Logo_Footer.gif);
	background-repeat: no-repeat;
	height: 70px;
} 

.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;
}