/* CSS Document */
/* button styles */
a.formbutton {
    background: transparent url('/images/forms/button_a.gif') no-repeat scroll top right;
    color: #0B333C;
    display: inline;
    /*float: left;*/
    font: normal 12px arial, sans-serif;
    height: 22px;
    /*margin-right: 6px;*/
    padding-right: 11px; /* sliding doors padding */
    text-decoration: none;
	overflow:hidden;
	/*border: 1px solid red;*/
}

a.formbutton span {
    background: transparent url('/images/forms/button_span.gif') no-repeat scroll top left;
    display: block;
	color: #0B333C;
    line-height: 12px;
    padding: 5px 6px 5px 18px;
	font-weight:bold;
} 
a.formbutton:link {
    background-position: top right;
    outline: none; /* hide dotted outline in Firefox */
}
a.formbutton:link span {
    background-position: top left;
	line-height: 12px;
    /*padding: 5px 6px 4px 18px; /* push text down 1px */
}
a.formbutton:hover{
    background-position: center right;
    outline: none; /* hide dotted outline in Firefox */
}
a.formbutton:hover span {
    background-position: center left;
	line-height: 12px;
	outline: none; /* hide dotted outline in Firefox */
}
a.formbutton:active {
    background-position: bottom right;
    outline: none; /* hide dotted outline in Firefox */
}
a.formbutton:active span {
    background-position: bottom left;
	line-height: 12px;
    /*padding: 5px 6px 4px 18px; /* push text down 1px */
} 

