/* buttons
-------------------------------------*/
.buttons a, .buttons button {
	display:block;
	float:left;
	margin:0 7px 0 0;
	background-color:#7eb239;
	border:1px solid #363636;
  
	font-family:verdana, sans-serif;
	font-size:12px;
	line-height:1.4em;
	text-decoration:none;
	font-weight:bold;
	color:#fff;
	cursor:pointer;
	padding:5px 10px 6px 7px; /* links */
}
.buttons button {
	width:auto;
	overflow:visible;
	padding:4px 10px 3px 7px; /* ie6 */
}
.buttons button[type] {
	padding:5px 10px 5px 7px; /* firefox */
	line-height:17px; /* safari */
}
*:first-child+html button[type] {
	padding:4px 10px 3px 7px; /* ie7 */
}
.buttons button img, .buttons a img {
	margin:0 3px -3px 0 !important;
	padding:0;
	border:none;
	width:16px;
	height:16px;
}

/* specific styling
-------------------------------------*/
button:hover, .buttons a:hover {
	background-color:#dff4ff;
	border:1px solid #c2e1ef;
	color:#336699;
}
.buttons a:active {
	background-color:#6299c5;
	border:1px solid #6299c5;
	color:#fff;
}
button.positive, .buttons a.positive {
	color:#FFF;
}
.buttons a.positive:hover, button.positive:hover {
	background-color:#efefef;
	border:1px solid #c6d880;
	color:#7eb239;
}
.buttons a.positive:active {
	background-color:#529214;
	border:1px solid #529214;
	color:#fff;
}
.buttons a.negative, button.negative {
	color:#d12f19;
}
.buttons a.negative:hover, button.negative:hover {
	background:#fbe3e4;
	border:1px solid #fbc2c4;
	color:#d12f19;
}
.buttons a.negative:active {
	background-color:#d12f19;
	border:1px solid #d12f19;
	color:#fff;
}
.buttons button.secondary {
	border:none;
	background-color:#fff;
	color:#999;
}