/* Style Sheet for Windows API Guide
 *
 */

/* CSS stylesheet for general display.  This should
 * work well on just about any display device
 */

/* Stylesheet for printed display.  "Bad" CSS browsers
   should ignore this and instead use the other one. */
@media print {
BODY { background: #FFFFFF;
       color: #000000; }
A:link { color: #000000; text-decoration: underline; }
A:visited { color: #000000; }
A:hover { color: #000000; }
A:active { color: #000000; }
A.def:link { color: #000000; }
A.def:visited { color: #000000; }
A.def:hover { color: #000000; }
A.def:active { color: #000000; }

H1 { text-align: center; }
H2, H3, H4, H5, H6 { text-align: left; }
.center { text-align: center; }
.left { text-align: left; }

.new { color: #000000; }
CODE .kw { color: #000000; }
CODE .com { color: #000000; }

UL { list-style: square outside; }
UL UL { list-style: disc outside; }
}

/* Stylesheet for screen-based display.  "Bad" CSS browsers
   should "accidentally" use this all the time. */
@media screen {
BODY { background: #FFFFFF; }  /* #EEEEEE; */
       color: #000000; }
A:link { color: #0000FF; text-decoration: underline; }
A:visited { color: #007700; }
A:hover { color: #FF0000; }
A:active { color: #BBBB00; }
A.def:link { color: #000000; }
A.def:visited { color: #000000; }
A.def:hover { color: #FF0000; }
A.def:active { color: #BBBB00; }

H1 { text-align: center; }
H2, H3, H4, H5, H6 { text-align: left; }
.center { text-align: center; }
.left { text-align: left; }

.new { color: #FF0000; }
CODE .kw { color: #000079; }
CODE .com { color: #790079; }

UL { list-style: square outside; }
UL UL { list-style: disc outside; }
}