/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
}

.housebutton a {
font-size: 100%;
}

.housebutton a:hover {
font-size: 100%;
}


/* 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: #686F8F;
border: 1px #000066 solid;
width: 135px;
margin-top: auto;
margin-left: auto;
margin-right: auto;
padding: 5px;
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: normal;
text-align: center;
margin-bottom: 1px;
margin-top: 1px;
}


/* this part is for the colors of your buttons "at rest" so to speak. Notice the
top/left, and the bottom/right are colored in pairs? If you change the colors, you will need to do the same, to
maintain the illusion of 3D buttons. Make one set of sides a slightly darker shade than the other pair.
This will give the button a 3D look*/

.housebutton a {
padding: 4px;
text-decoration: none;
display: block;
color: #ffffff; /*this is where you change the button font color*/
background-color: #1834B5 ;
border-top: 1px #A0ABDB solid;
border-left: 1px #A0ABDB solid;
border-bottom: 2px #132A60 solid;
border-right: 2px #132A60 solid;
}

/*this part is how the buttons look, once the pointer passes over them. Same thing as above, but this time
the top/left colors should SWAP with the bottom/right, to give the correct effect.
Also the background color should go a shade darker, to make it seem as if it were now below the 
level of the page, and is not getting any light on it*/

.housebutton a:hover {
color: #ffff00; /*-----this is where you change the button font color, when the button is hovered over*/
background-color: #1B3C7D;
border-top: 2px #132A60 solid;
border-left: 2px #132A90 solid;
border-bottom: 1px #A0ABDB solid;
border-right: 1px #A0ABDB solid;
}

.housebutton a:visited {
color:#CC3300; /*-----this is where you change the button font color, when the button is clicked*/

}

/*The navigation buttons need a different color for clicked links - this section is for that*/
.navbutton{}
.navbutton a{font-size: 100%;}
.navbutton a:hover {font-size: 100%;}
.navbutton{
font-weight: normal;
text-align: center;
margin-bottom: 1px;
margin-top: 1px;
}
/*this is the normal color of the button and text*/
.navbutton a{
padding: 4px;
text-decoration: none;
display: block;
color: #ffffff; /*this is where you change the button font color*/
background-color: #1834B5 ;
border-top: 1px #A0ABDB solid;
border-left: 1px #A0ABDB solid;
border-bottom: 2px #132A60 solid;
border-right: 2px #132A60 solid;
}
/*when you hover over a button, this is the color of the background and text*/
.navbutton a:hover{
color: #ffff00; 
background-color: #1B3C7D;
border-top: 2px #132A60 solid;
border-left: 2px #132A90 solid;
border-bottom: 1px #A0ABDB solid;
border-right: 1px #A0ABDB solid;
}
/*once a button is clicked, this is the text color*/
.navbutton a:visited{color:#66CCFF;
}


