/***
*	Author: Brian Veitch
*	Stylesheet for Loan Installment Calculator
*
***/


body {text-align:center;}



#container {

	width: 650px; 
	height: 600px;
	margin: 0px auto;
	padding:10px;

	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	color: #000000;
	text-decoration: none;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
	
	border: 1px solid #999;
	border: inset 1px solid #333;
	
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;

	
	
}

.input{
	width:100px;
	position:relative;
	padding-left:5px;
	margin-top: 5px;
	background:#F0F0F0;
	color:#000;
	font-family: Tahoma, Geneva, sans-serif;
	height:30px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	border: 1p solid #999;
	cursor: pointer;
}
.input:hover {
	background:#fff;
	color:#000000;
}

.inputs {
	border: 1px solid #999;
	height: 20px;
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	padding-left:10px;
	width:100px;
}

#loan_src {

	float: left;
	width: 280px;
	height: 200px;
	margin-bottom: 10px;
	


}

#loan_info {

	float: right;
	width: 300px;
	height: 210px;
	margin-bottom: 10px;
	

}


#table_header {

	clear:both;
	width: 600px;
	height: 50px;
	float:left;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border: 1px solid #999;
	

}


#table {

	overflow: auto;
	width: 600px;
	height: 200px;
	
	
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border: 1px solid #999;


}

.table_info{
	border-bottom: 1px solid #000000;
}

table { align:center; font-family: sans-serif; font-size: 13px; }


#dialog{
	position:relative;
	top: 0%;
	right: 10%;
	font-size: 1.15em;
    padding: 1em;
    text-align: left;
    width: auto;
	opacity: 0.95;
	background-color:#F0F0F0;
	display:none;
	color: black;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	border: 1px solid #999;
}

#amt {
	display:none;
}
#numMonths{
	display:none;
}
#interestRate {
	display:none;
}
#extraPayment {
	display:none;
}













