/*#############################################################################
#
# File:	standardize.css
#
#   ©2010	Elysian Community Management, LLC
#
#	This file and its contents are protected under U.S. copyright law. Any
#	unauthorized alteration, distribution, or reproduction will be prosecuted
#	to the maximum possible extent of the law.
#
#############################################################################*/
/*
# Description:
#	This stylesheet provides a common ground for cross-browser compatible CSS
#	development. The intent is to provide a standard baseline across browsers
#	for the default styling of common elements.
#
#	This was inspired by similar undertakings by Tantek Celik, Eric Meyer,
#	ghhutch.com, and others.
#
#############################################################################*/

/* Set consistent (zero) margins and padding for common page elements */
html,body,h1,h2,h3,h4,h5,h6,div,p,dl,dt,dd,ul,ol,li,
pre,form,fieldset,input,textarea,blockquote,th,td {
	margin: 0px;
	padding: 0px;
}

/* Set standard table behavior */
table, td, tr, th {
	border-collapse: collapse;
	border-spacing: 0;
	border: 1px solid #000;
}

/* Remove image-link borders  */
/*a img,:link img,:visited img {
	border: none;
}*/

/* de-italicize address */
address {
	font-style: normal;
}

/* Set standard-size headdings and pre/code elements */
h1,h2,h3,h4,h5,h6,pre,code {
	font-size: 1em;
}

/*  The following styles may vary based on your preferences.  */
/*  We are aiming for the FireFox standard in most cases.     */

/* Remove styles for citations, captions, table headers, etc. */
address,caption,cite,em,strong,th {
	font-style: normal;
	font-weight: normal;
}

/* Standard "code-related" elements */
code,dfn,var,kbd {
	font-style: italic;
	font-weight: normal;
}

/* Remove quotations marks from quotes because IE doesn't support them */
q:before, q:after {
	content:'';
}

/* Remove borders on acronyms and abbreviations */
abbr, acronym {
	border:0;
}

xmp, pre {
	text-align: left;
}
