/***

from http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html
changed a bit (small button, transparency)

***/

a.button, a.buttonsmall, #main a.button, #main a.buttonsmall {
	color: #444;
	display: block;
	float: left;
	text-decoration: none;
	border: 0;
	outline: 0;
    white-space: nowrap;
}

a.button, #main a.button {
	background: transparent url('/images/button/bg_button_a_t.png') no-repeat scroll top right;
	font: normal 12px arial, sans-serif;
	height: 24px;
	margin-right: 6px;
	padding-right: 18px; /* sliding doors padding */
}

a.button span, #main a.button span {
	background: transparent url('/images/button/bg_button_span_t.png') no-repeat;
	display: block;
	line-height: 14px;
	padding: 5px 0 5px 18px;
}

a.buttonsmall, #main a.buttonsmall {
	background: transparent url('/images/button/bg_button_a_t_small.png') no-repeat scroll top right;
	font: normal 10px arial, sans-serif;
	height: 20px;
	margin-right: 4px;
	padding-right: 15px; /* sliding doors padding */
}

a.buttonsmall span, #main a.buttonsmall span {
	background: transparent url('/images/button/bg_button_span_t_small.png') no-repeat;
	display: block;
	line-height: 10px;
	padding: 5px 0 5px 15px;
}

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

a.button:active span, #main a.button:active span {
	background-position: bottom left;
	padding: 6px 0 4px 18px; /* push text down 1px */
}

a.buttonsmall:active span, #main a.buttonsmall:active span {
	background-position: bottom left;
	padding: 6px 0 4px 15px; /* push text down 1px */
}