/********************/
/* EXPANDABLE LIST  */
/********************/
#listContainer{
  margin-top:5px;
}

#expList ul, li {
    list-style: none;
    margin:0;
    padding:0;
    cursor: pointer;
}

#expList p:hover {
    background-color:#d6e4e2;
}
#expList li {
    line-height:180%;
    text-indent:10px;
    background-position: 1px 8px;
    padding-left: 15px;
    background-repeat: no-repeat;
}

/* Collapsed state for list element */
#expList .collapsed {
    background-image: url(../images/collapsed.png);
}
/* Expanded state for list element
/* NOTE: This class must be located UNDER the collapsed one */
#expList .expanded {
    background-image: url(../images/expanded.png);
}
#expList {
    clear: both;
}

.listControl{
  margin-bottom: 5px;
}
.listControl a {
    border: 1px solid #555555;
    color: #555555;
    cursor: pointer;
    height: 1.5em;
    line-height: 1.5em;
    margin-right: 5px;
    padding: 4px 10px;
}
.listControl a:hover {
    background-color:#555555;
    color:#222222; 
    font-weight:normal;
}
