Code:
.leftBoxHeading, .leftBoxHeading a, .leftBoxHeading label, .rightBoxHeading label,
.rightBoxHeading, .rightBoxHeading a {
font-size: 1.7em;
font-family: HaloHandletter;
color: #fbe9bb;
background-color: transparent;
text-align: center;
margin: 0em;
border-bottom: 0px solid #888;
padding: 0.2em 0.2em;
background-color: transparent;
/*background-image: url(../images/tile_back.gif);*/
}
Separate into:
Code:
.leftBoxHeading, .rightBoxHeading {
font-size: 1.7em;
font-family: HaloHandletter;
color: #fbe9bb;
background-color: transparent;
text-align: center;
margin: 0em;
border-bottom: 0px solid #888;
padding: 0.2em 0.2em;
background-color: transparent;
/*background-image: url(../images/tile_back.gif);*/
}
.leftBoxHeading a, .leftBoxHeading label, .rightBoxHeading label, .rightBoxHeading a {
font-size: 1em;
color: #fbe9bb;
margin: 0;
padding: 0;
}
Also, remove the font-size from these rules:
Code:
.leftBoxHeading a:hover, .rightBoxHeading a:hover {
color: #FF9400;
text-decoration: none;
font-size: 1.7em;
}
.rightBoxHeading a:visited, .leftBoxHeading a:visited, .centerBoxHeading a:visited {
color: #fbe9bb;
font-size: 1.7em;
}