/* Simple code markup class */

/* We override the usual meanings for <i> and <b> while in <code>
 * If you really want italics, use <em> otherwise <i class="s"> is for
 * a string, etc.                                                        
 */

code i { font-style: normal; font-weight: normal; font-variant: normal; }
code b { font-style: normal; font-weight: normal; font-variant: small-caps; }

/* And then add classes for various types of code elements */

code .c    { color: #00854f; font-weight: normal; }
code .s    { color: #008f00; font-weight: bold;   }
code .m    { color: #0000b5; font-weight: bold;   }
code .d    { color: #0000f9; font-weight: bold;   }
code .n    { color: #0000ff; font-weight: normal; }

