/* Attempt at making sure abbreviations/acronyms are read out as intended: tested using Opera */
/* We use the definitions that seem to be used in HTML 4.01:
     acronyms - Actual words to be read out, that are made up of first letters of other words
     abbreviations - All shortenings that are not acronyms, (where the class initialism reads out the letter names) */

/* Acronyms are read out as words always */
acronym {speak: normal}

/* Abbreviations default to be read out as words */
abbr {speak: normal}

/* Initialisms are read out by letters */
abbr.initialism {speak: spell-out}
