/*this stylesheet is for you navigation panel*/

#navigator {
}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 93%;
font-family: 'Trebuchet MS1', Helvetica, sans-serif;
}

.housebutton a:hover {
font-size: 93%;
font-family: 'Trebuchet MS1', Helvetica, 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:  transparent;
width: auto;
margin-top: auto;
margin-left: 2px;
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: bold;
text-align: left;
margin-bottom: 0px;
margin-top: 0px;
}

/* this part is for the colors of your buttons "at rest" so to speak.*/

.housebutton a {
padding: 4px;
text-decoration: none;
display: block;
color: #44525e; /*this is where you change the button font color*/
background-color: transparent;
border-top: none;
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 {
color: #010100; /*-----this is where you change the button font color, when the button is hovered over*/
background-color: #ccc;
border-top:  none;
border-left: none;
border-bottom:  none;
border-right: none;
}



/* drop down2 the simpler single level one*/

#navbox {
width: auto;
float: left;
height: auto;
margin-left: auto;
margin-right: auto;
background-color: #010100;
text-decoration: none;
position:relative;
z-index:500;

}

#dropnav {
margin: 0;
padding: 0;
}

#dropnav  li {
list-style: none;
float: left;
text-decoration: none;

}

#dropnav  li a {
display: block;
padding: 4px 8px; 
background-color: #010100;
color: #ffffff; 
font-family: 'Trebuchet MS1', Helvetica, sans-serif;
font-size: 12px;
font-weight: bold;
border-right: 1px solid #fff;
border-left: none;
text-align: left;
text-decoration: none;
}

#dropnav  li: hover a {
color: #fff; 
background-color: #edd786;
}


#dropnav  li ul {
display: none;
width: auto;
background-color: #edd786;
color: #ffffff; 
border-bottom: none;
border-left:  none;
border-right: none;
text-decoration: none;
}

#dropnav  li li {
white-space: nowrap;
_margin-top: 0px; 
_margin-bottom: -15px; 
}

#dropnav  li:hover ul, #dropnav  li.hover ul {
display: block;
position: absolute;
margin: 0;
padding: 0;
margin-top: 0px;
text-decoration: none;
}

#dropnav  li:hover li, #dropnav  li.hover li {
float: none;
}

#dropnav  li:hover li a, #dropnav  li.hover li a {
background-color: #a4a4a4; 
color: #fff; 
}

#dropnav  li li a:hover {
background-color: #e1dfdf;
color: #010100; 
}


