/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 3/Nov/2014, 14:45:57
    Author     : joes
*/

.splitter_panel {
  position: relative;
  border-left: 5px solid #333;
  border-right: 5px solid #333;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.splitter_panel .vsplitter {
    background-color: #333;
    cursor: col-resize;
    z-index:900;
    width: 7px;
}

.splitter_panel .hsplitter {
    background-color: #5F5F5F;
    cursor: row-resize;
    z-index: 800;
    height: 4px;
}
.splitter_panel .vsplitter.splitter-invisible,
.splitter_panel .hsplitter.splitter-invisible {
    background: none;
}
.splitter_panel .vsplitter, .splitter_panel .left_panel, .splitter_panel .right_panel,
.splitter_panel .hsplitter, .splitter_panel .top_panel, .splitter_panel .bottom_panel {
    position: absolute;
    overflow: auto;
}
.splitter_panel .vsplitter, .splitter_panel .left_panel, .splitter_panel .right_panel {
  height: 100%;
}
.splitter_panel .hsplitter, .splitter_panel .top_panel, .splitter_panel .bottom_panel {
  width: 100%;
}
.splitter_panel .top_panel, .splitter_panel .left_panel, .splitter_panel .vsplitter {
   top: 0;
}
.splitter_panel .top_panel, .splitter_panel .bottom_panel, .splitter_panel .left_panel, .splitter_panel .hsplitter {
   left: 0;
}
.splitter_panel .bottom_panel {
   bottom: 0;
}
.splitter_panel .right_panel {
   right: 0;
}
.splitterMask {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
}
.header-pane {
    background: #f0f0f0;
    height: 25px;
    width: 100%;
}
.header-pane .button-horizontal {
    display: inline-block;
    min-width: 10px;
    font-size: 12px;
    margin-left: 7px;
    font-weight: bold;
    color: rgb(34, 54, 63);
    cursor: pointer;
    vertical-align: middle;
}
.header-pane .button-horizontal span.icon {
    margin-bottom: -4px;
}
.header-pane .button-horizontal.normal {
    font-weight: normal;
}
.header-pane .button-horizontal:hover {
    text-decoration: underline;
}
.header-pane .button-horizontal.right {
    float:right;
    margin-right: 10px;
    margin-left: 0px;
    padding-top: 5px;
}
.splitter-content {
    padding: 3px 0px 0px 4px;
    overflow-x: hidden;
    overflow-y: auto;
}
.splitter-content:last-child {
    position: absolute;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.splitter-pane-waiting {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: url(../img/PANE_WAITING_2.gif) no-repeat 50% 50% rgba(0, 0, 0, .4);
    display: none;
    z-index: 9999;
}
.splitter-document-path {
    border-bottom: dotted 1px grey;
}
.splitter-document-path ul {
    margin: 7px 0 7px 0;
    padding: 0;
}
.splitter-document-path li {
    font-size: 11px;
    list-style: none;
    width: 100%;
    cursor: pointer;
    padding: 1px 0 0 7px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.splitter-document-path li:hover {
    background: #f0f0f0;
}