﻿@charset "utf-8";
	
/* CSS Document */

body {
	margin:0;
	padding:0;
	border:0;
}

#calc {
	background:url("images/calc-bg.png") 0 0 no-repeat;
	width: 320px;
	height: 700px;
	font-family: Verdana, Geneva, sans-serif;
}
#calc fieldset {
	cursor: default;
	border: 0;
	width: 300px;
	padding: 60px 20px;
}
#calc legend {
	height: 30px;
	line-height:30px;
	display: none;
}
#calc p {
	display:block;
	clear: both;
	height: 55px;
}
#calc label {
	margin: 0 5px 10px 0;
	cursor:pointer;
	float: left;
	display: block;
}
#calc span {
	display:none
}
#calc input {
	font-weight: bold;
	font-size: 18px;
	color: #444;
	width: 200px;
	height: 57px;
	display: block;
	line-height: 57px;
	float: left;
	padding-left:20px;
	border: 0;
	background: url("images/calc-input.png") top left no-repeat;
	cursor:pointer
}
#calc .submit {
	background: url("images/calc-submit.png") top left no-repeat;
	cursor: pointer;
	width: 120px;
	padding:0;
	margin: 0;
	height: 57px;
	position: relative;
	top: 12px;
	left: 100px;
	float: none;
}
#calc-results {
	position:relative;
	top: -175px;
	 left: 39px;
	font-size: 14px;
	 font-weight:bold;
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
}

#calc-results2 {
	position:relative;
	top: -100px;
	 left: 39px;
	font-size: 14px;
	 font-weight:bold;
	color: #000;
	font-family: Verdana, Geneva, sans-serif;
}


/* simple css-based tooltip */
.tooltip {
	background-color:#000;
	font-family: Verdana, Geneva, sans-serif;
	border:1px solid #fff;
	padding:5px 10px;
	width:220px;
	display:none;
	color:#fff;
	text-align:left;
	font-size:12px;

	/* outline radius for mozilla/firefox only */
	-moz-box-shadow:0 0 10px #000;
	
	-webkit-box-shadow:0 0 10px #000;
	
}

/* tooltip styling */
.tooltip2 {	
		display:none;
		background:#222;
		height:auto;
		padding:10px 20px 20px 20px;
		width:310px;
		font-size:13px;
		color:#fff;
	 	/* outline radius for mozilla/firefox only */
	-moz-box-shadow:0 0 10px #000;
	
	-webkit-box-shadow:0 0 10px #000;
}
.tooltip2 td {
	border-bottom:1px solid #666;
 }
.tooltip2 p {
	height:20px !important;
}

#patch {	
		position:absolute;
		top:0px;
		left:0px;
}
