/*********************
* Styling for the Debug bar debugger
*********************/

/* Results Table */

#debugger-debug-bar table {
	clear: both;
	width: 100%;
	cellspacing: 0;
	cellborder: 0;
	border-spacing: 0;
}
#debugger-debug-bar th {
	background-color: #f1f1f1;
	background-image: -ms-linear-gradient(top, #f9f9f9, #dfdfdf);
	background-image: -moz-linear-gradient(top, #f9f9f9, #dfdfdf);
	background-image: -o-linear-gradient(top, #f9f9f9, #dfdfdf);
	background-image: -webkit-gradient(linear, left top, left bottom, from(#f9f9f9), to(#dfdfdf));
	background-image: -webkit-linear-gradient(top, #f9f9f9, #dfdfdf);
	background-image: linear-gradient(top, #f9f9f9, #dfdfdf);
	border: 1px solid rgb(236,236,236);
	border-bottom: 1px solid rgb(206,206,206);
	border-right: 1px solid rgb(223,223,223);
}
#debugger-debug-bar td {
	border: 1px solid rgb(223,223,223);
	border-top: 1px solid rgb(236,236,236);
	border-left: 1px solid rgb(236,236,236);
}
#debugger-debug-bar td, #debugger-debug-bar th {
	padding: 10px;
}
#debugger-debug-bar td.debugger-debug-entry-data {
	min-width: 10%;
	max-width: 50%;
}

td.debugger-debug-entry-data {
	text-align: right;
}
td.debugger-debug-entry-data-backtrace, td.debugger-debug-entry-data-data {
	text-align: left;
}
tr.debugger-debug-row {
	border-top: solid 1px rgba(0,0,0,0.1);
}

/* Results Colors */

tr.debugger-debug-row-color-0 {
	color: rgb(241, 154, 0);
	background-color: rgba(241, 154, 0, 0.1);
}
tr.debugger-debug-row-color-1 {
	color: rgb(0, 134, 209);
	background-color: rgba(0, 134, 209, 0.1);
}
tr.debugger-debug-row-color-2 {
	color: rgb(159, 209, 0);
	background-color: rgba(159, 209, 0, 0.1);
}
tr.debugger-debug-row-color-3 {
	color: rgb(177, 60, 255);
	background-color: rgba(177, 60, 255, 0.1);
}
tr.debugger-debug-row-color-4 {
	color: rgb(255, 235, 0);
	background-color: rgba(255, 235, 0, 0.1);
}


/* List / Pre Styling */

div#debugger-debug-bar li,
div#debugger-debug-bar pre {
	background-color: rgba(255, 255, 255, 0.5);
}

div#debugger-debug-bar ul, div#debugger-debug-bar ol {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

div#debugger-debug-bar li {
	padding: 0px;
	display: block;
	margin-bottom: 6px;
}


/* Errors, Warnings, and Notices */

div#debugger-debug-bar .debugger-debug-warning,
div#debugger-debug-bar .debugger-debug-notice {
	background-color: #fffcee;
	border: #E6DB55 solid 1px;
}

div#debugger-debug-bar .debugger-debug-warning div.debugger-debug-entry-title,
div#debugger-debug-bar .debugger-debug-notice div.debugger-debug-entry-title {
	background-color: #E6DB55;
}

div#debugger-debug-bar .debugger-debug-error {
	background-color: #fee;
	border: #D66 solid 1px;
}

div#debugger-debug-bar .debugger-debug-error div.debugger-debug-entry-title {
	background-color: #D66;
}

div#debugger-debug-bar .debugger-notice {
	clear: both;
	padding: 40px;
	text-align: center;
	font-size: 26px;
	font-family: georgia,times,serif;
	font-style: italic;
	background: #f8f8f8;
	color: #999;
}