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

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

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

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

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

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

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

table.amort_schedule_header_mortgage td{
	color: #fff;
}

.gradient_mortgage {
	background: rgb(125,185,232); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(125,185,232,1) 0%, rgba(32,124,202,1) 49%, rgba(43,136,217,1) 50%, rgba(59,103,158,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(125,185,232,1)), color-stop(49%,rgba(32,124,202,1)), color-stop(50%,rgba(43,136,217,1)), color-stop(100%,rgba(59,103,158,1))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(125,185,232,1) 0%,rgba(32,124,202,1) 49%,rgba(43,136,217,1) 50%,rgba(59,103,158,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(125,185,232,1) 0%,rgba(32,124,202,1) 49%,rgba(43,136,217,1) 50%,rgba(59,103,158,1) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(125,185,232,1) 0%,rgba(32,124,202,1) 49%,rgba(43,136,217,1) 50%,rgba(59,103,158,1) 100%); /* IE10+ */
	background: linear-gradient(top, rgba(125,185,232,1) 0%,rgba(32,124,202,1) 49%,rgba(43,136,217,1) 50%,rgba(59,103,158,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7db9e8', endColorstr='#3b679e',GradientType=0 ); /* IE6-9 */
}

