/* Tooltip */
a.tooltip
{
    position: relative; /*this is the key*/
    z-index: 24;
    background-color: #fff;
    color: #000;
    text-decoration: none;
}

a.tooltip img
{
    border: 0;
}

a.tooltip:link, a.tooltip:visited, a.tooltip:hover, a.tooltip:active
{
    text-decoration: none;
}

a.tooltip:hover
{
    z-index: 25;
    background-color: #fff;
    cursor: help;    
}

a.tooltip span
{
    display: none;
}

a.tooltip:hover span
{
    /*the span will display just on :hover state*/
    display: block;
    position: absolute;
    top: 0;
    left: 30px;
    width: 15em;
    border: 1px solid #666;
    background: #6CF;
    color: #000;
    text-align: left;
    padding: 0.5em;
    line-height: 1.5em;
}


input.vshort
{
    width: 50px;
}

input.short
{
    width: 100px;
}

input.standard
{
    width: 200px;
}

div.standard
{
    width: 200px;
}

input.long
{
    width: 350px;
}

input.vlong
{
    width: 500px;
}

textarea.short
{
    width: 100px;
}

textarea.standard
{
    width: 200px;
}

textarea.long
{
    width: 345px;
}

textarea.vlong
{
    width: 500px;
}

select.short
{
    width: 100px;
}

select.standard
{
    width: 200px;
}

select.long
{
    width: 350px;
}
