/*
CFD Version: Beta .33

This file is part of CSSButtons.

CSSButtons is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

CSSButtons is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with CSSButtons. If not, see <http://www.gnu.org/licenses/>.

------------------------------------------------------------------------------------------------------------------------------------------------------------------
BUTTON DEFINITION CLASS*/
BUTTON.cssbutton
{
	border: 0;
	text-align: center;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
BUTTON.cssbutton SPAN
{
	font: bold 12px/23px Verdana;
	color: #666;
	display: block;
	cursor: pointer;
	position: relative;
	white-space: nowrap;
	height: 23px;
	margin-left: 1px;
	padding: 0 10px 0 9px;
}
/*padding-left = (padding-right - margin-left) NOTE: Firefox renders this different
------------------------------------------------------------------------------------------------------------------------------------------------------------------
LINK DEFINITION CLASS*/
A.cssbutton
{
	border: 0;
	float: left;
	text-align: center;
	padding: 0px 0 0 8px;
	cursor: pointer;
	text-decoration: none;
	margin-top: -1px;
}
A.cssbutton SPAN
{
	font: bold 12px/23px Verdana;
	color: #666;
	display: block;
	float: left;
	white-space: nowrap;
	height: 23px;
	margin-left: 1px;
	padding: 0 10px 0 0px;
}
/*padding-left = (padding-right - margin-left) NOTE: Firefox renders this different
------------------------------------------------------------------------------------------------------------------------------------------------------------------
INPUT DEFINITION CLASS*/
DIV.cssbutton
{
	border: 0;
	float: left;
	text-align: center;
	padding: 0;
	margin: 0;
	cursor: pointer;
}
DIV.cssbutton INPUT
{
	border: 0;
	font: bold 12px/23px Verdana;
	color: #666;
	display: block;
	cursor: pointer;
	float: left;
	white-space: nowrap;
	height: 23px;
	margin-left: 1px;
	padding: 0 10px 0 9px;
}
/*padding-left = (padding-right - margin-left) NOTE: Firefox renders this different*/
