/* CSS Document */
.solidblockmenu {
font-family: "Times New Roman", Times, serif,;
}
.solidblockmenu ul {
text-align: center; /* We are using text-align: center on ul to horizontally align our menu to the page. If you want the menu aligned left or right just change text-align to either left or right */
}
.solidblockmenu li {
display: inline; /* Menu links are horizontally aligned using display: inline */
}
.solidblockmenu li a {
padding: 0px 0 0px 10px; /* Display: block won't work in this example, instead we are using padding to make the hole tab a clickable link */
color: #5d5350;
text-decoration: none;
font-weight: bold;
background: url(/examples/images/tabbed-menu-left.gif) no-repeat left top; /* Rollover effect using "Fast rollovers without preload" concept for the left part of the tab */
font-size: 16px;
}


