@charset "utf-8";
/* CSS Document */
/************************************/
/* authored by imperial software systems - JO   */
/* edit as you see fit to match corporate brand */

/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size:100%;
	font-family: inherit;
	vertical-align: baseline;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1em;
	color: black;
	background: white;
	font-size:62.5%;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}

/* calculator case - layout and position of entire calculator */
#calculator_case {
	width:600px;
	margin:0 0 0 50px;
	padding:26px 0 0 0;


}

/* meta calculator info */
h1#calculator_name {
	background:url(calc_icon.gif) no-repeat 10px;
	font-family:Georgia;
	font-weight:bold;
	font-size:2.4em;
	line-height:2.6em;
	color:#666;
	width:450px;
	padding-left:70px;
	padding-top:5px;
	margin:0 0 15px 10px;
}
p.notice {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1.2em;
	color:#666;
	line-height:1.3em;
	margin-bottom:1em;
}
p.notice strong {
	font-weight:bold;
}
p.notice em {
	font-style:italic;
}
p.notice a, p.notice a:visited {
	color:#2b67ad;
	text-decoration:none;
}
p.notice a:hover, p.notice a:visited:hover {
	text-decoration:underline;
}

/* calculator app styles */

#calculator_app {
	width:600px;
	margin:20px 5px 20px 5px;
}

/* form elements */

fieldset {
	width:500px;
	border:solid 1px #2b67ad;
	padding:0 5px 14px 5px;
	
}

legend {
	font-family:Palatino, "Times New Roman", Times, serif;
	font-size:1.6em;
	font-style:italic;
	line-height:1.8em;
	color:#009271;
}

input {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1.1em;
	line-height:1.2em;
	vertical-align:middle;
}
select {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:1.1em;
	width:250px;
}
table {
	width:500px;
	background-color:#bcd4f0;
	border:solid 1px #2b67ad;
	border-collapse:collapse;
	
}
td {
	border-collapse:collapse;
	font-size:1.1em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#333;
	line-height:1.2em;
	vertical-align:baseline;
	padding:3px 0 3px 0;
}
td.label {
	padding-left:7px;
	width:300px;
}
td.discount {
	padding-left:3px;
	font-size:1.1em;
	line-height:1.2em;
	font-style:italic;
	background-color:#2b67ad;
	color:#eee;
	text-align:center;
}
td.date {
	padding-left:12px;
}
span.note {
	line-height:1.1em;
	font-size:1.0em;
	font-style:italic;
}
#buttons {
	background:#fff;
	border:none;
	font-size:1.1em;
}
#buttons tr td {
	text-align:center;
}

/* attribution styles */
p.attribution {
	font-size:1.0em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#333;
	margin:15px 0 45px 62px;
	letter-spacing:.2em;
}	
p.attribution a {
	color:#2b67ad;
	text-decoration:none;
}
p.attribution a:hover,
p.attribution a:visited:hover {
	text-decoration:underline;
}
p.print a {
	padding-left:4px;
}
p.print {
	width:200px;
	position:relative;
	float:right;
}
/* Amortization Calculator Styles */
#am-table {
	width: 100%;
	margin-bottom: 20px;
	}
#am-table table {
	width: 80%;
	margin: 0 auto;
	border: none;
	}
#am-table td {
	}
.button {
	font-size: 10px;
	display: inline;
	margin-left: 60px;
	cursor:pointer;
	border:outset 1px #ccc;
	background:#999;
	color: #999999;
	font-weight:bold;
	padding: 1px 2px;
	background: url(buttonbg.png) repeat-x left top;
}
.txtbox {
	width: 100px;
	margin-left: 10px;
	}
.right {
	text-align:right;
	}
.alt-right {
	text-align:right;
	}