/*		Resetting Stylesheet		*/

/*		1.	RESET MAIN ELEMENTS		*/
/*		2.	COMMON CLASSES			*/
/*		3.	TYPOGRAPHY				*/
/*		4.	FORMS					*/

												/** 1.	RESET MAIN ELEMENTS **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, 
*, .x {												/* .x removes any inherent styling to elements below */
	margin: 0;
	padding: 0;
	font-size: 1em;
	font-weight: inherit;
	font-style: inherit;
	line-height: inherit;
	text-decoration: none;
	text-align: left;
	text-decoration: none;
	vertical-align: baseline;
	border: 0;
	outline: 0;
	line-height: 1.50em;
	}
	:focus {
		outline: 0;
		}
ul, ol, dd {
	margin: 0 0 0 2em;
	list-style-position: outside;
	}
ol {
	list-style-type: decimal;
	list-style-position: outside;
	}
	dt { font-weight: bold; }
	dd { padding: 0; }
table { 
	border-collapse: separate;
	border-spacing: 0;
	}
	table th { font-weight: bold; }
hr {
	display: block;
	width: 100%;
	height: 1px;
	color: #ccc;
	background: #ccc;
	border: none;
	}






												/** 2.	COMMON CLASSES **/
.hide	{ display: none;	}
.inline	{ display: inline;	}
.block	{ display: block;	}
.nfloat	{ float: none;		}
.lfloat	{ float: left;		}
.rfloat	{ float: right;		}
.clear	{ clear: both;		}
.lclear	{ clear: left;		}
.rclear	{ clear: right;		}

.navigation		{ margin: 0; list-style: none; }
.navigation li	{ display: inline; 	}

.debug * { border: 1px solid red; }

													/* float clearing for IE6 */
* html #container,
* html div#content-wrap {
	height: 1%;
	overflow: visible;
	}
*+html #container,
*+html div#content-wrap {
	min-height: 1%;
	}
#container:after,
div#content-wrap:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
	}






												/** 3.	TYPOGRAPHY **/

code, pre, var, .monospace {
	font-family: "Palatino Linotype", "Courier New", monospace;
	color: #c33;
	background: inherit;
	}
	code strong, pre strong, 
	var strong, .monospace strong {
		color: #c33;
		background: inherit;
		}
del {
	color: #888;
	background-color: inherit;
	text-decoration: line-through;
	}
abbr {
	font-size: 0.90em;
	text-transform: uppercase;
	border-bottom: 1px dashed #ddd;
	cursor: help;
	}
acronym {
	font-size: 0.90em;
	text-transform: uppercase;
	letter-spacing: 0.10em;
	}
strong			{ font-weight: 		bold;		}
em, i, cite		{ font-style: 		italic;		}
u, .u			{ text-decoration: 	underline;	}

h1, h2, h3, 
h4, h5, h6 { font-weight: bold; }
h1 {  font-size: 3.00em; 	}
h2 {  font-size: 2.50em; 	}
h3 {  font-size: 2.00em; 	}
h4 {  font-size: 1.60em; 	}
h5 {  font-size: 1.20em; 	}
h6 {  font-size: 1.00em; 	}

s, strike 	{ text-decoration: line-through; }
sub 		{ vertical-align: sub; 			 }
sup 		{ vertical-align: super; 		 }
u 			{ text-decoration: underline; 	 }

p {  }
a {
	color: #04f;
	background-color: inherit;
	text-decoration: underline;
	}
	a:visited 	{ color: #66c; background-color: inherit; }
	a:hover 	{ color: #222; background-color: inherit; }
	a:active 	{ color: #c33; background-color: inherit; }
blockquote, q {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	}
	blockquote p, q p {
		color: #666;
		background: inherit;
		}






												/** 4.	FORMS **/

fieldset 		{ border: 0; 	}
form div.input 	{ clear: left;	}
label {
	display: block;
	width: 10em;
	float: left;
	font-weight: bold;
	}
	label.inline {
		font-weight: normal;
		}
input, textarea,
select {
	width: 10em;
	font: inherit;
	border: 1px solid #aaa;
	}
input.default, textarea.default,
select.default {
	float: left;
	color: #000;
	background-color: #fff;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	}
button {
	width: 8em;
	color: #fff;
	background-color: #000;
	font-size: 1.1em;
	text-align: center;
	border: 0;
	cursor: pointer;
	}
select {
	width: 10em;
	cursor: pointer;
	}
input.checkbox,
input.radio {
	width: auto;
	cursor: pointer;
	}






															/** END **/