/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
}

.housebutton a {
font-size: 90%;
font-family:  Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 90%;
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:  1px #000066 none;

width: auto;

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 a {

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: 4px;

text-decoration: none;

display: block;

color: #c93; /*this is where you change the button font color*/

background-color: #fff;

/*
border-top: 1px #c93 solid;

border-left: 1px #E5CB98 solid;

border-bottom: 1px #8C7852 solid;

border-right: 1px #664C19 solid;


background-color: #F1D73F;

border-top: 1px #CC9933 solid;

border-left: 1px #E5CB98 solid;

border-bottom: 1px #8C7852 solid;

border-right: 1px #664C19 solid;
*/
}

/*this part is how the buttons look, once the pointer passes over them. */




.housebutton a:hover {

color: #000; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #DBA532;

border-top: 1 px #CC9933 solid;

border-left: 1px #E5CB98 solid;

border-bottom: 1px #8C7852 solid;

border-right: 1px #664C19 solid;

}

#nav ul { 
float: left; 
list-style: none; 
background: #c93;/* this sets the background color of the nav*/ 
width: 100%; 
padding: 0; 
margin: 0 0 0 0px; 
height: 30px; 
display: inline; 
} 

#nav ul li { 
display: inline; 
margin: 0; 
padding: 0; 
} 

#nav ul li a { 
display: block; 
float: left; 
width: auto; 
margin: 0; 
padding: 0 15px;/*this is the gap between the text, and the border*/ 
border-top: none; 
border-right: 1px #664C19 solid;/*this gives a white border, change as required*/ 
border-left: 1px #E5CB98 solid; /*this gives a white border, change as required*/ 
border-bottom: none; 
color: #000; /* text color*/ 
font: bold 12px/30px Verdana, sans-serif; /* sets the font type and size*/ 
text-decoration: none; 
letter-spacing: 1px; 
} 

#nav ul li a:hover, 
#nav ul li a:active { 
color: #000; 
background-color: #F1D73F; 
font: bold; 
} 


