/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 136%;/*Max percentage before line wraps*/
font-family: Arial, Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 136%;/*Max percentage before line wraps*/
/*font-family: Impact, Verdana, sans-serif;*/
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: #663333;

/*border:  transparent;*/
border:  transparent;
border-color:green;
width: auto;

/*margin-top: pushes down the nav block from the header;*/
margin-top: auto;
margin-left: 10px;/*default 10*/

margin-right: auto;

padding: 2px;
/*padding is the area around the button will squish inward with increase*/

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: 0px;

text-decoration: none;

display: block;

color: yellow; /*this is where you change the button font color*/

background-color: transparent;

border-top: none;/*default none*/

border-left: none;

border-bottom: none;/*default none*/

border-right: none;

}

/*this part is how the buttons look, once the pointer passes over them. */




.housebutton a:hover {

color: green; /*----- button font color, when the button is hovered over*/

background-color:#351B1B;

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;

}




