/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
}

.housebutton a {
font-size: 100%;
}

.housebutton a:hover {
font-size: 100%;
}


/* 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: #fffdf9;

border: 1px #fffdf9 solid;

width: 120px;

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 {

font-weight: normal;
text-align: left;
margin-bottom: 1px;
margin-top: 1px;
}


/* this part is for the colors of your buttons "at rest". */

.housebutton a {

padding: 4px;

text-decoration: none;

display: block;

color: #a65212; /*this is where you change the button font color*/

background-color: #fffdf9;

border-top: 1px #fffdf9 dashed;

border-left: 1px #fffdf9 solid;

border-bottom: 1px #127ea6 dashed;

border-right: 1px #fffdf9 solid;

}

/*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: #fffdf9; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #127ea6;

border-top: 1px #fffdf9 solid;

border-left: 1px #fffdf9 solid;

border-bottom: 1px #595959 dashed;

border-right: 1px #fffdf9 solid;

}

/* this part is for the top horitonal navigation.  Everything below this can be 
deleted if you do not want horizontal navigation*/
#nav ul {
	float: left;
	list-style: none;
	background: #127ea6;
	width: 100%;		
	padding: 0;	margin: 0 0 0 0px;
	height: 30px;
	display: inline;
	text-transform: uppercase;
}
#nav ul li {
	display: inline;
	margin: 0; padding: 0;
}
#nav ul li a {
	display: block;
	float: left;
	width: auto;
	margin: 0;
	padding: 0 15px;
	border-top: none;	
	border-right: 1px solid #fffdf9;
	border-left: 1px solid #fffdf9;	
	border-bottom: none;
	color: #fffdf9;
	font: bold 11px/33px  Arial, Geneva, sans-serif;
	text-transform: uppercase;
	text-decoration: none;	
	letter-spacing: 1px;
}
#nav ul li a:hover, 
#nav ul li a:active {
	color: #fffdf9; 
	background-color: #a65212;
	font: bold;
}
