
/* 
 --------------------------------------------------------------
 Resets default browser CSS
 --------------------------------------------------------------
*/

	html, body, div, span, 
	applet, object, iframe,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, font, img, ins, kbd, q, s, samp,
	small, strike, strong, sub, sup, tt, var,
	dl, dt, dd, li, ol, ul,
	fieldset, form, label, legend,
	table, caption, tbody, tfoot, thead, tr, th, td 
	{
		margin			: 0px;
		padding			: 0px;
		border			: 0px;
		font-weight		: inherit;
		font-style		: inherit;
		font-family		: inherit;
		text-align		: left;
		vertical-align	: baseline;
		}
	
	html, body, div,
	h1, h2, h3, h4, h5, h6, p, blockquote, pre,
	a, abbr, acronym, address, big, cite, code,
	del, dfn, em, font, ins, kbd, q, s, samp,
	small, strike, sub, sup, tt, var,
	dl, dt, dd, li, ol, ul,
	fieldset, form, label, legend,
	caption, tbody, tfoot, thead, tr, th, td 
	{
		font-size		: 10px;
		line-height		: 14px;
		}
	
	strong {font-weight : bold}
	
	h1, h2, h3, h4, h5, h6
	{
		font-weight : normal;
		}
	


/* 
 -----------------
 TABLE ELEMENTS :: [ NOTE: Table instances still require 'cellspacing="0"']
 ----------------- 
 */
	table
	{
		border-collapse	: separate; 
		border-spacing	: 0;
		}
		
	caption, th, td 
	{
		text-align	: left; 
		font-weight	: normal;
		}
		
	table, td, th 
	{
		vertical-align : middle;
		}


/* 
 -----------------
 OTHER ELEMENTS
 ----------------- 
 */

	/* Remove quote marks (") from <q>, <blockquote>. */
	blockquote:before, blockquote:after, 
	q:before, q:after 
	{
		content: "";
		}
		
	blockquote, q 
	{
		quotes: "" "";
		}

	/* Remove default border on linked images */
	a img, :link img, :visited img
	{
		border : 0;
		border : none;
		}
		
	/* Explicitly set img display mode [ removes ff extra space ] */
	img 
	{
		display : block;
		}
		
	input 
	{
		vertical-align:middle;
		float:left;
		}
	
	ol, ul 
	{
		list-style: none;
		}
	
	