/* Sample */

.textcomplete {
    border: 1px solid #ddd;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.textcomplete li {
    border-top: 1px solid #ddd;
    padding: 2px 5px;
}

.textcomplete li:first-child {
    border-top: none;
}

.textcomplete li:hover,
.textcomplete .active,
.textcomplete > .active > a,
.textcomplete > .active > a:focus, 
.textcomplete > .active > a:hover 
{
    background-color: rgb(74, 171, 39);
}

/* SHOULD not modify */

.textcomplete {
    list-style: none;
    padding: 0;
    margin: 0;
}

.textcomplete a {
    color: rgb(255, 255, 255);
    font-size: 0.8em;
}
.textcomplete a:hover {
    background-color: rgb(74, 171, 39);
    cursor: pointer;
}