#calculator			{
  width: 266px; height: 400px;
  background: url(../../../images/calc/calc-bg.png) no-repeat;
	position: absolute;
  top:130px;
  left:230px;
  display: none;
  z-index:1000;
}

div#calculator h1					{ font-size: 22px; }
div#calculator p					{ font: 14px Arial, Sans-Serif; }
div#calculator a					{ font: 25px "Arial Black", Arial, Sans-Serif; color: black; text-decoration: none; outline: none; }

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

.num-button			{ width: 44px; height: 44px; padding: 3px 0 0 0; text-align: center;
	 			      background: url(../../../images/calc/button-bg.png) no-repeat;
					  position: absolute; display: block; }
.clear-button		{ width: 44px; height: 44px; padding: 3px 0 0 0; text-align: center;
	 			      background: url(../../../images/calc/button-bg.png) no-repeat;
					  position: absolute; display: block; }
.function-button    { width: 44px; height: 44px; padding: 3px 0 0 0; text-align: center;
	 			      background: url(../../../images/calc/function-button-bg.png) no-repeat;
					  position: absolute; display: block; }
.function-button:active,
.pendingFunction    { background-position: bottom left; }

.seven				{ top: 86px; left: 15px; }
.eight				{ top: 86px; left: 66px; }
.nine				{ top: 86px; left: 118px; }

.four				{ top: 137px; left: 15px; }
.five				{ top: 137px; left: 66px; }
.six				{ top: 137px; left: 118px; }

.one				{ top: 188px; left: 15px; }
.two				{ top: 188px; left: 66px; }
.three				{ top: 188px; left: 118px; }

.zero				{ top: 237px; left: 15px; }
.dot				{ top: 237px; left: 66px; }
.clear				{ top: 237px; left: 118px; }

.add				{ top: 86px; left: 169px; }
.subtract			{ top: 137px; left: 169px; }
.multiply			{ top: 188px; left: 169px; }
.divide				{ top: 237px; left: 169px; }

.equals-button		{ width: 206px; height: 42px; text-align: center; top: 293px; left: 15px;
	 				  background: url(../../../images/calc/equals-bg.png) no-repeat; position: absolute;
				      display: block; }

#closer				{ position: absolute; top: -8px; left: -9px; }
