/*this stylesheet is for your navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
	font-size: 93%;
	font-family: Verdana, sans-serif;
	margin-top:5px;
}

.housebutton a:hover {
font-size: 93%;
font-family:  Verdana, sans-serif;
margin-top:5px;
}


/* 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: transparent;
	border: 1px solid #808000;
	width: auto;
	margin-top: auto;
	margin-left: 5px;
	margin-right: auto;
	padding: 2px;
	text-align: left;
}

/* 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: left;
	margin-bottom: 0px;
	margin-top: 0px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/




.housebutton a {
	padding: 4px;
	text-decoration: none;
	display: block;
	color: #666666; /*this is where you change the button font color - White*/;
	background-color: #99FF66 /*Gentle Green Button Background*/;
	border: 1px solid #808000;
}

/*this part is how the buttons look, once the pointer passes over them. */

.housebutton a:hover {
	color: #FF3300; /*-----this is where you change the button font color, when the button is hovered over - DARK GREEN*/
	background-color: #66FF33;
	border: 1px solid #CC3300;
	
	}

