* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}
body {
	background:#020202 url(../../images/main_bg.jpg) repeat-y center;
	text-align: center;
	font-family: Trebuchet MS;
	font-size: 12px;
	padding: 30px 0;
}
body,a {
	color: #333;
}
#wrapper {
	width: 220px;
	margin: 0 auto;
}
#calculator {
	width: 100%;
	height: 220px;
	font-size: 16px;
}
#calculatorResult {
	font-size: 20px;
	width: 205px;
	padding: 5px;
	border: solid 1px #111;
	background: #333;
	color:#fff;
	margin-bottom: 10px;	
	float: left;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
#calculatorKeyboard {
	width: 100%;
	float: left;
	list-style: none;
}
#calculatorKeyboard li {
	display: block;
	color: #555555;
	float: left;
	padding: 13px 0 0 0;
	width: 50px;
	height: 27px;
	border: solid 1px #111;
	cursor: pointer;
	margin: 0 3px 3px 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: url('../images/button.png') repeat-x 0 0 #66adff;
}
#calculatorKeyboard li.double {
	width: 105px;
}
#calculatorKeyboard li.operator {
	background: url('../images/button.png') repeat-x 0 -50px #66adff;
}
#calculatorKeyboard li.summary {
	background: url('../images/button.png') repeat-x 0 -100px #66adff;
}
#calculatorKeyboard li:hover {
	background-image: none;
}
#calculatorKeyboard li.active {
	background: url('../images/button.png') repeat-x 0 -150px #66adff;
}