<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tipsy {
	position: absolute;
	padding: 5px;
	z-index: 100000;
	font-size:80%;
}

.tipsy-inner {
	color: #fff;
	background-color: #c00;	 	
	padding: 5px 8px 4px 8px;
	text-align: center;
	border-radius: 4px;
	max-width: 300px;	
}

.tipsy-inner { box-shadow:  1px 1px 5px 2px rgba(0, 0, 0, 0.2) }

.tipsy-arrow {
	position: absolute;
	width: 0;
	height: 0;
	line-height: 0;

	border: 10px dashed #c00;
}
  
  /* Rules to colour arrows */
.tipsy-arrow-n { border-bottom-color: #c00; }
.tipsy-arrow-s { border-top-color: #c00; }
.tipsy-arrow-e { border-left-color: #c00; }
.tipsy-arrow-w { border-right-color: #c00; }

  
.tipsy-n .tipsy-arrow {
	top: -5px; 
	left: 50%; 
	margin-left: -5px; 
	border-bottom-style: solid; 
	border-top: none; 
	border-left-color: transparent; 
	border-right-color: transparent; 
}
	
.tipsy-nw .tipsy-arrow {
	top: -5px;
	left: 10px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}
    
.tipsy-ne .tipsy-arrow {
	top: -5px;
	right: 10px;
	border-bottom-style: solid;
	border-top: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-s .tipsy-arrow {
	bottom: -5px;
	left: 50%;
	margin-left: -10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}
  
.tipsy-sw .tipsy-arrow {
	bottom: -5px;
	left: 10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}
    
.tipsy-se .tipsy-arrow {
	bottom: -5px;
	right: 10px;
	border-top-style: solid;
	border-bottom: none;
	border-left-color: transparent;
	border-right-color: transparent;
}

.tipsy-e .tipsy-arrow {
	right: -5px;
	top: 50%;
	margin-top: -10px;
	border-left-style: solid;
	border-right: none;
	border-top-color: transparent;
	border-bottom-color: transparent;
}


.tipsy-w .tipsy-arrow {
	left: -5px; top: 50%;
	margin-top: -10px;
	border-right-style: solid;
	border-left: none;
	border-top-color: transparent;
	border-bottom-color: transparent;
}
</pre></body></html>