h3.ui-li-heading {
	font-size: 12px;
}
.ui-li .ui-btn-inner a.ui-link-inherit {
	padding: 0em 15px;
}
#target {
	width: 100%;
	padding: 10%;
	border: none;
	outline: 0;
	font-size: 20px;
	line-height: 25px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
#totop {
	float: right;
}
@media screen and (min-width: 600px) and (min-height: 640px) {
	#target {
		font-size: 40px;
		line-height: 45px;
	}
}

/* == calc == */
#calcBox {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 15px 0;
	box-sizing: border-box;
	background: #171414;
}
#calcBox #calcDisp {
	color: #fff;
	width: 80%;
	margin: 0 auto;
	padding: 10px; 
	text-align: right;
	font-size: 3.2em;
	text-shadow: none;
	overflow: hidden;
	white-space: nowrap;
}
#calcBox #operators {
	text-align: center;
	padding-top: 10px;
	text-shadow: none;
	font-size: 1.5em;
}
#calcBox .num, #calcBox .operator, #calcBox .blank {
	display: inline-block;
	color: #fff;
	width: 25%;
	padding: 10% 5%;
	box-sizing: border-box;
}
#calcBox .num, #calcBox .operator {
	border: 0.5px solid rgba(0,0,0,.5);
}
#calcBox .num:active, #calcBox .operator:active {
	background-color: #222;
}
#calcBox .addBorder {
	border: 1px solid #777;
}
@media screen and (min-width: 600px) and (min-height: 640px) {
	#calcBox #operators {
		font-size: 2.5em;
	}
	#calcBox #calcDisp {
		font-size: 5em;
		line-height: 2em;
	}
	#calcBox .num, #calcBox .operator, #calcBox .blank {
		padding: 5%;
	}
}
@media (orientation: landscape) {
	#calcBox .num, #calcBox .operator, #calcBox .blank {
		padding: 1% 0;
	}
}

/* balloon icon */
#balloon {
	font-size: 2em;
	width: 80%;
	position: fixed;
	left: 10%;
	margin: 0;
	padding: 5%;
	background-color: rgba(255,255,255,.85);
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: -5px -15px 15px rgba(0,0,0,.3), 1px 1px 3px rgba(0,0,0,.3);
	z-index: 1000;
}
#balloon:after {
	content: '';
	width: 0;
	height: 0;
	position: absolute;
	top: -30px;
	left: 11%;
	border: 15px solid transparent;
	border-bottom-color: rgba(255,255,255,.85);
}
#balloonIcon {
	border-radius: 10px;
	display: block;
	margin: 10% auto;
	box-shadow: 1px 1px 5px rgba(0,0,0,.5);
}
#balloonDel {
	display: block;
	position: absolute;
	top: 5px;
	right: 5px;
}
@media screen and (max-width: 600px) {
	#balloon {
		font-size: 1.2em;
		bottom: 0;
		margin-bottom: 30px;
		box-shadow: 5px 15px 15px rgba(0,0,0,.3), -1px -1px 3px rgba(0,0,0,.3);
	}
	#balloonIcon {
		width: 72px;
	}
	#balloon:after {
		top: 100%;
		left: 50%;
		margin-left: -15px;
		border-color: transparent;
		border-top-color: rgba(255,255,255,.85);
	}
}