/* INSPECTOR 
 * * * * * * * * * * * * * * * * * * * */

#inspector {
	position: fixed;
	height: 300px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background-color: #444;
	z-index: 5;
}

#inspector .header {
	position: relative;
	height: 24px;
	background-color: #666;
	margin: 0px;
	padding: 0px;
}

#inspector .header h4 {
	text-transform: uppercase;
	font-size: 12px;
	color: #999;
	margin: 0px;
	padding: 0px;
	padding: 5px 20px;
	margin-left: 0px;
	letter-spacing: 1px;
}

#inspector .header a.close {
	position: absolute;
	top: 5px;
	right: 25px;
	text-decoration: none;
	color: #AAA;
	font-size: 12px;
} 

#inspector .header a.close:hover {
	color: #FFF;
}

#inspector .body {
	position: absolute;
	top: 30px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	overflow: scroll;
	padding: 20px;
	padding-top: 5px;
}

#inspector .body table {
	margin-left: 5px;
}

#inspector .body td.data {
	font-family: "Monaco";
	font-size: 11px;
	color: #EEE;
	padding: 0px;
	margin: 0px;
	padding-top: 2px;
	padding-right: 12px;
	padding-left: 12px;
	overflow-x: auto;
  	white-space: pre-wrap;
  	word-wrap: break-word;
  	vertical-align: top;
  	border-right: 1px dotted #666;
}

#inspector .body td.data:last-child {
	border-right: 0px;
}

#inspector .body pre:first-child {
	padding-top: 0px;
	margin-top: 0px;
	border-top: 0px;
}

#inspector .body pre:last-child {
	margin-bottom: 20px;
}

#inspector .body div.func {
	font-size: 9px;
	color: #AAA;
	margin-top: 10px;
	margin-bottom: 5px;
	padding-top: 5px;
	font-family: "Monaco";
	border-top: 1px dotted #999;
}

#inspector .body div.func:first-child {
	border-top: 0px;
	margin-top: 0px;
}
