/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
line-height: 100%;
}

.housebutton a {
font-size: 100%;
font-family:  Arial, sans-serif;
}

.housebutton a:hover {
font-size: 100%;
font-family:  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: 0px solid #663366;


width: auto;

margin-top: auto;

margin-left: auto;

margin-right: auto;

padding: 0px;

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.change the padding to change the space 
between each navlink*/


.housebutton a {

padding: 5px;

text-decoration: none; 

font-weight: bold;

display: block;

color: #663366; /*this is where you change the button font color*/

background-color: fff;

border-top: 0px solid #996699;

border-left: 0px solid #996699;

border-bottom: 0px solid #996699;

border-right: 0px solid #996699;

margin-bottom: 0px;

margin-top: 0px;
}

/*this part is how the buttons look, once the pointer passes over them. */


.housebutton a:hover {

color: #000; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #fff;

border-top: 0px solid #996699;

border-left: 0px solid #996699;

border-bottom: 0px solid #996699;

border-right: 0px solid #996699;

}



/*-----AJ's horizontal navbar template*/

#nav ul { 

float: left; 

list-style: none; 

background: #ece0f8;/* this sets the background color of the nav, grey by default*/ 
width: 100%; 

padding: 0; 

margin: 0 0 0 0px; 

height: 30px; 

display: inline; 

text-transform: uppercase;/*delete this entire line if you DONT want 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;/*this is the gap between the text, and the border*/

border-top: none; 

border-right: 1px solid #fff;/*this gives a white border, change as required*/ 

border-left: 1px solid #fff; /*this gives a white border, change as required*/ 

border-bottom: 1px solid #ece0f8; color: #663366; /* text color*/ 

font: bold 12px/24px Arial, Geneva, sans-serif; /* sets the font type and size*/ 

text-transform: uppercase; /*delete if you dont want uppercase*/ 

text-decoration: none; 

letter-spacing: 1px; }

#nav ul li a:hover, #nav ul li a:active { color: #fff; background-color: #b272a6; font: bold; }  
 
  