/*
 * lists.css
 * List style (cross theme)
 *
 */

table.wide {
    width: 98%;
}
table.list {
    margin: 5px;
    
    border-right: 1px solid #dedbde;
    border-bottom: 2px solid #848484;
 }
table.list tr th {
    margin: 0;
    padding-left: 2px;
    vertical-align: bottom;
    
    background: #dedfde;
    border-left: 1px solid white;
}

table.list tr td {
    margin: 0;
    padding-left: 2px;
    vertical-align: top;
    border-left: 1px solid #dedbde;
}

/* Header Rows */
table.list thead tr.header th {
    border-bottom: 2px solid #848484;
}
table.list thead tr.header th a:link, table.list thead tr.header th a:visited {
    color: black;
}
table.list thead tr.header th a span.sort-asc,
table.list thead tr.header th a.sort-asc {
    padding-right: 12px;
    background: transparent
                url(/global/css/standard/sort-asc.png)
                no-repeat 
                center right;
}
table.list thead tr.header th a span.sort-desc,
table.list thead tr.header th a.sort-desc {
    padding-right: 12px;
    background: transparent
                url(/global/css/standard/sort-desc.png)
                no-repeat 
                center right;
}

table.list tr.new_group, table.list tr.new_group td {
    background: white;
    
    border-top: 2px solid #3982de;
    border-bottom: 2px solid #3982de;
}

table.list td.numeric {
    text-align: right;
    padding-right: 10px;
    padding-left: 10px;
}

table.list td.positive {
    color: green;
}

table.list td.negative {
    color: red;
}

table.list td.neutral {
    color: gray;
}

/* Horizontal Lists */
table.horizontal tbody th {
    vertical-align: top;
}
    
table.horizontal col.even {
    background: #c3c3c3;
}

table.horizontal col.odd {
    background: #d4d4d4;
}

table.horizontal th {
    width: 150px;
    /* height: 90%; */
    display: block;
    
    border-bottom: 3px solid white;
}
table.horizontal td {
    width: 250px;
    padding-left: 5px;

    border-bottom: 3px solid white;
}

/* Zebra Tables */
table.list tr.even {
    background: #eff3ff;
}
table.list tr.odd {
    background: white;
}

/*
 * Keydata Table
 */
 table.keydata {
     border: 1px solid #dedfde;
     margin: 5px;
     width: 25em;
     
     float: left;
 }
 
 table.keydata col.label {
     width: 33%;
 }
 
 table.keydata thead th {
     padding: 2px 5px;
     
     text-align: left;
     background: #dedfde;
 }
 table.keydata-primary {
     border: 1px solid #000063;
 }
 table.keydata-primary thead th {
     color: white;
     background: #000063;
 }
 
 table.keydata tbody th {
     padding-left: 1em;
     
     vertical-align: top;
     text-align: left;
     font-weight: normal;
 }
 table.keydata tbody th:after {
     content: " :";
 }
 
 table.keydata tbody td {
     padding-left: 1em;
     
     vertical-align: top;
 }
 table.keydata tbody tr.even, table.keydata tbody tr.even th, table.keydata tbody tr.even td {
     background: #eff3ff;
 }
 table.keydata tbody tr.odd, table.keydata tbody tr.odd th, table.keydata tbody tr.odd td {
     background: white;
 }
