/*
* Author: 		Trevor Morris
* Contact:		trovster@gmail.com
* Version:		1.0
* Updated:		04/04/2008
* Notes:		Below is the core code for resuing in common
				techniques such as image replacement, easy clearing and
				a method of hiding elements without display: none;
*
* CONTENTS
* -------------------------
* Accessible Hiding
* Image Replacement (Phark)
*
*/

/* Accessible Hiding
-------------------------------------------------------------------------------------------------- */
legend,
.navigation h2,
.geo,
.more a span, .more a strong,
p.permalink,
.section h2.summary strong {
	position: absolute; top: -9999px; left: -9999px;
	overflow: hidden;
	height: 0.0; width: 0.0;
	font-size: 0.0; line-height: 0.0;
}


/* Image Replacement (Phark) http://phark.typepad.com/phark/2003/08/accessible_imag.html
-------------------------------------------------------------------------------------------------- */
#branding h1 a, #branding .presents,
.audio a {
	display: block;	overflow: hidden;
	font-size: 0.0;	line-height: 0.0;
	text-decoration: none; text-indent: -9999px;
	background: transparent no-repeat 0 0;
	border: 0;
}