/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 90%;
font-family: Arial, Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 90%;
font-family: Arial, Verdana, sans-serif;
}


/* this part below is for the color on the background, surrounding the buttons. Change the color, and the 
border, if you like. For the border, you can use solid, dashed, or dotted, for different border styles*/

#navigator {

background-color: #ffffff;

border:  1 px #000066 none;


width: auto;

margin-top: auto;

margin-left: auto;

margin-right: auto;

padding: 2px;

text-align: center;


}

/* want more space between your buttons? just increase the margins
from 1px. Font weight can be bold if you prefer.*/

.housebutton {

font-weight: bold;
text-align: center;
margin-bottom: 2px;
margin-top: 2px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/




.housebutton a {

padding: 4px;

text-decoration: none;

display: block;

color: #0000cc; /*this is where you change the button font color*/

background-color: #ffffff;

border-top: 1px #006 solid;

border-left: 1px #006 solid;

border-bottom: 1px #006 solid;

border-right: 1px #006 solid;

}

/*this part is how the buttons look, once the pointer passes over them. */




.housebutton a:hover {

color: #ffff00; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #006;

border-top:  1px #000 solid;

border-left: 1px #000 solid;

border-bottom:  1px #000 solid;

border-right: 1px #000 solid;

}



/*This style sheet controls how the textboxes will lookThe only thing that you might want to change will be the colorof the borders. They are set at #000066 at the moment.The background color is set to ffffff (white), however if youdecide to change it you can. Just remember, if you do, it will affect EVERYtextbox on your site. To change only one, copy and paste the class here in the style sheet,and alter the color. Change the name also... so the new class may be calledfull-width-box-blue for eg. Then the new color can be called with your new class name.*//*** right column Full width box.Change the colors to suit. The standard box has a white background, and thebox2 has a colored background ***IE has difficulty with dashed and dotted. Dotted will show as dashed, and dashed can be dodgy anyway. So you are far better to use the solid property, as I have done here. At least you know you will get the same display inevery browser. Maybe Microsoft will produce a decent standards compliant browser ones day...but I doubt it*/div.full-width-box {   background-color: #ffffff;	margin: 15px 0px 10px 0px;	padding: 15px;   border: 1px solid #000066;	}div.center-box {   width: 50%;   background-color: #ffffff;	margin-left:auto;	margin-right:auto;	padding: 15px;   border: 1px solid #000066;	}div.full-width-box2 {   background-color: #ffffaa;	margin: 15px 0px 10px 0px;	padding: 15px;   border: 1px solid #000066;	}	/*** right column Half of width box left ***/div.half-width-box-left {   background-color: #ffffff;	margin: 5px 5px 5px 5px;	border: 1px solid #000066;	padding: 10px;	width: 50%;	float: left;	}/*** right column Half of width box right ***/div.half-width-box-right {   background-color: #ffffff;	margin: 5px 5px 5px 5px;	border: 1px solid #000066;	padding: 10px;	width: 50%;	float: right;	}div.center-box2 {   width: 85%;   background-color: #ffffaa;	margin-left:auto;	margin-right:auto;	padding: 15px;   border: 1px solid #000066;	}/* the border of the image inside your half width textbox can be changed.Its set to #5F8B8C at the moment. You can also change the solidto either dashed or dotted if you want to*//*** Picture inside the text ***/.img-float-left {	float: left;	padding: 2px;	margin-right: 5px;	border: 2px solid #000066;}.img-float-right {	float: right;	padding: 2px;	margin-left: 5px;	border: 2px solid #000066;}/*** Clearing of a float ***/div.clear {	clear: both;	width: 100%;	height: 1px;}