/*this stylesheet is for you navigation panel*/

#navigator {

}

.housebutton {
}

.housebutton a {
font-size: 97%;
}

.housebutton a:hover {
font-size: 100%;
}


/* 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: #FFE8FF;

border: 1px #FFE8FF 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: 3px;
margin-top: 3px;
}


/* 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: #993365; /*this is where you change the button font color*/

background-color: #FFE8FF;

border-top: 1px #006 none;

border-left: 1px #006 none;

border-bottom: 1px #006 none;

border-right: 1px #006 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: #fff; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #C7AFBD;

border-top: 1px #000 none;

border-left: 1px #000 none;

border-bottom: 1px #000 none;

border-right: 1px #000 none;

}

#header {
margin:0px,0px,0px,0px;
float:left; /*can be changed to right if you prefer*/
width:100%;
/*change to your url*/
background:#DAE0D2 url('http://www.xyz.com/images/bg.gif')
repeat-x bottom;
font-size:93%; /* use either 86% 93% or 100%*/
line-height:normal;
}
#header ul {
margin:0;
padding:10px 10px 0;
list-style:none;
}
#header li {
float:left;
/*change to your url*/
background:url('http://www.xyz.com/images/left_both.gif')
no-repeat left top;
margin:0;
padding:0 0 0 9px;
border-bottom:1px solid #765;
}
#header a {
white-space:nowrap;
float:left; /* if you change the first instance of the float to right,then this must be changed as well*/
display:block;
width:.1em;
/*change to your url*/
background:url(' http://www.xyz.com/images/right_both.gif')
no-repeat right top;
padding:5px 15px 4px 6px;
text-decoration:none; /* options are none or underline*/
font-weight:bold; /*use either bold or normal*/
color:#765; /* set the link font color*/



#nav ul { float: left; list-style: none; background: #cec9cf;/* 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: none; color: #523D66; /* text color*/ font: bold 10px/30px 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: #523D66; font: bold; } 
