/* CSS Document */

/***********************************************/
/* Creates a zeroing selector - cross browser compatability*/
/***********************************************/
html, body, ul, ol, li, p, h1, h2, h3, h4, h5, h6, form, fieldset { 
margin: 0; 
padding: 0;
border: 0; 
} 

/***********************************************/
/* IE 5.x does not recognise margin auto to centre 
page. Add text-align: center; to fix            */
/***********************************************/ 

/***********************************************/
/* HTML tag styles                             */
/***********************************************/ 
body{
	color:#000000;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	text-align: center;
	background-color: #CCC;
}
p{
	font-size: 75%;
	padding: 4px;
}
h1{
	font-size: 100%;
	color: #F00;
	padding: 4px;
}
h2{
	font-size: 85%;
	color: #F00;
	padding: 4px;
}
h3{
	font-size: 85%;
	color: #F00;
	padding: 4px;
}
h4{
	font-size: 85%;
	color: #F00;
	padding: 4px;
}
h5{
	font-size: 85%;
	color: #F00;
	padding: 4px;
}
hr{
	color: #F00;
}
a {
	text-decoration: none;
	color: #F00;
}
a:hover {
	text-decoration: none;
	color: #F00;
}

/***********************************************/
/* ID selectors always start with #            */
/***********************************************/

/***********************************************/
/* The function of a wrapper div is to act as container 
element for all design elements you use within a page. 
The wrapper also determines where the design is 
positioned in the body element. */
/***********************************************/

/***********************************************/
/* RE: IE 5.x does not recognise margin auto to 
centre page. Add text-align: center; to fix:
To align content in wrapper add text-align: left;
so not all centred                             */
/***********************************************/ 

/***********************************************/
/* Layout Divs                              */
/***********************************************/

#wrapper{
	width: 770px;
	background-color:#FFFFFF;
	margin:5px auto 0px;
	border: 2px solid #F00;
	text-align: left;
}
#TopBanner{
	height: 115px;
}
/***********************************************/
/* Main navigation                  */
/***********************************************/

#MainNavigation{
	height: 20px;
	background: #F00;
	font-size: 82%;
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999;
	border-bottom-color: #999;
}

/***********************************************/
/*This opening line of these selectors declares that the rules you apply here will apply only to ul and li elements that are a descendant of the #MainNavigation ID.*/
/***********************************************/

#MainNavigation ul li{
	display: inline;
	padding: 0;
	margin: 0;
	text-align: center;
	vertical-align: middle;
}

#MainNavigation ul li a{
	color: #FFFFFF;
	background-color: #F00;
	text-decoration: none;
	padding: 0px;
	text-align: center;
	vertical-align: middle;
} 

#MainNavigation ul li a:hover, #MainNavigation ul li a:focus{
	
	margin: 0px;
	padding: 0px;
	vertical-align: middle;
	text-align: center;
	color: #666;
} 

/***********************************************/
/* Main content                                */
/***********************************************/

#MainContent{
	background-color:#FFFFFF;
	width: 100%;
}
.clearit{
clear: both;
display: block;
}
.GreyText{
	color: #666;
	text-align: right;
	font-size:12px;
	padding: 8px
}
.RedText{
	color: #F00;
	text-align: leftt;
	font-size:12px;
	padding: 4px
}
#LeftContent{
	float: left;
	background-color:#FFFFFF;
	width: 200px;
	margin-left: 10px;
	font-size: 85%
}
#RightContent{
	background-color:#FFFFFF;
	width: 370px;
	margin-left: 210px;
	font-size: 85%;
	padding:5px 5px 5px 25px;
}
#LeftContent2{
	float: left;
	background-color:#FFFFFF;
	width: 250px;
	margin-left: 50px;
	font-size: 85%
}
#RightContent2{
	background-color:#FFFFFF;
	margin-left: 260px;
	font-size: 85%;
}
#LeftContent3{
	float: left;
	background-color:#FFFFFF;
	width: 350px;
	margin-left: 10px;
	font-size: 85%
}
#RightContent3{
	background-color:#FFFFFF;
	margin-left: 360px;
	font-size: 85%;
}
#LeftContent4{
	float: left;
	background-color:#FFFFFF;
	width: 20px;
	font-size: 85%
}
#RightContent4{
	background-color:#FFFFFF;
	margin-left: 20px;
	font-size: 85%;
}
/***********************************************/
/* Need a contained to hold left and right 
content */
/***********************************************/

.container{
width: 99%; 
float: right;  
}

/***********************************************/
/* Floats image to the left and to the right */
/***********************************************/

.leftimage{
float: left;
width: 240px;
}

.rightimage{
float: right;
width: 240px;
}
.houseleft{
	float:left;
}
.houseright{
	float:right;
}
/***********************************************/
/* Footer navigation                           */
/***********************************************/

#FooterNavigation{
	height: 20px;
	background: #F00;
	font-size: 75%;
	text-align: center;
	vertical-align: middle;
	color: #FFFFFF;
	clear: both;
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-top-style: solid;
	border-bottom-style: solid;
	border-top-color: #999;
	border-bottom-color: #999;
}
#FooterNavigation a {
	color: #FFFFFF;
}
#FooterNavigation a:hover {
	color: #333;
	text-decoration: none;
}

/***********************************************/
/* Bottom navigation                           */
/***********************************************/

.BottomText{
	color: #F00;
	font-size: 55%;
	vertical-align: middle;
	text-align: center;
}
.BottomBlack{
	color: #000000;
	font-size: 55%;
	vertical-align: middle;
	text-align: center;
}
.infoimage{
	padding:15px 15px 1px;
}
