.clear { /* generic container (i.e. div) for floating btn_lgs */
    overflow: hidden;
    width: 100%;
}


a.btn_lg {
    background: transparent url('btn_a.gif') no-repeat scroll top right;
    color: #444;
    display: block;
    float: left;
    font: normal 12px arial, sans-serif;
    height: 33px;
    margin-right: 6px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
}

a.btn_lg span {
    background: transparent url('btn_span.gif') no-repeat;
    display: block;
    line-height: 21px;
    padding: 6px 0 6px 24px;

} 

/*

Note: Make sure the span's vertical padding (5 + 5) and line-height (14) amount to the total height of the btn_lg (24).
Using a different padding, means setting a different height.

*/

a.btn_lg:hover {
	text_decoration: none;
	}
	
a.btn_lg:active {
    background-position: bottom right;
    color: #000;
    outline: none; /* hide dotted outline in Firefox */
}

a.btn_lg:active span {
    background-position: bottom left;
    padding: 7px 0 5px 24px; /* push text down 1px */
} 


a.btn_sm {
    background: transparent url('btn_a_sm.gif') no-repeat scroll top right;
    color: #444;
    display: block;
    float: left;
    font: normal 12px arial, sans-serif;
/*    height: 24px;
    margin-right: 6px;
    padding-right: 18px;
*/
    height: 16px;
    margin-right: 3px;
    padding-right: 9px; /* sliding doors padding */
    text-decoration: none;
}

a.btn_sm:hover {
	text_decoration: none;
	}	

a.btn_sm span {
    background: transparent url('btn_span_sm.gif') no-repeat;
    display: block;
    line-height: 10px;
    padding: 3px 0 3px 10px;
/*  line-height: 14px;
    padding: 5px 0 5px 18px;
*/

/*

Note: Make sure the span's vertical padding (5 + 5) and line-height (14) amount to the total height of the btn_sm (24).
Using a different padding, means setting a different height.

*/

} 

a.btn_sm:active {
    background-position: bottom right;
    color: #000;
    outline: none; /* hide dotted outline in Firefox */
}

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

