
div.bubble-top {
    background-image: url(../image/bubble-tri-top.png);
    background-repeat: no-repeat;
    margin-left: 20px;
    height: 6px;
}

div.bubble-top.white {
    background-image: url(../image/bubble-tri-top-white.png);
}

div.bubble-top.green {
    background-image: url(../image/bubble-tri-top-green.png);
}

div.bubble-left {
    background-image: url(../image/bubble-tri-left.png);
    background-repeat: no-repeat;
    width: 6px;
    height: 16px;
    float: left;
    margin-top: 6px;
}

div.bubble-left.white {
    background-image: url(../image/bubble-tri-left-white.png);
}

div.bubble-right {
    background-image: url(../image/bubble-tri-right.png);
    background-repeat: no-repeat;
    width: 6px;
    height: 16px;
    float: right;
    margin-top: 6px;
}

div.bubble-right.red {
    background-image: url(../image/bubble-tri-right-red.png);
}

div.bubble {
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background-color: #e0e0e0;
    padding: 4px 3px;
}

div.bubble.green {
    background-color: #dae9cf;
}

div.bubble.white {
    background-color: white;
}

div.bubble.red {
    border: 1px solid #b01010;
    background-color: #ffa0a0;
}

div.bubble.with-entries {
    padding: 0px;
}

div.bubble div.entry {
    padding: 5px;
    border-bottom: 1px dotted white;
}

div.bubble.white div.entry {
    border-bottom: 1px dotted #e0e0e0;
}

div.bubble div.entry:last-child {
    border-bottom: none;
}

