/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 93%;
font-family:  Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 93%;
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: #fff;

border:  transparent;

font-family: arial, verdana;

font-size: 90%;

width: auto;

margin-top: auto;

margin-left: 10px;

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 {


text-align: left;
margin-bottom: 15px;
margin-top: 15px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/




.housebutton a {

padding: 4px;

text-decoration: none;

display: block;

color: #000; /*this is where you change the button font color*/

background-color: #ffcccc;

border-top: 1px solid #000;

border-left: 1px solid #000;

border-bottom: 1px solid #000;

border-right: 1px solid #000;

}

/*this part is how the buttons look, once the pointer passes over them. */




.housebutton a:hover {

color: #fff; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #ffcccc;

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;

}

a img {border: none; }
 


ul.hoznavi{list-style: none; padding: 0; margin: 0;}
ul.hoznavi li{float: left; margin-right: 10px;}
ul.hoznavi li a{color: #666; text-decoration: none; font-weight: bold; display:block; width: 75px; text-align: center; background-color: #ffcccc; }
ul.hoznavi li a:hover { color: #000; background-color: #666; }



#nav ul { 
float: left; 
list-style: none; 
background: #ffcccc;/* this sets the background color of the nav, grey by default*/ 
width: 100%; 
padding: 0; 
margin: 0 0 0 0px; 
height: 25px; 
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*/ 

color: #000000; /* text color*/ 
font: 12px/25px Verdana, Geneva, 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: #ffcccc; 
background-color: #ccc; 
font: bold; } 


