/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 90%;
}

.housebutton a {
font-size: 93%;
font-family:  Verdana, sans-serif;
}

.housebutton a:hover {
font-size: 93%;
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: auto;

margin-left: 10px;

margin-right: auto;

padding: 2px;

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: 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: #6a5acd; /*this is where you change the button font color*/

background-color: transparent;

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: #fff; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #6a5acd;

border-top:  none;

border-left: none;

border-bottom:  none;

border-right: none;

}

 /***********the code below is for the left navigation bar***********/
 
#nav ul { 
float: left; 
list-style: none; 
background: #fff; 
width: 100%; padding: 0; 
margin: 0 0 0 0px; 
height: 20px; 
display: inline; 
text-transform: none; 
} 

#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 #fff; 
border-left: 1px solid #fff; 
border-bottom: none; 
color: #6a5acd; 
font: bold 12px/20px  Verdana, sans-serif; 
text-transform: none; text-decoration: none; 
letter-spacing: 1px; 
} 

#nav ul li a:hover {
color: #fff; background-color: #6a5acd;
font: bold; 
} 

#nav ul li a:active { 
color: #fff; background-color: #6a5acd;
font: bold; 
} 

 /***********the code below is for center aligned horizontal navigation ***********/
 
 #center-nav { 
 display:table; 
 padding:0; 
 margin:0 auto; 
 list-style-type:none; 
 white-space:nowrap; 
 text-align:center; 
 font: bold 12px/12px  Verdana, sans-serif;
 } 
 
 #center-nav li { 
 display:table-cell; 
 } 
 
 * html #center-nav li { 
 float:left; 
 } 
 #center-nav a { 
 width:auto; 
 display:block; 
 padding:4px 16px; 
 color:#888; 
 background:#fff; 
 border:1px solid #fff; 
 text-decoration:none; 
 } 
 
 * html #center-nav a { 
 float:left; 
 } 
 
 #center-nav a:hover { 
 color:#6a5acd; 
 background:#; 
 } 
 
.container {clear:both; text-decoration:none;} 
* html .container {display:inline-block;} 