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

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

/* buttons */
input.clear_button_mortgage, input.calculate_button_mortgage {
	border: 2px solid #ccc;
	background-color:  #FF0000;
	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:  #CC0000;
}

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

/* 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: #FF0000;
	color: #fff;	
}

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

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

table.amort_schedule_header_mortgage td{
	color: #fff;
}

.gradient_mortgage {
	background: rgb(255,0,0); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(255,0,0,1) 0%, rgba(255,0,0,1) 47%, rgba(204,0,0,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,0,0,1)), color-stop(47%,rgba(255,0,0,1)), color-stop(100%,rgba(204,0,0,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 47%,rgba(204,0,0,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 47%,rgba(204,0,0,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 47%,rgba(204,0,0,1) 100%); /* IE10+ */
	background: linear-gradient(top, rgba(255,0,0,1) 0%,rgba(255,0,0,1) 47%,rgba(204,0,0,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#cc0000',GradientType=0 ); /* IE6-9 */
}

