首页 > 其他分享 >网页颜色选择器,有时候需要选颜色时使用。

网页颜色选择器,有时候需要选颜色时使用。

时间:2023-08-21 23:02:46浏览次数:41  
标签:颜色 网页 color cnum 15 120 n1 border 选择器


效果

网页颜色选择器,有时候需要选颜色时使用。_Click

颜色选择器.html

<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>RGB网页颜色在线取色器</title>
<meta name="keywords" content="在线取色器,RGB在线取色器">
<meta name="description" content="提供RGB网页颜色取色,在线取色器">
<link href="images/base.css" rel="stylesheet" type="text/css">
<style type="text/css">
.box {
	width:950px;
	margin-left:auto;
	margin-right:auto;
	line-height:180%;
	font-size:13px;
}
h1 {
	color:#e35d04;
	text-align:center;
	background:#e4efff;
	font-size:18px;
	padding:6px 0 4px 0
}
.button {
	width:130px;
	height:27px;
	line-height:27px;
	font-size:13px;
	letter-spacing:0;
	text-align:center;
	color:#fff;
	background:url(images/bg_search1.gif) no-repeat;
	margin-left:65px;
	border:none;
	cursor:pointer
}
p {
	margin:15px 0
}
.input2, .inputtext, .inputtext-bor {
	height:30px;
	line-height:30px
}
input {
	font-size:14px;
}
#jg {
	/* 显示框样式表*/
FOTN-SIZE:14PX;
	padding:3px;
	border:1px solid #888;
	width:96%;
	text-align:right;
}
a:visited, a:link {
	text-decoration:none;
}
* {
	margin:0;
}
/*
body {
	background-color: #99CC66;
}*/
table {
	border:2px solid #fff;
}
#main {
	/* 包含表格层样式*/
margin:150px auto 0 auto;
	padding:20px;
	background-color: #999966;
	border-top:1px solid #FFF;
	border-bottom:1px solid #FFF;
}
#copyright {
	font-size:12px;
	color:#555;
	background-color: #CCCC66;
	padding:3px;
	text-align:center;
	border:1px solid #eee;
}
</style>
<script language="javascript">
<!--
function h(obj,url){
obj.style.behavior='url(#default#homepage)';
obj.setHomePage(url);
}

function $(id){
    obj=document.getElementById(id);
	if (obj==null) obj=document.all.id;
	return obj;
}

//检查颜色值-Begin
	function isNum16(ch)
	{
		if (ch >= '0' && ch <= '9')return true;
		if (ch >= 'A' && ch <= 'F')return true;
		if (ch >= 'a' && ch <= 'f')return true;
		return false;
	}
	function isAllNum16(str1)
	{//判断颜色值。除第一个字符#外的任一个值是否大于等a,A,0,小于等于f,F,9,否则报错。
		for (i=1; i<str1.length; i++) {
			if (!isNum16(str1.charAt(i)))
			{
				return false;
			}
		}
		return true;
	}
function checkCol(myColor)
{   //made by jiarry,input color value to change background
if(myColor!="")
 {

  if(myColor.length !=7 || myColor.charAt(0)!="#")
   {
   alert("颜色值加#至少7位,请检查!");
   $("SelColor").value="";
   }
  else if(!isAllNum16(myColor))
  {
  alert("颜色代码错误,请检查\n 颜色代码示例:#ff6600");
  $("SelColor").value="";
  }
  else{
   return myColor;
   }
  }
}
//检查颜色值-END
var SelRGB = '#808080';
var DrRGB = "";
var SelGRAY = '120';
var SelCol="";
var baseCol="#808080";
var light="120";
var RGB=$("RGB");

var hexch = new Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F');
//add innerText to FireFox Begin
if(!document.all){
HTMLElement.prototype.__defineGetter__ 
( 
"innerText", 
function () 
{ 
var anyString = ""; 

var childS = this.childNodes; 
for(var i=0; i<childS.length; i++) 
{ 
if(childS[i].nodeType==1) 
anyString += childS[i].tagName=="BR" ? '\n' : childS[i].innerText; 
else if(childS[i].nodeType==3) 
anyString += childS[i].nodeValue; 
} 
return anyString; 
} 
); 
}
////add innerText to FireFox End

function ToHex(n)
{	var h, l;

	n = Math.round(n);
	l = n % 16;
	h = Math.floor((n / 16)) % 16;
	return (hexch[h] + hexch[l]);
}
function DoColor(c, l)
{ var r, g, b;

  r = '0x' + c.substring(1, 3);
  g = '0x' + c.substring(3, 5);
  b = '0x' + c.substring(5, 7);
  
  if(l > 120)
  {
    l = l - 120;

    r = (r * (120 - l) + 255 * l) / 120;
    g = (g * (120 - l) + 255 * l) / 120;
    b = (b * (120 - l) + 255 * l) / 120;
  }else
  {
    r = (r * l) / 120;
    g = (g * l) / 120;
    b = (b * l) / 120;
  }

  return '#' + ToHex(r) + ToHex(g) + ToHex(b);
}

function EndColor()
{ var i;
var GrayTable=$("GrayTable");

  if(DrRGB != SelRGB)
  {
    DrRGB = SelRGB;
   for(i = 0; i <= 30; i ++)
	GrayTable.rows[i].bgColor = DoColor(SelRGB, 240 - i * 8);
  }
  var SelColor=$("SelColor");
  var RGB=baseCol;
  var GRAY=light;
  var ShowColor=$("ShowColor");
  SelColor.value = DoColor(baseCol, light);
  ShowColor.bgColor = SelColor.value;
  document.getElementById('copytip').innerHTML='';
}
function ctOut(e) {
  baseCol=SelRGB;
  EndColor(baseCol);
  }
 function ctClick(e) {
  SelRGB = e.bgColor;
  EndColor();}
 function ctOver(e){
  baseCol = e.bgColor.toUpperCase();
  EndColor();
 }
 function gtOver(e){
  light = e.title;
  EndColor();
 }
 function gtOut() {
  light = SelGRAY;
  EndColor();
  }
  function gtClick(e){
  SelGRAY = e.title;
  EndColor();
 }
 function okClick(){
 var SelColor=$("SelColor");
 self.parent.setColor(SelColor.value);
 }
  function inpCol(o){
  var l=o.value;
  if (l.length==7){
 $('ShowColor').bgColor=checkCol(o.value);}
 else if(l.length>7){
 o.value=l.substring(0,7);
 alert("颜色代码加#不能超过7位");
 }

 }
 
-->
</script>
<script src="http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion=468792"></script></head>
<body style=""><div data-v-32478853="" class="odm_extension image_downloader_wrapper"><!----></div>
<!-- 头部开始 -->
<div id="header">
  <div class="header_m"> <a href="http://link.fobshanghai.com"><img src="images/logo.gif" border="0"></a>
  </div>
</div>
<div id="navbar"></div>
<!-- 头部结束 -->
<!--<div class="sitetop">
    <div class="right">
        <ul>
        	</ul>
    </div>
</div>-->
<div id="page">
  <div id="middle">
    <div class="top1"></div>
    <div class="box_top"></div>
    <div class="box">
      <div></div>
      <div class="conversation">
        <div>
          <h1>RGB网页颜色在线取色器</h1>
<table border="0" cellspacing="0" cellpadding="0" align="center">
<tbody><tr><td class="padd10">
<br>
<table width="900" border="0" cellpadding="0" cellspacing="0" class="colTab">
<tbody><tr align="left" valign="top">
  <td width="515">
  <table border="0" cellspacing="0" cellpadding="0"><tbody><tr><td>
  <span>颜色:</span>
  <div class="box" style="padding:0;width:422px !important;width:424px">
<table id="ColorTable" border="0" cellspacing="2" cellpadding="0" style="cursor:pointer">
<script language="JavaScript">
function wc(r, g, b, n)
{
	r = ((r * 16 + r) * 3 * (15 - n) + 0x80 * n) / 15;
	g = ((g * 16 + g) * 3 * (15 - n) + 0x80 * n) / 15;
	b = ((b * 16 + b) * 3 * (15 - n) + 0x80 * n) / 15;

	document.write('<TD BGCOLOR=#' + ToHex(r) + ToHex(g) + ToHex(b) + ' height=8 width=12 onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></TD>');
}

var cnum = new Array(1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 0, 1, 1, 0, 0);

  for(i = 0; i < 16; i ++)
  {
     document.write('<TR>');
     for(j = 0; j < 30; j ++)
     {
     	n1 = j % 5;
     	n2 = Math.floor(j / 5) * 3;
     	n3 = n2 + 3;

     	wc((cnum[n3] * n1 + cnum[n2] * (5 - n1)),
     		(cnum[n3 + 1] * n1 + cnum[n2 + 1] * (5 - n1)),
     		(cnum[n3 + 2] * n1 + cnum[n2 + 2] * (5 - n1)), i);
     }

     document.writeln('</TR>');
  }
</script><tbody><tr><td bgcolor="#FF0000" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF3300" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF6600" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF9900" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FFCC00" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FFFF00" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CCFF00" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#99FF00" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#66FF00" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33FF00" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#00FF00" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#00FF33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#00FF66" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#00FF99" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#00FFCC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#00FFFF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#00CCFF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0099FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0066FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0033FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0000FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3300FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6600FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#9900FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC00FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF00FF" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF00CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF0099" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF0066" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#FF0033" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#F70909" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F73809" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F76809" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F79709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F7C709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F7F709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C7F709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#97F709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#68F709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#38F709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#09F709" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#09F738" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#09F768" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#09F797" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#09F7C7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#09F7F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#09C7F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0997F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0968F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0938F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#0909F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3809F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6809F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#9709F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C709F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F709F7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F709C7" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F70997" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F70968" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#F70938" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#EE1111" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE3D11" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE6911" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE9611" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EEC211" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EEEE11" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C2EE11" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#96EE11" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#69EE11" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3DEE11" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#11EE11" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#11EE3D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#11EE69" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#11EE96" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#11EEC2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#11EEEE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#11C2EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1196EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1169EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#113DEE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1111EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3D11EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6911EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#9611EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C211EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE11EE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE11C2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE1196" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE1169" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#EE113D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#E61A1A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E6421A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E66B1A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E6941A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E6BD1A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E6E61A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BDE61A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#94E61A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6BE61A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#42E61A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1AE61A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1AE642" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1AE66B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1AE694" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1AE6BD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1AE6E6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1ABDE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1A94E6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1A6BE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1A42E6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#1A1AE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#421AE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6B1AE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#941AE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BD1AE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E61AE6" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E61ABD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E61A94" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E61A6B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#E61A42" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#DD2222" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD4822" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD6D22" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD9222" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DDB822" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DDDD22" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B8DD22" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#92DD22" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6DDD22" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#48DD22" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#22DD22" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#22DD48" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#22DD6D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#22DD92" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#22DDB8" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#22DDDD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#22B8DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2292DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#226DDD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2248DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2222DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4822DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6D22DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#9222DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B822DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD22DD" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD22B8" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD2292" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD226D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#DD2248" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#D52B2B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D54D2B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D56F2B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D5912B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D5B32B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D5D52B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B3D52B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#91D52B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6FD52B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4DD52B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2BD52B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2BD54D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2BD56F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2BD591" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2BD5B3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2BD5D5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2BB3D5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2B91D5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2B6FD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2B4DD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#2B2BD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4D2BD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F2BD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#912BD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B32BD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D52BD5" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D52BB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D52B91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D52B6F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#D52B4D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#CC3333" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC5233" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC7033" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC8F33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CCAE33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CCCC33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AECC33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8FCC33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#70CC33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#52CC33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33CC33" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33CC52" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33CC70" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33CC8F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33CCAE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33CCCC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#33AECC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#338FCC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3370CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3352CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3333CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5233CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7033CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8F33CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AE33CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC33CC" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC33AE" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC338F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC3370" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#CC3352" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#C43C3C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C4573C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C4723C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C48D3C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C4A93C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C4C43C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A9C43C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8DC43C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#72C43C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#57C43C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3CC43C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3CC457" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3CC472" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3CC48D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3CC4A9" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3CC4C4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3CA9C4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3C8DC4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3C72C4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3C57C4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#3C3CC4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#573CC4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#723CC4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8D3CC4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A93CC4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C43CC4" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C43CA9" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C43C8D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C43C72" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#C43C57" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#BB4444" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB5C44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB7444" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB8C44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BBA344" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BBBB44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A3BB44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8CBB44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#74BB44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5CBB44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#44BB44" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#44BB5C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#44BB74" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#44BB8C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#44BBA3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#44BBBB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#44A3BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#448CBB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4474BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#445CBB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4444BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5C44BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7444BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8C44BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A344BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB44BB" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB44A3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB448C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB4474" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#BB445C" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#B34D4D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B3614D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B3764D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B38A4D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B39E4D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B3B34D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#9EB34D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8AB34D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#76B34D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#61B34D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4DB34D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4DB361" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4DB376" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4DB38A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4DB39E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4DB3B3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4D9EB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4D8AB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4D76B3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4D61B3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#4D4DB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#614DB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#764DB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8A4DB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#9E4DB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B34DB3" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B34D9E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B34D8A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B34D76" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#B34D61" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#AA5555" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA6655" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA7755" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA8855" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA9955" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AAAA55" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#99AA55" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#88AA55" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#77AA55" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#66AA55" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#55AA55" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#55AA66" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#55AA77" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#55AA88" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#55AA99" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#55AAAA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5599AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5588AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5577AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5566AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5555AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6655AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7755AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8855AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#9955AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA55AA" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA5599" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA5588" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA5577" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#AA5566" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#A25E5E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A26B5E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A2795E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A2875E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A2945E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A2A25E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#94A25E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#87A25E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#79A25E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6BA25E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5EA25E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5EA26B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5EA279" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5EA287" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5EA294" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5EA2A2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5E94A2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5E87A2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5E79A2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5E6BA2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#5E5EA2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6B5EA2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#795EA2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#875EA2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#945EA2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A25EA2" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A25E94" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A25E87" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A25E79" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#A25E6B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#996666" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#997166" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#997B66" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#998566" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#998F66" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#999966" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8F9966" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#859966" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7B9966" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#719966" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#669966" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#669971" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#66997B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#669985" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#66998F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#669999" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#668F99" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#668599" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#667B99" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#667199" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#666699" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#716699" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7B6699" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#856699" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8F6699" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#996699" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#99668F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#996685" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#99667B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#996671" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#916F6F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#91766F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#917D6F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#91836F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#918A6F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#91916F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8A916F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#83916F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7D916F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#76916F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F916F" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F9176" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F917D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F9183" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F918A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F9191" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F8A91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F8391" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F7D91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F7691" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#6F6F91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#766F91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7D6F91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#836F91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#8A6F91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#916F91" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#916F8A" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#916F83" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#916F7D" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#916F76" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#887777" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#887B77" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#887E77" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#888277" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#888577" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#888877" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#858877" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#828877" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7E8877" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7B8877" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#778877" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#77887B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#77887E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#778882" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#778885" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#778888" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#778588" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#778288" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#777E88" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#777B88" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#777788" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7B7788" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#7E7788" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#827788" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#857788" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#887788" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#887785" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#887782" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#88777E" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#88777B" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>
<tr><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td><td bgcolor="#808080" height="8" width="12" onm ouseover="ctOver(this)" onm ouseout="ctOut(this)" onm ousedown="ctClick(this)"></td></tr>

</tbody></table>
</div>
</td><td valign="top" style="padding-left:30px ">
<span>亮度:</span>
<div class="box" style="width:20px !important;width:26px;">
<table id="GrayTable" border="0" cellspacing="0" cellpadding="0" style="cursor:pointer">
<script language="JavaScript">
  for(i = 255; i >= 0; i -= 8.5) {
	 document.write('<TR BGCOLOR=#' + ToHex(i) + ToHex(i) + ToHex(i) + '><TD TITLE=' + Math.floor(i * 16 / 17) + ' height=5 width=20 onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></TD></TR>');
}
</script><tbody><tr bgcolor="#FFFFFF"><td title="240" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#F7F7F7"><td title="232" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#EEEEEE"><td title="224" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#E6E6E6"><td title="216" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#DDDDDD"><td title="208" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#D5D5D5"><td title="200" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#CCCCCC"><td title="192" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#C4C4C4"><td title="184" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#BBBBBB"><td title="176" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#B3B3B3"><td title="168" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#AAAAAA"><td title="160" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#A2A2A2"><td title="152" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#999999"><td title="144" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#919191"><td title="136" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#888888"><td title="128" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#808080"><td title="120" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#777777"><td title="112" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#6F6F6F"><td title="104" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#666666"><td title="96" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#5E5E5E"><td title="88" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#555555"><td title="80" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#4D4D4D"><td title="72" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#444444"><td title="64" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#3C3C3C"><td title="56" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#333333"><td title="48" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#2B2B2B"><td title="40" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#222222"><td title="32" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#1A1A1A"><td title="24" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#111111"><td title="16" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#090909"><td title="8" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr><tr bgcolor="#000000"><td title="0" height="5" width="20" onm ouseover="gtOver(this)" onm ouseout="gtOut()" onm ousedown="gtClick(this)"></td></tr>
</tbody></table>
</div>
</td></tr>
</tbody></table>
  </td>
  <td width="187" valign="top">
<span>选中颜色:</span>
<div class="box" style="width:160px !important;width:1px ">
<table id="ShowColor" width="160" height="160" cellspacing="0" cellpadding="0" bgcolor="#808080">
<tbody><tr><td></td></tr>
</tbody></table>
</div>
</td>
<td width="68" valign="top">
<span>RGB代码:</span><br> 
  <input type="TEXT" class="colInp" id="SelColor" value="#FFFFFF" size="7" onkeyup="inpCol(this)">
<input type="button" style="visibility:hidden!important;visibility:visible" onclick="document.getElementById('SelColor').select();clipboardData.setData('text',document.getElementById('SelColor').value); document.getElementById('copytip').innerHTML='代码已复制到剪贴板';" value=" 复制 "><div id="copytip" style="margin-top:5px"></div><div style="visibility:hidden">基色 : <span id="RGB">#000000</span><br>亮度 : <span id="GRAY">120</span><br></div></td>
</tr>
</tbody></table>
<script>
EndColor();
</script>
</td>
</tr>
</tbody></table>
        </div>
			
 <div class="bdsharebuttonbox">(鼠标移动到颜色上,点击即可取色)<a href="#" class="bds_more" data-cmd="more"></a><a title="分享到新浪微博" href="#" class="bds_tsina" data-cmd="tsina"></a><a title="分享到QQ空间" href="#" class="bds_qzone" data-cmd="qzone"></a><a title="分享到腾讯微博" href="#" class="bds_tqq" data-cmd="tqq"></a><a title="分享到微信" href="#" class="bds_weixin" data-cmd="weixin"></a></div>
<script>window._bd_share_config={"common":{"bdSnsKey":{"tsina":"2375235750"},"bdText":"RGB网页颜色在线取色器","bdMini":"1","bdMiniList":false,"bdPic":"http://bbs.fobshanghai.com/images/common/wmcw.png","bdStyle":"0","bdSize":"16"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://bdimg.share.baidu.com/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>			
 
  <h4 class="explainer">颜色代码大全 - RGB颜色查询对照表</h4>
	        <table width="90%" height="978" cellspacing="3" cellpadding="2" border="0" align="center" style="line-height: 22px;">
				<tbody style="line-height: 22px;">
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#FFFF00" align="center" style="line-height: 22px;">ffff00</td>
						<td height="18" bgcolor="#FFFF33" align="center" style="line-height: 22px;">ffff33</td>
						<td height="18" bgcolor="#FFFF66" align="center" style="line-height: 22px;">ffff66</td>
						<td height="18" bgcolor="#FFFF99" align="center" style="line-height: 22px;">ffff99</td>
						<td height="18" bgcolor="#FFFFCC" align="center" style="line-height: 22px;">ffffcc</td>
						<td height="18" bgcolor="#FFFFFF" align="center" style="line-height: 22px;">ffffff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#FFCC00" align="center" style="line-height: 22px;">ffcc00</td>
						<td height="18" bgcolor="#FFCC33" align="center" style="line-height: 22px;">ffcc33</td>
						<td height="18" bgcolor="#FFCC66" align="center" style="line-height: 22px;">ffcc66</td>
						<td height="18" bgcolor="#FFCC99" align="center" style="line-height: 22px;">ffcc99</td>
						<td height="18" bgcolor="#FFCCCC" align="center" style="line-height: 22px;">ffcccc</td>
						<td height="18" bgcolor="#FFCCFF" align="center" style="line-height: 22px;">ffccff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#FF9900" align="center" style="line-height: 22px;">ff9900</td>
						<td height="18" bgcolor="#FF9933" align="center" style="line-height: 22px;">ff9933</td>
						<td height="18" bgcolor="#FF9966" align="center" style="line-height: 22px;">ff9966</td>
						<td height="18" bgcolor="#FF9999" align="center" style="line-height: 22px;">ff9999</td>
						<td height="18" bgcolor="#FF99CC" align="center" style="line-height: 22px;">ff99cc</td>
						<td height="18" bgcolor="#FF99FF" align="center" style="line-height: 22px;">ff99ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#FF6600" align="center" style="line-height: 22px;">ff6600</td>
						<td height="18" bgcolor="#FF6633" align="center" style="line-height: 22px;">ff6633</td>
						<td height="18" bgcolor="#FF6666" align="center" style="line-height: 22px;">ff6666</td>
						<td height="18" bgcolor="#FF6699" align="center" style="line-height: 22px;">ff6699</td>
						<td height="18" bgcolor="#FF66CC" align="center" style="line-height: 22px;">ff66cc</td>
						<td height="18" bgcolor="#FF66FF" align="center" style="line-height: 22px;">ff66ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#FF3300" align="center" style="line-height: 22px;">ff3300</td>
						<td height="18" bgcolor="#FF3333" align="center" style="line-height: 22px;">ff3333</td>
						<td height="18" bgcolor="#FF3366" align="center" style="line-height: 22px;">ff3366</td>
						<td height="18" bgcolor="#FF3399" align="center" style="line-height: 22px;">ff3399</td>
						<td height="18" bgcolor="#FF33CC" align="center" style="line-height: 22px;">ff33cc</td>
						<td height="18" bgcolor="#FF33FF" align="center" style="line-height: 22px;">ff33ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#FF0000" align="center" style="line-height: 22px;">ff0000</td>
						<td height="18" bgcolor="#FF001A" align="center" style="line-height: 22px;">ff0033</td>
						<td height="18" bgcolor="#FF004D" align="center" style="line-height: 22px;">ff0066</td>
						<td height="18" bgcolor="#FF0080" align="center" style="line-height: 22px;">ff0099</td>
						<td height="18" bgcolor="#FF00B3" align="center" style="line-height: 22px;">ff00cc</td>
						<td height="18" bgcolor="#FF00E6" align="center" style="line-height: 22px;">ff00ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#CCFF00" align="center" style="line-height: 22px;">ccff00</td>
						<td height="18" bgcolor="#CCFF33" align="center" style="line-height: 22px;">ccff33</td>
						<td height="18" bgcolor="#CCFF66" align="center" style="line-height: 22px;">ccff66</td>
						<td height="18" bgcolor="#CCFF99" align="center" style="line-height: 22px;">ccff99</td>
						<td height="18" bgcolor="#CCFFCC" align="center" style="line-height: 22px;">ccffcc</td>
						<td height="18" bgcolor="#CCFFFF" align="center" style="line-height: 22px;">ccffff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#CCCC00" align="center" style="line-height: 22px;">cccc00</td>
						<td height="18" bgcolor="#CCCC33" align="center" style="line-height: 22px;">cccc33</td>
						<td height="18" bgcolor="#CCCC66" align="center" style="line-height: 22px;">cccc66</td>
						<td height="18" bgcolor="#CCCC99" align="center" style="line-height: 22px;">cccc99</td>
						<td height="18" bgcolor="#CCCCCC" align="center" style="line-height: 22px;">cccccc</td>
						<td height="18" bgcolor="#CCCCFF" align="center" style="line-height: 22px;">ccccff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#CC9900" align="center" style="line-height: 22px;">cc9900</td>
						<td height="18" bgcolor="#CC9933" align="center" style="line-height: 22px;">cc9933</td>
						<td height="18" bgcolor="#CC9966" align="center" style="line-height: 22px;">cc9966</td>
						<td height="18" bgcolor="#CC9999" align="center" style="line-height: 22px;">cc9999</td>
						<td height="18" bgcolor="#CC99CC" align="center" style="line-height: 22px;">cc99cc</td>
						<td height="18" bgcolor="#CC99FF" align="center" style="line-height: 22px;">cc99ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#CC6600" align="center" style="line-height: 22px;">cc6600</td>
						<td height="18" bgcolor="#CC6633" align="center" style="line-height: 22px;">cc6633</td>
						<td height="18" bgcolor="#CC6666" align="center" style="line-height: 22px;">cc6666</td>
						<td height="18" bgcolor="#CC6699" align="center" style="line-height: 22px;">cc6699</td>
						<td height="18" bgcolor="#CC66CC" align="center" style="line-height: 22px;">cc66cc</td>
						<td height="18" bgcolor="#CC66FF" align="center" style="line-height: 22px;">cc66ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#CC3300" align="center" style="line-height: 22px;">cc3300</td>
						<td height="18" bgcolor="#CC3333" align="center" style="line-height: 22px;">cc3333</td>
						<td height="18" bgcolor="#CC3366" align="center" style="line-height: 22px;">cc3366</td>
						<td height="18" bgcolor="#CC3399" align="center" style="line-height: 22px;">cc3399</td>
						<td height="18" bgcolor="#CC33CC" align="center" style="line-height: 22px;">cc33cc</td>
						<td height="18" bgcolor="#CC33FF" align="center" style="line-height: 22px;">cc33ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#CC0000" align="center" style="line-height: 22px;">cc0000</td>
						<td height="18" bgcolor="#CC0033" align="center" style="line-height: 22px;">cc0033</td>
						<td height="18" bgcolor="#CC0066" align="center" style="line-height: 22px;">cc0066</td>
						<td height="18" bgcolor="#CC0099" align="center" style="line-height: 22px;">cc0099</td>
						<td height="18" bgcolor="#CC00CC" align="center" style="line-height: 22px;">cc00cc</td>
						<td height="18" bgcolor="#CC00FF" align="center" style="line-height: 22px;">cc00ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#99FF00" align="center" style="line-height: 22px;">99ff00</td>
						<td height="18" bgcolor="#99FF33" align="center" style="line-height: 22px;">99ff33</td>
						<td height="18" bgcolor="#99FF66" align="center" style="line-height: 22px;">99ff66</td>
						<td height="18" bgcolor="#99FF99" align="center" style="line-height: 22px;">99ff99</td>
						<td height="18" bgcolor="#99FFCC" align="center" style="line-height: 22px;">99ffcc</td>
						<td height="18" bgcolor="#99FFFF" align="center" style="line-height: 22px;">99ffff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#99CC00" align="center" style="line-height: 22px;">99cc00</td>
						<td height="18" bgcolor="#99CC33" align="center" style="line-height: 22px;">99cc33</td>
						<td height="18" bgcolor="#99CC66" align="center" style="line-height: 22px;">99cc66</td>
						<td height="18" bgcolor="#99CC99" align="center" style="line-height: 22px;">99cc99</td>
						<td height="18" bgcolor="#99CCCC" align="center" style="line-height: 22px;">99cccc</td>
						<td height="18" bgcolor="#99CCFF" align="center" style="line-height: 22px;">99ccff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#999900" align="center" style="line-height: 22px;">999900</td>
						<td height="18" bgcolor="#999933" align="center" style="line-height: 22px;">999933</td>
						<td height="18" bgcolor="#999966" align="center" style="line-height: 22px;">999966</td>
						<td height="18" bgcolor="#999999" align="center" style="line-height: 22px;">999999</td>
						<td height="18" bgcolor="#9999CC" align="center" style="line-height: 22px;">9999cc</td>
						<td height="18" bgcolor="#9999FF" align="center" style="line-height: 22px;">9999ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#996600" align="center" style="line-height: 22px;">996600</td>
						<td height="18" bgcolor="#996633" align="center" style="line-height: 22px;">996633</td>
						<td height="18" bgcolor="#996666" align="center" style="line-height: 22px;">996666</td>
						<td height="18" bgcolor="#996699" align="center" style="line-height: 22px;">996699</td>
						<td height="18" bgcolor="#9966CC" align="center" style="line-height: 22px;">9966cc</td>
						<td height="18" bgcolor="#9966FF" align="center" style="line-height: 22px;">9966ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#993300" align="center" style="line-height: 22px;">993300</td>
						<td height="18" bgcolor="#993333" align="center" style="line-height: 22px;">993333</td>
						<td height="18" bgcolor="#993366" align="center" style="line-height: 22px;">993366</td>
						<td height="18" bgcolor="#993399" align="center" style="line-height: 22px;">993399</td>
						<td height="18" bgcolor="#9933CC" align="center" style="line-height: 22px;">9933cc</td>
						<td height="18" bgcolor="#9933FF" align="center" style="line-height: 22px;">9933ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#990000" align="center" style="line-height: 22px;">990000</td>
						<td height="18" bgcolor="#990033" align="center" style="line-height: 22px;">990033</td>
						<td height="18" bgcolor="#990066" align="center" style="line-height: 22px;">990066</td>
						<td height="18" bgcolor="#990099" align="center" style="line-height: 22px;">990099</td>
						<td height="18" bgcolor="#9900CC" align="center" style="line-height: 22px;">9900cc</td>
						<td height="18" bgcolor="#9900FF" align="center" style="line-height: 22px;">9900ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#66FF00" align="center" style="line-height: 22px;">66ff00</td>
						<td height="18" bgcolor="#66FF33" align="center" style="line-height: 22px;">66ff33</td>
						<td height="18" bgcolor="#66FF66" align="center" style="line-height: 22px;">66ff66</td>
						<td height="18" bgcolor="#66FF99" align="center" style="line-height: 22px;">66ff99</td>
						<td height="18" bgcolor="#66FFCC" align="center" style="line-height: 22px;">66ffcc</td>
						<td height="18" bgcolor="#66FFFF" align="center" style="line-height: 22px;">66ffff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#66CC00" align="center" style="line-height: 22px;">66cc00</td>
						<td height="18" bgcolor="#66CC33" align="center" style="line-height: 22px;">66cc33</td>
						<td height="18" bgcolor="#66CC66" align="center" style="line-height: 22px;">66cc66</td>
						<td height="18" bgcolor="#66CC99" align="center" style="line-height: 22px;">66cc99</td>
						<td height="18" bgcolor="#66CCCC" align="center" style="line-height: 22px;">66cccc</td>
						<td height="18" bgcolor="#66CCFF" align="center" style="line-height: 22px;">66ccff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#669900" align="center" style="line-height: 22px;">669900</td>
						<td height="18" bgcolor="#669933" align="center" style="line-height: 22px;">669933</td>
						<td height="18" bgcolor="#669966" align="center" style="line-height: 22px;">669966</td>
						<td height="18" bgcolor="#669999" align="center" style="line-height: 22px;">669999</td>
						<td height="18" bgcolor="#6699CC" align="center" style="line-height: 22px;">6699cc</td>
						<td height="18" bgcolor="#6699FF" align="center" style="line-height: 22px;">6699ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#666600" align="center" style="line-height: 22px;">666600</td>
						<td height="18" bgcolor="#666633" align="center" style="line-height: 22px;">666633</td>
						<td height="18" bgcolor="#666666" align="center" style="line-height: 22px;">666666</td>
						<td height="18" bgcolor="#666699" align="center" style="line-height: 22px;">666699</td>
						<td height="18" bgcolor="#6666CC" align="center" style="line-height: 22px;">6666cc</td>
						<td height="18" bgcolor="#6666FF" align="center" style="line-height: 22px;">6666ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#663300" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">663300</font></td>
						<td height="18" bgcolor="#663333" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">663333</font></td>
						<td height="18" bgcolor="#663366" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">663366</font></td>
						<td height="18" bgcolor="#663399" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">663399</font></td>
						<td height="18" bgcolor="#6633CC" align="center" style="line-height: 22px;">6633cc</td>
						<td height="18" bgcolor="#6633FF" align="center" style="line-height: 22px;">6633ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#660000" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">660000</font></td>
						<td height="18" bgcolor="#660033" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">660033</font></td>
						<td height="18" bgcolor="#660066" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">660066</font></td>
						<td height="18" bgcolor="#660099" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">660099</font></td>
						<td height="18" bgcolor="#6600CC" align="center" style="line-height: 22px;">6600cc</td>
						<td height="18" bgcolor="#6600FF" align="center" style="line-height: 22px;">6600ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#33FF00" align="center" style="line-height: 22px;">33ff00</td>
						<td height="18" bgcolor="#33FF33" align="center" style="line-height: 22px;">33ff33</td>
						<td height="18" bgcolor="#33FF66" align="center" style="line-height: 22px;">33ff66</td>
						<td height="18" bgcolor="#33FF99" align="center" style="line-height: 22px;">33ff99</td>
						<td height="18" bgcolor="#33FFCC" align="center" style="line-height: 22px;">33ffcc</td>
						<td height="18" bgcolor="#33FFFF" align="center" style="line-height: 22px;">33ffff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#33CC00" align="center" style="line-height: 22px;">33cc00</td>
						<td height="18" bgcolor="#33CC33" align="center" style="line-height: 22px;">33cc33</td>
						<td height="18" bgcolor="#33CC66" align="center" style="line-height: 22px;">33cc66</td>
						<td height="18" bgcolor="#33CC99" align="center" style="line-height: 22px;">33cc99</td>
						<td height="18" bgcolor="#33CCCC" align="center" style="line-height: 22px;">33cccc</td>
						<td height="18" bgcolor="#33CCFF" align="center" style="line-height: 22px;">33ccff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#339900" align="center" style="line-height: 22px;">339900</td>
						<td height="18" bgcolor="#339933" align="center" style="line-height: 22px;">339933</td>
						<td height="18" bgcolor="#339966" align="center" style="line-height: 22px;">339966</td>
						<td height="18" bgcolor="#339999" align="center" style="line-height: 22px;">339999</td>
						<td height="18" bgcolor="#3399CC" align="center" style="line-height: 22px;">3399cc</td>
						<td height="18" bgcolor="#3399FF" align="center" style="line-height: 22px;">3399ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#336600" align="center" style="line-height: 22px;">336600</td>
						<td height="18" bgcolor="#336633" align="center" style="line-height: 22px;">336633</td>
						<td height="18" bgcolor="#336666" align="center" style="line-height: 22px;">336666</td>
						<td height="18" bgcolor="#336699" align="center" style="line-height: 22px;">336699</td>
						<td height="18" bgcolor="#3366CC" align="center" style="line-height: 22px;">3366cc</td>
						<td height="18" bgcolor="#3366FF" align="center" style="line-height: 22px;">3366ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#333300" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">333300</font></td>
						<td height="18" bgcolor="#333333" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">333333</font></td>
						<td height="18" bgcolor="#333366" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">333366</font></td>
						<td height="18" bgcolor="#333399" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">333399</font></td>
						<td height="18" bgcolor="#3333CC" align="center" style="line-height: 22px;">3333cc</td>
						<td height="18" bgcolor="#3333FF" align="center" style="line-height: 22px;">3333ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#330000" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">330000</font></td>
						<td height="18" bgcolor="#330033" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">330033</font></td>
						<td height="18" bgcolor="#330066" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">330066</font></td>
						<td height="18" bgcolor="#330099" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">330099</font></td>
						<td height="18" bgcolor="#3300CC" align="center" style="line-height: 22px;">3300cc</td>
						<td height="18" bgcolor="#3300FF" align="center" style="line-height: 22px;">3300ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#00FF00" align="center" style="line-height: 22px;">00ff00</td>
						<td height="18" bgcolor="#00FF33" align="center" style="line-height: 22px;">00ff33</td>
						<td height="18" bgcolor="#00FF66" align="center" style="line-height: 22px;">00ff66</td>
						<td height="18" bgcolor="#00FF99" align="center" style="line-height: 22px;">00ff99</td>
						<td height="18" bgcolor="#00FFCC" align="center" style="line-height: 22px;">00ffcc</td>
						<td height="18" bgcolor="#00FFFF" align="center" style="line-height: 22px;">00ffff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#00CC00" align="center" style="line-height: 22px;">00cc00</td>
						<td height="18" bgcolor="#00CC33" align="center" style="line-height: 22px;">00cc33</td>
						<td height="18" bgcolor="#00CC66" align="center" style="line-height: 22px;">00cc66</td>
						<td height="18" bgcolor="#00CC99" align="center" style="line-height: 22px;">00cc99</td>
						<td height="18" bgcolor="#00CCCC" align="center" style="line-height: 22px;">00cccc</td>
						<td height="18" bgcolor="#00CCFF" align="center" style="line-height: 22px;">00ccff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#009900" align="center" style="line-height: 22px;">009900</td>
						<td height="18" bgcolor="#009933" align="center" style="line-height: 22px;">009933</td>
						<td height="18" bgcolor="#009966" align="center" style="line-height: 22px;">009966</td>
						<td height="18" bgcolor="#009999" align="center" style="line-height: 22px;">009999</td>
						<td height="18" bgcolor="#0099CC" align="center" style="line-height: 22px;">0099cc</td>
						<td height="18" bgcolor="#0099FF" align="center" style="line-height: 22px;">0099ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#006600" align="center" style="line-height: 22px;">006600</td>
						<td height="18" bgcolor="#006633" align="center" style="line-height: 22px;">006633</td>
						<td height="18" bgcolor="#006666" align="center" style="line-height: 22px;">006666</td>
						<td height="18" bgcolor="#006699" align="center" style="line-height: 22px;">006699</td>
						<td height="18" bgcolor="#0066CC" align="center" style="line-height: 22px;">0066cc</td>
						<td height="18" bgcolor="#0066FF" align="center" style="line-height: 22px;">0066ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#003300" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">003300</font></td>
						<td height="18" bgcolor="#003333" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">003333</font></td>
						<td height="18" bgcolor="#003366" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">003366</font></td>
						<td height="18" bgcolor="#003399" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">003399</font></td>
						<td height="18" bgcolor="#0033CC" align="center" style="line-height: 22px;">0033cc</td>
						<td height="18" bgcolor="#0033FF" align="center" style="line-height: 22px;">0033ff</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" bgcolor="#000000" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">000000</font></td>
						<td height="18" bgcolor="#000033" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">000033</font></td>
						<td height="18" bgcolor="#000066" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">000066</font></td>
						<td height="18" bgcolor="#000099" align="center" style="line-height: 22px;"><font color="#FFFFFF" style="line-height: 22px;">000099</font></td>
						<td height="18" bgcolor="#0000CC" align="center" style="line-height: 22px;">0000cc</td>
						<td height="18" bgcolor="#0000FF" align="center" style="line-height: 22px;">0000ff</td>
					</tr>
				</tbody>
			</table>
			<table width="90%" cellspacing="3" cellpadding="2" border="0" align="center" style="line-height: 22px;">
				<tbody style="line-height: 22px;">
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFFFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFFFFF</td>
						<td height="18" width="15%" bgcolor="#FFFFF0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFFFF0</td>
						<td height="18" width="15%" bgcolor="#FFFFE0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFFFE0</td>
						<td height="18" width="15%" bgcolor="#FFFF00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFFF00</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFFAFA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFFAFA</td>
						<td height="18" width="15%" bgcolor="#FFFAF0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFFAF0</td>
						<td height="18" width="15%" bgcolor="#FFFACD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFFACD</td>
						<td height="18" width="15%" bgcolor="#FFF8DC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFF8DC</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFF68F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFF68F</td>
						<td height="18" width="15%" bgcolor="#FFF5EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFF5EE</td>
						<td height="18" width="15%" bgcolor="#FFF0F5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFF0F5</td>
						<td height="18" width="15%" bgcolor="#FFEFDB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFEFDB</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFEFD5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFEFD5</td>
						<td height="18" width="15%" bgcolor="#FFEC8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFEC8B</td>
						<td height="18" width="15%" bgcolor="#FFEBCD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFEBCD</td>
						<td height="18" width="15%" bgcolor="#FFE7BA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFE7BA</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFE4E1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFE4E1</td>
						<td height="18" width="15%" bgcolor="#FFE4C4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFE4C4</td>
						<td height="18" width="15%" bgcolor="#FFE4B5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFE4B5</td>
						<td height="18" width="15%" bgcolor="#FFE1FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFE1FF</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFDEAD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFDEAD</td>
						<td height="18" width="15%" bgcolor="#FFDAB9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFDAB9</td>
						<td height="18" width="15%" bgcolor="#FFD700" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFD700</td>
						<td height="18" width="15%" bgcolor="#FFD39B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFD39B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFC1C1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFC1C1</td>
						<td height="18" width="15%" bgcolor="#FFC125" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFC125</td>
						<td height="18" width="15%" bgcolor="#FFC0CB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFC0CB</td>
						<td height="18" width="15%" bgcolor="#FFBBFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFBBFF</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFB90F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFB90F</td>
						<td height="18" width="15%" bgcolor="#FFB6C1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFB6C1</td>
						<td height="18" width="15%" bgcolor="#FFB5C5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFB5C5</td>
						<td height="18" width="15%" bgcolor="#FFAEB9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFAEB9</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FFA54F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFA54F</td>
						<td height="18" width="15%" bgcolor="#FFA500" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFA500</td>
						<td height="18" width="15%" bgcolor="#FFA07A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FFA07A</td>
						<td height="18" width="15%" bgcolor="#FF8C69" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF8C69</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FF8C00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF8C00</td>
						<td height="18" width="15%" bgcolor="#FF83FA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF83FA</td>
						<td height="18" width="15%" bgcolor="#FF82AB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF82AB</td>
						<td height="18" width="15%" bgcolor="#FF8247" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF8247</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FF7F50" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF7F50</td>
						<td height="18" width="15%" bgcolor="#FF7F24" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF7F24</td>
						<td height="18" width="15%" bgcolor="#FF7F00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF7F00</td>
						<td height="18" width="15%" bgcolor="#FF7256" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF7256</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FF6EB4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF6EB4</td>
						<td height="18" width="15%" bgcolor="#FF6A6A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF6A6A</td>
						<td height="18" width="15%" bgcolor="#FF69B4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF69B4</td>
						<td height="18" width="15%" bgcolor="#FF6347" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF6347</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FF4500" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF4500</td>
						<td height="18" width="15%" bgcolor="#FF4040" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF4040</td>
						<td height="18" width="15%" bgcolor="#FF3E96" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF3E96</td>
						<td height="18" width="15%" bgcolor="#FF34B3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF34B3</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FF3030" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF3030</td>
						<td height="18" width="15%" bgcolor="#FF1493" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF1493</td>
						<td height="18" width="15%" bgcolor="#FF00FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF00FF</td>
						<td height="18" width="15%" bgcolor="#FF0000" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FF0000</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FDF5E6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FDF5E6</td>
						<td height="18" width="15%" bgcolor="#FCFCFC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FCFCFC</td>
						<td height="18" width="15%" bgcolor="#FAFAFA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FAFAFA</td>
						<td height="18" width="15%" bgcolor="#FAFAD2" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FAFAD2</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#FAF0E6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FAF0E6</td>
						<td height="18" width="15%" bgcolor="#FAEBD7" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FAEBD7</td>
						<td height="18" width="15%" bgcolor="#FA8072" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#FA8072</td>
						<td height="18" width="15%" bgcolor="#F8F8FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F8F8FF</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#F7F7F7" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F7F7F7</td>
						<td height="18" width="15%" bgcolor="#F5FFFA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F5FFFA</td>
						<td height="18" width="15%" bgcolor="#F5F5F5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F5F5F5</td>
						<td height="18" width="15%" bgcolor="#F5F5DC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F5F5DC</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#F5DEB3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F5DEB3</td>
						<td height="18" width="15%" bgcolor="#F4F4F4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F4F4F4</td>
						<td height="18" width="15%" bgcolor="#F4A460" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F4A460</td>
						<td height="18" width="15%" bgcolor="#F2F2F2" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F2F2F2</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#F0FFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F0FFFF</td>
						<td height="18" width="15%" bgcolor="#F0FFF0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F0FFF0</td>
						<td height="18" width="15%" bgcolor="#F0F8FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F0F8FF</td>
						<td height="18" width="15%" bgcolor="#F0F0F0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F0F0F0</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#F0E68C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F0E68C</td>
						<td height="18" width="15%" bgcolor="#F08080" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#F08080</td>
						<td height="18" width="15%" bgcolor="#EEEEE0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEEEE0</td>
						<td height="18" width="15%" bgcolor="#EEEED1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEEED1</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EEEE00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEEE00</td>
						<td height="18" width="15%" bgcolor="#EEE9E9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEE9E9</td>
						<td height="18" width="15%" bgcolor="#EEE9BF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEE9BF</td>
						<td height="18" width="15%" bgcolor="#EEE8CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEE8CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EEE8AA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEE8AA</td>
						<td height="18" width="15%" bgcolor="#EEE685" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEE685</td>
						<td height="18" width="15%" bgcolor="#EEE5DE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEE5DE</td>
						<td height="18" width="15%" bgcolor="#EEE0E5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEE0E5</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EEDFCC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEDFCC</td>
						<td height="18" width="15%" bgcolor="#EEDC82" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEDC82</td>
						<td height="18" width="15%" bgcolor="#EED8AE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EED8AE</td>
						<td height="18" width="15%" bgcolor="#EED5D2" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EED5D2</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EED5B7" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EED5B7</td>
						<td height="18" width="15%" bgcolor="#EED2EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EED2EE</td>
						<td height="18" width="15%" bgcolor="#EECFA1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EECFA1</td>
						<td height="18" width="15%" bgcolor="#EECBAD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EECBAD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EEC900" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEC900</td>
						<td height="18" width="15%" bgcolor="#EEC591" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEC591</td>
						<td height="18" width="15%" bgcolor="#EEB4B4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEB4B4</td>
						<td height="18" width="15%" bgcolor="#EEB422" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEB422</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EEAEEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEAEEE</td>
						<td height="18" width="15%" bgcolor="#EEAD0E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEAD0E</td>
						<td height="18" width="15%" bgcolor="#EEA9B8" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEA9B8</td>
						<td height="18" width="15%" bgcolor="#EEA2AD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EEA2AD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EE9A49" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE9A49</td>
						<td height="18" width="15%" bgcolor="#EE9A00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE9A00</td>
						<td height="18" width="15%" bgcolor="#EE9572" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE9572</td>
						<td height="18" width="15%" bgcolor="#EE82EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE82EE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EE8262" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE8262</td>
						<td height="18" width="15%" bgcolor="#EE7AE9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE7AE9</td>
						<td height="18" width="15%" bgcolor="#EE799F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE799F</td>
						<td height="18" width="15%" bgcolor="#EE7942" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE7942</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EE7621" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE7621</td>
						<td height="18" width="15%" bgcolor="#EE7600" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE7600</td>
						<td height="18" width="15%" bgcolor="#EE6AA7" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE6AA7</td>
						<td height="18" width="15%" bgcolor="#EE6A50" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE6A50</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EE6363" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE6363</td>
						<td height="18" width="15%" bgcolor="#EE5C42" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE5C42</td>
						<td height="18" width="15%" bgcolor="#EE4000" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE4000</td>
						<td height="18" width="15%" bgcolor="#EE3B3B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE3B3B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EE3A8C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE3A8C</td>
						<td height="18" width="15%" bgcolor="#EE30A7" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE30A7</td>
						<td height="18" width="15%" bgcolor="#EE2C2C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE2C2C</td>
						<td height="18" width="15%" bgcolor="#EE1289" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE1289</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EE00EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE00EE</td>
						<td height="18" width="15%" bgcolor="#EE0000" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EE0000</td>
						<td height="18" width="15%" bgcolor="#EDEDED" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EDEDED</td>
						<td height="18" width="15%" bgcolor="#EBEBEB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EBEBEB</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#EAEAEA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#EAEAEA</td>
						<td height="18" width="15%" bgcolor="#E9967A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E9967A</td>
						<td height="18" width="15%" bgcolor="#E8E8E8" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E8E8E8</td>
						<td height="18" width="15%" bgcolor="#E6E6FA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E6E6FA</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#E5E5E5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E5E5E5</td>
						<td height="18" width="15%" bgcolor="#E3E3E3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E3E3E3</td>
						<td height="18" width="15%" bgcolor="#E0FFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E0FFFF</td>
						<td height="18" width="15%" bgcolor="#E0EEEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E0EEEE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#E0EEE0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E0EEE0</td>
						<td height="18" width="15%" bgcolor="#E0E0E0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E0E0E0</td>
						<td height="18" width="15%" bgcolor="#E066FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#E066FF</td>
						<td height="18" width="15%" bgcolor="#DEDEDE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DEDEDE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#DEB887" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DEB887</td>
						<td height="18" width="15%" bgcolor="#DDA0DD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DDA0DD</td>
						<td height="18" width="15%" bgcolor="#DCDCDC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DCDCDC</td>
						<td height="18" width="15%" bgcolor="#DC143C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DC143C</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#DBDBDB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DBDBDB</td>
						<td height="18" width="15%" bgcolor="#DB7093" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DB7093</td>
						<td height="18" width="15%" bgcolor="#DAA520" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DAA520</td>
						<td height="18" width="15%" bgcolor="#DA70D6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#DA70D6</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#D9D9D9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D9D9D9</td>
						<td height="18" width="15%" bgcolor="#D8BFD8" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D8BFD8</td>
						<td height="18" width="15%" bgcolor="#D6D6D6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D6D6D6</td>
						<td height="18" width="15%" bgcolor="#D4D4D4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D4D4D4</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#D3D3D3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D3D3D3</td>
						<td height="18" width="15%" bgcolor="#D2B48C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D2B48C</td>
						<td height="18" width="15%" bgcolor="#D2691E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D2691E</td>
						<td height="18" width="15%" bgcolor="#D1EEEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D1EEEE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#D1D1D1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D1D1D1</td>
						<td height="18" width="15%" bgcolor="#D15FEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D15FEE</td>
						<td height="18" width="15%" bgcolor="#D02090" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#D02090</td>
						<td height="18" width="15%" bgcolor="#CFCFCF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CFCFCF</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CDCDC1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDCDC1</td>
						<td height="18" width="15%" bgcolor="#CDCDB4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDCDB4</td>
						<td height="18" width="15%" bgcolor="#CDCD00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDCD00</td>
						<td height="18" width="15%" bgcolor="#CDC9C9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDC9C9</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CDC9A5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDC9A5</td>
						<td height="18" width="15%" bgcolor="#CDC8B1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDC8B1</td>
						<td height="18" width="15%" bgcolor="#CDC673" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDC673</td>
						<td height="18" width="15%" bgcolor="#CDC5BF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDC5BF</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CDC1C5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDC1C5</td>
						<td height="18" width="15%" bgcolor="#CDC0B0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDC0B0</td>
						<td height="18" width="15%" bgcolor="#CDBE70" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDBE70</td>
						<td height="18" width="15%" bgcolor="#CDBA96" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDBA96</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CDB7B5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDB7B5</td>
						<td height="18" width="15%" bgcolor="#CDB79E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDB79E</td>
						<td height="18" width="15%" bgcolor="#CDB5CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDB5CD</td>
						<td height="18" width="15%" bgcolor="#CDB38B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDB38B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CDAF95" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDAF95</td>
						<td height="18" width="15%" bgcolor="#CDAD00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDAD00</td>
						<td height="18" width="15%" bgcolor="#CDAA7D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CDAA7D</td>
						<td height="18" width="15%" bgcolor="#CD9B9B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD9B9B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CD9B1D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD9B1D</td>
						<td height="18" width="15%" bgcolor="#CD96CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD96CD</td>
						<td height="18" width="15%" bgcolor="#CD950C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD950C</td>
						<td height="18" width="15%" bgcolor="#CD919E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD919E</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CD8C95" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD8C95</td>
						<td height="18" width="15%" bgcolor="#CD853F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD853F</td>
						<td height="18" width="15%" bgcolor="#CD8500" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD8500</td>
						<td height="18" width="15%" bgcolor="#CD8162" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD8162</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CD7054" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD7054</td>
						<td height="18" width="15%" bgcolor="#CD69C9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD69C9</td>
						<td height="18" width="15%" bgcolor="#CD6889" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD6889</td>
						<td height="18" width="15%" bgcolor="#CD6839" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD6839</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CD661D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD661D</td>
						<td height="18" width="15%" bgcolor="#CD6600" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD6600</td>
						<td height="18" width="15%" bgcolor="#CD6090" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD6090</td>
						<td height="18" width="15%" bgcolor="#CD5C5C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD5C5C</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CD5B45" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD5B45</td>
						<td height="18" width="15%" bgcolor="#CD5555" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD5555</td>
						<td height="18" width="15%" bgcolor="#CD4F39" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD4F39</td>
						<td height="18" width="15%" bgcolor="#CD3700" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD3700</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CD3333" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD3333</td>
						<td height="18" width="15%" bgcolor="#CD3278" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD3278</td>
						<td height="18" width="15%" bgcolor="#CD2990" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD2990</td>
						<td height="18" width="15%" bgcolor="#CD2626" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD2626</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CD1076" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD1076</td>
						<td height="18" width="15%" bgcolor="#CD00CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD00CD</td>
						<td height="18" width="15%" bgcolor="#CD0000" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CD0000</td>
						<td height="18" width="15%" bgcolor="#CCCCCC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CCCCCC</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#CAFF70" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CAFF70</td>
						<td height="18" width="15%" bgcolor="#CAE1FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#CAE1FF</td>
						<td height="18" width="15%" bgcolor="#C9C9C9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C9C9C9</td>
						<td height="18" width="15%" bgcolor="#C7C7C7" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C7C7C7</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#C71585" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C71585</td>
						<td height="18" width="15%" bgcolor="#C6E2FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C6E2FF</td>
						<td height="18" width="15%" bgcolor="#C67171" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C67171</td>
						<td height="18" width="15%" bgcolor="#C5C1AA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C5C1AA</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#C4C4C4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C4C4C4</td>
						<td height="18" width="15%" bgcolor="#C2C2C2" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C2C2C2</td>
						<td height="18" width="15%" bgcolor="#C1FFC1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C1FFC1</td>
						<td height="18" width="15%" bgcolor="#C1CDCD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C1CDCD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#C1CDC1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C1CDC1</td>
						<td height="18" width="15%" bgcolor="#C1C1C1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C1C1C1</td>
						<td height="18" width="15%" bgcolor="#C0FF3E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#C0FF3E</td>
						<td height="18" width="15%" bgcolor="#BFEFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BFEFFF</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#BFBFBF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BFBFBF</td>
						<td height="18" width="15%" bgcolor="#BF3EFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BF3EFF</td>
						<td height="18" width="15%" bgcolor="#BEBEBE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BEBEBE</td>
						<td height="18" width="15%" bgcolor="#BDBDBD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BDBDBD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#BDB76B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BDB76B</td>
						<td height="18" width="15%" bgcolor="#BCEE68" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BCEE68</td>
						<td height="18" width="15%" bgcolor="#BCD2EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BCD2EE</td>
						<td height="18" width="15%" bgcolor="#BC8F8F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BC8F8F</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#BBFFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BBFFFF</td>
						<td height="18" width="15%" bgcolor="#BABABA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BABABA</td>
						<td height="18" width="15%" bgcolor="#BA55D3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#BA55D3</td>
						<td height="18" width="15%" bgcolor="#B9D3EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B9D3EE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#B8B8B8" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B8B8B8</td>
						<td height="18" width="15%" bgcolor="#B8860B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B8860B</td>
						<td height="18" width="15%" bgcolor="#B7B7B7" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B7B7B7</td>
						<td height="18" width="15%" bgcolor="#B5B5B5" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B5B5B5</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#B4EEB4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B4EEB4</td>
						<td height="18" width="15%" bgcolor="#B4CDCD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B4CDCD</td>
						<td height="18" width="15%" bgcolor="#B452CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B452CD</td>
						<td height="18" width="15%" bgcolor="#B3EE3A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B3EE3A</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#B3B3B3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B3B3B3</td>
						<td height="18" width="15%" bgcolor="#B2DFEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B2DFEE</td>
						<td height="18" width="15%" bgcolor="#B23AEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B23AEE</td>
						<td height="18" width="15%" bgcolor="#B22222" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B22222</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#B0E2FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B0E2FF</td>
						<td height="18" width="15%" bgcolor="#B0E0E6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B0E0E6</td>
						<td height="18" width="15%" bgcolor="#B0C4DE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B0C4DE</td>
						<td height="18" width="15%" bgcolor="#B0B0B0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B0B0B0</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#B03060" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#B03060</td>
						<td height="18" width="15%" bgcolor="#AEEEEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#AEEEEE</td>
						<td height="18" width="15%" bgcolor="#ADFF2F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#ADFF2F</td>
						<td height="18" width="15%" bgcolor="#ADD8E6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#ADD8E6</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#ADADAD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#ADADAD</td>
						<td height="18" width="15%" bgcolor="#ABABAB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#ABABAB</td>
						<td height="18" width="15%" bgcolor="#AB82FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#AB82FF</td>
						<td height="18" width="15%" bgcolor="#AAAAAA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#AAAAAA</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#A9A9A9" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A9A9A9</td>
						<td height="18" width="15%" bgcolor="#A8A8A8" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A8A8A8</td>
						<td height="18" width="15%" bgcolor="#A6A6A6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A6A6A6</td>
						<td height="18" width="15%" bgcolor="#A52A2A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A52A2A</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#A4D3EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A4D3EE</td>
						<td height="18" width="15%" bgcolor="#A3A3A3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A3A3A3</td>
						<td height="18" width="15%" bgcolor="#A2CD5A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A2CD5A</td>
						<td height="18" width="15%" bgcolor="#A2B5CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A2B5CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#A1A1A1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A1A1A1</td>
						<td height="18" width="15%" bgcolor="#A0522D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A0522D</td>
						<td height="18" width="15%" bgcolor="#A020F0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#A020F0</td>
						<td height="18" width="15%" bgcolor="#9FB6CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9FB6CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#9F79EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9F79EE</td>
						<td height="18" width="15%" bgcolor="#9E9E9E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9E9E9E</td>
						<td height="18" width="15%" bgcolor="#9C9C9C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9C9C9C</td>
						<td height="18" width="15%" bgcolor="#9BCD9B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9BCD9B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#9B30FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9B30FF</td>
						<td height="18" width="15%" bgcolor="#9AFF9A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9AFF9A</td>
						<td height="18" width="15%" bgcolor="#9ACD32" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9ACD32</td>
						<td height="18" width="15%" bgcolor="#9AC0CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9AC0CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#9A32CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9A32CD</td>
						<td height="18" width="15%" bgcolor="#999999" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#999999</td>
						<td height="18" width="15%" bgcolor="#9932CC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9932CC</td>
						<td height="18" width="15%" bgcolor="#98FB98" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#98FB98</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#98F5FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#98F5FF</td>
						<td height="18" width="15%" bgcolor="#97FFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#97FFFF</td>
						<td height="18" width="15%" bgcolor="#96CDCD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#96CDCD</td>
						<td height="18" width="15%" bgcolor="#969696" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#969696</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#949494" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#949494</td>
						<td height="18" width="15%" bgcolor="#9400D3" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9400D3</td>
						<td height="18" width="15%" bgcolor="#9370DB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#9370DB</td>
						<td height="18" width="15%" bgcolor="#919191" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#919191</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#912CEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#912CEE</td>
						<td height="18" width="15%" bgcolor="#90EE90" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#90EE90</td>
						<td height="18" width="15%" bgcolor="#8FBC8F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8FBC8F</td>
						<td height="18" width="15%" bgcolor="#8F8F8F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8F8F8F</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8EE5EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8EE5EE</td>
						<td height="18" width="15%" bgcolor="#8E8E8E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8E8E8E</td>
						<td height="18" width="15%" bgcolor="#8E8E38" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8E8E38</td>
						<td height="18" width="15%" bgcolor="#8E388E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8E388E</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8DEEEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8DEEEE</td>
						<td height="18" width="15%" bgcolor="#8DB6CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8DB6CD</td>
						<td height="18" width="15%" bgcolor="#8C8C8C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8C8C8C</td>
						<td height="18" width="15%" bgcolor="#8B8B83" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8B83</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B8B7A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8B7A</td>
						<td height="18" width="15%" bgcolor="#8B8B00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8B00</td>
						<td height="18" width="15%" bgcolor="#8B8989" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8989</td>
						<td height="18" width="15%" bgcolor="#8B8970" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8970</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B8878" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8878</td>
						<td height="18" width="15%" bgcolor="#8B8682" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8682</td>
						<td height="18" width="15%" bgcolor="#8B864E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B864E</td>
						<td height="18" width="15%" bgcolor="#8B8386" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8386</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B8378" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B8378</td>
						<td height="18" width="15%" bgcolor="#8B814C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B814C</td>
						<td height="18" width="15%" bgcolor="#8B7E66" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B7E66</td>
						<td height="18" width="15%" bgcolor="#8B7D7B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B7D7B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B7D6B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B7D6B</td>
						<td height="18" width="15%" bgcolor="#8B7B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B7B8B</td>
						<td height="18" width="15%" bgcolor="#8B795E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B795E</td>
						<td height="18" width="15%" bgcolor="#8B7765" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B7765</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B7500" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B7500</td>
						<td height="18" width="15%" bgcolor="#8B7355" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B7355</td>
						<td height="18" width="15%" bgcolor="#8B6969" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B6969</td>
						<td height="18" width="15%" bgcolor="#8B6914" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B6914</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B668B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B668B</td>
						<td height="18" width="15%" bgcolor="#8B6508" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B6508</td>
						<td height="18" width="15%" bgcolor="#8B636C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B636C</td>
						<td height="18" width="15%" bgcolor="#8B5F65" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B5F65</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B5A2B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B5A2B</td>
						<td height="18" width="15%" bgcolor="#8B5A00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B5A00</td>
						<td height="18" width="15%" bgcolor="#8B5742" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B5742</td>
						<td height="18" width="15%" bgcolor="#8B4C39" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B4C39</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B4789" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B4789</td>
						<td height="18" width="15%" bgcolor="#8B475D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B475D</td>
						<td height="18" width="15%" bgcolor="#8B4726" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B4726</td>
						<td height="18" width="15%" bgcolor="#8B4513" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B4513</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B4500" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B4500</td>
						<td height="18" width="15%" bgcolor="#8B3E2F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B3E2F</td>
						<td height="18" width="15%" bgcolor="#8B3A62" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B3A62</td>
						<td height="18" width="15%" bgcolor="#8B3A3A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B3A3A</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B3626" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B3626</td>
						<td height="18" width="15%" bgcolor="#8B2500" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B2500</td>
						<td height="18" width="15%" bgcolor="#8B2323" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B2323</td>
						<td height="18" width="15%" bgcolor="#8B2252" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B2252</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B1C62" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B1C62</td>
						<td height="18" width="15%" bgcolor="#8B1A1A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B1A1A</td>
						<td height="18" width="15%" bgcolor="#8B0A50" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B0A50</td>
						<td height="18" width="15%" bgcolor="#8B008B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B008B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#8B0000" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8B0000</td>
						<td height="18" width="15%" bgcolor="#8A8A8A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8A8A8A</td>
						<td height="18" width="15%" bgcolor="#8A2BE2" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8A2BE2</td>
						<td height="18" width="15%" bgcolor="#8968CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8968CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#87CEFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#87CEFF</td>
						<td height="18" width="15%" bgcolor="#87CEFA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#87CEFA</td>
						<td height="18" width="15%" bgcolor="#87CEEB" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#87CEEB</td>
						<td height="18" width="15%" bgcolor="#878787" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#878787</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#858585" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#858585</td>
						<td height="18" width="15%" bgcolor="#848484" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#848484</td>
						<td height="18" width="15%" bgcolor="#8470FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#8470FF</td>
						<td height="18" width="15%" bgcolor="#838B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#838B8B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#838B83" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#838B83</td>
						<td height="18" width="15%" bgcolor="#836FFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#836FFF</td>
						<td height="18" width="15%" bgcolor="#828282" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#828282</td>
						<td height="18" width="15%" bgcolor="#7FFFD4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7FFFD4</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#7FFF00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7FFF00</td>
						<td height="18" width="15%" bgcolor="#7F7F7F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7F7F7F</td>
						<td height="18" width="15%" bgcolor="#7EC0EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7EC0EE</td>
						<td height="18" width="15%" bgcolor="#7D9EC0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7D9EC0</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#7D7D7D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7D7D7D</td>
						<td height="18" width="15%" bgcolor="#7D26CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7D26CD</td>
						<td height="18" width="15%" bgcolor="#7CFC00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7CFC00</td>
						<td height="18" width="15%" bgcolor="#7CCD7C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7CCD7C</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#7B68EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7B68EE</td>
						<td height="18" width="15%" bgcolor="#7AC5CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7AC5CD</td>
						<td height="18" width="15%" bgcolor="#7A8B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7A8B8B</td>
						<td height="18" width="15%" bgcolor="#7A7A7A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7A7A7A</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#7A67EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7A67EE</td>
						<td height="18" width="15%" bgcolor="#7A378B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7A378B</td>
						<td height="18" width="15%" bgcolor="#79CDCD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#79CDCD</td>
						<td height="18" width="15%" bgcolor="#787878" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#787878</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#778899" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#778899</td>
						<td height="18" width="15%" bgcolor="#76EEC6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#76EEC6</td>
						<td height="18" width="15%" bgcolor="#76EE00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#76EE00</td>
						<td height="18" width="15%" bgcolor="#757575" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#757575</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#737373" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#737373</td>
						<td height="18" width="15%" bgcolor="#71C671" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#71C671</td>
						<td height="18" width="15%" bgcolor="#7171C6" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#7171C6</td>
						<td height="18" width="15%" bgcolor="#708090" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#708090</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#707070" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#707070</td>
						<td height="18" width="15%" bgcolor="#6E8B3D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6E8B3D</td>
						<td height="18" width="15%" bgcolor="#6E7B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6E7B8B</td>
						<td height="18" width="15%" bgcolor="#6E6E6E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6E6E6E</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#6CA6CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6CA6CD</td>
						<td height="18" width="15%" bgcolor="#6C7B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6C7B8B</td>
						<td height="18" width="15%" bgcolor="#6B8E23" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6B8E23</td>
						<td height="18" width="15%" bgcolor="#6B6B6B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6B6B6B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#6A5ACD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6A5ACD</td>
						<td height="18" width="15%" bgcolor="#698B69" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#698B69</td>
						<td height="18" width="15%" bgcolor="#698B22" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#698B22</td>
						<td height="18" width="15%" bgcolor="#696969" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#696969</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#6959CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6959CD</td>
						<td height="18" width="15%" bgcolor="#68838B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#68838B</td>
						<td height="18" width="15%" bgcolor="#68228B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#68228B</td>
						<td height="18" width="15%" bgcolor="#66CDAA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#66CDAA</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#66CD00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#66CD00</td>
						<td height="18" width="15%" bgcolor="#668B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#668B8B</td>
						<td height="18" width="15%" bgcolor="#666666" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#666666</td>
						<td height="18" width="15%" bgcolor="#6495ED" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#6495ED</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#63B8FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#63B8FF</td>
						<td height="18" width="15%" bgcolor="#636363" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#636363</td>
						<td height="18" width="15%" bgcolor="#616161" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#616161</td>
						<td height="18" width="15%" bgcolor="#607B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#607B8B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#5F9EA0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#5F9EA0</td>
						<td height="18" width="15%" bgcolor="#5E5E5E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#5E5E5E</td>
						<td height="18" width="15%" bgcolor="#5D478B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#5D478B</td>
						<td height="18" width="15%" bgcolor="#5CACEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#5CACEE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#5C5C5C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#5C5C5C</td>
						<td height="18" width="15%" bgcolor="#5B5B5B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#5B5B5B</td>
						<td height="18" width="15%" bgcolor="#595959" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#595959</td>
						<td height="18" width="15%" bgcolor="#575757" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#575757</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#556B2F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#556B2F</td>
						<td height="18" width="15%" bgcolor="#555555" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#555555</td>
						<td height="18" width="15%" bgcolor="#551A8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#551A8B</td>
						<td height="18" width="15%" bgcolor="#54FF9F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#54FF9F</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#548B54" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#548B54</td>
						<td height="18" width="15%" bgcolor="#545454" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#545454</td>
						<td height="18" width="15%" bgcolor="#53868B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#53868B</td>
						<td height="18" width="15%" bgcolor="#528B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#528B8B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#525252" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#525252</td>
						<td height="18" width="15%" bgcolor="#515151" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#515151</td>
						<td height="18" width="15%" bgcolor="#4F94CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4F94CD</td>
						<td height="18" width="15%" bgcolor="#4F4F4F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4F4F4F</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#4EEE94" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4EEE94</td>
						<td height="18" width="15%" bgcolor="#4D4D4D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4D4D4D</td>
						<td height="18" width="15%" bgcolor="#4B0082" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4B0082</td>
						<td height="18" width="15%" bgcolor="#4A708B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4A708B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#4A4A4A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4A4A4A</td>
						<td height="18" width="15%" bgcolor="#48D1CC" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#48D1CC</td>
						<td height="18" width="15%" bgcolor="#4876FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4876FF</td>
						<td height="18" width="15%" bgcolor="#483D8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#483D8B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#474747" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#474747</td>
						<td height="18" width="15%" bgcolor="#473C8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#473C8B</td>
						<td height="18" width="15%" bgcolor="#4682B4" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4682B4</td>
						<td height="18" width="15%" bgcolor="#458B74" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#458B74</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#458B00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#458B00</td>
						<td height="18" width="15%" bgcolor="#454545" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#454545</td>
						<td height="18" width="15%" bgcolor="#43CD80" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#43CD80</td>
						<td height="18" width="15%" bgcolor="#436EEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#436EEE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#424242" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#424242</td>
						<td height="18" width="15%" bgcolor="#4169E1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#4169E1</td>
						<td height="18" width="15%" bgcolor="#40E0D0" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#40E0D0</td>
						<td height="18" width="15%" bgcolor="#404040" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#404040</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#3D3D3D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#3D3D3D</td>
						<td height="18" width="15%" bgcolor="#3CB371" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#3CB371</td>
						<td height="18" width="15%" bgcolor="#3B3B3B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#3B3B3B</td>
						<td height="18" width="15%" bgcolor="#3A5FCD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#3A5FCD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#388E8E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#388E8E</td>
						<td height="18" width="15%" bgcolor="#383838" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#383838</td>
						<td height="18" width="15%" bgcolor="#36648B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#36648B</td>
						<td height="18" width="15%" bgcolor="#363636" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#363636</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#333333" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#333333</td>
						<td height="18" width="15%" bgcolor="#32CD32" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#32CD32</td>
						<td height="18" width="15%" bgcolor="#303030" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#303030</td>
						<td height="18" width="15%" bgcolor="#2F4F4F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#2F4F4F</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#2E8B57" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#2E8B57</td>
						<td height="18" width="15%" bgcolor="#2E2E2E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#2E2E2E</td>
						<td height="18" width="15%" bgcolor="#2B2B2B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#2B2B2B</td>
						<td height="18" width="15%" bgcolor="#292929" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#292929</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#282828" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#282828</td>
						<td height="18" width="15%" bgcolor="#27408B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#27408B</td>
						<td height="18" width="15%" bgcolor="#262626" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#262626</td>
						<td height="18" width="15%" bgcolor="#242424" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#242424</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#228B22" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#228B22</td>
						<td height="18" width="15%" bgcolor="#218868" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#218868</td>
						<td height="18" width="15%" bgcolor="#212121" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#212121</td>
						<td height="18" width="15%" bgcolor="#20B2AA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#20B2AA</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#1F1F1F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#1F1F1F</td>
						<td height="18" width="15%" bgcolor="#1E90FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#1E90FF</td>
						<td height="18" width="15%" bgcolor="#1E1E1E" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#1E1E1E</td>
						<td height="18" width="15%" bgcolor="#1C86EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#1C86EE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#1C1C1C" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#1C1C1C</td>
						<td height="18" width="15%" bgcolor="#1A1A1A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#1A1A1A</td>
						<td height="18" width="15%" bgcolor="#191970" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#191970</td>
						<td height="18" width="15%" bgcolor="#1874CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#1874CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#171717" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#171717</td>
						<td height="18" width="15%" bgcolor="#141414" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#141414</td>
						<td height="18" width="15%" bgcolor="#121212" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#121212</td>
						<td height="18" width="15%" bgcolor="#104E8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#104E8B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#0F0F0F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#0F0F0F</td>
						<td height="18" width="15%" bgcolor="#0D0D0D" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#0D0D0D</td>
						<td height="18" width="15%" bgcolor="#0A0A0A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#0A0A0A</td>
						<td height="18" width="15%" bgcolor="#080808" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#080808</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#050505" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#050505</td>
						<td height="18" width="15%" bgcolor="#030303" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#030303</td>
						<td height="18" width="15%" bgcolor="#00FFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00FFFF</td>
						<td height="18" width="15%" bgcolor="#00FF7F" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00FF7F</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#00FF00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00FF00</td>
						<td height="18" width="15%" bgcolor="#00FA9A" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00FA9A</td>
						<td height="18" width="15%" bgcolor="#00F5FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00F5FF</td>
						<td height="18" width="15%" bgcolor="#00EEEE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00EEEE</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#00EE76" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00EE76</td>
						<td height="18" width="15%" bgcolor="#00EE00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00EE00</td>
						<td height="18" width="15%" bgcolor="#00E5EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00E5EE</td>
						<td height="18" width="15%" bgcolor="#00CED1" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00CED1</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#00CDCD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00CDCD</td>
						<td height="18" width="15%" bgcolor="#00CD66" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00CD66</td>
						<td height="18" width="15%" bgcolor="#00CD00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00CD00</td>
						<td height="18" width="15%" bgcolor="#00C5CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00C5CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#00BFFF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00BFFF</td>
						<td height="18" width="15%" bgcolor="#00B2EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00B2EE</td>
						<td height="18" width="15%" bgcolor="#009ACD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#009ACD</td>
						<td height="18" width="15%" bgcolor="#008B8B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#008B8B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#008B45" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#008B45</td>
						<td height="18" width="15%" bgcolor="#008B00" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#008B00</td>
						<td height="18" width="15%" bgcolor="#00868B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00868B</td>
						<td height="18" width="15%" bgcolor="#00688B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00688B</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#006400" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#006400</td>
						<td height="18" width="15%" bgcolor="#0000FF" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#0000FF</td>
						<td height="18" width="15%" bgcolor="#0000EE" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#0000EE</td>
						<td height="18" width="15%" bgcolor="#0000CD" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#0000CD</td>
					</tr>
					<tr style="line-height: 22px;">
						<td height="18" width="15%" bgcolor="#0000AA" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#0000AA</td>
						<td height="18" width="15%" bgcolor="#00008B" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#00008B</td>
						<td height="18" width="15%" bgcolor="#000080" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#000080</td>
						<td height="18" width="15%" bgcolor="#000000" style="line-height: 22px;"></td>
						<td width="10%" style="line-height: 22px;">#000000</td>
					</tr>
				</tbody>
			</table>
        </div>
	你或许还对感兴趣:<a href="http://bbs.fobshanghai.com/pantone-color.html" target="_blank">在线PANTONE色卡</a>
      <!--innerbox结束-->
    </div>

	
    <!--box结束-->
    <div class="box_bottom"></div>
    <div class="bottom1">
	
	</div>
  </div>
</div>
<!-- 底部开始 -->
<div id="footer">
  <ul>
    <li><a href="http://bbs.fobshanghai.com/" target="_blank">福步外贸论坛</a></li>
    <li><a href="http://pifa.fobshanghai.com/" target="_blank">福步外贸库存批发网</a></li>
    <li><a href="http://job.fobshanghai.com/" target="_blank">福步外贸人才网</a></li>
    <li><a href="http://jk.fobshanghai.com/" target="_blank">福步外贸进口网</a></li>
    <li style="border-right:none"><a href="http://link.fobshanghai.com/" target="_blank">福步外贸网址</a></li>
  </ul>
  <p>福步外贸网 1999-2009,FOBShanghai.com,All Rights Reserved.</p>
  <p><a href="http://www.miibeian.gov.cn" target="_blank">沪ICP备05002584号</a></p>
</div>
<!-- 底部结束 -->



<div style="display:none"><script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
_uacct = "UA-99189-7";
urchinTracker();
</script>
</div></body></html>

标签:颜色,网页,color,cnum,15,120,n1,border,选择器
From: https://blog.51cto.com/lenglingx/7180584

相关文章

  • 并集选择器
     作用:选中多个选择器对应的元素,又称:分组选择器所谓并集就是或者的含义,比如要么......要么......的意思,比如要么在一起要么我滚 语法: 选择器1,选择器2,选择器3,选择器n......多个选择器通过逗号进行链接,这里的逗号其实就是或者的意思 举例:#text,.re......
  • 网页端实现Excel转JSON
    1.引言有时工作中拿到的数据是Excel表格,要在前端网页上使用,通常需要把文件转为JSON微软的MicrosoftExcel没有导出为JSON的功能,其他的第三方网站又不太信任开源的Excel转JSON的小工具倒是不少,但是往往需要下载,比如这个:neil3d/excel2json:把Excel表转换成json对象,并保存到一个......
  • WPF实现Element UI风格的日期时间选择器
    背景业务开发过程中遇到一个日期范围选择的需求,和ElementUI的DateTimePicker组件比较类似,由两个日历控件组成,联动选择起始时间和结束时间。问题WPF中提供了一个DatePicker的控件,主要由DatePickerTextBox、Button和一个Calendar组成,其中Calendar是后台代码动态添加的,因此不能直......
  • 《HTML CSS JavaScript 网页制作》JavaScript基本知识(简介、语法、事件、对象)
    一、JavaScript简介1、JavaScript特点脚本语言:是一种解释型的脚本语言,在程序运行过程中逐行进行解释;基于对象:可以创建对象,也能使用现有的对象;简单:采用的是弱类型的变量类型,对使用的数据类型未作出严格的要求;动态性:采用事件驱动,不需要经过web服务器就可以对用户的输入作出响应;跨平台......
  • 7 CSS选择器优先级
    7选择器优先级所谓CSS优先级,即是指CSS样式在浏览器中被解析的先后顺序。样式表中的特殊性描述了不同规则的相对权重。/*!important>行内样式>ID选择器>类选择器>标签>通配符>继承>浏览器默认属性1内联样式表的权值最高style=""1000;......
  • 5 CSS伪类选择器
    5伪类选择器anchor伪类:专用于控制链接的显示效果MoreActions:linka:link选择所有未被访问的链接。:visiteda:visited选择所有已被访问的链接。:activea:active选择活动链接。:hovera:hover选择鼠标指针位于其上的链接。<style>a:link{......
  • H.265网页播放器EasyPlayer外部录像接口开放的方法
    EasyPlayer通过实现视频实时录像功能,不仅提供轻量化、便捷化的视频资源下载能力,同时有效减少了带宽和计算资源的消耗。这种创新的功能使得用户可以灵活地获取所需的视频数据,为其节省使用成本并提升整体效率。今天我们来分享一下EasyPlayer播放器对外开放录像的方法。1)在播放器内部......
  • 4 CSS属性选择器
    4属性选择器属性选择器是通过元素的属性及属性值来选择元素的。下面介绍属性选择器的用法。第一种用法作用:选择含有指定属性的元素。语法:[属性名]{}示例如下:<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><title>属性选择器</title><s......
  • Excel根据单元格颜色设置折线图颜色
    https://www.coder.work/article/7850118 遍历 SeriesCollection的Chart并捕获Formula每个 Series .使用 Split 获取对源数据(公式的第3部分)的引用.设置ForeColor.RGB每个 Series等于 Interior.Color与其关联的数据范围。SubColorMyChart()DimmyChart......
  • 【8月摸鱼计划】网页证书过期怎么办
    网页证书过期怎么办有些浏览器在访问某些网站时会出现证书错误过期的情况,此时只要是涉及到输入账户密码的网页都无法打开,真是一件让人苦恼的事情,到底网页证书过期怎么办呢?下面介绍两种方法来解决网页证书过期的问题。一、计算机中的日期和时间不同步网页证书过期解决方法:......