/*---------------------------------------------------------
AOPA: Aircraft Owners and Pilots Association

description:
Removes default browser styling on many elements and creates
more general, cross-browser rules.

version: 2007-03-26
copyright: 2007 AOPA. All rights reserved.

---------------------------------------------------------*/

/*  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  {
	margin: 0;
	padding: 0;
}

/* Neutralize styling: Elements with a vertical margin: */
h1, h2, h3, h4, h5, h6, p, pre,
blockquote, ul, ol, dl, address {
	margin: 1em 0;
	padding: 0;
}

/* Miscellaneous conveniences: */
ul, ol {
	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, abbr {
	font-style: normal;

}

caption,
th {
	text-align: left;
}

abbr, acronym {
	border: none;
}


/*
Clearing Floats
*/
.clear:after {
	content:"."; 
	display:block; 
	height:0; 
	clear:both; 
	visibility:hidden;
}
.clear {
	display:inline-block;
}
.clear {
	display:block;
}
* html .clear {
	height:1%;
}



/* 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;
		}



/* accessibility */
span.accesskey {
	text-decoration:none;
}

.accessibility {
	position: absolute;
	top: -999em;
	left: -999em;
}
