<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

html, body {
	height:100%;
	width:100%;
	padding:0px;
	margin:0px;
	border:0px;
}
* {
    font-family: 'Roboto', Georgia, sans-serif;
	color:#4a565d;
}
#calculator {
	width: 180px;
	font-size: 15px;
	padding: 5px;
}
#calculator p {
	font-size: 12px;
    margin-bottom: 0px;
    margin-top: 0px;
}
#calculator h1 {
	font-size: 14px;
	text-transform:uppercase;
}
#calculator .button {
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    line-height: 26px;
    -moz-border-radius: 3px 3px 3px 3px;
    -webkit-border-radius: 3px 3px 3px 3px;
    border-radius: 3px 3px 3px 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #00bfff;
    -moz-box-shadow: 0 1px 3px 0 #00a5e3;
    -webkit-box-shadow: 0 1px 3px 0 #00a5e3;
    box-shadow: 0 1px 3px 0 #00a5e3;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDE3MiA2MCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+PGxpbmVhckdyYWRpZW50IGlkPSJoYXQwIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjUwJSIgeTE9IjEwMCUiIHgyPSI1MCUiIHkyPSItMS40MjEwODU0NzE1MjAyZS0xNCUiPgo8c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMjhjN2VmIiBzdG9wLW9wYWNpdHk9IjEiLz4KPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDBhOWZmIiBzdG9wLW9wYWNpdHk9IjEiLz4KICAgPC9saW5lYXJHcmFkaWVudD4KCjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxNzIiIGhlaWdodD0iNjAiIGZpbGw9InVybCgjaGF0MCkiIC8+Cjwvc3ZnPg==);
    background-image: -moz-linear-gradient(bottom, #28c7ef 0%, #00a9ff 100%);
    background-image: -o-linear-gradient(bottom, #28c7ef 0%, #00a9ff 100%);
    background-image: -webkit-linear-gradient(bottom, #28c7ef 0%, #00a9ff 100%);
    background-image: linear-gradient(bottom, #28c7ef 0%, #00a9ff 100%);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border: 0;
    width:120px;
    text-transform: uppercase;
    margin: 10px auto;
}
#calculator .button:hover {
    background-image: -moz-linear-gradient(bottom, #80d62f 0%, #1ad618 100%);
    background-image: -o-linear-gradient(bottom, #80d62f 0%, #1ad618 100%);
    background-image: -webkit-linear-gradient(bottom, #80d62f 0%, #1ad618 100%);
    background-image: linear-gradient(bottom, #80d62f 0%, #1ad618 100%);
    color: #FFF;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

#calculator .title {
	font-size: 16px;
	font-weight: bold;
	padding-top: 5px;
}

#calculator input, #calculator select {
    resize: none;
    background: #FFF;
    border: 1px solid #00c0ff;
    padding: 3px;
    margin: 0px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    font-family: 'Roboto', Georgia, sans-serif;
    width:50px;
}</pre></body></html>