/* Used for the outermost <div> */
/* As the outer layer, all other classes will inherit from this one */
#debug {
    font-family: monospace;
    background-color : white;
    color : blue;
    border: solid red 3px;
    white-space: pre;
    width: 100%;
}

/* Used for the inner <div>'s that each contain one object dump */
.debugInner {
    border: solid green 3px;
    margin: 3px;
}

/* Used to format object properties or generic strings */
span.key {
}

/* Used to format the values in array elements or object properties */
span.value {
}
