﻿/* All code formatting takes place inside a div with this class */
.CodeFormatter{
/*	font-family:Arial Narrow;*/
	font-family: "Courier New", Courier, mono, serif;
	font-size:medium;
	font-size: 12px;
	background-color:#F6F6F6; 
	width: 99%;
	overflow: auto;
	padding-bottom:0px;
	padding-top:0px;
	padding-left: 5px; 
	padding-right: 5px;
	border-width:1px;
	border-style:dotted;
	white-space:pre;
	color:black;
}

.CodeFormatter ol{
	list-style: decimal; /* for ie */
	background-color: #F8F8F8; 
	margin: 0px 0px 1px 40px !important; /* 1px bottom margin seems to fix occasional Firefox scrolling */
	padding: 0px;
}

.CodeFormatter ol li,
.CodeFormatter .columns div{
	list-style: decimal-leading-zero; /* better look for others, override cascade from OL */
	list-style-position: outside !important;
	border-left: 3px solid #6CE26C;
	background-color: White; 
	color: Black;
	padding: 0 3px 0 10px !important;
	margin: 0 !important;
	line-height: 14px;
}
.CodeFormatter ol li.alt
{
	background-color:  #f6f6f6;
	color: Black;
}

.CodeFormatter .columns{
	background-color: #F8F8F8;
	color: gray;
	overflow: hidden;
	width: 100%;
}

/* For comments */
.CodeFormatter .CF_C
{
	color:Green;
}

/* For Quoted Text (Maroon) */
.CodeFormatter .CF_Q {
	color:Maroon;
}

/* For Quoted Text (Red) */
.CodeFormatter .CF_Q2 {
	color:Red;
}

/* For Keywords (Blue) */
.CodeFormatter .CF_KW {
	color:Blue;
	text-transform:uppercase;
}

/* For Keywords (Magenta) e.g. T-SQL System Function*/
.CodeFormatter .CF_KW2 {
	color:#FF00FF;
	text-transform:uppercase;
}

/* For Keywords (Gray) e.g. TSQL Operator */
.CodeFormatter .CF_KW3 {
	color:#505050;
	text-transform:uppercase;
}

/* For Keywords (Green) e.g. TSQL System table/view */
.CodeFormatter .CF_KW4{
	color:Green;
}

/* For Keyords (Maroon)  e.g. TSQL System SP */
.CodeFormatter .CF_KW5 {
	color:#800000;
}
