/**
 * name:      jquery-foxitip-0.1.css
 * author:    Stefan Benicke - www.opusonline.at
 * version:   0.1
 * date:      19.08.2009
 * category:  stylesheet for jquery-foxitip-0.1.js
 * copyright: (c) 2009 Stefan Benicke (www.opusonline.at)
 * license:   GNU GPLv3 <http://www.gnu.org/licenses/>
 * example:   http://www.opusonline.at/foxitools/foxitip/
 * 
  <div id="foxitipID" class="foxitip">
    <div class="foxitip_title"></div>
    <div class="foxitip_url"></div>
  </div>
 */
.foxitip {
/* position and z-index have to be there */
/* if you want the blob bigger than the list item use padding */
  position: absolute;
  z-index: 100;
  padding: 10px;
  color: #000;
  background: #afafaf;
  border: 1px solid #000;
}
.foxitip_title {
  font-weight: bold;
}
.foxitip_url {
  font-size: 85%;
}
