@charset "utf-8";
/* CSS Document */

.clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.button {
    background: transparent url('images/bg_button_a.gif') no-repeat scroll top right;
    color: #fff;
    display: block;
    float: left;
	font-family:"Minion Pro";
    font-size:10pt; font-weight:normal;
    height: 19px;
    margin-right: 4px;
    padding-right: 15px; /* sliding doors padding */
    text-decoration: none;
    cursor:hand;
}

a.button span {
    background: transparent url('images/bg_button_span.gif') no-repeat;
    display: block;
    line-height: 9px;
    padding: 4px 0 6px 13px;
} 

a.button:active {
    background-position: bottom right;
    color: #fff;
    outline: none; /* hide dotted outline in Firefox */
}

a.button:active span {
    background-position: bottom left;
    padding: 4px 0 6px 13px; /* push text down 1px */
} 