#DL_DebugPanel
{
	width: 100%;
	height: 320px;
	font-family: 'Arial';
	font-size: 12px;
	border: 2px outset #999;
	background-color: #999;
	overflow: hidden;
	
	position: fixed;
	z-index: 5000;
	left: 0;
	bottom: 0;
}

#DL_DebugPanel.minimized
{
	/*display: none;*/
	width: 24px;
	height: 24px;
	right: 0;
	left: auto;
	border-color: #CCC;
}

#DL_DebugPanel.minimized .Icon
{
	position: absolute;
	left: 0;
	top: 0;
	background: #CCC url('/se_data/global/gfx/gui/widgets/console/minimized.png') center;
	height: 24px;
	width: 24px;
}

#DL_DebugPanel .messages
{
	border: 1px #666 inset;
	background: #666;
	height: 100%;
	width: 50%;
	float: left;
	
	overflow: auto;
	border: 0;
}

#DL_DebugPanel .buttons
{
	width: 100%;
	height: 28px;
	position: absolute;
	bottom: 0px;
	line-height: 28px;
	padding-left: 2px;
	/*background: silver;*/
}

#DL_DebugPanel .buttons input
{
	height: 24px;
	margin:  2px 2px 0 0;
}

#DL_DebugPanel .buttons input
{
	float: left;
}

#DL_DebugPanel .cmdline
{
	height: 100%;
	width: 49%;
	float: left;
	border: 0;
}

#DL_DebugPanel .message
{
	padding: 8px;
	border-bottom: 1px solid #999;
}

#DL_DebugPanel .message h3
{
	margin: 0 0 4px 0;
}

#DL_DebugPanel .message .icon
{
	width: 32px;
	height: 32px;
	float: left;
}

#DL_DebugPanel .message .text
{
	margin-left: 42px;
}

#DL_DebugPanel .message .code
{
	border: 1px solid silver;
	padding: 8px 4px 8px 4px;
	margin: 8px 0 0 0;
	background-color: #efefef;
}

#DL_DebugPanel .message.plaintext
{
	background: white;
}

#DL_DebugPanel .message.plaintext .icon
{
	display: none;
}

#DL_DebugPanel .message.plaintext .text
{
	margin: 0;
	font-family: monospace;
}

#DL_DebugPanel .message.notice
{
	background: skyblue;
}

#DL_DebugPanel .message.notice .icon
{
	background: url('/se_data/global/gfx/gui/widgets/console/notice.png');
}

#DL_DebugPanel .message.error
{
	background: red;
}

#DL_DebugPanel .message.error .icon
{
	background: url('/se_data/global/gfx/gui/widgets/console/error.png');
}

#DL_DebugPanel .message.warning
{
	background: orange;
}

#DL_DebugPanel .message.warning .icon
{
	background: url('/se_data/global/gfx/gui/widgets/console/warning.png');
}