.gkeyboardbuffer { padding: 1px; }

.buffer-baloon {
	background-color: rgb(255, 255, 192);
	border: 2px solid #EEDE9C;
	border-radius: 10px;
    width: auto;
    padding: 30px 20px;
    width: 0;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    min-height: 60px;
    opacity: 0;
    
    /* IE 7 and Earlier */
    filter: alpha(opacity=70);
    
    /* IE 8 / IE11 with Enterprise mode */
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    font-family: Arial !important;
}

.buffer-baloon.editable {
	width: 200px;
    height: 100px;
    padding-top: 80px;
    display: block;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    position: static;
}

.buffer-baloon.runtime {
	position: absolute;
    bottom: 20px;
    right: 10px;
    background-image: url('keyboard-icon.png');
    background-position: 50% 5%;
    background-repeat: no-repeat;
}

.buffer-baloon.runtime.shown {
	opacity: 1;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	width: 20%;
	overflow: auto;
	max-height: 400px;
}

.buffer-baloon h2 {
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.5);
	font-size: 1.5em;
	height: 1.1em;
}

.buffer-baloon a {
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.buffer-baloon ul {
  margin-top: 10px;
  margin-bottom: 20px;
  list-style: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
	position: relative;
	top: 25px;
	padding-bottom: 0px;
	padding-top: 10px;
}

.buffer-baloon ul li {
    font-size: 1.3em;
    list-style: square;
    margin-top: 5px;
}

.buffer-baloon li span.buffer-blur-key {
	display: inline-block;
	padding: 5px;
	border-radius: 2px;
	text-align: center;
	box-shadow: inset 0 0 25px #e8e8e8, 0 1px 0 #c3c3c3, 0 2px 0 #c9c9c9, 0 2px 3px #333;
	text-shadow: 0px 1px 0px #F5F5F5;
	background: #EFF0F2;
	color: #858585;
	border-top: 1px solid #F5F5F5;
}

