
/* datalist */

#datalist{
    position: absolute;
    top:10px;
    background-color: white;
    background-color: rgba(255,255,255,0.9);
    font-family: helvatica, Arial, sans-serif;
    width: 250px;
    right: 275px;
    z-index: 99;
    -webkit-transition: all 0.5s;


    bottom: 40px;
    padding: 16px 10px 10px 10px;
    border-radius: 4px;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
    transition: bottom 0.3s ease-in-out;
}

body.menuHidden #datalist{
    right: 46px;
}

#datalist.hidden,
body.menuHidden #datalist.hidden{
    display: block;
    width: 1px;
    right: -40px;
    overflow: hidden;
}

#dataListScroll{
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    position: relative;
}

#dataListContainer{
    height: auto;
    position: relative;
}


#datalist .entry{
    border-bottom: 1px solid silver;
    font-size: 12px;
    color: #444;
    padding: 4px;
    line-height: 125%;
}

#datalist .entry:hover,
#datalist #dataListContainer.focused .entry:hover{
    border-bottom: 1px solid grey;
    background-color: #EEE;
    color: #111;
    cursor: pointer;
}

#datalist .entry .date{
    font-weight: bold;
    position: absolute;
}

#datalist .entry .actor{
    text-align: right;
    padding-left: 125px;
}

#datalist .entry .description{
    padding: 4px 0 0 0;
}

#datalist .entry .info{
    padding: 10px 0;
    display: none;
}

#datalist .entry.focused .info{
    display: block;
}

#datalist .entry .info b{
    display: inline-block;
    margin-right: 7px;
}

#datalist #dataListContainer.focused .entry{
    color: #888;
}

#datalist #dataListContainer.focused .entry.focused{
    color: #111;
    background-color: #bdceaa;
}

