/*
Stylesheet for highlight.js
highlight.js (C) Ivan "Maniac" Sagalaev
this.css     (C) Oleg "Sannis" Efimov
*/

/* Import color scheme */
@import url(../../../../jscripts/highlight/styles/default.css);


/* Some fixes from Sannis */
pre {
	//white-space: pre;			/* CSS2 */
	white-space: pre-wrap;		/* CSS 2.1 */
	//white-space: pre-line;		/* CSS 2.1/3 *//
	white-space: -moz-pre-wrap;	/* Mozilla */
	//white-space: -hp-pre-wrap;	/* HP printers *//
	white-space: -o-pre-wrap;	/* Opera 7 */
	white-space: -pre-wrap;		/* Opera 4-6 */
	word-wrap: break-word;		/* IE 5.5+ */
}

pre code {
    margin: 0px;
width: 99%;
	float: left;
	display: block;
	
	padding: 2px;
	padding-left: 4px;
	padding-right: 4px;
	
	color: black;
	background: #F0F0F0;
	border: solid 1px #CCCCCC;
	
    font-family: "Courier New",Courier,mono,serif;
    font-size: 12px;
overflow: auto;
}

pre code[class]:after {
	content: 'Language: ' attr(class);
	
	display: block;
	
	padding: 0px;
	
	background: transparent;
	color: #CCCCCC;
	border-top: solid 1px;
	
	text-align: right;

	/*font-size: smaller;*/
}

pre code.no-highlight:after { display: none; }
/* Some fixes from Sannis End */
