body{ margin:0px; padding:0px; }
img{ vertical-align:middle }
#widgeonet_div_last_visits2 ul {
    list-style-type:none;
    margin:0;
    padding:2px 2px 2px 4px;
}
#widgeonet_div_last_visits2{
	background:url("https://www.widgeo.net/geocompteur/img/tmp/geocity_blue1.png");
	width:164px;
	height:314px;
}
.widgeonet_div_last_visits2_today {
	clear: both;
	width:164px;
	font: normal 12px 'Open Sans', sans-serif;
	margin:50px 0;
	padding:7px 0 10px 0px;
	color:#fff;
	}
.spyWrapper{ padding-top:2px }
#spywidgeonet {
	cursor:pointer;
	width:156px;
	height:306px;
}
li.widgeonet_div_last_visits2_item {
	clear:both;
	font: normal 12px 'Open Sans', sans-serif;
	color:#fff;
	padding:2px 5px 6px 5px;
	border-bottom:1px dotted #fff;
	height:18px !important;
	max-height:18px !important;
}
div.widgeonet_div_last_visits2_subitem {
	background:#f9f9f9; padding:2px; height:41px; overflow: hidden; width:100%
}
#swf{
	z-index:0;
	position:absolute;
        opacity: 1;
        width:36px;
        height:36px;
        filter: alpha(opacity=100);
	top:262px;
	left:115px; 
        background:transparent url("https://www.widgeo.net/geocompteur/img/tmp/earth_blue.png");
}

#lien_div{ 
    text-align: left; 
    margin:10px;
}
#lien_div a, .widgeonet_div_last_visits2_today a{
	font:normal 12px 'Open Sans', sans-serif;
	color:#fff;
        text-decoration: none;
}
#lien_div a:hover, .widgeonet_div_last_visits2_today a:hover{
    text-decoration: underline;
}
.tooltip {
        background:transparent url("https://www.widgeo.net/geocompteur/css/black_arrow.png");
        display:none; font:normal 11px 'Open Sans', sans-serif; height:65px; width:130px; padding:13px; color:#fff;
}
.effect3{
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.4);
} 
.blink {
    animation-duration: 1s;
    animation-name: blink;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
    font-size: 14px
    
}
@keyframes blink {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;                    
    }
}




/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 12px; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
  text-shadow: none;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */

  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 9em;
  max-width: 12em;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  font-weight: bold;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}