/*
	 CSS-Tricks Example
	 by Chris Coyier
	 http://css-tricks.com
*/


form#nicecalc
{
	background: #fff url('calc-bg.png') no-repeat;
	background-repeat: no-repeat;
	position: relative;
}

#nicecalc #display
{
	background: none; 
	border: none; 
	position: absolute; 
	top: 15px; left: 15px; width: 197px;
	text-align: right;
	font: 35px "Arial Black", Arial, Sans-Serif;
	padding: 10 20px;
	font-size: 30px;
}

#nicecalc #buttons
{
	margin: 70px 0 0 15px;
	padding-bottom: 100px;
}

#nicecalc .button
{
	background: #ccc url('button-bg.png') no-repeat;
	text-align: center;
	width: 44px;
	height: 44px;
	font-size: 1.5em;
	margin: 0 3px 3px 0;
	border: 0;
	outline: 0;
}

#nicecalc .bnum
{
	background: 
}


