<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">	/* Style sheet for the syntax colour highlighter, CodeX */
	
	/*
		Copyright (C) 2006 - Jonathan Wilkes
		www.xanya.net
	*/

.CodeX /* General style for the entire code block */
{
	margin-left: 20px;
	border-style: solid;
	border-width: 1px;
	border-color: #0000FF; /* Blue */
	color: #000000; /* Black */
	background-color: #DCDCDC; /* Pale Blue */
	width: 95%;
	
	/* 
		Word wrap does not work in firefox within a &lt;pre&gt; tag, so that the text can extend outside
		the border of the box.
		
		These hacks were found here: http://www.brianmcquay.com/ (CSS text wrapping including line breaks)
	*/
	white-space: pre-wrap; /* css-3 should we be so luckyï¿½ */
	white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
	white-space: -pre-wrap; /* Opera 4-6 ?? */
	white-space: -o-pre-wrap; /* Opera 7 ?? */
	word-wrap: break-word; /* Internet Explorer 5.5+ */
	_white-space: pre; /* IE only hack to re-specify in addition to word-wrap */
}

.Comment /* Both single and multi-line comments */
{
	color: #008000; /* Dark Green */
	background-color: #DCDCDC; /* Pale Blue */
}

.String /* Any string, e.g. "Hello" or 'Hello' */
{
	color: #0000FF; /* Blue */
	background-color: #DCDCDC; /* Pale Blue */
}

.Keyword /* All language keywords */
{
	color: #000000; /* Black */
	background-color: #DCDCDC; /* Pale Blue */
	font-weight: bold;
}

.Variable /* Variables, eg. $szMyString in PHP */
{
	color: #FF0000; /* Red */
	background-color: #DCDCDC; /* Pale Blue */
}

.Operator /* Operators, eg. + - *, etc */
{
	color: #B22222; /* Firebrick */
	background-color: #DCDCDC; /* Pale Blue */
}

.Bracket /* Brackets, eg. () {} [] */
{
	color: #BF3EFF; /* Dark Prchid */
	background-color: #DCDCDC; /* Pale Blue */
	font-weight: bold;
}
</pre></body></html>