/**
 * base.css - Gettin' rid of the nasties to make room for the haxies.
 *
 * Take styles back to basics to help alleviate default browser style inconsistencies.
 * This base style serves as a "clean slate" starting point.
 *
 * Credits: 	
 *
 *          Tantek Celik [tantek.com]
 * 						 [http://tantek.com/log/2004/undohtml.css]
 *
 * 			Eric Meyer   [http://www.meyerweb.com/]
 *						 [http://www.meyerweb.com/eric/thoughts/2004/09/15/emreallyem-undoing-htmlcss/]
 *
 *          Matt Wilcox  [http://mattwilcox.net/]
 *         				 [http://www.meyerweb.com/eric/thoughts/2004/09/15/emreallyem-undoing-htmlcss/#comment-989]          
 */
 

/* SET BASE FONT ATTRUBUTES */
html, body {
color: #000;
}

/* REMOVE PADDING AND MARGIN VALUES */
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, li, dd, dt, img,
blockquote, q, table, thead, tbody, tfoot, caption, th, tr, td, a, form,
input, textarea, fieldset, pre, code, label, div
{margin: 0; padding: 0;}

/* LEVEL OUT HEADINGS AND PRE AND CODE */
h1, h2, h3, h4, h5, h6, pre, code {font-weight: normal; font-size: 1em; line-height: 1em;}

/* HARMONIZE LINKS, KILL BORDER ON IMG LINKS */
a {text-decoration: underline;}
a:link, a:visited {color: #00f;}
a:hover {color: #33f;}
a:active {color: #fff;}
a img, :link img, :visited img {border: none}

/* REMOVE BROWSERS DEFAULT TABLE BORDERS */
table {border-collapse: collapse;}

/* REMOVE AUTOMATIC TOP/BOTTOM MARGINS ON NESTED 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;}

/* HARMONISE LIST-BULLET TYPE */
ul, ol, dl {list-style-type: disc;}