/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 85%;
}

.housebutton a {
font-size: 85%;
font-family: Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 85%;
font-family:  Verdana, sans-serif;
}

.housebutton a:visited {
font-size: 85%;
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: transparent;
width: auto;
margin-top: 10px;
margin-left: 5px;
margin-right: 0px;
padding-bottom: 10px;
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: 0px;
margin-top: 0px;
margin-left: 5px;
margin-right: 0px;
}

.housebuttonmain {
line-height:100%;
font-family: Georgia, Times New Roman;
color: #3aa3d3;
font-weight: bold;
background-color: transparent;
border-bottom: 1px solid #8a826f;
width: auto;
margin-top: 15px;
margin-left: 5px;
margin-right: 0px;
margin-bottom: 5px;
padding-bottom: 5px;
text-align: left;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/

.housebutton a {
padding: 2px 0px 2px 4px;
text-decoration: none;
text-align: left;
display: block;
color: #000; /*this is where you change the button font color*/
background-color: transparent;
border-top: none;
border-left: none;
border-bottom: 0px dotted #8a826f;
border-right: none;

}

/*this part is how the buttons look, once the pointer passes over them. */

.housebutton a:hover {
color: #3aa3d3; /*-----this is where you change the button font color, when the button is hovered over*/
background-color: #fff;
border-top:  none;
border-left: none;
border-bottom:  1px dotted #3aa3d3;
border-right: none;
text-decoration: none;
}

.housebutton a:visited {
color: #999999; /*-----this is where you change the button font color, when the button is hovered over*/
background-color: #fff;
border-top:  none;
border-left: none;
border-bottom:  0px dotted #ff5a00;
border-right: none;
text-decoration: none;
}


/*horizontal nav. */

#nav ul { 
float: left; 
list-style: none; 
background: #c0c0c0;/* this sets the background color of the nav, grey by default*/ 
width: 100%; 
padding: 0; 
margin: 0 0 0 0px; 
height: 20px; 
display: inline; 
text-transform: uppercase;/*delete this entire line if you DONT want uppercase*/ 
} 

#nav ul li { 
display: inline; 
margin: 0; 
padding: 0; 
} 

#nav ul li a:link,
#nav ul li a:visited{ 
display: block; 
float: left; 
width: auto; 
margin: 0; 
padding: 0 7px;/*this is the gap between the text, and the border*/ 
border-top: 0px solid #fff; 
border-right: 1px solid #fff;/*this gives a white border, change as required*/ 
border-left: 0px solid #fff; /*this gives a white border, change as required*/ 
border-bottom: 0px solid #fff; 
color: #fff; /* text color*/ 
font: bold 10px/20px Arial, Geneva, sans-serif; /* sets the font type and size*/ 
text-transform: uppercase; /*delete if you dont want uppercase*/ 
text-decoration: none; 
letter-spacing: 1px; 
background:#c0c0c0;
} 


#nav ul li a:hover, 
#nav ul li a:active{ 
color: #3aa3d3; 
background-color: #EFE6E0; 
font-weight: bold; 

