html, body{
    height: 100%;
    width: 100%;
    margin: 0;
    font-family: sans-serif;
    overflow: hidden;
}

#page {
    display: table;
    height: 100%;
    width: 100%;
/*
    background: yellow;
*/
}

.header {
    display: table-row;
}

.content {
    display: table-row;  /* height is dynamic, and will expand... */
    height: 100%;        /* ...as content is added (won't scroll) */
/*
    background-color: #F0F0F0;   /* should not be visible*/
*/
    overflow: hidden;
}

.content_aux {
    position: relative;
    height: 100%;
    width: 100%;
}

.footer {
    display: table-row;
}

/* Graph */
#vz_threejs_main {
    position: absolute;
    width:100%;
    height: 100%;
    z-index: 500;
}

#vz_threejs_main canvas{
    position: absolute;
    left: 0px;
    top: 0px;
}

/* Loading GIF */
#loading-indicator {
    position: fixed;
    z-index: 900;
    left:0;
    right:0;
}
#loading-indicator>div {
    text-align: left
}
#loading-indicator>div>img {
    margin: 13px;
}

/* ------ Components  ------ */

#right_pane_ctrl button:hover{
    background-color: #eee;
}

#right_pane_ctrl button{
    background-color: #fff;
}

#right_pane {
    margin:0;
}

#right_pane .pane_head {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 25px;
    text-align: right;
    overflow:hidden;
    z-index: 800;
}

#right_pane .pane_items {
    position: absolute;
    top: 25px;
    right: 0px;
    min-width: 200px;
    width: 25%;
    max-height: calc(100% - 25px);
    margin:0;
    text-align: left;

    overflow-y:auto;
    overflow-x:hidden;
    z-index: 800;
}

#right_pane .pane_items .panel{
    border: 0;
    -webkit-box-shadow: 0 0 0 0;
    box-shadow: 0 0 0 0;
    background-color: inherit;
}

/* -- clustering -- */

#clustering_items {
}

#clustering_items>ul {
    list-style: none;
    padding: 0px;
}

#clustering_items>ul.cluster.active {
    background-color: red;
}

#clustering_items>ul li.cluster{
    margin-top: 0px;
    margin-bottom: 2px;
    border-radius: 6px;
    padding: 0px 1px;
    border: 1px solid white;
    text-align: center;
    cursor:pointer;
}

#clustering_items>ul li.cluster.active{
    opacity: 1;
}
#clustering_items>ul li.cluster.unactive{
    opacity: 0.5;
}

#clustering_items>ul li.cluster:hover{
    border: 1px black solid;
}

#clustering_items>ul li.cluster ul.label_list{
    list-style: none;
    padding: 0px;
    padding-bottom: 3px;
}

#clustering_items>ul li.cluster li.clabel{
    list-style: none;
    display: inline-block;
    height: 1.1em;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-right: 3px;
}

/* Add comma between labels */
#clustering_items>ul li.cluster li.clabel:after {
  content: ", ";
}

#clustering_items>ul li.cluster li.clabel:last-child:after {
  content: "";
}

#clustering_items>ul li.cluster li.clabel a{
    color: #111;
}
#clustering_items>ul li.cluster li.clabel a:hover{
    text-decoration: underline;
}


/* -- vtx list -- */

#proxemy_items {
    background-color: rgba(255,255,255,0.8);
    border: 1px solid #c3d2f0;
    padding:3px;
}

#proxemy_items ul {
    list-style:none;
    padding-left: 5px;
}

#proxemy_items a {
    color: #666;
}

#proxemy_items li.active a {
    font-weight:bold;
    text-decoration:underline;
}

#proxemy_items div.puce {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 3px;
    margin-right: 5px;
    border-radius: 15px;
}

