@charset "utf-8";

/* CSS DU MENU*/

#menu {
    width: 140px;
    height: 530px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #a300cf;
    z-index: 95;
    font-family: 'PT Sans', sans-serif;
}

#menu li a {
    color: #FFF;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    display: table-cell;
    height: 50px;
    vertical-align: middle;
    text-align: center;
}

#menu li {
    width: 100%;
    display: table;
    vertical-align: middle;
    text-align: center;
    height: 50px;
    position: relative;
}

#menu li:hover {
    background: #fd23ff;
}

#menu a sup {
    margin-left: 4px;
    color: #fd23ff;
}

#menu a:hover sup {
    color: #a300cf;
}