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

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

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

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

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

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

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

table.amort_schedule_header_mortgage td{
	color: #fff;
}

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

