.button {
	border-radius: 2px;
	border: none;
	border-bottom: 2px rgba(0, 0, 0, 0.25) solid;
	cursor: pointer;
	display: inline-block;
	text-align: center;
	background: #D4D4D4;
	color: #222222 !important;
	padding: 1px 6px;
	margin: 2px 0px 1px 0px;
	line-height: 16px;
	white-space: nowrap;
}

.button img {
	vertical-align: bottom;
}

a.button, a.button:hover {
	text-decoration: none !important;
}

.button:hover, .button:focus {
	background: #C3C3C3;
}

.button.large {
	padding: 8px 10px;
	font-size: 18px;
	font-weight: bold;
	min-width: 140px;
}

a.button.large {
	min-width: 118px;
}

.button.cozy {
	padding: 6px;
}

.button.small {
	font-size: 10px;
	line-height: 14px;
	padding: 0px 4px;
}

.button.green {
	background: #309F35;
	color: #FFFFFF !important;
}

.button.green:hover, .button.green:focus {
	background: #307C34;
}

.button.orange {
	background: #FFCC00;
}

.button.orange:hover {
	background: #F89406;
}

.button.red {
	background: #D70000;
	color: #FFFFFF !important;
}

.button.red:hover, .button.red:focus {
	background: #B50000;
}

.button.blue {
	background: #336699;
	color: #FFFFFF !important;
}

.button.blue:hover {
	background: #225588;
}

.button.black {
	background: #333333;
	color: #FFFFFF !important;
}

.button.black:hover, .button.black:focus, .button.black.active {
	background: #222222;
}

.button.disabled, .button[disabled] {
	background: #D4D4D4 !important;
}

.button.disabled:hover, .button[disabled]:hover {
	background: #D4D4D4;
	cursor: default;
}

/* Buttonset */

.buttonset .button {
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	margin: 0px;
}

.buttonset .button:first-child {
	border-radius: 2px 0px 0px 2px;
	-moz-border-radius: 2px 0px 0px 2px;
	-webkit-border-radius: 2px 0px 0px 2px;
}

.buttonset .button:last-child {
	border-radius: 0px 2px 2px 0px;
	-moz-border-radius: 0px 2px 2px 0px;
	-webkit-border-radius: 0px 2px 2px 0px;
}

/* Pane */

.pane {
	display: none;
}

.pane.active {
	display: block;
}