#calculator { width:75%; margin:0 auto; }
#calculator form fieldset { border:solid 1px #C9DBE9; background:#E7EFF5; padding-left:5px; }
#calculator form legend { font:bold 15px Arial; color:#E14900; }
#calculator form label { display:block; float:left; width:75%; padding:0; margin:3px 5px 0 0; text-align:right; font-weight:bold; }
#calculator form input[type=text] { width: 15%; }
#calculator .question { margin:0 0 5px 10px; padding:2px; border:solid 1px #B8CFE2; height:18px; }
#calculator .result { margin:0 0 5px 10px; padding:3px; color:#E14900; background-color:#E7EFF5; font:bold 14px Arial; border:0px; height:18px; }
#calculator p { color:#666666; display:block; font-size:12px; font-weight:normal; margin:0 0 8px 0; }


/*tool tips*/
.tooltip { border-bottom: 1px dotted #000000; color: #000000; outline: none; cursor: help; text-decoration: none; position: relative; }
.tooltip span { margin-left: -999em; position: absolute; }
.tooltip:hover span {
			border-radius: 5px 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px; 
			box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1); -webkit-box-shadow: 5px 5px rgba(0, 0, 0, 0.1); -moz-box-shadow: 5px 5px rgba(0, 0, 0, 0.1);
			position: absolute; left: 1em; top: 2em; z-index: 99;
			margin-left: 0; width: 275px;
		}
.classic { padding: 0.8em 1em; background: #E9E9E9; border: 1px solid #666; font-size:12px; text-align:left; }
.classic strong { display: block; padding-bottom: 5px; font-weight: bold; }
* html a:hover { background: transparent; }


/*  Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 768px) and (max-width: 959px) {
	#calculator { width:90%; margin:0 auto; }
}

/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 767px) {
	#calculator { width:90%; margin:0 auto; }
}

/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
	#calculator { width:100%; margin:0 auto; }
}