/* Adrienne Travis' initialization stylesheet ******************************************************************************/
/* with thanks to Tantek Celik, Faruk Ates, Christian Montoya, and Eric Meyer **********************************************/

/* defaults for body and html *********************************************************************************************/
body, html
	{
	margin: 0;
	padding: 0;
	border: 0;
	text-align: left;
	vertical-align: baseline;
	}

/* set body font to a readable default family and size under 100%, so em sizing works correctly in all modern browsers *****/
body
	{
	font-family: Calibri, Tahoma, Verdana, "Lucida Grande", Arial, Helvetica, sans-serif;
font-size:81%;
	}

/* neutralize font size and style on all elements **************************************************************************/
h1, h2, h3, h4, h5, h6, p, form, fieldset, input, select, textarea, label, legend, dl, dt, dd, ol, ul, li, 
a, abbr, acronym, address, blockquote, cite, code, del, dfn, em, ins, kbd, pre, q, samp, strike, 
strong, sub, sup, tt, var, caption
	{
	font-weight: inherit; /* nothing should be italic by default */
	font-style: inherit;  /* nothing should be italic by default */
	font-family: inherit;
	line-height: 1.5;
	vertical-align: baseline;
	border: 0;            /* fixes occasional oddities; margin and padding set more explicitly below. */
	}

/* everythign but alignment for table elements */

tbody, thead, tfoot, 
{
	font-weight: inherit; /* nothing should be italic by default */
	font-style: inherit;  /* nothing should be italic by default */
	font-family: inherit;
	line-height: 1.5;
	vertical-align: baseline;
	/* border: 0;             fixes occasional oddities; margin and padding set more explicitly below. */
	}

	
/* set family explicitly for monospace elements ****************************************************************************/
pre, code, tt, kbd, samp, var
	{
	font-family: Consolas, "Lucida Console", "Courier New", Courier, monospace;
	}
	
/* Equalize elements with a vertical margin ********************************************************************************/
h1, h2, h3, h4, h5, h6, p, pre, blockquote, ul, ol, dl, address, fieldset
	{
    margin: 0.5em 0;
    padding: 0;
	}	

/* Equalize elements with NO vertical margin *******************************************************************************/	
html, body, form, input, select, textarea, label, legend, dt, dd, li, a, abbr, acronym, cite, code, del, dfn, 
em, img, ins, kbd, q, samp, strike, strong, sub, sup, tt, var, caption
	{
	/* margin: 0; */
	padding: 0;
	}
	
/* restore left margin only to elements that need it ***********************************************************************/
li, blockquote 
	{
    margin-left: 1em !important; margin-left: 1.4em;
	}

/* link underlines tend to make hypertext less readable (no matter what Nielsen thinks!) ***********************************/

/* Tantek: "whoever thought blue linked image borders were a good idea?" ***************************************************/
a img, :link img, :visited img, :hover img, :active img 
	{ 
	border: none;
	}
	
/* explicitly style <em> and <strong> **************************************************************************************/
em
	{
	font-style: italic;
	}
strong
	{
	font-weight: bold;
	}
	
q:before, q:after,
blockquote:before, blockquote:after 
	{
	content: "";
	}

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

/* remember to define focus styles! */
:focus 
	{
    outline: 0;
	}


/* link underlines tend to make hypertext less readable (no matter what Nielsen thinks!) ***********************************/
a, :link, :visited, :hover, :active 
	{ 
	text-decoration: none; 
	}