/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 103%;
font-family: Verdana, Arial, sans-serif;

}

.housebutton a:hover {
font-size: 93%;
font-family:  Verdana, Arial, 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: 1px solid transparent;


width: auto;

margin-top: auto;

margin-left: auto;

margin-right: auto;

padding: 5px;

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: 10px;
margin-top: 10px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/




.housebutton a {

padding: 5px;

text-decoration: none;

display: block;

color: #6d3a36; /*this is where you change the button font color*/

background-color: #E4E2D8;

border-top: 3px solid #f0efe9;

border-left: 3px solid #f0efe9;

border-bottom: 3px solid #d1cebe;

border-right: 3px solid #D1c3b3;
margin-bottom: 2px;
margin-top: 2px;
}

/*this part is how the buttons look, once the pointer passes over them. */




.housebutton a:hover {

color: #757264; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #f0efe9;

border-top:  3px solid #e4e2d8;

border-left: 3px solid #e4e2d8;

border-bottom:  3px solid #fbfbfa;

border-right: 3px solid #fbfbfa;

}


#nav ul {
   float: right; 
   list-style: none; 
   background: #49623f; 
   width: 100%; 
   padding: 0; margin: 0 0 0 0px; 
   height: 40px; 
   display: inline; 
   
} 
#nav ul li { 
        display: inline; 
        margin: 0; padding: 0; 
} 
#nav ul li a {
        display: block; 
        float: left; 
        width: auto; 
        margin: 0; 
        padding: 0 px; 
        border-top: 0px solid #49623f; 
        border-right: 1px solid #fff; 
        border-left: 1px solid #fff; 
        border-bottom: 0px solid #49623f; 
        color: #ffffff; 
        
        
        text-decoration: none; 
        letter-spacing: 0px; 
} 
#nav ul li a:hover, 
#nav ul li a:active { 
        color: #fff; 
        background-color: #49623f; 
         
} 

  #navMenu {
    border-right: 0px solid #fff; 
    border-left: 0px solid #fff;
    margin:0;
    width:auto;
 }

  #navMenu ul {
    margin:0;
    padding:0;
    line-height:40px;
 }

  #navMenu li {
    border-right: 0px solid #fff; 
    border-left: 0px solid #fff;
    margin:0;
    padding:0;
    list-style:none;
    float:left;
    position:relative;
    background:#49623f;
 }

  #navMenu ul li a {
    text-align:center; 
    height:40px;
    width:160px;
    display:block;
    color:#ffffff;
    text-decoration: none;
    color:#FFF;
    border:0px solid #49623f;
     
 }

 /*********************************************/
 /* hide menu and allow it to return */
 /*********************************************/

	#navMenu ul ul {
	position:absolute;
	visibility:hidden;
	top:32px;
 }

  #navMenu ul li:hover ul {
    visibility:visible;
    z-index:9999; 
 }

  /**********************************************/

  /*sets top level hover color*/

  #navMenu li:hover {
   background:#b6b8a2;
 }

  /*sets link items hover color and background*/

  #navMenu ul li:hover ul li a:hover {
    color:#000;
    background:#b6b8a2;
 }

  /* Changes text color on hover for main menu hover*/

  #navMenu a:hover {   
  color:#000;
 } 
  
 /* Contains the Float */

 .clearFloat {
    clear:both; 
    margin:0;
    padding:0;
 }

 /* IE7 Display Fix */

 #navMenu #holder ul li { 

  display: inline; 
 
 }