/*this stylesheet is for you navigation panel*/

#acelnavigator {

}

.ahousebutton {
line-height: 90%;
}

.ahousebuttonb {
line-height: 90%;
}

.ahousebutton a {
font-size: 93%;
font-family: Verdana, sans-serif;
}

.ahousebuttonb a {
font-size: 93%;
font-family: Verdana, sans-serif;
}

.ahousebutton a:hover {
font-size: 93%;
font-family: Verdana, sans-serif;
}

.ahousebuttonb 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*/

#acelnavigator {

background-color: #000000;;

border: transparent;


width: auto;

margin-top: auto;

margin-left: 10px;

margin-right: auto;

padding: 2px;

text-align: center;


}

/* want more space between your buttons? just increase the margins
from 1px. Font weight can be bold if you prefer.
Changing the margin on these doesn't seem to affect anything..*/

.ahousebutton {

font-weight: normal;
text-align: center;
margin-bottom: 0px;
margin-top: 0px;
}

/* Added .housebuttonb, this is so that the buttons don't have a double border effect,
housebuttonb is used at the bottom of a row of buttons */

.ahousebuttonb {

font-weight: normal;
text-align: center;
margin-bottom: 0px;
margin-top: 0px;
}


/* this part is for the colors of your buttons "at rest" so to speak.*/

.ahousebutton a {

padding: 4px;

text-decoration: none;

display: block;

color: #ffffff; /*this is where you change the button font color*/

background-color: #DF0101;

border-top: solid #000000;

border-left: none;

border-bottom: none;

border-right: none;

}

/* this part is for the colors of your buttons "at rest" so to speak. This is for a button on the bottom of the section*/

.ahousebuttonb a {

padding: 4px;

text-decoration: none;

display: block;

color: #ffffff; /*this is where you change the button font color*/

background-color: #DF0101;

border-top: solid #000000;

border-left: none;

border-bottom: solid #000000;

border-right: none;

}

/*this part is how the buttons look, once the pointer passes over them. */

.ahousebutton a:hover {

color: #ffff99; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #FA5858;

border-top:  solid #000000;

border-left: none;

border-bottom:  none;

border-right: none;

}

/*this part is how the buttons look, once the pointer passes over them. This is for a button on the bottom of the section*/

.ahousebuttonb a:hover {

color: #ffff99; /*-----this is where you change the button font color, when the button is hovered over*/

background-color: #FA5858;

border-top:  solid #000000;

border-left: none;

border-bottom:  solid #000000;

border-right: none;

}



