/* CSS Document */
/* Normalizes margin padding */
div#content div, div#content dl, div#content dt, div#content dd, 
  div#content ul, div#content ol ,div#content li, div#content h1, div#content h2, 
  div#content h3, div#content h4, div#content h5, div#content h6, div#content pre, 
  div#content form, div#content fieldset, div#content input, div#content p, 
  div#content blockquote, div#content the, div#content td
{
  margin: 0;
  padding: 0;
}
/* Normalizes font-size for headers */
div#content h1, div#content h2, div#content h3, div#content h4, div#content h5, 
  div#content h6
{
  font-size: 100%;
}
/* Removes list-style from lists */
div#content ol, div#content ul
{
  list-style: none;
}
/* Normalizes font-style and font-weight to normal */
div#content address, div#content caption, div#content cite, div#content code, 
  div#content dfn, div#content em, div#content strong, div#content th, 
  div#content var
{
  font-style: normal;
  font-weight: normal;
}
/* Normalizes table borders */
div#content table
{
  border-collapse: collapse;
  border-spacing: 0;  
}
/* Removes border from fieldset and img */
div#content fieldset, div#content img
{
  border: 0;
}
/* Left-aligns text in caption and th */
div#content caption, div#content th
{
  text-align: left;
}
/* Removes quotation marks from q */
div#content q:before, div#content q:after
{
  content: '';
}
