
.wp_syntax {
	color: #110000;
	/* margin: 10px 0px; */
	/* overflow: auto; */
	background: url(images/whiteAlpha65.png) transparent repeat 0px 0px;
	padding: 0px 10px;
}
/*
.wp_syntax .head {
	border-bottom: 1px solid #110000;
	margin-bottom: 10px;
	padding-bottom: 8px;
}
*/
#content .wp_syntax_outer {
	margin: 20px;
}
#content .wp_syntax {
	margin: 0px;
}
.wp_syntax_inner {
	padding: 10px 0px;
	overflow: auto;
	*overflow-x: auto;
	*overflow-y: hidden;
	*padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 25 : 10);
	*width: 100%;
}


/* IE FIX */
/*
.wp_syntax {
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: expression(this.scrollWidth > this.offsetWidth ? 15 : 0);
	width: 100%;
}

.wp_syntax table {
	border-collapse: collapse;
}

.wp_syntax div, .wp_syntax td {
	vertical-align: top;
	padding: 10px;
}

.wp_syntax .line_numbers {
	text-align: right;
	background-color: #def;
	color: gray;
	overflow: visible;
	background: url(images/whiteAlpha75.png) transparent repeat 0px 0px;
}

.wp_syntax ol,
.wp_syntax li {
	margin: 0px !important;
	padding: 0px !important;
	font-size: 1em !important;
}

.wp_syntax ol {
	padding-left: 3.8em !important; / * 4.5em = 5 digits, 3.8 = 4, 3.2 = 3 * /
}

.wp_syntax .code {
	background: url(images/whiteAlpha65.png) transparent repeat 0px 0px;
}
.wp_syntax .code .li1 {
	background: url(images/whiteAlpha25.png) transparent repeat 0px 0px;
}
.wp_syntax .code .li2 {
	background: url(images/whiteAlpha35.png) transparent repeat 0px 0px;
}
*/


/* potential overrides for other styles */
.wp_syntax pre {
	margin: 0px;
	width: auto;
	float: none;
	clear: none;
	overflow: visible;

	font-family: "Andale Mono", Consolas, Monaco, Pragmata, "Bitstream Vera Sans Mono", Anonymous, ProFontWindows, "Lucida Console", ProggySquareTTSZ, ProggySquareTT, ProggyCleanTTSZ, ProggyCleanTT, "Courier New", Courier, monospace;  
	/* font-family: "Andale Mono", "Lucida Console", "Monaco", "Courier New", Courier, monospace; */
	font-size: 0.8em;
	line-height: 1.5em;
}




/* COMMON: common styling cross-language */

	/* COMMON: single-line & multi-line comments */
	.wp_syntax pre .co1,
	.wp_syntax pre .coMULTI {
		color: #666666;
		font-style: italic;
	}

	/* COMMON: numbers */
	.wp_syntax pre .nu0 {
		color: #CC00CC;
	}	

	/* COMMON: strings */
	.wp_syntax pre .st0 {
		color: #009900;
	}

	/* COMMON: brackets & symbols */
	.wp_syntax pre .br0,
	.wp_syntax pre .sy0 {
		color: #FF0000;
		font-weight: bold;
	}
	


/* JavaScript code styles */

	/* JAVASCRIPT: statements (e.g. if, else, then, try, catch) */
	.wp_syntax pre.javascript .kw1 {
		color: #0000CC;
	}
	
	/* JAVASCRIPT: keywords (e.g. const, debugger, true, false, function, var) */
	.wp_syntax pre.javascript .kw2 {
		color: #0000CC;
	}
	
	/* JAVASCRIPT: common functions for the "window" object (e.g. alert, open, onload, status, etc) */
	.wp_syntax pre.javascript .kw3 {
		color: #009999;
	}
	
	/* JAVASCRIPT: method & property usages (e.g. obj.someMethod() or obj.someProperty */
	.wp_syntax pre.javascript .me1 {
		color: #000000;
	}

	/* JAVASCRIPT: JS RegExps (e.g. /someStuff/) */
	.wp_syntax pre.javascript .re0 {
		color: #CC00CC;
	}	



/* CSS code styles */

	/* CSS: properties */
	.wp_syntax pre.css .kw1 {
		color: #009900;
		/* font-weight: bold; */
	}
	
	/* CSS: values */
	.wp_syntax pre.css .kw2 {
		color: #0000CC;
	}
	
	/* CSS: hex values (e.g. #FFFFFF) */
	.wp_syntax pre.css .re0 {
		color: #CC00CC;
	}
	
	/* CSS: classes (e.g. .someClass) */
	.wp_syntax pre.css .re1 {
	}
	
	/* CSS: pseudo-classes (e.g. :hover) */
	.wp_syntax pre.css .re2 {
	}
	
	/* CSS: numbers with a unit specifier (e.g. 100%, 16px, 5.5em) */
	.wp_syntax pre.css .re3 {
		color: #CC00CC;
	}
	
	/* CSS: urls */
	.wp_syntax pre.css .re4 {
		color: #009900;
	}



/* HTML code styles */

	/* HTML: html tags (e.g. <a>, etc) */
	.wp_syntax pre.html4strict .kw2 {
		color: #0000CC;
	}
	
	/* HTML: attribute names */
	.wp_syntax pre.html4strict .kw3 {
		color: #0000CC;
	}

	/* HTML: doctype */
	.wp_syntax pre.html4strict .sc0 {
		color: #009900;
	}

	/* HTML: character entities (e.g. &nbsp; &#93; etc) */
	.wp_syntax pre.html4strict .sc1 {
		color: #009900;
	}

	/* HTML: all complete html tags (e.g. <a href="" ...>, etc) */
	.wp_syntax pre.html4strict .sc2 {
	}



