/* undohtml.css */
/* (CC) 2004 Tantek Celik. Some Rights Reserved.                        */
/* http://creativecommons.org/licenses/by/2.0                           */
/* This style sheet is licensed under a Creative Commons License.       */

/* Purpose: undo some of the default styling of common (X)HTML browsers */

/* link underlines removed */
:link,:visited {
	text-decoration: none
}

/* remove list-markers */
ul,ol {
	list-style: none
}

/* avoid browser default inconsistent font-sizes */
h1,h2,h3,h4,h5,h6,pre,code {
	font-size: 1em;
}

/* remove the inconsistent padding and margins  */
ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,body,html,p,blockquote,fieldset,input{
	margin: 0; padding: 0
}

/* whoever thought blue linked image borders were a good idea? */
a img,:link img,:visited img {
	border:none
}

/* de-italicize address */
address {
	font-style: normal
}

/* remove nested top/bottom margins on lists */
ul ul,   ul ol,   ul dir,   ul menu,   ul dl,
ol ul,   ol ol,   ol dir,   ol menu,   ol dl,
dir ul,  dir ol,  dir dir,  dir menu,  dir dl,
menu ul, menu ol, menu dir, menu menu, menu dl,
dl ul,   dl ol,   dl dir,   dl menu,   dl dl {
	margin-top: 0;
	margin-bottom: 0;
}