/*****
/ JS Debug Console
/ Billy Reisinger
/ bookmarklet: 
/ javascript:void(z=document.body.appendChild(document.createElement('script')));void(z.language='javascript');void(z.type='text/javascript');void(z.src='http://content-dev2/breisinger/debug.js');
****/
#debugParent {
	width: 581px;
	height: 450px;
	border: 1px solid gray;
	color: black;
	z-index: 10000;
	overflow: hidden;
	background: #ccc;
	opacity: 0.90;
	filter: alpha(opacity=90);
	position: absolute;
	left: 25%;
	color: black;
	font-family: monospace;
}
#debugParent a, #debugParent a:visited, #debugParent a:active, #debugParent a:hover {
	text-decoration: none;
	color: black;
}
.transparentMode {
	opacity: 0.20 !important;
	filter: alpha(opacity=20) !important;
}
#debugDragBar {
	BACKGROUND: gray;
	CURSOR: move;
	COLOR: white;
	font-family: monospace;
	font-weight: bold;
	text-indent: 4px;
	font-size: 14px;
	HEIGHT: 25px;
	TEXT-ALIGN: left;
	overflow: hidden;
	border: 1px outset white;
}
#debugTextareaWrap {
	width: 100%;
	_height: 420px;
}
html>body #debugTextareaWrap {
	height: 100%;
}
#debugOutput {
	border: 2px inset white;
	FONT-SIZE: 11px;
	font-family: monospace;
	BACKGROUND: black;
	width: 99%;
	COLOR: lightgreen;
	PADDING: 2px;
	height: 60%;
	height: expression(parseInt(this.parentNode.parentNode.offsetHeight * (3/5)) + 'px');
	
}
#debugInput {
	padding: 2px;
	WIDTH: 99%;
	border: 2px inset white;
	HEIGHT: 25%;
	font-family: monospace;
	font-size: 11px;
	height: expression(parseInt(this.parentNode.parentNode.offsetHeight * (1/5)) + 'px');
}
#debugParent .cssEntry {
	background: lightgreen;
	font-size: 11px;
	font-family: monospace;
}
#debugBottomBar {
	BACKGROUND: #ccc;
	POSITION: relative;
	HEIGHT: 25px;
	overflow: hidden;
	margin-top: 2px;
}
#debugBottomBar a {
	HEIGHT: 17px;
	font-size: 9px;
	font-family: arial;
	float: left;
	padding: 4px;
	background: #eee;
	cursor: pointer;
	border: 2px outset white;
	margin-right: 1px;
}
#debugBottomBar a:hover {
	padding-top: 3px;
	padding-bottom: 5px;
	background-color: white;
}
#debugBottomBar a:active, #debugBottomBar a:focus {
	padding-top: 5px;
	padding-bottom: 3px;
	background-color: #ddd;
}
#debugResizeButton {
	BORDER: 1px solid gray;
	BACKGROUND: #eee;
	WIDTH: 17px;
	height: 17px;
	line-height: 0;
	CURSOR: move;
	position: absolute;
	bottom: 0px;
	right: 0px;
	font-size: 23px; 
	z-index: 2000;
	text-indent: 2px;
}

