/*		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;
	color: #333;
	font-family: "Arial", "Helvetica", sans-serif;
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
	line-height: 1.60em;
	text-decoration: none;
	text-align: left;
	vertical-align: baseline;
	/*  remove these... no need
	background: transparent;
	border: 0;
	outline: 0;
	*/
}

:focus {
	outline: 0;
}

ul, ol, dd {
	list-style-position: outside;
	padding-left: 20px;
}

li {
	padding-left: 5px;
	padding-bottom: 15px;
	line-height: 1.40em;
}

ol {
	list-style-type: decimal;
	list-style-position: outside;
	padding-left: 20px;
}


dt {
	font-weight: bold;
}

dd {
	padding: 0;
}

table {
	
}

table th {

}

hr {
	display: block;
	width: 100%;
	height: 1px;
	color: #aaa;
	background: #aaa;
	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;
}

.debug {
	border: 1px solid red;
}

/** 3.	TYPOGRAPHY **/

code, pre, var, .monospace {
	margin: 0.80em 0;
	font-family: "Palatino Linotype", "Courier New", monospace;
	line-height: 1.50em;
}

code strong,
pre strong, 
var strong,
.monospace strong {
	color: #990000;
	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: 2.50em;
	color: #990000;
}

h2 {
	font-size: 2.00em;
	color: #990000;
}

h3 {
	font-size: 1.60em;
	color: #990000;
}

h4 {
	font-size: 1.20em;
	color: #990000;
}

h5 {
	font-size: 1.00em;
	color: #990000;
}

h6 {
	font-size: 1.00em;
	color: #990000;
}

s, strike {
	text-decoration: line-through;
}

sub {
	vertical-align: sub;
}

sup {
	vertical-align: sup;
}

u {
	text-decoration: underline;
}

p {
	margin: 0.50em 0 1.00em 0;
	line-height: 1.50em;
}

a {
	color: #06f;
	background-color: inherit;
	text-decoration: underline;
}

a:visited {
	color: #99c;
	background: inherit;
}

a:hover {
	color: #222;
	background: inherit;
}

a:active {
	color: #333;
	background: inherit;
}

blockquote, q {
	margin: 0.80em 0;
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	quotes: "" "";
}

blockquote p, q p {
	margin: 0;
	padding: 0.80em;
	color: #666;
	background: inherit;
}

/** 4.	FORMS **/

fieldset {
	border: 0;
}

label {

}

button {
	padding: 2px 5px;
	color: white;
	background-color: black;
	font-weight: bold;
	text-align: center;
	border: 0;
	cursor: pointer;
}


/** END **/
