/*this stylesheet is for your navigation panel*/

#navigator {

}

.housebutton {

}

.housebutton a {
font-size: 9pt;
}

.housebutton a:hover {
font-size: 9pt;
}


/* 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: 1px #FFFFFF solid;

width: auto;

margin-top: auto;

margin-left: auto;

margin-right: auto;

padding: 10px;

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: 1px;

margin-top: 1px;

}


/* this part is for the colors of your buttons "at rest" so to speak.*/

.housebutton a {

padding: 5px;

text-decoration: none;

display: block;

color: #004489; /*this is where you change the button font color*/

background-color: #FFFFCC;

border-top: 1px #CCCCCC solid;

border-left: 1px #CCCCCC solid;

border-bottom: 1px #CCCCCC solid;

border-right: 1px #CCCCCC solid;

}

/*this part is how the buttons look when the cursor hovers over them.*/

.housebutton a:hover {

color: #CCCCCC; /*this is where you change the button font color, when the button is hovered over*/

background-color: #FFFFCC;

border-top: 1px #CCCCCC solid;

border-left: 1px #CCCCCC solid;

border-bottom: 1px #CCCCCC solid;

border-right: 1px #CCCCCC solid;

}

