/* -*- css1 -*- */
/* style for cluetip popups */

/* outer div contains title and inner div */
div.cluetip-ct div#cluetip-outer {
  background-color: #000;
	font-size: small;
}

/* inner div has black text on white */
div.cluetip-ct div#cluetip-inner {
 background-color: #fff;
 border: 1px solid black;
 padding: 2px;
 font-size: smaller;
 line-height: 200%;
}

/* title is white on black */
div.cluetip-ct h3#cluetip-title {
  color: #fff;
	font-weight: bold;
	font-size: smaller;
	margin: 2px;
}

/* close button */
div.cluetip-ct div#cluetip-close {
  float: right;
}

/* close links should be white on black */
div.cluetip-ct div#cluetip-close a {
  color: #fff;
	font-weight: normal;
}

