@charset "utf-8";
/* CSS Document */
.clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.orangebutton {
    background: transparent url('../images/orange_button_a.gif') no-repeat scroll top right;
    color: #ffffff;
	font-weight:bold;
    display: block;
    float: left;
    font: normal 12px arial, sans-serif;
    height: 29px;
    margin-right: 6px;
    padding-right: 16px; /* sliding doors padding */
    text-decoration: none;
}

a.orangebutton span {
    background: transparent url('../images/orange_button_span.gif') no-repeat;
    display: block;
    line-height: 19px;
    padding: 5px 0 5px 18px;
} 
a.orangebutton:hover {
    background-position: bottom right;
    color: #ffffff;
    outline: none; /* hide dotted outline in Firefox */
}

a.orangebutton:hover span {
    background-position: bottom left;
    padding: 6px 0 4px 18px; /* push text down 1px */
} 
/*green button */
a.greenbutton {
    background: transparent url('../images/green-button-a.gif') no-repeat scroll top right;
    color: #ffffff;
	font-weight:bold;
    display: block;
    float: left;
    font: normal 12px arial, sans-serif;
    height: 29px;
    margin-right: 6px;
    padding-right: 14px; /* sliding doors padding */
    text-decoration: none;
}

a.greenbutton span {
    background: transparent url('../images/green-button-span.gif') no-repeat;
    display: block;
    line-height: 19px;
    padding: 5px 0 5px 18px;
} 
a.greenbutton:hover {
    background-position: bottom right;
    color: #ffffff;
    outline: none; /* hide dotted outline in Firefox */
}

a.greenbutton:hover span {
    background-position: bottom left;
    padding: 6px 0 4px 18px; /* push text down 1px */
} 