#tooltip {
	position: absolute;
	z-index: 3000;
	padding: 5px;
    max-height: 67px;
    overflow: hidden;
	/*opacity: 0.85;*/
    pointer-events:none;
}
#tooltip h3, #tooltip div { margin: 0; }

.tooltip_BG
{
   padding: 5px; 
   background: url('/Media/images/elements/tooltip.png') no-repeat 0 0; 
   width: 140px; 
   height: 87px;
   pointer-events:none;
}

#tooltip_bg { behavior: url(iiepngfix.htc); }

/*iPhone 2G, 3G, 4, 4S */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 568px) { 
    #tooltip, #tooltip_bg, .tooltip_BG {
        position: absolute;
        height:0px;
        width:0px;
        top:0px;
        left:0px;
	    display:none;
    }
}

/*iPhone 5 */
@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px) { 
    #tooltip, #tooltip_bg, .tooltip_BG {
        position: absolute;
        height:0px;
        width:0px;
        top:0px;
        left:0px;
	    display:none;
    }
}

/*iPad mini */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px)
and (-webkit-min-device-pixel-ratio: 1)  {
    #tooltip, #tooltip_bg, .tooltip_BG {
        position: absolute;
        height:0px;
        width:0px;
        top:0px;
        left:0px;
	    display:none;
    }
}