/*
Copyright 2007 Adam Podolnick 
Licensed under the Apache License, Version 2.0 (the "License"); 
you may not use this file except in compliance with the License. 
You may obtain a copy of the License at 
	
	http://www.apache.org/licenses/LICENSE-2.0 

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

body{
	margin:0px;
}
#visor {
	margin: 0px;
	background-color: #000000;
	color: #FFFFFF;
	height: 50%;
	width: 100%;
	position: absolute;
	top: 0px;
	opacity: .95;
	font-weight: bolder;
	font-size: 11pt;
	vertical-align: bottom;
	border-bottom: 6px solid #999999;
	font-family: verdana,arial,helvetica,sans-serif;
	display: 'block';
	padding-bottom:23px;
}
#visor #filterDIV {
	margin: 0px; 
	width: 100%;
	height: 23px;
	text-align: right;
}
#visor #filterDIV .visorLogo {
	float:left;
}
#visor #filterDIV BUTTON {
	margin:0px;
}
#visor #logDIV {
	height:100%;
	overflow: auto;
}
#visor UL {
	list-style: none;
		margin: 0;
		padding: 0;
		border: none;
}
#visor LI {
	margin-left: 0;
	padding: 3px 15px;
}

#visor LI.debug {
	border-bottom: 1px dotted #1AFF00;
	color: #1AFF00;
	background: #063900  url('img/accept.png') no-repeat 5px 5px;
	padding-left: 25px;
}
#visor LI.warning {
	background: #373900  url('img/error.png') no-repeat 5px 5px;
	border-bottom: 1px dotted #FFDD00;
	color: #FFDD00;
	padding-left: 25px;
}
#visor LI.error {
	background: #390004  url('img/exclamation.png') no-repeat 5px 5px;
	border-bottom: 1px dotted #FF0011;
	color: #FF0011;
	padding-left: 25px;
}
#visor LI.info {
	background: #001869  url('img/information.png') no-repeat 5px 5px;
	border-bottom: 1px dotted #003CFF;
	color: #003CFF;
	padding-left: 25px;
}
#visor.filter_debug LI.warning, #visor.filter_debug LI.error, #visor.filter_debug LI.info{
	display: none;
}
#visor.filter_warning LI.debug, #visor.filter_warning LI.error, #visor.filter_warning LI.info {
	display: none;
}
#visor.filter_error LI.debug, #visor.filter_error LI.warning, #visor.filter_error LI.info {
	display: none;
}
#visor.filter_info LI.debug, #visor.filter_info LI.warning, #visor.filter_info LI.error {
	display: none;
}

#visor A.visorLogo {
	color: #FFFFFF;
	padding-left: 5px;
	text-decoration: none;
}
#visor A.visorLogo:hover {
	color:#cccccc;
}

#consoleDIV {
	top:50%;
	margin-top:7px;
	position: absolute;
	z-index:9999;
	width:100%
}
#consoleDIV #console {
	width:100%;
	margin:0px;
	background-color:#000000;
	color:#FFFFFF;
	border-top: 1px solid #999999;
	border-left: 0px;
	border-right: 0px;
	border-bottom:0px;
}
.objDIV {
	border: 2px solid #FFFFFF;
	background: #DEDEDE url('img/bullet_toggle_minus.png') no-repeat;
	color:#000000;
	margin: 5px;
	font-weight: normal;
	font-size: 10px;
	padding-left: 15px;
}
.collapsed {
	background: #DEDEDE url('img/bullet_toggle_plus.png') no-repeat;
	height: 14px;
	overflow: hidden;
}