/*--- Copyright © 1998, 2011, Oracle and/or its affiliates.  All rights reserved. ---*/

.clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.button {
    background: transparent url('../img/bg_button_a.gif') no-repeat scroll top right;
    color: #444;
    cursor: default;
    display: block;
    float: left;
    font: bold 7.7pt Microsoft Sans Serif;
    height: 19px;
    margin-right: 3px;
    padding-right: 10px; /* sliding doors padding */
    text-decoration: none;
}

a.button span {
    background: transparent url('../img/bg_button_span.gif') no-repeat;
    display: block;
    line-height: 9px;
    padding: 5px 0 5px 10px;
} 

a.button:hover {
    background-position: bottom right;
    color: #000;
    outline: none; /* hide dotted outline in Firefox */
}

a.button:hover span {
    background-position: bottom left;
    padding: 6px 0 4px 10px; /* push text down 1px */
} 