/* Debug styles for the MySQL Debug Panel. Visibility dependent on the Configure::read('debug') value. Idea from: http://snook.ca/archives/cakephp/debug_css_cakephp/ */
table.cake-sql-log {
	clear:left;
	float:left;
	margin:0 10px 0 10px;
	color:black;
	height:400px;
	background:url(/img/admin/mysql-debug-bg.jpg) white;
	-moz-border-radius:15px;
	-webkit-border-radius:15px;
	-khtml-border-radius:15px;
	filter:alpha(opacity=50);
	opacity: 0.5;
	-moz-opacity:0.5;
	width:98%;
}

* html table.cake-sql-log {
	width:97%;
}

* table.cake-sql-log td, * table.cake-sql-log th {
	padding:10px 20px 10px 20px;
	margin:0;
}

table.cake-sql-log caption {
	font-weight:bold;
	font-size:120%;
	padding-bottom:10px;
	padding-left:10px;
	color:white;
}

/*.cake-sql-log {
	position:fixed;
	top:99%;
	z-index:10;
	width:100%;
	background-color:#000;
	color:#FFF;
	border-collapse:collapse;
}

.cake-sql-log caption {
	background-color:#F5C34D;
	color:#FFF;
	padding:10px;
}

.cake-sql-log:hover {
	top:auto;
	bottom:0;
}

.cake-sql-log td {
	padding:3px;
	border:1px solid #999;
	background-color:#EEE;
	color:#000;
}*/