.accordeon-title
{
    position: absolute;
    
    padding-top: 10px;
    padding-bottom: 10px;
    
    font-size: 10pt;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    
    background-color: #AAAAAA;
    border-bottom: 1px solid #444444;
    
    cursor: pointer;
}

.accordeon-title.active
{
    color: #EEEEEE;
    background-color: #444444;
}

.accordeon-content
{
    position: absolute;
    width: 0px;
    
    overflow-x: hidden;
    overflow-y: auto;
    
    white-space: nowrap;
    
    text-align: center;
}