/*  --------------------------- */
/*  Mortgage Calculator 		*/
/*  --------------------------- */

/* title */
.title_mortgage span {
	color: white;
}

/* buttons */
input.clear_button_mortgage, input.calculate_button_mortgage {
	border: 2px solid #ccc;
	background-color:  #005700;
	color: #fff;
	padding: 3px 5px 3px 5px;
}

input.calculate_button_mortgage:hover, input.clear_button_mortgage:hover, input.amort_results_button_mortgage:hover {
	background-color:  #008a00;
}

input.calculate_button_mortgage:focus, input.clear_button_mortgage:focus, input.amort_results_button_mortgage:focus {
	background-color:  #008a00;
}

/* pop-up table header */
.amort_schedule_mortgage th {
	font-family: helvetica, arial;
	padding: 0 5px 0 5px;
	color: #fff;
}

.amort_results_button_mortgage {
	background-color: #005700;
	color: #fff;	
}

.amort_results_button_mortgage:hover {
	background-color: #008a00;
	color: #fff;
}

.amort_results_button_mortgage:focus {
	background-color: #008a00;
	color: #fff;
}

table.amort_schedule_header_mortgage td{
	color: #fff;
}

.gradient_mortgage {
	background: rgb(180,221,180); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(180,221,180,1) 0%, rgba(131,199,131,1) 18%, rgba(82,177,82,1) 32%, rgba(0,138,0,1) 54%, rgba(0,87,0,1) 70%, rgba(0,36,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(180,221,180,1)), color-stop(18%,rgba(131,199,131,1)), color-stop(32%,rgba(82,177,82,1)), color-stop(54%,rgba(0,138,0,1)), color-stop(70%,rgba(0,87,0,1)), color-stop(100%,rgba(0,36,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(180,221,180,1) 0%,rgba(131,199,131,1) 18%,rgba(82,177,82,1) 32%,rgba(0,138,0,1) 54%,rgba(0,87,0,1) 70%,rgba(0,36,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(180,221,180,1) 0%,rgba(131,199,131,1) 18%,rgba(82,177,82,1) 32%,rgba(0,138,0,1) 54%,rgba(0,87,0,1) 70%,rgba(0,36,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(180,221,180,1) 0%,rgba(131,199,131,1) 18%,rgba(82,177,82,1) 32%,rgba(0,138,0,1) 54%,rgba(0,87,0,1) 70%,rgba(0,36,0,1) 100%); /* IE10+ */
	background: linear-gradient(top, rgba(180,221,180,1) 0%,rgba(131,199,131,1) 18%,rgba(82,177,82,1) 32%,rgba(0,138,0,1) 54%,rgba(0,87,0,1) 70%,rgba(0,36,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b4ddb4', endColorstr='#002400',GradientType=0 ); /* IE6-9 */
}

