.clippy, .clippy-balloon {
    position: fixed;
    z-index: 1000;
    cursor: pointer;
}

.clippy-balloon {
    color: black;
    padding: 8px;
    border: 1px solid #c0c0c0;
    border-radius: 5px;
    
    background-color: #FFC;
    background-image: -moz-radial-gradient(center 45deg,circle cover, #ffffff, #FFC);
    /*background-image: -webkit-gradient(radial, 50% 50%, 0, 50% 50%,800, from(#ffffff), to(#FFC));*/
    background-image: -webkit-radial-gradient(circle, #ffffff, #FFC);
    background-image: radial-gradient(center 45deg,circle cover, #ffffff, #FFC);
}

.clippy-content {
    max-width: 200px;
    min-width: 120px;
    font-family: 'Ubuntu', "Microsoft Sans", sans-serif;
    font-size: 12pt;
    text-align: center;
}

.clippy-tip {
    /*width: 10px;
    height: 16px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAgCAMAAAAlvKiEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAlQTFRF///MAAAA////52QwgAAAAAN0Uk5T//8A18oNQQAAAGxJREFUeNqs0kEOwCAIRFHn3//QTUU6xMyyxii+jQosrTPkyPEM6IN3FtzIRk1U4dFeKWQiH6pRRowMVKEmvronEynkwj0uZJgR22+YLopPSo9P34wJSamLSU7lSIWLJU7NkNomNlhqxUeAAQC+TQLZyEuJBwAAAABJRU5ErkJggg==) no-repeat;
    position: absolute;*/
    width: 0; 
    height: 0; 
    border-top: 16px solid #FFC; 
    border-left: 10px solid transparent; 
    border-right: 10px solid transparent;
    position: absolute;
}

.clippy-top-left .clippy-tip {
    top: 100%;
    margin-top: 0px;
    left: 100%;
    margin-left: -50px;
}

.clippy-top-right .clippy-tip {
    top: 100%;
    margin-top: 0px;
    left: 0;
    margin-left: 50px;
    background-position: -10px 0;

}

.clippy-bottom-right .clippy-tip {
    top: 0;
    margin-top: -16px;
    left: 0;
    margin-left: 50px;
    background-position: -10px -16px;
}

.clippy-bottom-left .clippy-tip {
    top: 0;
    margin-top: -16px;
    left: 100%;
    margin-left: -50px;
    background-position: 0px -16px;
}

