<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">        .dash {
            animation: dash 5s linear infinite;
        }

        @keyframes dash {
            from {
                stroke-dashoffset: 100;
            }
            to {
                stroke-dashoffset: 0;
            }
        }

        .dotted_line {
            stroke-dasharray: 10;
        }
        
        .title_local{
            font: bold 16px sans-serif;
        }

        .circle {
            fill: #0383F6;
            stroke: black;
            stroke-width: 2;
            fill-opacity: 1;
            stroke-opacity: 0;
        }
        
        .label{
            font: bold 12px sans-serif;
        }   
        
        .mark_number{
            font: bold 30px sans-serif;
            fill: #FFF;
            
        }
        
        .grid{
            stroke: rgba(0, 0, 0, 0.3);
            stroke-width: 1px;
        }

.svg_graph{
    width: 800;
    
}



@media screen and (max-width: 1000px){
    .svg_graph{
            width: 400px;
            height: 200px;
    }
}

@media screen and (max-width: 700px){
    .svg_graph{
            width: 260px;
            height: 200px;
    }
}</pre></body></html>