@charset "utf-8";
/*********************************************************
//	MBCMS v4.2
//
//	Developped by MB Creation
//	copyright 2017
//	www.mb-creation.com
//	contact@mb-creation.com
*********************************************************/

#debug_console * {
	margin:0;
	padding:0;
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}
#debug_console {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#000;

	position:absolute;
	z-index:9999;
	top:10px;
	right:10px;
	border:1px solid #ccc;
	background-color:#fff;
	padding:1px;
	width:600px;
	
	-webkit-box-shadow:5px 5px 5px #333;
	-moz-box-shadow:5px 5px 5px #333;
	-ms-box-shadow:5px 5px 5px #333;
	-o-box-shadow:5px 5px 5px #333;
	box-shadow:5px 5px 5px #333;
	
	-webkit-box-sizing:content-box;
	-moz-box-sizing:content-box;
	box-sizing:content-box;
}
#console_head {
	padding:3px;
	height:15px;
	font-weight:bold;
	background-color:#ccc;
	cursor:move;
}
#console_close, #console_reduce {
	display:block;
	float:right;
	width:10px;
	height:10px;
	text-decoration:none;
	margin:2px;
	
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	-ms-border-radius:5px;
	-o-border-radius:5px;
	border-radius:5px;
}
#console_close {
	background-color:#d00;
	border:1px solid #800;
}
#console_close:hover {
	background-color:#f00;
	border:1px solid #c00;
}
#console_reduce {
	background-color:#0d0;
	border:1px solid #080;
}
#console_reduce:hover {
	background-color:#0f0;
	border:1px solid #0c0;
}

#console_content {
	width:600px;
	height:400px;
	overflow:auto;
}

#debug_console table {width:100%}
#debug_console td {padding:2px 5px}
#debug_console td.num {
	width:10px;
	border-right:1px solid #f9f9ff;
}
#debug_console tr.line_1 td {background-color:#eef}
#debug_console pre {
	border:none;
	background:none;
	font-family:"Courier New", Courier, monospace;
	font-size:11px;
}
