@charset "utf-8";
/* CSS Document */

body, div, h1, h2, h3, span, p {
	font-family: Verdana,Arial,Helvetica,sans-serif;
	color: #000000; 
}

/* fullscreen */
html {
	height:100%;
}
body {
	height:100%;
	margin: 0px;
	overflow:hidden; /* disable scrollbars */
}
body {
  font-size: 10pt;
  background : #ffffff; 
}
table,tr,td {
	font-size: 10pt;
	border-color : #000000;
	/*background : #dddddd; */
	color: #000000; 
	border-style : solid;
	border-width : 1px;
	padding: 3px;
	border-collapse:collapse;
	text-align:center;
}
h1 {
	font-size: 18pt;
}
h2 {
	font-size: 14pt;
}
.warning { 
	font-weight: bold;
} 
/*#topNav{
	position:fixed;
	width:100%;
	margin:0;
	left:0;
	top:0;
	filter:alpha(Opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
	z-index:9;
	background-color:#CFCFCF;
	-moz-user-select:none;
	-webkit-user-select:none;
	user-select:none;
	
}*/
#topBar{
	position:absolute;
	width:auto;
	margin:0px;
	padding:0px 2px 5px 2px;/*top right bottom left*/
	top:0px;
	left:0px;
	/*height:71px;*/
	
	filter:alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;

	/*background-color:#EFEFEF;*/
	-moz-user-select:none;
	-webkit-user-select:none;
	user-select:none;
	z-index:5;
}

.mybgcolor{
	background-color:#FFF;
	filter:alpha(Opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
}

.mapbtn{
	background:#0F0;
	color:#000;
}

#topRight{
	position:fixed;
	display:block; 
	top:0px; 
	right:10px;

	float:right;
	margin:0px;
	filter:alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;
	/*background-color:#EFEFEF;*/
	-moz-user-select:none;
	-webkit-user-select:none;
	user-select:none;
	z-index:5;
}

#currentState, #UserInfo{
	float:right;
	margin:0px;
}

#yearList{
	float:left;
	margin:0px;
}

#topBarToggle{
	position:fixed;
	cursor: pointer;
	width:30px;
	margin:0px;
	padding:0px;/*top right bottom left*/
	top:0px;
	left:0px;
	
	filter:alpha(Opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
	z-index:6;
}

.toggleBtn{
	border:none; 
	background-color:#000; 
	color:#FFF;
	width:17px;
	height:17px;
}

.topBarYearBtn{
	border:none;
	height:16px;
}

#MapsList, #DateList{
	/*float:left;*/
	margin:5px 0px 0px 18px;
}

#mapLayerToggle{
	position:absolute;
	cursor: pointer;
	width:30px;
	margin:0px;
	padding:0px;/*top right bottom left*/
	top:77px;
	left:0px;
	
	filter:alpha(Opacity=80);
	-moz-opacity:0.8;
	opacity:0.8;
	z-index:6;
}

#mapLayer{
	position:absolute;
	margin:0px;
	padding:0px 2px 5px 2px;/*top right bottom left*/
	top:79px;
	left:1px;
	
	filter:alpha(Opacity=100);
	-moz-opacity:1;
	opacity:1;

	background-color:#EFEFEF;
	-moz-user-select:none;
	-webkit-user-select:none;
	user-select:none;
	z-index:5;	
}

img.mapimg {
	position: absolute;
	top: 0;
	left: 0;
}

img.dotimg, img.loc_piceye, img.loc_picto, img.loc_picaway, img.loc_picawaybig, img.loc_video {
	position: absolute;
	top:5px;
	left:5px;
	z-index: 6;
}

circle {
	border-radius:17px;
	border:#0F0 2px solid;
}

#dateMenu, #datesLabel{
	float:left;
	position:relative;
}

#loadSwfDiv{
	position:relative;
	float:left;
	left:35px;
	top:13px;
}

#YearsAndState, #yearDetails {
	float:left;
}

/*
div.locationDot:hover:after, div.hotspotArea:hover:after{
	border: 1px solid #000;
	padding: 1px;
	margin:0px;
	content: attr(data-tip);
	position: absolute;
	left: attr(data-hint-left);
	top: attr(data-hint-top);
	font-size:small;
	color:white;
	line-height:100%;
	z-index:9;
	background-color:#000000;
	width: auto;
	white-space: nowrap;
}
*/

#directionDot {
	position: absolute;
	z-index: 5;
}
div.locationDot {
	position: absolute;
}
.location-name {
	position: absolute;
	top:0;
	left:0;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before {
  position: absolute;
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  
  z-index: 9;
  bottom: 100%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -45px;
  padding: 7px;
  width: 80px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  white-space: pre-norm;
}
[data-tooltip]:hover:after {
  position: absolute;
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
  
  z-index: 9;
  bottom: 100%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}