
:root
{
        --GRAPH_STANDARD_CONTAINER_WIDTH:1280;
        --GRAPH_STANDARD_CONTAINER_HEIGHT:175;
}
#graph_standard_container_id 
{   
        /* outline:3px outset green; */
        position:fixed;

        left:   calc(50% - ((var(--GRAPH_STANDARD_CONTAINER_WIDTH) / 2) * 1px));
        top:    calc(20% - ((var(--GRAPH_STANDARD_CONTAINER_HEIGHT) / 2) * 1px)); 

        width:  calc(var(--GRAPH_STANDARD_CONTAINER_WIDTH) * 1px); 
        height: calc(var(--GRAPH_STANDARD_CONTAINER_HEIGHT) * 1px);
        background-color:transparent;
}

.graph_standard_point_container 
{  
        display:inline-block; 
        background-color:transparent;
        height:100%;
}

.graph_standard_marker_div 
{ 
        /* border-top:red; */
        width:3px; 
        height:3px; 
        background-color:rgb(50,150,150);
        position:absolute;
}

[id^=CLONE_] { border:3px solid blue; position:fixed; left:50px; top:150px;}





