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

div.mooTooltip { background-color: #FFFA8E; color: #333; font-size: 11px; line-height: 14px; border-radius: 3px; padding: 4px 6px; max-width: 100%; 
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 1px rgba(0, 0, 0, 0.5) inset; 
    animation-duration: .3s; animation-delay: 0s; animation-name: animtt; animation-iteration-count: 1; opacity: 0; animation-fill-mode: forwards; animation-timing-function: ease-in-out; }
@keyframes animtt { from { opacity: 0; transform: translateY(-100%); } to { opacity: 1; transform: translateY(0px); } }

div.mooTooltip > div.cntTooltip { margin: 2px; max-height: 300px; overflow: auto; word-wrap: break-word; overflow-wrap: break-word; }
