body {
    font-size: 12px;
    font-family: "Helvetica Neue", HelveticaNeue, "Helvetica-Neue", Helvetica, sans-serif;
    font-weight: normal;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    margin:0;
    padding:0;
}

.treegrid {
    margin: 0;
    color: #2e3436;
    background-color: #ffffff;
    padding: 5px 10px 5px 10px;
}

.treegrid .logo {
    background: url(images/logo-sencha.png) no-repeat left top;
    height: 26px;
    font-size: 16px;
    padding-top: 4px;
    padding-left: 28px;
    font-weight: bold;
}

.treegrid .toolBar {
    height: 28px;
    line-height: 28px;
    font-size: 12px;
}

.treegrid .tbody {
    background-color: #ffffff;
    border: 1px solid #babdb6;
    overflow: auto;
}

.treegrid .tabpanel {
    height: 280px;
}

.treegrid .resizer {
    cursor: row-resize;
    text-align: center;
    height: 10px;
    font-size: 9px;
}

.treegrid .row {
    line-height: 19px;
    *line-height: 20px;
    zoom: 1;
}


.treegrid .statusMessage {
    background-color: #ffffff;
    height: 20px;
    line-height: 20px;
    font-size: 12px;
    padding-left: 5px;
    font-weight: bold;
    border: 1px solid #babdb6;
}

.treegrid .statusMessage.failed {
    background-color: red;
    color: #ffffff;
}

.treegrid .statusMessage.passed {
    background-color: green;
    color: #ffffff;
}

.treegrid .toolBar .options {
    color: #666;
    font-size: 10px;
}

.treegrid .toolBar .actionLink {
    margin-left: 10px;
    text-decoration: underline;
    cursor: pointer;
}

.noexpand, .expand, .collapse {
    float: left;
    width: 16px;
    height: 16px;
    margin-top: 1px;
}

.expand {
    background: url(images/arrows.gif) no-repeat left center;
    background-position: -32px 0;
}

.collapse {
    background: url(images/arrows.gif) no-repeat left center;
    background-position: -48px 0;
}

.checkbox-col {
    float: left;
}

.row .spec, .row .suite {
    color: white;
    font-size: 13px;
}

.row.selected {
    opacity: 0.80;
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
}

.row {
    background-color: #cc610a;
}

.row.failed {
    background-color: red;
}

.row.passed {
    background-color: green;
}

.row.disabled {
    background-color: grey;
}

div.results {
    margin: 0 20px 0 20px;
    background: #ffffff;
    color: #000000;
    font-size: 11px;
    line-height: 16px;
}

.spec {
    padding-bottom: 5px;
}

.tabpanel .toolBar {
    height: 30px;
    padding-bottom: 10px;
}

.infos .infoMessage {
    padding: 5px 5px 5px 5px;
    border-bottom: 1px solid #eeeeec;
}
.infos .infoMessage.warning {
    color: red;
}

.resultMessage {
    white-space: pre;
    padding: 5px 5px 5px 5px;
    border-top: 1px solid #eeeeec;
}

.resultMessage.pass {
    color: green;
}

.resultMessage.fail {
    color: red;
}

.resultMessage.first {
    border: none;
}

.suite .description, .spec .description {
    display: block;
}

.warning .description {
    background: url(images/warning.png) no-repeat left center;
}

div.blockTitle {
    background-position: left 0;
    background-repeat: no-repeat;
    padding-left: 30px;
    padding-bottom: 2px;
    margin: 6px;
}

.blocks div.specSources {
    background-image: url(images/spec_sources.png);
}

.blocks div.beforeEach {
    background-image: url(images/before_each.png);
}

.blocks div.afterEach {
    background-image: url(images/after_each.png);
}

.tabpanel .toolBar span {
    height: 30px;
    line-height: 30px;
    padding: 6px 20px 7px 30px;
    background-position: 5px 50%;
    background-repeat: no-repeat;
    border:  1px solid #babdb6;
    background-color: #eeeeec;
    margin-right: 10px;
}

.expand:hover, .collapse:hover, .tabpanel .toolBar span:hover,
div.inspectStackTrace:hover {
    cursor: pointer;
}

.tabpanel .toolBar span.selected {
    background-color: #fff;
}

.tabpanel .toolBar span.infos {
    border-left: 1px solid #babdb6;
    background-image: url(images/infos.png);
}

.tabpanel .toolBar span.blocks {
    background-image: url(images/block.png);
}

.tabpanel .toolBar span.stackTrace {
    background-image: url(images/stack_trace.png);
}

.tabpanel .toolBar span.sandbox {
    background-image: url(images/dom_sandbox.png);
}

.tabpanel .toolBar span.jsCoverage {
    background-image: url(images/jscoverage.png);
}

.tabpanel .toolBar span.jsCoverageSummary {
    background-image: url(images/jscoverage-summary.png);
}

.panels {
    background: #ffffff;
    height: 241px;
    border: 1px solid #babdb6;
    overflow: auto;
}

.panel {
    height: 100%;
}

.panels .hideMe {
    position: absolute;
    left: -50000px;
    top: -50000px;
}

.prettyPrint {
    white-space: pre;
    word-wrap: break-word;
    margin: 0;
}

.panel .sources {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    font-family: monospace;
    background-color: #2e3436;
    border: 1px solid #babdb6;
    margin: 5px;
    overflow: auto;
}

.stackTrace .sources {
    height: 250px;
}

.panels .lineNumbers, .panels .lineBackground {
    margin: 0;
    width: 50px;
}

.panels .lineNumbers .lineNumber {
    background-color: #fce94f;
    color: #2e3436;
    width: 40px;
    text-align: right;
    padding-right: 5px;
}

.panels .lineNumbers .lineNumberRed {
    background-color: #cc0000;
}

.panels .lineNumbers .lineNumberGreen {
    background-color: #4E9A06;
}

.panels .code {
    white-space: pre;
    margin: 0;
}

.panels .lineNumber.error {
    background-color: #cc0000;
}

.stackTraceLine .fileName {
    background: url(images/file.png) no-repeat left 0;
    color: #2e3436;
    padding-left: 20px;
    margin: 5px;
}

div.inspectStackTrace {
    color: #fce94f;
    font-size: 11px;
    text-decoration: underline;
    padding-bottom: 4px;
}

.jsHlComment, .c {
    color: #d3d7cf !important;
}

.jsHlKeyword {
    color: #729fcf !important;
}

.jsHlOperator {
    color: #ad7fa8 !important;
}

.jsHlNumber, .t {
    color: #edd400 !important;
}

.jsHlString, .s {
    color: #fce94f !important;
}

.sources table td {
    vertical-align: top;
}

.jsCoverageSummary table {
    width: 100%;
}

.jsCoverageSummary table.summary td {
    padding: 5px;
    border-bottom: 1px solid #babdb6;
}

.jsCoverageSummary table td.percentage {
    width: 350px;
}

.jsCoverageSummary .line.header {
    background-color: #eeeeec;
    font-weight: bold;
}

.jsCoverageSummary .line.total {
    font-weight: bold;
}

.jsCoverageSummary .percentage .limit {
    height: 18px;
    border: 1px solid green;
}

.jsCoverageSummary .percentage .result {
    height: 18px;
    background-color: green;
}

.jsCoverageSummary .fileName a {
    text-decoration: underline;
}

.jsCoverageSummary .back {
    padding-left: 5px;
    text-decoration: underline;
    font-size: 12px;
}

.sandboxIframe {
    border: 0 none;
    height: 1800px;
    width: 1800px;
    background: url(images/iframe-bg.png) repeat;
}