/*this stylesheet is for your navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 100%;
font-family:  Trebuchet MS, Arial;

}

.housebutton a:hover {
font-size: 100%;
font-family:  Trebuchet MS, Arial;

}


/* 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: #ffffff;

border: transparent;


width: auto;

margin-top: auto;

margin-left: 2px;

margin-right: 2px;

padding: 2px;

text-align: center;


}
/*erase this is it doesn't work*/

#wrap {
	font-size: 1.3em;
	width: 500px;
	padding: 0px;
	margin: 0 auto; 
	background-color: #transparent;
	position: relative; }

/* create the dropdown menus. */
#navbar {
	margin: 0;
	padding: 0;
	height: 1em; }
#navbar li {
	list-style: none;
	float: left; }
#navbar li a {
	display: block;
	padding: 3px 8px;
	background-color: #5e8ce9;
	color: #fff;
	text-decoration: none; }
#navbar li ul {
	display: none; 
	width: 10em; /* Width to help Opera out */
	background-color: #69f;}
#navbar li:hover ul, #navbar li.hover ul {
	display: block;
	position: absolute;
	margin: 0;
	padding: 0; }
#navbar li:hover li, #navbar li.hover li {
	float: none; }
#navbar li:hover li a, #navbar li.hover li a {
	background-color: #69f;
	border-bottom: 1px solid #fff;
	color: #000; }
#navbar li li a:hover {
	background-color: #8db3ff; }

/*an alternative*/
#nav, #nav ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
}
 
#nav a {
	display: block;
	width: 10em;
}
 
#nav li { /* all list items */
	float: left;
	width: 10em; /* width needed or else Opera goes nuts */
}
 
#nav li ul { /* second-level lists */
	position: absolute;
	background: orange;
	width: 10em;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}
 
#nav li ul ul { /* third-and-above-level lists */
	margin: -1em 0 0 10em;
}
 
#nav li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}
 
#nav li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { /* lists nested under hovered list items */
	left: auto;
}
 
#content {
	clear: left;
	color: #ccc;
}
/*top nav bar erase if it doesn't work*/
#menu {
  height: 0px;
/*  width: 825px;*/
  background: url(../image-files/nav-bar.gif) repeat-x 0 0;
}

#menu ul li {
  display: inline;	
}

#menu ul li a {
  float: left;
  color: #fff;
  font-size: 10pt;
  font-weight: bold;
  padding: 0px 25px;
  margin-left: 20px;
  text-align: center;
}

#menu ul li a:active {
  color:#fff;	
}

#menu ul li a:hover {
  color:#000;	
}
 



/* 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: center;
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: #666666; /*this is where you change the button font color*/

background-color: #ffffff;

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: #000000; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #ffffff;



}



