/* $Id: toolbar.css,v 78.0 2018/07/23 02:15:02 plotkin Exp $ */

.toolbar, .toolbar_top {
      position: fixed;
      right: 10px;
      background-color: white;
      border: 1px solid black;
      padding-top: 2px;
      padding-left: 2px;
      padding-right: 2px;
}

.toolbar {
      bottom: 10px;
}

.tb_search_popup, .tb_search_popup_top {
      position: fixed;
      right: 0px;
      background-color: white;
      border: 1px solid black;
      width: 250px;
      display: none;
      z-index: 20;
}
.tb_results_scroll, .tb_results_scroll_top {
      position: fixed;
      right: 0px;
      background-color: white;
      border: 1px solid black;
      display: none;
      z-index: 20;
      font-family: Verdana, Tahoma;
      font-size: 12px; 
      padding: 3px;
      padding-bottom: 10px;
      height:300px;
      width: 50%;
      overflow:auto;
}
.tb_results, .tb_results_top {
      position: fixed;
      right: 0px;
      background-color: white;
      border: 1px solid black;
      display: none;
      z-index: 20;
      font-family: Verdana, Tahoma;
      font-size: 12px; 
      padding: 3px;
      padding-bottom: 10px;
      width: 50%;
      height: 75%;
      overflow:auto;
}


.tb_search_popup, .tb_results_scroll, .tb_results {
      bottom: 0px;
}

.tb_results_sidepadding {
    padding-left: 10px;
    padding-right: 10px;
}

.tb_folder_results {
      width: 325px;
      height: 300px;
}


/****************************************************************/
/*  toolbar left display  */
/****************************************************************/
#toolbar-left,
#toolbar-left *{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#toolbar-left{
    position: fixed;
    z-index: 20000;
    top: 25%;
    right: 0px;
    background-color: transparent;
}

#toolbar-left > .item{
    position: relative;
    width: 28px;
}
#toolbar-left > .item + .item{
    margin-top: 2px;
}

#toolbar-left > .item > .tag{
    border: 2px solid #0078C4;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background-color: #0078C4;
    padding: 12px 4px;
    cursor: pointer;
}
#toolbar-left > .item > .tag IMG{
    width: 18px;
    height: 18px;
}

#toolbar-left > .item > .contents{
    position: absolute;
    z-index: 21000;
    top: 0px;
    left: 28px;
    border: 2px solid #CCCCCC;
    border-right: none;
    border-bottom-left-radius: 8px;
    padding: 6px;
    background-color: #F6F6F6;
}

#toolbar-left > .item > .contents > DIV{
    padding: 6px;
}
#toolbar-left > .item > .contents > .header{
    border-bottom: 2px solid #CCCCCC;
    font-weight: bold;
    white-space: nowrap;
}
#toolbar-left > .item > .contents > .display{
    min-width: 220px;
    min-height: 160px;
    max-height: 540px;
    overflow-y: auto;
    padding-right: 32px;
}

#toolbar-left > .item > .contents .loading{
    font-style: italic;
}
#toolbar-left > .item > .contents .nodata{
    font-style: italic;
}

/* table display */
#toolbar-left > .item > .contents TABLE{
    border-collapse: collapse;
}
#toolbar-left > .item > .contents TABLE TH,
#toolbar-left > .item > .contents TABLE TD{
    padding: 6px;
    white-space: nowrap;
    text-align: left;
}
#toolbar-left > .item > .contents TABLE TH{
    vertical-align: bottom;
}
#toolbar-left > .item > .contents TABLE TD{
    vertical-align: top;
}
#toolbar-left > .item > .contents TABLE TD.num{
    text-align: center;
}
#toolbar-left > .item > .contents TABLE TD.dur{
    text-align: right;
}
#toolbar-left > .item > .contents TABLE TD A{
    text-decoration: none;
}
#toolbar-left > .item > .contents TABLE TD A:hover{
    text-decoration: underline;
}

/* ae status rpt display rules: add th/td bottom borders */
#toolbar-left > .item > .contents TABLE.rpt TH{
    border-bottom: 2px solid #CCCCCC;
}
#toolbar-left > .item > .contents TABLE.rpt TD{
    border-bottom: 1px solid #CCCCCC;
}

/* recent mss display rules */
#toolbar-left > .item > .contents TABLE.links TD{
    padding: 4px 6px;
}
#toolbar-left > .item > .contents TABLE.links TR TD:first-child{
    min-width: 148px;
    padding-right: 12px;
}
#toolbar-left > .item > .contents TABLE.links TD IMG{
    margin-top: 2px;
    height: 16px;
    width: 16px;
    border: none;
}

.toolbar.with_hover_labels a[title]:hover:before {
    content: attr(title);
    pointer-events: none;
    position: fixed;
    right: 10px;
    bottom: 50px;
    color: black;
    background-color: white;
    padding: 3px;
    border: 1px solid black;
}
