/*
	4D Code CSS Stylesheet v1.0
	============================
	
	Written by Mark Mitchenall
	December 2000
	
	Allows 4D Code to be displayed in a webpage just like it
	is in the 4D method editor.  Has been tested on Macintosh
	and Windows with a variety of CSS capable browsers.

	Contains some additional classes for adding line numbers
	to your listings.

	Any problems, please report them to mark@mitchenall.com
	
*/

.localvar { font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #000000 }
	
.code {  
	font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #000000 ;
	margin-left: 20px }

.plugincommand {  font-size: 9px ;
    font-style: italic;
    font-weight: bold;
	font-family: geneva, MS Sans Serif ;
	color: #330066 ;
	text-decoration: none }

.command {  
	font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	font-weight: Bold;
	color: #0000ff ;
	text-decoration: none }

.method {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	font-style: italic;
	color: #0000ff;
	text-decoration: none  }

.comment {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #ff0000 ;
	padding-left: 10px ; }

.constant {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #009933 ;
	text-decoration: underline }
		
.processvar {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #FF0099 }

.ipvar {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #FF0066 }

.keyword {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #000066 }

.parameter {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #009900 }

.error {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #CC0000 }

.table {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #006600 }
		
.field {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #006633 }

.caption {  font-size: 11px ;
	font-family: verdana ;
	font-style: italic;
	color: #000000  }

td.linenumber {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #000000;
	background-color: #33FFFF;
	text-align:right }

th.linenumber {  font-size: 9px ;
	font-family: geneva, MS Sans Serif ;
	color: #000000;
	background-color: #33FFFF;
	text-align:left }


