 
$("p span[title]").qtip(
{
   content: false,
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      }
   },
   style: { 
      width: 760,
      name: 'light',
      font: '13px trebuchet ms',
      fontStyle: 'oblique',
      textAlign: 'justify',
      border: {
         width: 3,
         radius: 0,
         name: 'light'
      },
      tip: 'bottomMiddle'
     
   }
});
 
$("p acronym[title]").qtip(
{
   content: false,
   position: {
      corner: {
         target: 'topMiddle',
         tooltip: 'bottomMiddle'
      }
   },
   style: { 
      width: 500,
      name: 'light',
      font: '13px trebuchet ms',
      fontStyle: 'oblique',
      textAlign: 'justify',
      border: {
         width: 3,
         radius: 0,
         name: 'light'
      },
      tip: 'bottomMiddle'
     
   }
});
