@charset "utf-8";
/* CSS Document */

div.mooTooltip { background-color: #FFFA8E; background-image: linear-gradient(to top, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0)); color: #333; font-size: 13px;
		border-radius: 5px; padding: 4px 6px; max-width: 100%; box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); }
div.mooTooltip > div.cntTooltip { margin: 8px; padding-right: 4px; max-height: 300px; overflow: auto; word-wrap: break-word; overflow-wrap: break-word; }
div.mooTooltip h5 { margin-top: 0; color: #fff; }

div.mooTooltip { animation-duration: 1s; animation-delay: 0s; animation-name: animtt; animation-iteration-count: 1; opacity: 0; animation-fill-mode: forwards; }
@keyframes animtt { from { opacity: 0; transform: scale(0); } to { opacity: 1; transform: scale(1); } }
