﻿/* -------- bgn Css Reset -------- */
/* Removed form, center, div */
html, body, 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, b, u, i, 
dd, dl, dt, li, ol, ul,
fieldset, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0px;
  padding: 0px;
  border: 0px;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  line-height: 1.1;
  text-align: left;
  vertical-align: baseline;
  background: transparent;
  background-repeat:no-repeat;
}
/* --- bgn Css Common Settings --- */	
h1,h2,h3,h4,h5,h6,strong {
  font-weight:bold; /* 2X emphasis to headers and the strong element*/
}
abbr,acronym {
  /*indicating to users that more info is available */
  border-bottom:1px dotted #000;
  cursor:help;
} 
em {
  font-style:italic; /*bringing italics back to the em element*/
}
blockquote, dl {
  padding:.5em; /* give blockquotes and definition lists more white space */
}
ol,dl {
  padding-left:1.5em;   /* white space for OLs & DLs */
}
ul {
  padding-left:1.3em;   /* white space for ULs */
}
ol li {
  list-style: decimal outside;	/* OL's LIs = numbers and no-indention */
}
ul li {
  list-style: disc outside;  /* UL's LIs = disc and no-indention */
}
dl dd {
  padding-left:1em; /*give DL's LIs more white space */
}
/* not sure about this, but here goes */
th {  /*borders and padding to make the table readable*/
  border:1px solid #000;
  padding:.5em;
}
th {  /* Table Headers = bold and centered */
  font-weight:bold;
  text-align:center;
}
caption {  
  margin-bottom:.5em;  /* coordinated margin to match cell's padding*/
  text-align:center;  /*centered so it doesn't blend in to other content*/
}
p, fieldset, table, pre, h1, h2, h3, h4, h5, h6 {
  padding-bottom:1em;  /* we expect white space to follow these blocks */
}

/* setting a consistent width, 160px; 
   control of type=file still not possible */
input[type=text],input[type=password],textarea{width:12.25em;width:11.9em;}      

