/* -------------------------------------------------------------- 
  
   reset.css
   * Resets default browser CSS.
   * Source: Noupe [http://www.noupe.com/css/css-techniques-i-wish-i-knew-when-i-started-designing-websites.html]
   * Note: Excluded "input", "button", "hr" out of the reset because their cross-browser differences are so vast and weird.
   
-------------------------------------------------------------- */

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, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
}

/* HTML 5 Tags Reset */
abbr, article, aside, audio, canvas, details, figcaption, figure, footer, header, hgroup, mark, meter, nav, output, progress, section, summary, time, video {
	display: block;
}

/* Remember to define focus styles! */
:focus { outline: 0; outline-width: 0;}

body {
	line-height: 1;
	color: black;
	background: white;
}
ol, ul {
	list-style: none;
}
	
/* Table still needs 'cellspacing="0"' in its markup! */
table {
	border-collapse: separate;
	border-spacing: 0;
}
	
caption, th, td {
	text-align: left;
	font-weight: normal;
}
	
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}

blockquote, q {
	quotes: "" "";
}

/* Remember to remove link's image's border! */
a img { border: none; }

/* Clearing floats without extra markup
   Based on The New Clearfix Method by Jeff Starr
   [http://perishablepress.com/press/2009/12/06/new-clearfix-hack/] */

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

/* IE6 */
* html .clearfix { 
	zoom: 1; 
}

/* IE7 */
*:first-child+html .clearfix { 
	zoom: 1; 
}

/* Display as Table, Table Row, Table Cell */
/* View: http://www.quirksmode.org/css/display.html#table for compatibility information */
.table { display: table; }
.table-row { display: table-row; }
.table-cell { display: table-cell; }
.vertical-align-middle { vertical-align: middle; }
