/* @charset "UTF-8" */
/* Try to use UTF-8 as much as possible.  If you are using UTF-8, 
the line above has to be the very first line of this file*/

/* A stylesheet for USJP.org */

  /*** Enumeration of ordred lists in TOC 
  /* A 'body' tag should have class name "toc" as in <body class="toc">  
     for this to take effect.
  */

  body{margin-left: 30px; margin-top: 10px; margin-right: 30px; margin-bottom: 10px;}
	body.toc ol{ list-style-type: upper-alpha;}
  body.toc ol ol{ list-style-type: decimal;}

  /*** Item markers for unordered list(s) */
  ul{ list-style-type: disc;}
  ul ul{ list-style-type: circle;}
  ul ul ul{ list-style-type: square;} 

  /*** Since we section numbers are manually included in a header
       in each chapter, we don't want NVU generated TOC for the chapter
       to show any item marker */
  ol{ list-style-type: none;}


  /*** Appearnces of a hyper link when it is in an list item */
  li a {displey: block;
        padding: 1px 1px;
       }
  li a, li a:link{ text-decoration:none;
                 }
  li a:hover{ color: #CC0000;
              background-color: #00CCCC;
              text-decoration: underline;
            }
