/*		Resetting Stylesheet		*/
/*		Kudos to Terry Gooding - www.bluedepth.co.uk	*/

												/** 1.	 MAIN ELEMENTS **/
html, body, div, span, h2, h3, h4, p,
a, del, img, em, strong, dl, dt, dd, ol, ul, li,
table, tr, th, td, .x {												/* .x removes any inherent styling to elements below */
	margin: 0;
	padding: 0;
	color: #C1C1C1;
	font-family: "Verdana", "Arial", "Helvetica", sans-serif;
	font-size: 100.1%;
	font-weight: normal;
	font-style: normal;
	text-decoration: none;
	text-align: left;
	line-height: 1em;
	border: 0;
	outline: 0;
	text-shadow: 0 0 0 #000; /* This is for Safari. Makes fonts look thinner. (They look bold otherwise because of Safari's aggressive AA.) Kudos to Shaun Inman! */
}

:focus {
outline: 0;
}

ul, ol, dd {
	list-style-position: outside;
	list-style: none;
}

ol {
	list-style-type: decimal;
}

dt { font-weight: bold; }
dd { padding: 0; }

table { 
border-collapse: separate;
border-spacing: 0;
}

hr {
display: block;
width: 100%;
height: 1px;
color: #aaa;
background: #aaa;
border: none;
}

a {
text-decoration: none;
font-weight: normal;
outline: none;
}
	
a:hover {
text-decoration: underline;
}
												/** 2.	COMMON CLASSES **/
.debug { border: 1px solid red; }


												/** 3.	TYPOGRAPHY **/

strong			{ font-weight: 		bold;		}
em, i, cite		{ font-style: 		italic;		}
u, .u			{ text-decoration: 	underline;	}
strike 	{ text-decoration: line-through; }
