/* Mobile Layout: Max 480px. */

@media only screen and (max-width: 480px){

			#desktop {
				display: none;
			}

			#mobile {
				display: block;
				background-color: #f4f4f4;
				height: 995px;
				width: 260px;
			}

			body {
				background-color: white;
			}
			.headline{
				background-color: #e5e5e5;
				padding-top: 5px;
				padding-bottom: 10px;
				padding-left: 15px;
				padding-right: 15px;
				width: 230px;
				line-height: 1em;
			}
			h1 {
				font-family: Times;
				font-size: 14px;
				font-weight: lighter;
				padding-top: 5px;
				text-align: center;
			}
			h2 { 
				font-family: Arial, sans-serif;
				font-size: 11px;
				padding-top: 5px;
				font-weight: lighter;
				text-align: left;
				background-color: #e5e5e5;
				line-height: 1.5em;
			}
			.legend{
				padding-top: 20px;
				padding-bottom: 20px;
			}
			div.tooltip {	
			    position: absolute;			
			    text-align: center;							
			    padding: 5px;				
			    font: 10px sans-serif;		
			    background: white;	
			    border: 0px;		
			    /*border-radius: 6px;*/			
			    pointer-events: none;
			}

			.axis path,
			.axis line {
				fill: none;
				stroke: black;
				shape-rendering: crispEdges;
				opacity: 0;
			}
			
			.x.axis text {
				font-family: Arial, sans-serif;
				font-size: 10px;
				fill: black;
				opacity: 0;
			}

			.y.axis text{
				opacity: 0;
			}

		}

/* Tablet & Desktop Layout: 481px and up. */

@media only screen and (min-width: 481px){

			#desktop {
				display: block;
				background-color: #f4f4f4;
				height: 880px;
				width: 570px;
			}
			#mobile {
				display: none;
			}

			body {
				font-family: Arial, sans-serif;
				color: black;
				background-color: white;
			}	

			.headline{
				background-color: #e5e5e5;
				padding-top: 10px;
				padding-bottom: 10px;
				padding-left: 20px;
				padding-right: 20px;
				width: 530px;
				line-height: 1em;
			}

			h1 {
				font-family: Times;
				font-size: 20px;
				font-weight: lighter;
				text-align: center;
			}
			h2 { 
				font-family: Arial, sans-serif;
				font-size: 13px;
				font-weight: lighter;
				text-align: left;
				background-color: #e5e5e5;
				line-height: 1.5em;
			}
			/*.legend{
				padding-top: 20px;
				padding-bottom: 20px;
			}*/
			div.tooltip {	
			    position: absolute;			
			    text-align: left;							
			    padding: 5px;				
			    font: 11px sans-serif;		
			    background: white;	
			    border: 0px;		
			    /*border-radius: 6px;*/			
			    pointer-events: stroke;
			}

			.axis path,
			.axis line {
				fill: none;
				stroke: black;
				shape-rendering: crispEdges;
				opacity: 0;
			}
			
			.x.axis text {
				font-family: Arial, sans-serif;
				font-size: 10px;
				fill: black;
				opacity: 0;
			}

			.y.axis text{
				opacity: 0;
			}

			.labels{
				font-size: 4px;
			}

		}