/*this stylesheet is for you navigation panel*/#navigator {}.housebutton {}.housebutton a {font-size: 110%;}.housebutton a:hover {font-size: 110%;}/* 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: #ffffff;border: 3px #ffffff solid;width: 160px;margin-top: auto;margin-left: auto;margin-right: auto;padding: 5px;text-align: left;}/* want more space between your buttons? just increase the marginsfrom 1px. Font weight can be bold if you prefer.*/.housebutton {font-weight: normal;text-align: left;margin-bottom: 2px;margin-top: 2px;}/* this part is for the colors of your buttons "at rest" so to speak. Notice thetop/left, and the bottom/right are colored in pairs? If you change the colors, you will need to do the same, tomaintain 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: 1px;text-decoration: none;display: block;color: #000000; /*this is where you change the button font color or color of the left hand menu links*/background-color: #ffffff;border-top: 1px ;border-left: 1px ;border-bottom: 1px ;border-right: 1px ;}/*this part is how the buttons look, once the pointer passes over them. Same thing as above, but this timethe 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: #123456; /*-----this is where you change the button font color, when the button is hovered over*/background-color: ;border-top: 1px ;border-left: 1px ;border-bottom: 1px ;border-right: 1px ;}#nav ul { float: left; list-style: none; background: #223344;/* this sets the background color of the nav, grey by default*/ width: 100%; padding: 0; margin: 0 0 0 0px; height: 30px; 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 15px;/*this is the gap between the text, and the border*/ border-top: none; border-right: 1px solid #666;/*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 12px/30px Arial, Geneva, sans-serif; /* sets the font type and size*/  text-decoration: none; letter-spacing: 1px; } #nav ul li a:hover, #nav ul li a:active { color: #223344; background-color: #523D66; font: bold; } 