/* undo.css - 
 * These stylesheets remove some of the standard 
 * settings all broswers apply by default. This 
 * simplifies the process of building a consistent 
 * layout.  
 */
 
/* Remove all margins and paddings from all 
 * elements. 
 */
* {
	padding:0;
	margin:0;
}

/* Remove the blue borders from linked images 
 */
a img, :link img, :visited img {
	border:none;
}

/* Underlined links are disturbing.
 */
a {
	text-decoration:none;
}

/* No list markers please - because they are often
 * used for semantic reasons.
 */
ul, ol {
	list-style:none;
}

/* Avoid browser default inconsistent heading, pre, 
 * code font-sizes. 
 */
h1, h2, h3, h4, h5, h6, pre, code { 
	font-size:1em; 
}
