.btn,
.f-pwd-submit input,
.f-submit-unit button {
	background-color: #F5F5F5;
	background-image: -webkit-linear-gradient(#FFFFFF, #EEEEEE);
	background-image: linear-gradient(bottom, #FFFFFF, #EEEEEE);

    display: inline-block;
    border: 1px solid #CCC;
    color: #333333;
    cursor: pointer;
    padding: 5px 15px;
    text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
}

.btn:hover,
.btn:focus,
.btn:active,
.f-pwd-submit input:hover,
.f-pwd-submit input:focus,
.f-pwd-submit input:active,
.f-submit-unit button:hover,
.f-submit-unit button:focus,
.f-submit-unit button:active {
	text-decoration: none;
	outline: 0;
}

.btn:active {
	box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.2);
}



/* INVISIBLE BUTTONS ( for layout matching )
------------------------------------------------*/

.btn-invisible {
	border: 1px solid transparent !important;
	background: transparent !important;
	box-shadow: none !important;
	text-shadow: none !important;
	padding: 10px !important;
}

/* GOOD BUTTONS
------------------------------------------------*/

.btn-green,
.btn-good,
.btn-confirm {
	background: #5CB85C;
	background-image: -webkit-linear-gradient(#5CB85C, #46A246);
	background-image: linear-gradient(#5CB85C, #46A246);
	border-color: #279727;
	color: white;
}

.btn-green:hover,
.btn-good:hover,
.btn-confirm:hover,
.btn-green:focus,
.btn-good:focus,
.btn-confirm:focus {
	background-color: #43A843;
	background-image: -webkit-linear-gradient(#72CC72, #43A843);
	background-image: linear-gradient(#72CC72, #43A843);
}

.btn-green:active,
.btn-good:active,
.btn-confirm:active {
	background: #43A843;
}

.btn-green:disabled,
.btn-green.btn-disabled,
.btn-good:disabled,
.btn-good.btn-disabled,
.btn-confirm:disabled,
.btn-confirm.btn-disabled {
	background: #98C398;
	border-color: #7AB37A;
}

/* BAD BUTTONS
------------------------------------------------*/

.btn-red,
.btn-bad,
.btn-destroy,
.btn-danger {
	background: #E74343;
	background-image: -webkit-linear-gradient(#E74343, #E74343);
	background-image: linear-gradient(#E74343, #E74343);
	border-color: #B60E0E;
	color: white;
}

.btn-red:hover,
.btn-bad:hover,
.btn-danger:hover,
.btn-destroy:hover,
.btn-red:focus,
.btn-bad:focus,
.btn-destroy:focus,
.btn-danger:focus {
	background-color: #DF0404;
	background-image: -webkit-linear-gradient(#EE5F5F, #DA2D2D);
	background-image: linear-gradient(#EE5F5F, #DA2D2D);
}

.btn-red:active,
.btn-bad:active,
.btn-destroy:active,
.btn-danger:active {
	background: #DF0404;
}

.btn-red:disabled,
.btn-red.btn-disabled,
.btn-bad:disabled,
.btn-bad.btn-disabled,
.btn-destroy:disabled,
.btn-destroy.btn-disabled,
.btn-danger:disabled,
.btn-danger.btn-disabled {
	background: #DD8686;
	border-color: #C26262;
}

/* WARN BUTTONS
------------------------------------------------*/

.btn-yellow,
.btn-warn {
	background: #F8B918;
	background-image: -webkit-linear-gradient(#F3C44D, #EEAB00);
	background-image: linear-gradient(#F3C44D, #EEAB00);
	border-color: #DDA108;
	color: white;
}

.btn-warn:hover,
.btn-yellow:hover,
.btn-yellow:focus,
.btn-warn:focus {
	background-color: #E98900;
	background-image: -webkit-linear-gradient(#F3C44D, #EEAB00);
	background-image: linear-gradient(#F3C44D, #EEAB00);
}

.btn-yellow:active,
.btn-warn:active {
	background: #EEAB00;
}

.btn-yellow:disabled,
.btn-yellow.btn-disabled,
.btn-warn:disabled,
.btn-warn.btn-disabled {
	background: #ECC48B;
	border-color: #CFA160;
}

/* INFO BUTTONS
------------------------------------------------*/

.btn-blue,
.btn-info {
	background: #00AEFF;
	background-image: -webkit-linear-gradient(#00AEFF, #009BE4);
	background-image: linear-gradient(#00AEFF, #009BE4);
	border-color: #0087C5;
	color: white;
}

.btn-info:hover,
.btn-blue:hover,
.btn-blue:focus,
.btn-info:focus {
	background-color: #0098DF;
	background-image: -webkit-linear-gradient(#2DBCFF, #0093D8);
	background-image: linear-gradient(#2DBCFF, #0093D8);
}

.btn-blue:active,
.btn-info:active {
	background: #0098DF;
}

.btn-blue:disabled,
.btn-blue.btn-disabled,
.btn-info:disabled,
.btn-info.btn-disabled {
	background: #8DDAFD;
	border-color: #7EC6E7;
}

/* DISABLED BUTTONS
------------------------------------------------*/

btn:disabled,
.btn-disabled {
	background: #E6E6E6;
}

btn:disabled,
.btn-disabled,
btn:disabled:hover,
.btn-disabled:hover,
btn:disabled:focus,
.btn-disabled:focus,
btn:disabled:active,
.btn-disabled:active {
	cursor: default;
	box-shadow: none;
}

/* BUTTON SIZES
------------------------------------------------*/

.btn-s,
.btn-small {
	padding: 2px 10px;
  	font-size: 0.9em
}

.btn-l,
.btn-large {
	font-size: 1.2em;
	padding: 10px 20px;
}

.btn-xl,
.btn-huge {
	padding: 15px 30px;
	font-size: 1.6em;
}

.btn-xxl {
	padding: 25px 40px;
  	font-size: 2em;
}

.btn-block {
	display: block;
	text-align: center;
}


/* BUTTON GROUPS
------------------------------------------------*/

.btn-group .btn {
	border-radius: 0px;
	display: inline-block;
	margin-left: -4px;
}

.btn-group .btn:first-child {
	border-radius: 4px 0px 0px 4px;
	margin-left: 0;
}

.btn-group .btn:last-child {
	border-radius: 0px 4px 4px 0px;
}

.btn-group .btn:first-child:last-child {
	border-radius: 4px;
}