/* css clearing */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
button,
textarea,
select,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
fieldset,
img {
	border: 0;
}
address,
button,
caption,
cite,
code,
dfn,
em,
input,
optgroup,
option,
select,
strong,
textarea,
th,
var {
    font:inherit;
}
/* -- list style clearing --
li {
	list-style: none;
}*/
h1,h2,h3,h4,h5,h6 {
	font-size:inherit;
	font-weight: bold;
}
abbr,acronym {
	border: 0;
}
sup {
	vertical-align:top;
}
sub {
	vertical-align:bottom;
}
/* End css clearing */
/* bring back content formatting */
html { /*set default color and match ledgend to default color *********** NB*/
	color:#000000;/************ NB*/
}
legend {
	color:#000000;/************ NB*/
}
h1 {
	font-size:138.5%;  
}
h2 {
	font-size:123.1%; 
}
h3 {
	font-size:108%;  
}
h1,h2,h3 {
	margin:0px;
	padding-bottom:10px;
}
h1,h2,h3,h4,h5,h6,strong {/*bringing boldness back to headers and the strong element*/
	font-weight:bold;
}
abbr,acronym {/*indicating to users that more info is available */
	border-bottom:1px dotted #000;
	cursor:help;
} 
em {/*bringing italics back to the em element*/
	font-style:italic;
}
blockquote,ul,ol,dl {/*giving blockquotes and lists room to breath*/
	padding:10px;
}
ol,ul,dl {/*bringing lists on to the page with breathing room */
	padding-left:30px;
}
ol {/*giving OL's LIs generated numbers*/
	list-style: decimal outside;	
}
ul {/*giving UL's LIs generated disc markers*/
	list-style: disc outside;
}
dl dd {/*providing spacing for definition terms*/
	padding-left:10px;
}
th,td {/*borders and padding to make the table readable*/
	/*border:1px solid #000;
	padding:5px;*/
}
th {/*distinguishing table headers from data cells*/
	font-weight:bold;
	text-align:center;
}
caption {
	/*coordinated margin to match cell's padding*/
	padding-bottom:10px;
	/*centered so it doesn't blend in to other content*/
	text-align:center;
}
p,fieldset,/*table,*/ pre {/*so things don't run into each other*/
	padding-bottom:10px;
}
/* setting a consistent width, 160px; 
   control of type=file still not possible
input,textarea{width:100%;}/* ------------------------------------------------------ <<<<<<----- FIX THIS ----------------------------------------------------------------------------- */
/* long word fix */
.break-word {
	/* this is a magic fix word wrapping long text issue (for models that dont support this add overflow hidden or scroll to the containing holder) */
	/*apply class to fix individual long words to its container ie span p div aslong as its not on parent of all content */
		word-wrap: break-word;
		word-break: break-all;/*normal|break-all|hyphenate*/
}
/* End bring back content formatting */