@import url(http://fonts.googleapis.com/css?family=Open+Sans:100,400,700,600,300);
@import url(http://fonts.googleapis.com/css?family=Faster+One);

html, body {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin: 0px;
	background: #ffffff;
	color: #656565;
	font-family: 'Open Sans', sans-serif;
	font-size: 10px;
}

#bgstyle {
	display: block;
	height: 100%;
	width: 100%;
	z-index: 1;
	opacity: 0.4;
	position: absolute;
	left: 0;
	top: 0;
}

#content {
    position: fixed;
	width: 100%;
    height: 100%;
	overflow-y: scroll;
}

#overlay {
      background: rgba(255,255,255,0.4);
      width: 100%;
      height: 100%;
      min-height: 100%;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 10000;
    }

#content h1 {
    line-height: 1.3em;
}

#content a {
    color: black;
}

#content a:hover {
    color: green;
}

.button-back {
	background: #9F9F9F none repeat scroll 0 0;
    border: 1px solid #9F9B8A;
    border-radius: 5px;
    box-shadow: 0 0 2px rgba(255, 255, 255, 0.75) inset;
    color: #fff;
    cursor: pointer;
    font-family: faster, serif;
    font-size: 24px;
    font-weight: 300;
    padding: 11px 11px;
	margin-left: auto;
    margin-right: auto;
    padding: 11px;
    width: 200px;
    /*text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);*/
}

.table-meteo {
	margin-left: auto;
    margin-right: auto;

	/* Cellspacing */
	border-spacing: 1px;
    border-collapse: separate;
}

.table-legenda {
	margin-left: auto;
    margin-right: auto;
	
	/* Cellspacing */
	border-spacing: 1px;
    border-collapse: separate;
}

.table-legenda tr, .table-legenda td {
	width: 250px;
}

.table1 {
	width: 100%;
	height: 100%;
	
	/* Cellspacing */
	border-spacing: 0px;
    border-collapse: separate;
}
/* Cellpadding */
.table1 tr, .table1 tr td, .table1 tr th { 
    padding: 0px;
}

.table2 {
	/*background: rgba(255,255,255,0.9);*/
	background: rgba(0,0,0,0.9);
	width: 100%;
	/*height: 100%;*/
	
	/* Cellspacing */
	border-spacing: 1px;
    border-collapse: separate;
	border-color: #000;
}
/* Cellpadding */
.table2 tr, .table2 td, .table2 th { 
    padding: 1px;
	height: 5px;
}
.table2 td {
	/* background: rgba(159,159,159,0.5); */
}

.table3 {
	background: rgba(159,159,159,0.5);
	/*width: 100%;
	height: 100%;*/
	
	margin-left: auto;
    margin-right: auto;
	
	/* Cellspacing */
	border-spacing: 1px;
    border-collapse: separate;
}

.clearfix{
	clear:both;
}

/* larghezza del div contenitore */
.table-responsive {width: 100%;}

/* istruzioni per le celle (alcune sono obbligatorie) */
/*.table-responsive table td, .table-responsive table th {min-width: 50px; width: 24%; border: #ccc solid 1px; word-break: break-all; text-align: center; padding: 1%;}*/

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 180px;
  background-color: #555;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 5px 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 0;
  margin-left: -88px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}