
/* Purpose: undo some of the default styling of common (X)HTML browsers */
/* derived from UndoHTML by Tantek Celik */

/* link underlines can make hypertext less readable */
/* I often reverse this, as users are used to underlined */
:link,:visited {text-decoration:  none;}

/* list often used for menus etc, so remove icons etc */
ul,ol {list-style: none;}

/* avoid browser default inconsistent heading font-sizes */
/* and pre/code too */
h1,h2,h3,h4,h5,h6,pre,code {font-size: 1em;}

/* remove the inconsistent (among browsers) default ul,ol padding or margin  */
body,html,ul,ol,li,h1,h2,h3,h4,h5,h6,p,th,td,tr {
  margin: 0;
  padding: 0;
}

pre,form,blockquote,fieldset,input {
  margin: 0;
  padding: 0;
}

/* get rid of stupid borders round linked images */
a img,:link img,:visited img {border:none}

/* de-italicize address */
address {font-style: normal}
