body {

  font: 11px sans-serif;
  background-color: #22264b;
  overflow:hidden;
}

.infos {

	font: 11px sans-serif;
	color: white;
    position: fixed;
    top: 20px;
    right: 35px;
    text-align: right;
    line-height: 16px;
}

.time {
	font: 10vw sans-serif;
    position: fixed;
    z-index:-1;
    color: white;
    top: 20px;
    right: 35px;
    text-align: right;
    
}



mark {
    background-color: black;
    color: white;
    padding: 10px;
}

p {
	font: 10px sans-serif;
	color: white;
	}
	
/* D3.js related  */

.axis path,
.axis line {
  fill: none;
  stroke: #FFF;
  shape-rendering: crispEdges;
}

.tick line{
    opacity: 0.3;
    stroke-dasharray: 1, 2
  }
  
.tick text{
    fill: white;
  } 
  
text.label{
    fill: white;
  } 


.dot {
  fill : #6ed3cf; 
  opacity: 0.8;
}

.area {
  fill: #181a34;
  opacity: 1;
}



.lines {
  fill: none;
  stroke : #6ed3cf; 
  opacity: 0.8;
  shape-rendering: crispEdges;
}

.skylines {
  stroke : #FFF; 
  opacity: 0.3;
  stroke-dasharray: 1, 2;
  shape-rendering: crispEdges;
}

.tooltip {
  color : white;
  position: absolute;
  width: 160px;
  height: 160px;
  pointer-events: none;
  background-color: rgba(24, 26, 52, 0.6);
  padding: 10px;

}


ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-left: 40px;
    
   
}



li {
    float: left;
    border-style: solid;
    border-width: 0px 0px 0px 2px;
    border-color: #22264b ;
}



li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    
}

li a:hover, .dropdown:hover .dropbtn {
    background-color: #181a34;
}


li.dropdown {
    display: inline-block;
    background-color: black;
}

a.event {
	color: white;
    display: inline-block;
    background-color: #22264b;
}

a.current {
	color: #ffff99;
    display: inline-block;
    background-color: #22264b;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content a {
    color: black;
    padding: 5px 16px;
    border-style: solid;
    border-width: 2px 0px 0px 0px;
    border-color:#ffffff ;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
	background-color: #3300FF;
	color: white;

}

.dropdown:hover .dropdown-content {
    display: block;
}

.overlay {
    height: 0;
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(248,248,248);
    background-color: rgba(248,248,248, 0.9);
    overflow-x: hidden;
    transition: 0.5s;
}

.overlay-content {
    position: relative;
    top: 20%;
    width: 100%;
    text-align: center;
}

.overlay p {
	font-family: "monospace", Monaco;
    padding: 4px;
    text-decoration: none;
    font-size: 12px;
    color: #000000;
    display: block;
    transition: 0.3s;
}

.overlay h1 {
	font-family: "monospace", Monaco;
    padding: 4px;
    text-decoration: none;
    font-size: 17px;
    color: #000000;
    display: block;
    transition: 0.3s;
}


/* Deal with animation between pages */
.animate-in {
    -webkit-animation: fadeIn .5s ease-in;
    animation: fadeIn .5s ease-in;
}

.animate-out {
    -webkit-transition: opacity .5s;
    transition: opacity .5s;
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}