﻿/*
'--------------------------------------------------------------------------------------------------
' Title			: CSS Reset
' Description	: Defaults ALL browser-specific styling to exactly the same appearances
'				: Authored by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/
'--------------------------------------------------------------------------------------------------
' History
' 10/04/2008	: DPE - Created Page
'--------------------------------------------------------------------------------------------------
*/

/* v1.0 | 20080212 */

div, span, a, ol, ul, li {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
}
ol, ul {
	list-style: none;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
