/* CSS Document */

div.log_window {

height:200px;
width:250px;
position:absolute;
top:0px;
left:0px;
background-color:#fff;
color:#000;
font-size:small;
border:1px solid black;
text-align:left;
margin:0px;
padding:0px;
}

div.log_window div.log_dragBar {
color:red;
background-color:#ccc;
border-bottom:1px dashed #000;
cursor:move;
text-align:left;
}

div.log_window div.log_dragBar h4 {
margin:0px;
padding:0px;
font-size:90%;
margin-left:5px;
}

div.log_window div.log_readOut {
padding:5px;
overflow:auto;
height:158px;
/*border-bottom:1px solid #000;*/
background-color:#FFFFFF;
}

div.log_window div.log_resizer {
position:absolute;
bottom:0px;
right:0px;
height:16px;
width:16px;
cursor:se-resize;
background: url(../js/logger_images/resizer.gif) no-repeat transparent;
}

div.log_window div.log_dragBar div.log_clearButton {
position:absolute;
right:18px;
top:0px;
height:16px;
width:16px;
cursor:pointer;
background: url(../js/logger_images/clearButton.gif) no-repeat transparent;
}

div.log_window div.log_dragBar div.log_minimize {
position:absolute;
right:2px;
top:0px;
height:16px;
width:16px;
background-repeat:no-repeat;
background-image:url(../js/logger_images/minimizeClose.gif);
cursor:pointer;
}

div.log_window div.log_dragBar div.log_filter {
position:absolute;
top:0px;
height:16px;
width:16px;
cursor:pointer;
}

div.log_window div.log_dragBar div.log_debugButton {
background-image:url(../js/logger_images/debug_true.gif);
right:96px;
}

div.log_window div.log_dragBar div.log_infoButton {
background-image:url(../js/logger_images/info_true.gif);
right:80px;
}

div.log_window div.log_dragBar div.log_warnButton {
background-image:url(../js/logger_images/warn_true.gif);
right:64px;
}

div.log_window div.log_dragBar div.log_errorButton {
background-image:url(../js/logger_images/error_true.gif);
right:48px;
}

div.log_window div.log_readOut p {
margin-bottom:3px;
}

div.log_window div.log_readOut p.log_ERROR {
color:red;
}

div.log_window div.log_readOut p span.log_lineNumber {
color:blue;
}

div.log_window div.log_readOut p span.log_DEBUG {
color:#00FF00;
background-color:#006600;
font-weight:bold;
}

div.log_window div.log_readOut p span.log_INFO {
color:#00CCFF;
background-color:#003333;
font-weight:bold;
}

div.log_window div.log_readOut p span.log_WARN {
color:orange;
font-weight:bold;
background-color:#660000;
}

div.log_window div.log_readOut p span.log_ERROR {
color:red;
background-color:#600602;
font-weight:bold;
}