/*
	Generic base classes for buttons
*/
a.btnBase, input.btnBase {
	float:left;
	display:block;
	font-weight:bold;
	text-decoration:none;
	text-align:center;
	padding:4px 5px;
	/*margin-bottom:2px;*/
}
a.btnBaseDisabled {
	color:#999;
	border-top:1px solid #e8e8e8;
	border-right:1px solid #d0d0d0;
	border-bottom:1px solid #d0d0d0;
	border-left:1px solid #e8e8e8;
	background:#e1e1e1 url(../img/buttons/button_bg_big_grey_inactive.gif) repeat-x;
	cursor: default;
}
a.btnBase:hover, input.btnBase:hover { 
	text-decoration:underline;
	cursor:pointer;
}
a.btnBaseDisabled:hover {
	text-decoration:none;
	cursor: default;
}

/*
	Specific button classes
*/
a.btnPrimary, input.btnPrimary {	
	color:#111;
	border-top:1px solid #ff8d1d;
	border-right:1px solid #c34a00;
	border-bottom:1px solid #c34a00;
	border-left:1px solid #ff8d1d;
	background:#ff6100 url(../img/buttons/button_bg_big.gif) repeat-x;
}
a.btnSecondary {	
	color:#333;
	border-top:1px solid #ffc083;
	border-right:1px solid #de9c73;
	border-bottom:1px solid #de9c73;
	border-left:1px solid #ffc083;
	background:#ffA873 url(../img/buttons/button_bg_big_inactive.gif) repeat-x;
}

/* input and textarea */ 
input.active {
	background-color:#fcc28a;
}
textarea.active {
	background-color:#fcc28a;
}
.error {
	background-image:url("../img/message_grad.gif");
	background-repeat: repeat-x;
	background-position: top;
}