/*
Table Of Contents:
	1. Reset
	2. General Styles
	3. CSS Diagnostics
	
CSS References
http://www.w3.org/TR/css3-selectors/#selectors
http://en.wikipedia.org/wiki/Comparison_of_layout_engines_(CSS)
http://www.tanfa.co.uk/css/examples/

IE Bugs
http://css-class.com/articles/explorer/guillotine/
http://www.satzansatz.de/cssd/onhavinglayout.html

Layout Source
http://www.tutorialtastic.co.uk/page/create_a_tableless_layout
*/



/****************************************************************
 1.  Reset  -  http://tantek.com/log/2004/undohtml.css  -  http://meyerweb.com/eric/tools/css/reset/
****************************************************************/
html, body, h1, h2, h3, h4, h5, h6, p, img, blockquote, q, table, thead, tbody, tfoot, caption, th, tr, td, a, form, input, textarea, fieldset, pre, ul, ol
{ margin: 0px; padding: 0px;}

address { font-style: normal; }
acronym, abbr { border-bottom: 1px #000000 dashed; cursor: help; }

a img, img { border: none; }
a { text-decoration: none; }
img { display: block; } /* http://developer.mozilla.org/en/docs/Images,_Tables,_and_Mysterious_Gaps  -  http://developer.mozilla.org/en/docs/Images,_Tables,_and_Mysterious_Gaps */

table { border: 0px; border-collapse: collapse; border-spacing: 0px; }
table td, table th { margin: 0px; padding: .1em; empty-cells: show; vertical-align: top; }
caption {}
th {}


/****************************************************************
 2. General Styles
****************************************************************/

body{
font-family: Georgia, "Times New Roman", Times, serif;
font-size: small;
}

/*Font Size*/
h6{font-size: 1.0em;}
h5{font-size: 1.2em;}
h4{font-size: 1.4em;}
h3{font-size: 1.6em;}
h2{font-size: 1.8em; }
h1{font-size: 2.0em;}
p{font-size: 1.0em;}

/*spacing*/
p, h1, h2, h3, h4, h5, h6, ul, ol{
	margin-top: 1em;
	margin-bottom: 1em;
}
ul, ol{
	padding-left: 20px;
}
li{
	margin-top: 0em;
	margin-bottom: 0em;
}


/****************************************************************
 3. CSS Diagnostics - http://www.nealgrosskopf.com/tech/thread.asp?pid=3
****************************************************************/

/* Deprecated Elements */
/*
center, font, s, strike, u, marquee, blink
{ border: 5px solid red !important; }
*/

/* Deprecated Attributes */
/*
br[clear], hr[noshade], *[color],
*[bordercolorlight], *[bordercolordark], *[bordercolor], *[background], *[bgcolor], *[nowrap],
ol[compact], ul[compact], *[start],
img[hspace], img[vspace]
*[align], *[valign],
*[height], *[width],
ul[type], ol[type], li[type],
font[size], hr[size]
{ border: 5px dotted red !important; } 
*/

/* Empty Elements */
/*
.content div:empty, .content span:empty, .content li:empty, .content p:empty, .content td:empty, .content th:empty 
{ padding: 20px; border: 5px solid yellow !important; }
*/

/* Empty Attributes */
/*
*[alt=""], *[title=""], *[id=""], a[href=""], a[href="#"] 
{ border: 5px dotted yellow !important; }

