1a.explain {
2  border-bottom: 1px dotted __border__;
3  padding-top: 0;
4}
5
6a.explain:hover {
7  background-color: __light__;
8  color: #000;
9  position: relative;
10}
11
12div.dokuwiki a.explain span.tooltip {
13  display: none;
14  background-color: __background_neu__;
15  color: __text_neu__;
16  font-family: Verdana, 'Trebuchet MS', times;
17  border:1px solid __border__;
18  font-size:80%;
19  line-height:1.2em;
20  padding:4px 4px 8px 8px;
21  text-align:left;
22  position: relative;
23}
24
25/* IE/Win requires this */
26div.dokuwiki a.explain:hover {font-size: 100%;}
27
28/*the span will display just on :hover state*/
29div.dokuwiki a.explain:hover span.tooltip {
30  display: block !important;
31  position: absolute;
32  top: 5px;
33  left: 40px;
34  width: 150px;
35  z-index:99 !important;
36}
37