/*this stylesheet is for your navigation panel  YOUR NAVBAR SETUP*/

#navigator {

}

.housebutton {
line-height: 100%;
}

.housebutton a {
font-size: 108%;
font-family:  Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 108%;
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 {

background-color: transparent;
border: none;
width: auto;
margin-top: none;
margin-left: 3px;
margin-right: none;
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; /*normal bold  bolder  lighter  100  200 up to 900 and inherit*/
text-align: left; /* this is where you change the alignment of the font*/
margin-bottom: none;
margin-top: none;
}

/* this part is for the COLORS OF THE BUTTONS "at rest" so to speak.*/

.housebutton a {
padding: 4px;
text-decoration: none;
display: block;
color: #000000; /*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: #333300; /*-- This is where you change the button font color, when the button is hovered over - mucky brown*/
background-color: #ccc;  /*-- grey --*/
border-top:  none;
border-left: none;
border-bottom:  none;
border-right: none;

}



