/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 80%;
font-family:  Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 80%;
font-family:  Verdana, sans-serif;
}

ul#navlist
{
font: bold 14px verdana, sans-serif;
list-style-type: none;
padding-bottom: 30px;
border-bottom: 1px solid #0B3B0B;
margin: 0;
}

ul#navlist li
{
float: left;
height: 25px;
background-color: #99cc33;
margin: 2px 2px 0 2px;
border: 1px solid #0B3B0B;
}

ul#navlist li#active
{
border-bottom: 2px solid #0B3B0B;
background-color: #99cc33;
}

li#active a { color: #000; }

#navlist a
{
float: left;
display: block;
color: #000;
text-decoration: none;
padding: 4px;
}

#navlist a:hover { background: #fff; }

}



/* 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: 1px dashed #000000;

width: auto;

margin-top: auto;

margin-left: 5px;

margin-right: auto;

padding: 2px;

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: none;
text-align: left;
margin-bottom: 3px;
margin-top: 3px;
}


/* this part is for the colors of your 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:  #BEF781;

border-top: 1px dotted #38610B;

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 {

text-decoration: underline;


color: #000000; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #BEF781;

border-top: 1px dotted #38610B;

border-left: none;

border-bottom: 1px dotted #38610B;

border-right: none;

}



