/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 93%;
font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 93%;
font-family: 'Trebuchet MS', Arial, 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: none;

border:  none;


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 {

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. 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: #000066; /*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. 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: e46c0a; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: none;

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;

}


/* drop down2 the simpler single level one*/

#navbox {
width: auto:
float: right;
height: auto;
margin-left:auto:
margin-right:auto;
background-image: url(../images/bg2-off.gif);
background-repeat: repeat-x;

}

#dropnav {
margin: 0;
padding: 0;
}

#dropnav  li {
list-style: none;
float: right;
text-decoration: none;
}

#dropnav  li a {
display: block;
padding: 8px 35px; /*have set spacing to 10px so u can see the pale green bg color in behind. Change the first 10 to 8px to get rid of that. */
background-color: #386194;/*navy blue, the color at rest*/
color: #ffffff; /*red, font color at rest*/
background-image: url(../images/bg2-off.gif);
background-repeat: repeat-x;
text-decoration: none;
font-family: 'Trebuchet MS', Arial, Verdana, sans-serif;
font-size: 13px;
font-weight: bold;
border-right: none;
border-left: 1px solid #fff; /*gray borders*/
text-align: left;
}

#dropnav  li: hover a {
color: #fff ; /* link text color. have had this working in FF but not IE, need to investigate further*/
background-color: #000066; /*yellow, bg color on hover on the top level. have had this working in FF but not IE, need to investigate further*/
background-image: url(../images/bg2-on.gif);
background-repeat: repeat-x;
}


#dropnav  li ul {

display: none;
width: auto; 
background-color: #000066; /*pale light green. this doesnt show with  the li a padding set to 8px*/
color: #000000; /* black */
border-bottom: 1px solid #ffffff;
border-left:  1px solid #ffffff;
border-right: 1px solid #ffffff;
}

#dropnav  li li {
white-space: nowrap;
_margin-top: -4px; /* this is to make IE behave with the list spacing. I bloody hate IE, making me find ways to fix their cockups like this*/
_margin-bottom: -29px; /* this is to make IE behave with the list spacing */
}

#dropnav  li:hover ul, #dropnav  li.hover ul {
display: block;
position: absolute;
margin: 0;
padding: 0;
margin-top: 0px;
}

#dropnav  li:hover li, #dropnav  li.hover li {
float: none;
}

#dropnav  li:hover li a, #dropnav  li.hover li a {
background-color: #000066; /*dark green */
color: #fff; /*pink, the 2nd level font color*/

}


#dropnav  li li a:hover {
background-color: #000066;/*green color, the 2nd level bg color on hover*/
color: #fff; /*2nd level font turns to this on hover */
background-image: url(../images/bg2-on.gif);
background-repeat: repeat-x;
}