/* General balloon tip styles */
table.balloon_tip {
	border-collapse: collapse;
	position: absolute;
	top: 100px;
	min-width: 80px;
}
table.balloon_tip td {
	margin: 0;
	padding: 0;
}
/* Content styling */
table.balloon_tip td.content {
	background-color: #FFFFDF;
}
table.balloon_tip td.content h1 {
	white-space: nowrap;
	margin: 0;
	padding: 1px 0 0 18px;
	font-size: 1em;
	height: 15px;
	background-image: url(../images/icons/information.png);
	background-repeat: no-repeat;
	margin-right: 18px;
}
table.balloon_tip td.content p {
	margin: 0;
	padding: 0;
	font-size: 1em;
}
table.balloon_tip td.content div.close_button {
	float: right;
	width: 16px; height: 16px;
	position: relative;
	top: -4px; left: 4px;
	background-image: url(../images/balloon_tip/close.gif);
	background-repeat: no-repeat;
}
table.balloon_tip td.content div.close_button:hover {
	background-image: url(../images/balloon_tip/close_hover.gif);
}
/* Corners */
table.balloon_tip td.corner_top_left {
	height: 8px; width: 8px;
	background-image: url(../images/balloon_tip/corner_top_left.gif); background-repeat: no-repeat;
	background-position: bottom right;
}
table.balloon_tip td.corner_bottom_left {
	height: 8px; width: 8px;
	background-image: url(../images/balloon_tip/corner_bottom_left.gif); background-repeat: no-repeat;
	background-position: top right;
}
table.balloon_tip td.corner_top_right {
	height: 8px; width: 8px;
	background-image: url(../images/balloon_tip/corner_top_right.gif); background-repeat: no-repeat;
	background-position: bottom left;
}
table.balloon_tip td.corner_bottom_right {
	height: 8px; width: 8px;
	background-image: url(../images/balloon_tip/corner_bottom_right.gif); background-repeat: no-repeat;
	background-position: top left;
}
/* Edges */
table.balloon_tip td.edge_left {
	width: 8px;
	background-image: url(../images/balloon_tip/edge_left.gif); background-repeat: repeat-y;
	background-position: right;
}
table.balloon_tip td.edge_right {
	width: 8px;
	background-image: url(../images/balloon_tip/edge_right.gif); background-repeat: repeat-y;
	background-position: left;
}
table.balloon_tip td.edge_top {
	height: 8px;
	background-image: url(../images/balloon_tip/edge_top.gif); background-repeat: repeat-x;
	background-position: bottom;
}
table.balloon_tip td.edge_bottom {
	height: 8px;
	background-image: url(../images/balloon_tip/edge_bottom.gif); background-repeat: repeat-x;
	background-position: top;
}
/* Pointers */
table.balloon_tip td.edge_top div.pointer.left {
	height: 23px;
	background-image: url(../images/balloon_tip/pointer_top_left.gif); background-repeat: no-repeat;
	background-position: top left;
}
table.balloon_tip td.edge_top div.pointer.right {
	height: 23px;
	background-image: url(../images/balloon_tip/pointer_top_right.gif); background-repeat: no-repeat;
	background-position: top right;
}
table.balloon_tip td.edge_bottom div.pointer.left {
	height: 23px;
	background-image: url(../images/balloon_tip/pointer_bottom_left.gif); background-repeat: no-repeat;
	background-position: bottom left;
}
table.balloon_tip td.edge_bottom div.pointer.right {
	height: 23px;
	background-image: url(../images/balloon_tip/pointer_bottom_right.gif); background-repeat: no-repeat;
	background-position: bottom right;
}