/*
biketec CSS File


 File created 07/02/07
 (c) All contents of the file remains the property of Jojatech Limited


*/




p.help ,
.help
{
   position:relative; /*this is the key*/
   border:0px solid red;
   padding:0px;
   margin:0px;
   text-align:left;	
   text-decoration: none;
     
}

p.help span,
.help span
{
   display:none;
   text-decoration: none;
      background-color:blue;
}

p.help:hover span ,
.help:hover span
{
   display:inline;
   background-color:black;
   border:1px solid green;
   color:white;
   position: absolute; 
   text-decoration: none;
   top: 0.75em; left: 1em; 
   width: 180px;
   z-index:5;
}



a.help
{
   text-decoration:none;
   position:relative; /*this is the key*/
    /*   position:absolute;
   top:140px;
   left:0px;*/
    z-index:24;
/*    background-color:#ccc;*/
    color:#white;
    text-decoration:none}

a.help:hover
{
   z-index:25; 
   /*ckground-color:#ff0*/
}

a.help span{display: none}

a.help:hover span{ /*the span will display just on :hover state*/
    display:block;
    position:absolute;
    top:2em; left:2em; width:15em;
    border:1px solid #0cf;
    background-color:green; 
    color:#000;
    text-align: center}
    
 