/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
}

.housebutton a {
font-size: 90%;
}

.housebutton a:hover {
font-size: 90%


}


/* 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: 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: bold;
text-align: center;
margin-bottom: 1px;
margin-top: 1px;
}


/* 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: #0d8b9f; /* button font color - changed from 9d1961 to 0d8b9f */

background-color: #e8ffff;   /* test - changed from d1eeee to e8ffff */

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: #0D8B9F;  /*-----this is where you change the button font color, when the button is hovered over. Changed
to stay the same instead of previous 8b0a50*/

background-color: #C4F7FE;    /*-----changed from 67e6ec to C4F7FE */

border-top: 1px #39b7cd solid;

border-left: 1px #39b7cd solid;

border-bottom: 1px #bbfff solid;

border-right: 1px #bbfff solid;
}

/*the following is for the horizontal navigation bar. changed background from e8ffff to  white fff for test*/

#nav ul { 
   float: left; 
   list-style: none; 
   background: #e8ffff repeat-x; 
   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; 
 } 
 /*change border-right and border-left to 0D8B9F from white fff for test*/
 
 #nav ul li a { display: block;
     float: left;
     width: auto;
     margin: 0;
     padding: 0 15px;
     border-top: none; 
     border-right: 1px solid #ACE2e0;
     border-left: 1px solid #ACE2r0; 
     border-bottom: none;
     color: #0d8b9f;       /*-----changed from 18b1be; to 0d8b9f */
     font: bold 10px/30px Arial, Geneva, sans-serif; 
     text-transform: uppercase; 
     text-decoration: none; 
     letter-spacing: 1px; 
  } 
  #nav ul li a:hover, 
  #nav ul li a:active { 
     color: #fff; background-color: #4d8f9d; 
     font: bold; 
  }
  

