﻿
/* Bubble pop-up */

.popup
{
    position: absolute;
    display: none;
    z-index: 50;
    border-collapse: collapse;
}

.popup td.corner
{
    height: 10px;
    width: 15px;
}

.popup td.bottomcorner
{
    height: 22px;
    width: 15px;
}

.popup td#topleft
{
    background-image: url(images/bubble-1.gif);
}
.popup td.top
{
    background-image: url(images/bubble-2.gif);
}
.popup td#topright
{
    background-image: url(images/bubble-3.gif);
}
.popup td.left
{
    background-image: url(images/bubble-4.gif);
}
.popup td.right
{
    background-image: url(images/bubble-5.gif);
}
.popup td#bottomleft
{
    background-image: url(images/bubble-6.gif);
    background-position:top right;
    background-repeat:no-repeat;
}
.popup td.bottom
{
    background-image: url(images/bubble-7.gif);
    text-align: center;
}
.popup td.bottom img
{
    display: block;
    margin: 0 auto;
}
.popup td#bottomright
{
    background-image: url(images/bubble-8.gif);
        background-position:top left;
    background-repeat:no-repeat;
}

.popup div.popup-contents
{
    font-size: 12px;
    line-height: 1.2em;
    background:#c6a10c url("images/bubble-bg.gif");
    color: #FFFFFF;
    font-family: "Lucida Grande" , "Lucida Sans Unicode" , "Lucida Sans" , sans-serif;
}


