/*---------------------------------------------------------
Trion

file:			Style Sheet, initialization file
description:	Removes default browser styling on many
				elements and creates more general, cross-
				browser rules.

version:		1.0
author:			Travis Forden, Threespot
date created:	2006-08-14

copyright:		2006

---------------------------------------------------------*/

/*  Table of Contents
	- initialization
	- clearing
	- replacement
	- accessibility
*/


/* INITIALIZE CSS */
	/* Neutralize styling: Elements we want to clean out entirely: */
	html, body,
	fieldset, form,
	dd, dt, li,
	td, th, blockquote {
		margin: 0;
		padding: 0;
	}
	
	/* Neutralize styling: Elements with a vertical margin: */
	h1, h2, h3, h4, h5, h6, p, pre, ul, ol, dl, address {
		margin: 1em 0;
		padding: 0;
	}
	
	/* Miscellaneous conveniences: */
	ul {
		list-style: none;
	}
	
	form label {
		cursor: pointer;
	}
	
	fieldset,
	img {
		border: none;
	}
	
	input, select, textarea {
		font-size: 100%;
	}
	
	table {
		border-collapse: collapse;
		border-spacing: 0;
	}
	
	address, caption, cite, code,
	dfn, em, th, var {
		font-style: normal;
		font-weight: normal;
	}
	
	caption,
	th {
		text-align: left;
	}
	
	abbr,
	acronym {
		border: none;
	}
/* end INITIALIZE */



/* CLEARING
Simple Clearing: Aslett/PIE float clearing method
http://positioniseverything.net/easyclearing.html
*/
.clear {
	clear:both;
	height:1px;
	margin:0;
	padding:0;
	font-size: 1px;
	line-height: 1px;
}

.clearfix { }

	.clearfix:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
	}

	* html>body .clearfix {
		display: inline-block;
		width: 100%;
	}

	* html .clearfix {
		/* Hides from IE-mac \*/
		height: 1%;
		/* End hide from IE-mac */
	}
/* end CLEARING */


/* TEXT REPLACEMENT */
.replace {
	background-repeat: no-repeat;
	background-position: left top;
	background-color:transparent;
	display:block;
}

	/* tidy these up */
	.replace * {
		background-repeat: no-repeat;
		background-position: left top;
		background-color:transparent;

		display:block;
		text-indent: -10000px;
	}

		.replace a {
			text-indent:0;
		}

		.replace a span {
			text-indent:-10000px;
		}
/* end REPLACEMENT */



/* ACCESSIBILITY */
span.accesskey {
	text-decoration:none;
}

.accessibility {
	position: absolute;
	top: -999em;
	left: -999em;
}
/* end accessibility */