/* css/less.shout.css -- shout tooltip */

span.tool {
    position: relative;   /* this is key */
    /*cursor: auto;*/
}
 
span.tool span.tip {
    display: none;        /* so is this */
}

/* tooltip will display on :hover event */

span.tool:hover span.tip {
    display: block;
    z-index: 100;   /* when generating tooltips, assign decreasing z-index values to each successive instance */
    position: absolute;
    top: 0px;
    left: 10px;
    width: 100%;
    line-height: 1.2em;
    border: 1px solid #336;
    background-color: #FFFFE0;
    font-size: 12px;   /* this has no effect when font-size is one of the attributes being animated */
    font-weight: normal;
    color: black;
    text-align: center;
    overflow: hidden;
    /* default width & height for non-YUI tooltip - will be overridden by YUI animation effect */
    width: 180px;
    height: 60px;
}

#lessTopUsers.dyn_tab_block * span.tool:hover span.tip,
#lessRecentUsers.dyn_tab_block * span.tool:hover span.tip {
  top: -10px;
}

#NW_corner.sidebar * span.tool:hover span.tip {
    top: -65px;
    left: 20px;
}

.wide_image span.tool:hover span.tip {
    top: -100px;
}

#content span.tool::after {
    padding-left: 2px;            /* eye candy */
    /* content: url(/img/bubble.gif); */
}

span.tip form.shout_back {
    display: block;
    margin-top: 4px;
    text-align: -moz-center;
}

span.tip input.shout_back {
    display: block;
    color: black;
    margin-top: 4px;
    text-align: -moz-center;
}

/* iframe { overflow: visible; } */   /* fails to suppress scrollbars */

