
/* Replace abbr with title */
abbr {
  display : none;
}

abbr:after {
  content : attr(title) ;
}

/* Define Acronyms */
acronym {
  speak : spell-out;
}

acronym:before {
  speak : normal;
  content : attr(title) " or ";
}