body 		$(function(){
			var $write = $('#write');
			
			$('#keyboard div').click(function(){
				var $this = $(this),
					character = $this.html(); // If it's a lowercase letter, nothing happens to this variable

				// Special characters
				if ($this.hasClass('symbol')) character = $('span:visible', $this).html();

				// Add the character
				$write.html($write.html() + character);
			});
		});{
	font-size: 11.5pt;
	font-family: 'Open Sans', sans-serif;
	overflow: scroll;
}

.ui-input-text .login-utilizador .login-codigo {
    border: none !important;
    border-color: transparent !important;
    background-color: transparent;
}

textarea.ui-input-text { height: inherit }