.wp_syntax {
  background-color: #5a5a5a;
  border: 1px solid #666;
  margin: 10px auto 0 auto;
  overflow: auto;
  width: 888px;
  padding: 10px;
}

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

.wp_syntax table {
  border-collapse: collapse;
}

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

.wp_syntax .line_numbers {
  text-align: right;
  background-color: #333;
  color: #666;
  overflow: visible;
}

.wp_syntax .code {

}

/* potential overrides for other styles */
.wp_syntax pre {
  margin: 0;
  width: auto;
  float: none;
  clear: none;
  overflow: visible;
  color: #ccc;
  font-family: Consolas, Lucida Console, Monaco, monospace;
  font-size: 11px;
}

.wp_syntax a {
	text-decoration: underline;
	color: #333;
}
.wp_syntax a:hover {
	text-decoration: none;
}


/* global styles, can be overridden per-language using CSS inheritance */

/*  these are for a black background  */

/* default styles-- non-keywords, etc. */
.de1 { color: #fff; }
.de2 { color: #fff; }

/* language keywords... some languages have more than others. yellowish. */
.kw1 {color: #e447d4; }
.kw2 {color: #fff;}
.kw3 {color: #999; }
.kw4 {color: #fff; font-weight: bold;}

/* various kinds of comments.  greenish. */
.co0 {color: #9a9a9a; font-style: italic}
.co1 {color: #9a9a9a; font-style: italic}
.co2 {color: #9a9a9a; font-style: italic}
.co3 {color: #9a9a9a; font-style: italic}
.co4 {color: #9a9a9a; font-style: italic}
.coMULTI {color: #9a9a9a; font-style: italic;}   /* multi-line comments */

/* strings - blueish */
.st0 {color: #5ae16e; }
.st_h {color: #5ae16e; } /* "hard" strings (usu. singlequotes) */

/* escape characters ESCAPE_CHAR */
.es0 {color: #e3e}
.es_h {color: #909} /* in "hard" strings */


/* brackets, braces, and the like */
.br0 {color: #fff}

/* symbolses */
.sy0 {color: #fff; } 
.sy1 {color: #fff; } 

/* numbers */
.nu0 {color: #e447d4;}
.nu8 {color: #e447d4;} /* octal - GESHI_NUMBER_OCT_PREFIX */
.nu12 {color: #e447d4;} /* hex - GESHI_NUMBER_HEX_PREFIX */
.nu19 {color: #e447d4;} /* scientific- GESHI_NUMBER_FLT_SCI_ZERO */

/* methods - light */
.me1 {color: #e447d4; font-weight: bold}
.me2 {color: #fff}

/* misc other regexp-based constructs, differ widely by language */
.re0 {color: #0af; font-weight: bold} /* variables, in most langs  */
.re1 {color: #fff; font-weight: bold}
.re2 {color: #fff}
.re3 {color: #fff}
.re4 {color: #fff}
.re5 {color: #fff}
.re6 {color: #fff}
.re7 {color: #fff}
.re8 {color: #fff}
.re9 {color: #fff}

/* links, for if you've got documentation linkage turned on */
a {
   text-decoration: none
}


/* special diff colors to sort of make sense... see wp-syntax/geshi/geshi/diff.php */
.diff .kw1 {color: #aaaaaa; font-style: italic;}
.diff .re0 {color: #440088;}
.diff .re1 {color: #ff3333;}
.diff .re2 {color: #00b000;}
.diff .re3 {color: #f96;}
.diff .re4 {color: #9f9;}
.diff .re5 {color: #0011dd;}
.diff .re6 {color: #96f;}
.diff .re7 {color: #f66;}
.diff .re8 {color: #5f5;}
.diff .re9 {color: #888822;}
