
/* remove above styles */
#tooltip {
    text-align: left;
    color: #333;
    background: #fff;
    position: absolute;
    z-index: 10000;
    padding: 10px;
				border-radius: 5px;
				border:1px solid #333;
				-webkit-transition: 100ms ease;
				-moz-transition: 100ms ease;
				-o-transition: 100ms ease;
				-ms-transition: 100ms ease;
				transition: 100ms ease;
				
				-webkit-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.33);
-moz-box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.33);
box-shadow: 4px 4px 5px 0px rgba(0,0,0,0.33);
				
					white-space:pre-wrap;

				
}
 
    #tooltip:after /* triangle decoration */
    {
        width: 0;
        height: 0;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #999;
        content: '';
        position: absolute;
        left: 50%;
        bottom: -10px;
        margin-left: -10px;
    }
 
        #tooltip.top:after
        {
            border-top-color: transparent;
            border-bottom: 10px solid #111;
            top: -20px;
            bottom: auto;
        }
 
        #tooltip.left:after
        {
            left: 10px;
            margin: 0;
        }
 
        #tooltip.right:after
        {
            right: 10px;
            left: auto;
            margin: 0;
        }
		
	
@media only screen and (max-width: 480px) {

#tooltip { max-width:90% !important; }

}	