#console{
	display: none;
	position: fixed;
	top: 200px;
	left: 0;
	background: white;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	padding: 15px;
	cursor: n-resize;
    box-shadow: 4px 4px 2px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.2);
}

#console .inner{
	display: block;
	width: 250px;
	/*height: 80px;
	overflow: auto;*/
}

#closeConsole{
	position: absolute;
	color: red;
	top: 0;
    right: 5px;
}

#closeConsole:hover{
	color: black;
}