/** Console Style Sheet **/
#console {
    position: absolute;
    z-index: 100000;
    display: block;
    user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    -webkit-user-select: none;
    /* Selection of text OFF; popup does not display */
    -webkit-user-drag: none;
    -webkit-user-modify: none;
    -webkit-highlight: none;
    -webkit-touch-callout: none;
    /* Block Magnifying glass */
}
/* STANDBY */
#console.container {
    bottom: 20px;
    left: 10px;
    width: 20px;
    height: 10px;
    background-color: #333333;
}
#console .log {
    position: relative;
    float: left;
    z-index: 100005;
    background-color: #FFFD9C;
    font-size: 10px;
    overflow: hidden;
    color: black;
}
#console .diag {
    position: relative;
    float: right;
    z-index: 100005;
    background-color: #335555;
    color: white;
    font-size: 10px;
    overflow: hidden;
}
#console .inner {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
}
/* Controls */
#console .control_box {

    /* TURN THIS OFF - Look in to why it is showing up and not being controlled by host */
    display: none;


    position: absolute;
    z-index: 100010;
    top: 0;
    left: 0px;
    width: 24px;
    height: 10px;
    /*background-color: #993333; */
    overflow: hidden;
}
#console .control {
    position: relative;
    float: left;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 20px;
    border-style: solid;
    border-width: 0px;
    border-color: rgb(0, 206, 255);
    -moz-border-radius: 5px;
    border-radius: 5px;
    /*webkit-border-radius: 4px; */
    margin-bottom: 4px;
    background-color: white;
    color: black;
    font-size: 12px;
    line-height: 20px;
    padding-left: 6px;
}
#console .size_ctrl {
}
#console .pause_ctrl {
    background-color: green;
}
#console .pause_ctrl.stop {
    background-color: red;
}
#console .pg_up_ctrl {
}
#console .pg_down_ctrl {
}
#console .pg_end_ctrl {
}
/* STANDBY */
#console.standby-view .log {
    display: none;
}
#console.standby-view .diag {
    display: none;
}
/* QUICK VIEW */
#console.quick-view {
    top: 40px;
    right: 20px;
    width: 500px;
    height: 320px;
    left: auto;
}
#console.quick-view .control_box {
    height: 180px;
}
#console.quick-view .log {
    top: 5px;
    left: 5px;
    width: 330px;
    height: 310px;
}
#console.quick-view .diag {
    top: 5px;
    right: 5px;
    width: 155px;
    height: 310px;
}
#console.full-view {
    top: 40px;
    left: 20px;
    width: 800px;
    height: 640px;
}
#console.full-view .control_box {
    height: 180px;
}
#console.full-view .log {
    top: 5px;
    left: 5px;
    width: 530px;
    height: 630px;
}
#console.full-view .diag {
    top: 5px;
    right: 5px;
    width: 250px;
    height: 630px;
}
/*  STYLING  */
/* Time Stamp */
#console .time {
    color: rgb(0, 160, 255);
}
#console .notice {
    color: #333;
    font-size: 11px;
    font-weight: bold;
}
#console .error {
    color: red;
    font-size: 11px;
    font-weight: bold;
}
#console .title {
    color: #999;
    font-size: 11px;
    font-weight: bold;
}
