/* reset.css, part of YUI's CSS Foundation */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { 
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border:0;
}
address,caption,cite,code,dfn,th,var {
	font-style:normal;
	font-weight:normal;
}
ol,ul {
	list-style:none;
}
caption,th {
	text-align:left;
}
h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,q:after {
	content:'';
}
abbr,acronym { border:0;
}

/****
based on base.css, part of YUI's CSS Foundation;
modified following ALA CSS text size article: http://www.alistapart.com/articles/howtosizetextincss/ 
with other modifications
****/

body {
	font-size:100%;
	line-height:1.25em;
	font-family: Arial, Helvetica, sans-serif;
	color:#333333;
}

h1 {
	font-size:1.5em;
}
h2 {
	font-size:1.25em;
}
h3 {
	font-size:1.1em;
}
h1,h2,h3 {
	margin:1em 0;
}
h1,h2,h3,h4,h5,h6 {
	line-height:1.1em;
	font-family: "Times New Roman", Times, serif;
}
h1,h2,h3,h4,h5,h6,strong {
	font-weight:bold;
}

abbr,acronym {
	border-bottom:1px dotted #333333;
	cursor:help;
} 
em {
	font-style:italic;
}
blockquote,ul,ol,dl {
	margin:1em;
}
ol,ul,dl {
	margin-left:2em;
}
ol li {
	/*giving OL's LIs generated numbers*/
	list-style: decimal outside;	
}
ul li {
	/*giving UL's LIs generated disc markers*/
	list-style: disc outside;
}
dl dd {
	/* giving DL's DDs inset room (fixing yahoo! typo) */
	padding-left:1em;
}
th,td {
	/*borders and padding to make the table readable*/
	border:1px solid #333333;
	padding:.5em;
}
th {
	/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated marking to match cell's padding*/
	margin-bottom:.5em;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset,table,address {
	/*so things don't run into each other*/
	margin-bottom:1em;
}

/******* begin stuff nabbed directly from YUI's fonts.css and modified slightly

Copyright (c) 2008, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 2.6.0
********/

/* Nudge down to match for these form elements */ 
select, input, button, textarea {
	font:99% Arial, Helvetica, sans-serif;
}

/* To help tables remember to inherit */
table {
	font-size:inherit;
	font:100%;
}

/* no resize; just font-family */
pre, code, kbd, samp, tt {
	font-family:monospace;
}
/******* end stuff nabbed directly from YUI's fonts.css and modified slightly ********/


html {
	overflow-y: scroll;
}
  
a:link {
	color:#0000ee;
	text-decoration:underline;
}
a:visited {
	color:#551a8b;
}
a:hover {
	text-decoration:none;
}
a:active {
	color:#ee0000;
}

.clear {
	display:block !important;
	width:100% !important;
	clear:both !important;
	float:none !important;
	min-height:0 !important;
	height:1px !important;
	line-height:1px !important;
	font-size:1px !important;
	border-width: 0 !important;
	padding: 0 0 !important;
	margin: 0 0 !important;
	background-image: none !important;
}