/* The hint to Hide and Show */
.hint {
	display: none;
	position: absolute;
	width: 250px;
	top: 0;
	right: -300px;
	margin-top: -4px;
	margin-left: 15px;
	border: 1px solid #c93;
	padding: 10px 12px;
	z-index: 101;
	/* to fix IE6, I can't just declare a background-color,
		I must do a bg image, too!  So I'm duplicating the pointer.gif
		image, and positioning it so that it doesn't show up
		within the box */
	background: #ffc url(/images/pointer.gif) no-repeat -10px 5px;
}

/* The pointer image is hadded by using another span */
.hint .hint-pointer {
 	position: absolute;
  left: -10px;
  top: 5px;
  width: 10px;
  height: 19px;
  background: url(/images/pointer.gif) left top no-repeat;
}

a.hint-close { float: right; }
.hint-container {
	position: relative;
}
.hint-bubble {
	display: none;
	position: absolute;
	width: 175px;
	top: -5px;
	right: -215px;
	margin-top: -4px;
	margin-left: 15px;
	border: 1px solid #c93;
	padding: 10px 12px;
	z-index: 101;
	font-weight: normal;
	font-size: 12px;
	color: black;
	/* to fix IE6, I can't just declare a background-color,
		I must do a bg image, too!  So I'm duplicating the pointer.gif
		image, and positioning it so that it doesn't show up
		within the box */
	background: #ffc url(/images/pointer.gif) no-repeat -10px 5px;
}
.hint-bubble-pointer {
    position: absolute;
    left: -10px;
    top: 7px;
    width: 10px;
    height: 19px;
    background: url(/images/pointer.gif) left top no-repeat;
}


.welcome {
  min-height: 100px;
}

.close-hint a {
  position: absolute;
  right: 5px;
  top: 5px;
}

#floating-hint {
  width: 500px;
  position: absolute;
  left: 100px;
  top: 50px;
  display: inline;
}

#prev-hint {
  position: absolute;
  bottom: 5px;
  left: 5px;
}

#next-hint, #close-hint {
  position: absolute;
  bottom: 5px;
  right: 5px;
}