/* Css for pop-up tips */

div.tip-wrapper {
  background-image: url(../../../images/drop-down-notch.png);
  background-position: 145px 10px;
  background-repeat: no-repeat;
  position: absolute;
  height: auto;
  left: 454px;
  top: 10px;
  overflow: visible;
  z-index: 97;
  padding: 20px;
}

div.tip {
	position: relative;
  font-family: Helvetica;
  display: block;
  width: 275px;
  height: auto;
/*
  left: 454px;
  top: 10px;
  overflow: visible;
  z-index: 97;
*/
  background-color: #fff;
  border: 5px solid #182649;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radisu: 10px;
  box-shadow: 0 2px 7px rgba(0,0,0,.7);
  -moz-box-shadow: 0 2px 7px rgba(0,0,0,.7);
  -webkit-box-shadow: 0 2px 7px rgba(0,0,0,.7);
  padding: 0;
/*   cursor: pointer; */
}

div.tip h3 {
  background-color: #182649;
  margin: 0;
  padding: 4px 0 6px 0;
  font-family: Helvetica;
  font-size: 14px;
  color: #fff;
  text-indent: 5px;
}

div.tip h3 a {
  font-family: Helvetica;
  font-size: 14px;
  color: #fff;
}

span.toplink {
  position: absolute;
  width: 150px; 
  top: 3px;
  cursor: pointer;
}

div.tip h3 a.close {
	border: 1px solid #10182e;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 1px rgba(0,0,0,.8);
  -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 1px rgba(0,0,0,.8);
  -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 1px 1px rgba(0,0,0,.8);
  position: absolute;
  top: 2px;
  right: 3px;
  font-size: 12px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-indent: 0;
  cursor: pointer;
  height: 18px;
  line-height: 18px;
  width: 18px;
}

div.tip div.tipbox {
  padding:10px;
}

div.tip div.tipbox span.notmatch {
  color: #cc0033;
}

/* stupid IE6 HasLayout hack */
.cluetip-rounded #cluetip-title,.cluetip-rounded #cluetip-inner {
  zoom: 1;
}