/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 93%;
font:bold 14px/16px Cambria;
/* font-family:  Verdana, sans-serif; */
}

.housebutton a:hover {
font-size: 93%;
font:bold 14px/16px Cambria;
/* font-family:  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 {

	border:  transparent;
	width: auto;
	margin-top: auto;
	margin-left: 0px;
	margin-right: auto;
	padding: 0px;
	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: 1px 0px 1px 0px;
text-decoration: none;
display: block;
color: #336633; /*this is where you change the button font color*/
background-color: transparent;
border-top: none;
border-left: none;
border-bottom: none;
border-right: none;

}

/*this part is how the buttons look, once the pointer passes over them. */




.housebutton a:hover {

color: #003399; /*-----this is where you change the button font color, when the button is hovered over*/
background-color: #d0e5b1;
text-decoration: underline;
border-top:  none;
border-left: none;
border-bottom:  none;
border-right: none;

}
