/* Innleggstre med tabellformatering */

.treeContainer, .treeheadContainer {
    min-width: 740px;
    width: 100%;
}

.treeHeading {
    font-weight: bold;
    color: white;
    background: #7ac043;
}

.treeHeadingLink {
    color: white;
    text-decoration: none;
}

.treetableHeading {
    font-weight: bold;
    color: black;
}

.treeRow {
    display: table-row;
    /*position: absolute;*/
    /* width: 100%; */
}

.treeRow_even {
    background: #eeeeee;
}

.treeRow_odd {

}

.treeCell {
    overflow: hidden;
    text-overflow: ellipsis;
    display: table-cell;
    /* border: 1px solid gray; */
    white-space: nowrap;

}

/* Trådstarter-element*/
.treeRootcell:before {
    content: "\25a0 ";
    font-size: smaller;

}

.treeTitle {
    padding: 0 0 0 5px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.treeDate {
    text-align: left;
    min-width: 180px;
    max-width: 180px;
    white-space: nowrap;
    padding: 0 5px 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.treeName {
    text-align: left;
    min-width: 160px;
    max-width: 160px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px 0 10px;
}

.treeSize {
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 50px;
    max-width: 50px;
}

.treeTime {
    text-align: right;
    min-width: 100px;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px 0 5px;
}

.treeReadcount {
    text-align: right;
    min-width: 45px;
    padding: 0 5px 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.treeHeadlinks {
    text-align: right;
    min-width: 610px;
    padding: 0 5px 0 5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.treePostLink {
    color: #426824;

}

.treeCurrentTitle {
    color: black;
    font-weight: bold;
}

/**
 * Framework starts from here ...
 * ------------------------------
 */

.tree, .tree ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tree ul {
    margin-left: 1em;
    /* indentation */
    position: relative;
}

.tree ul ul {
    margin-left: .5em;
    position: relative;
}

/* (indentation/2) */
.tree ul:before {
    content: "";
    display: block;
    width: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    border-left: 1px solid;
}

.tree li {
    margin: 0;
    padding: 0 0 0 1em;

    /* indentation + .5em */
    line-height: 1.5em;
    /* default list item's `line-height` */
    color: black;
    font-weight: normal;
    position: relative;
}

.tree ul li:before {
    content: "";
    display: block;
    width: 10px;
    /* same with indentation */
    height: 0;
    border-top: 1px solid;
    margin-top: -1px;
    /* border top width */
    position: absolute;
    top: 1em;
    /* (line-height/2) */
    left: 0;

}

.tree ul li:last-child:before {
    background: white;
    /* same with body background */
    height: auto;
    top: 1em;
    /* (line-height/2) */
    bottom: 0;
}


