/* CapsuleArtiste   */
            .artiste {
            position: relative;
            border: #cccccc 1px solid;
            background-color: #000000;
            margin: 3px;
            clear: both;
            padding: 10px;
        }

        .artiste h3 {
            display: inline;
        }

        .action-toggle {
            cursor: pointer;
            margin-left: 10px;
            font-weight: bold;
            user-select: none;
        }

        .contenu-artiste {
            display: none;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 1px solid #cccccc;
        }

        .contenu-artiste.visible {
            display: block;
        }
