<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Niche Store Market &#187; Design Help</title>
	<atom:link href="http://nichestoremarket.com/view/design-help/feed/" rel="self" type="application/rss+xml" />
	<link>http://nichestoremarket.com</link>
	<description>Affiliate Marketing Products  &#38;  Information</description>
	<lastBuildDate>Fri, 19 Jun 2009 15:25:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Simple URL Mask to Hide Affiliate Links</title>
		<link>http://nichestoremarket.com/2009/04/simple-url-mask-to-hide-affiliate-links/</link>
		<comments>http://nichestoremarket.com/2009/04/simple-url-mask-to-hide-affiliate-links/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 02:03:05 +0000</pubDate>
		<dc:creator>Shane Isaacs</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Simple PHP]]></category>
		<category><![CDATA[affiliate link mask]]></category>
		<category><![CDATA[affiliate mask]]></category>
		<category><![CDATA[php redirect]]></category>
		<category><![CDATA[php url mask]]></category>
		<category><![CDATA[url mask]]></category>
		<category><![CDATA[url redirect]]></category>

		<guid isPermaLink="false">http://nichestoremarket.com/?p=394</guid>
		<description><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/simple-url-mask-to-hide-affiliate-links/">Simple URL Mask to Hide Affiliate Links</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
Simple URL Mask to Hide Affiliate LinksPost from: Niche Store Market Here is a neat little trick that is easy to do and will mask those ugly affiliate links. This method is a simplified version of what I had made when I created the Build a Niche Store v2 URL Masking Mod. You remember, it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/simple-url-mask-to-hide-affiliate-links/">Simple URL Mask to Hide Affiliate Links</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
<p>Here is a neat little trick that is easy to do and will mask those ugly affiliate links. This method is a simplified version of what I had made when I created the Build a Niche Store v2 URL Masking Mod. You remember, it was the first url masking to be coded for Build a Niche Store and is surprisingly similar to what the developers &#8216;created&#8217; and released months later in v3. What a Ko-inky-dink! This trick is for any link you want to mask, if anyone using BANS v2 wants to know how to incorporate this into their stores and mask all those eBay links just let me know and I&#8217;ll post the instructions.</p>
<p>This little program here simply hides all your affiliate links, pointing them back to your own site. When a user clicks on the link the program filters the correct response and sends them on to proper website with your affiliate link. There are many other ways to do this but I like this one because it only requires one file rather than making a seperate file with a redirect for every link. It is much more efficient and keeps the clutter down.<br />
<span id="more-394"></span><br />
First open a new html document or notepad and save it as <b>link.php</b>.</p>
<blockquote><p>You can name the file anything you want, just make sure you save it as a php file and change all the references below to whatever you named it. Some other popular names would be recommends.php, product.php, site.php and so on.</p></blockquote>
<p>Second create a folder (directory) on your site (preferably in the root as it&#8217;s easier to remember). You can name this folder anything you want. I am going to call mine <b>product</b>.</p>
<p>Now we are ready to start creating some masks. I am going to use the following two links, one is a text link and one is a image ad.</p>
<blockquote><p><b>Text Link:</b> &lt;a href=&#8221;http://www.phpbay.com/&#8221;&gt;Make Money with eBay!&lt;/a&gt;<br />
<b>Image Ad:</b> &lt;a href=&#8221;http://www.phpostock.com&#8221;&gt;&lt;img src=&#8221;http://nichestoremarket.com/product/phpostock.jpg&#8221; alt=&#8221;Php O Stock&#8221; /&gt;&lt;/a&gt;</p></blockquote>
<p>Let&#8217;s open our <b>link.php</b> file now. First we need to add this code into it:</p>
<blockquote><p>&lt;?<br />
  $sku = $_REQUEST['name'];<br />
  if ($name == &#8221;) {<br />
    $name = ($name);<br />
    header(&#8220;Location:&#8221;);<br />
    exit;<br />
    }<br />
?&gt;</p></blockquote>
<p>I am going to mask the text link first which is for PhpBay. To do this I am going to add PhpBay to <b>$name ==</b> like so:</p>
<blockquote><p>&lt;?<br />
  $sku = $_REQUEST['name'];<br />
  if (<b>$name == &#8216;PhpBay&#8217;</b>) {<br />
    $name = ($name);<br />
    header(&#8220;Location:&#8221;);<br />
    exit;<br />
    }<br />
?&gt;</p></blockquote>
<p>Next lets add in the <b>Location</b> we want the link to point to:</p>
<blockquote><p>&lt;?<br />
  $sku = $_REQUEST['name'];<br />
  if ($name == &#8216;PhpBay&#8217;) {<br />
    $name = ($name);<br />
    header(&#8220;<b>Location: http://www.phpbay.com/</b>&#8220;);<br />
    exit;<br />
    }<br />
?&gt;</p></blockquote>
<p>Finally we will &#8216;mask&#8217; the url to point back to the new link.php file on our domain:</p>
<blockquote><p>&lt;a href=&#8221;http://nichestoremarket.com/product/link.php?name=PhpBay&#8221;&gt;Make Money with eBay!&lt;/a&gt;</p></blockquote>
<p>That&#8217;s all there is to it. If we want to add another masked link, such as the image ad above, we just insert a second block of code, modified for our new ad, like this:</p>
<blockquote><p>&lt;?<br />
  $sku = $_REQUEST['name'];<br />
  if ($name == &#8216;PhpBay&#8217;) {<br />
    $name = ($name);<br />
    header(&#8220;Location: http://www.phpbay.com/&#8221;);<br />
    exit;<br />
    } <b>else if ($name == &#8216;Php-O-Stock&#8217;) {</b>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//notice we added the word <b>else</b> to this line!<br />
   <b>$name = ($name);<br />
    header(&#8220;Location: http://www.phpostock.com/&#8221;);<br />
    exit;<br />
    } </b> </p>
<p>?&gt;</p></blockquote>
<p>And then edit our ad link just like we did the text link:</p>
<blockquote><p>&lt;a href=&#8221;http://nichestoremarket.com/product/link.php?name=Php-O-Stock&#8221;&gt;&lt;img src=&#8221;http://nichestoremarket.com/product/phpostock.jpg&#8221; alt=&#8221;Php O Stock&#8221; /&gt;&lt;/a&gt;</p></blockquote>
<p>If you want to add more products just copy the bolded code I showed you above and paste it in after the last bracket but before the question mark. Repeat that for every product you would like to add. Don&#8217;t forget to edit the $name and the Location for your new product though!</p>
<p>Here is a break down of how the code actually works:</p>
<blockquote><p>$sku = $_REQUEST['name'];&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Requests the name= from the end of the url<br />
  if ($name == &#8221;) {&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Looks if name= from the url is the same as $name<br />
    $name = ($name);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Confirms that name= is equal to $name<br />
    header(&#8220;Location:&#8221;);&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Redirects to the correct url for that product<br />
    exit;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// Exits the code if redirect was completed<br />
    } else if&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// If $name &amp; name= did not match above, repeats for next product
    </p></blockquote>
<p>Here are a couple very important things to remember!</p>
<blockquote><p>&lt;?<br />
  $sku = $_REQUEST['name'];<br />
  if ($name == &#8216;<b>PhpBay</b>&#8216;) {<br />
    $name = ($name);<br />
    header(<font color="red">&#8220;Location: http://www.phpbay.com&#8221;</font>);<br />
    exit;<br />
    }<br />
?&gt;</p>
<p>&lt;a href=&#8221;http://nichestoremarket.com/product/link.php?name=<b>PhpBay</b>&#8220;&gt;Make Money with eBay!&lt;/a&gt;</p>
<p>The <b>BOLD</b> text MUST match exactly with no spaces between the single quotes!<br />
The <b><font color="red">RED</font></b> item must have a single space between Location: and http://</p></blockquote>
<p>One you have made all your edits don&#8217;t forget to save your link.php file and upload it into the product folder we created. You can now place your new masked links anywhere on your site and they will redirect to the correct url.<b> Make sure to TEST EVERY LINK!</b></p>
<p>Check out the two links below we just created. Hover over them to see that they point back to my site then click on them and watch them redirect. Just don&#8217;t forget to come back!</p>
<p><b>Text Link:</b> <a href="http://nichestoremarket.com/product/link.php?name=PhpBay">Make Money with eBay!</a></p>
<p><b>Image Ad:</b> <a href="http://nichestoremarket.com/product/link.php?name=Php-O-Stock"><img src="http://nichestoremarket.com/product/phpostock.png" alt="Php O Stock" /></a></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://nichestoremarket.com/2009/04/simple-url-mask-to-hide-affiliate-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Basic BANS Customization with CSS</title>
		<link>http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/</link>
		<comments>http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 16:42:30 +0000</pubDate>
		<dc:creator>Shane Isaacs</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Build a Niche Store]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[bans css]]></category>
		<category><![CDATA[bans customization]]></category>
		<category><![CDATA[bans design]]></category>
		<category><![CDATA[css styles]]></category>

		<guid isPermaLink="false">http://nichestoremarket.com/blog/?p=254</guid>
		<description><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/">Basic BANS Customization with CSS</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
Basic BANS Customization with CSSPost from: Niche Store Market The most asked question I ever receive is How do I change the colors?!?!. Build a Niche Store works the same as Joomla, WordPress and etc when it comes to Basic Styling. The design is built off of a CSS Style Sheet. Learning the basics of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/">Basic BANS Customization with CSS</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
<p>The most asked question I ever receive is <b><i>How do I change the colors?!?!</i></b>. Build a Niche Store works the same as Joomla, WordPress and etc when it comes to Basic Styling. The design is built off of a CSS Style Sheet. Learning the basics of using and working with CSS will go along way when it comes to working with different platforms on the internet.</p>
<p>This area provides some basic BANS Customization Tips through Css. We will walk through many of the most common Build a Niche Store styles and what needs to be changed.</p>
<p><a name="top"></a>Please Select one of the following to get started:</p>
<ul>
<li><a href="http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/#bgcolor">Change Background Borders and Colors</a></li>
<li><a href="http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/#stnedit">Edit the Sitename in the Header</a></li>
<li><a href="http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/#stnrmv">Remove the Sitename from the Header</a></li>
</ul>
<p><span id="more-254"></span></p>
<h3><a name="bgcolor">Change Background and Border Colors</a></h3>
<div>&nbsp;</div>
<div><em>Note: The code shown below is taken from Layout-1-both. Your code may differ slightly depending on the template used.</em></div>
<div>&nbsp;</div>
<div>Changes made to #sidebar for the left hand panel can also be made to #sidebarright for the right hand panel.</div>
<div>&nbsp;</div>
<div>Click on the followings links to go straight to the respective code changes:</div>
<ul>
<li><a href="#pagebackground">Page Background</a></li>
<li><a href="#pageborder">Page Border</a></li>
<li><a href="#bodybackground">Body Background</a></li>
<li><a href="#searchbox">Searchbox</a></li>
<li><a href="#sidebarnavmenu">Sidebar Nav Menu</a></li>
<li><a href="#sidebarheadings">Sidebar Headings</a></li>
<li><a href="#sidebarlinks">Sidebar Links</a></li>
<li><a href="#sidebarhover">Sidebar Hover</a></li>
<li><a href="#maincontentarea">Main Content Area</a></li>
<li><a href="#footer">Footer</a></li>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div><a name="pagebackground"></a>To change the <strong>page</strong> background color, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#page {<br />
			<span style="COLOR: #ff0000">background-color: #ffffff;</span><br />
			margin: 0px;<br />
			padding: 10px;<br />
			width: 782px;<br />
			border-style: solid; </p>
<p>			border-color: #CACACA; <br />
			border-width: 1px; <br />
			display: block;<br />
			}</div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="pageborder"></a>To change the <strong>page</strong> border color and width, edit the following code in styles.css: 			</p>
<div>&nbsp;</div>
<div>#page {<br />
				background-color: #ffffff;<br />
				margin: 0px;<br />
				padding: 10px;<br />
				width: 782px;</p>
<p>				border-style: solid; <br />
				<span style="COLOR: #ff0000">border-color: #CACACA; <br />
					border-width: 1px; <br />
					</span>display: block;<br />
				}</div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="bodybackground"></a>To change the <strong>body</strong> background color, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>body#background {<br />
			<span style="COLOR: #ff0000">background-color: #dddddd;</span></p>
<p>			}</p></div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="searchbox"></a>To change the <strong>searchbox</strong> background and borders, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#search {<br />
			padding: 12px;</p>
<p>			margin-top: 10px;<br />
			<span style="COLOR: #ff0000">background-color: #efefef;</span><br />
			color: #333333;<br />
			font-family: Arial;<br />
			font-size: 12px;<br />
			border-style: solid; </p>
<p>			<span style="COLOR: #ff0000">border-color: #dddddd; <br />
				</span><span style="COLOR: #ff0000">border-width: 1px; <br />
				</span>text-align: left;<br />
			}</div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="sidebarnavmenu"></a>To change the left-hand <strong>sidebar</strong> (nav menu) background and borders, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#sidebar {<br />
			margin-top: 10px;<br />
			margin-right: 10px;</p>
<p>			margin-bottom: 10px;<br />
			float: left;<br />
			width: 175px;<br />
			<span style="COLOR: #ff0000">background-color: #f8f8f8;<br />
				</span>text-align: left;<br />
			border-style: solid; </p>
<p>			<span style="COLOR: #ff0000">border-color: #dddddd; <br />
				border-width: 1px;</span><br />
			}</div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="sidebarheadings"></a>To change the left-hand <strong>sidebar heading</strong> parameters, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#sidebar h2 {<br />
			padding: 6px; <br />
			margin: 0px; </p>
<p>			display: block; <br />
			<span style="COLOR: #ff0000">color: #333333;<br />
				</span>font-family: Arial;<br />
			font-size: 13px;<br />
			display: block; <br />
			text-decoration: none; </p>
<p>			<span style="COLOR: #ff0000">background-color: #dcedf5;</span> <br />
			border-style: solid; <br />
			<span style="COLOR: #ff0000">border-color: #dddddd; <br />
				</span><span style="COLOR: #ff0000">border-width: 0px 0px 1px 0px;<br />
				</span>}</div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="sidebarlinks"></a>To change the left-hand <strong>sidebar link</strong> parameters, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#sidebar ul li a { <br />
			<span style="COLOR: #ff0000">background-color: #f8f8f8;<br />
				</span>padding: 3px; <br />
			margin: 0px; <br />
			<span style="COLOR: #ff0000">color: #333333;<br />
				</span>font-family: Arial;</p>
<p>			font-size: 12px;<br />
			display: block; <br />
			padding-right: 10px; <br />
			padding-left: 10px; <br />
			text-decoration: none; <br />
			border-style: solid; </p>
<p>			<span style="COLOR: #ff0000">border-color: #dddddd;</span> <br />
			<span style="COLOR: #ff0000">border-width: 0px 0px 1px 0px;</span> <br />
			} </div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="sidebarhover"></a>To change the left-hand <strong>sidebar hover </strong>background and text colors, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#sidebar ul li a:hover { <br />
			<span style="COLOR: #ff0000">background-color: #efefef;</p>
<p>				</span>padding: 3px; <br />
			margin: 0px; <br />
			<span style="COLOR: #ff0000">color: #333333;</span><br />
			font-family: Arial;<br />
			font-size: 12px;<br />
			display: block; </p>
<p>			padding-right: 10px; <br />
			padding-left: 10px; <br />
			text-decoration: none; <br />
			border-style: solid; <br />
			border-color: #dddddd; <br />
			border-width: 0px 0px 1px 0px; </p>
<p>			}</p></div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="maincontentarea"></a>To change the <strong>main content area</strong> background and border colors, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#content { <br />
			width: 574px;<br />
			margin-top: 10px;<br />
			margin-bottom: 10px;</p>
<p>			margin-right: 0px;<br />
			padding-right: 10px;<br />
			padding-left: 10px;<br />
			padding-top: 10px;<br />
			padding-bottom: 10px;<br />
			<span style="COLOR: #ff0000">background-color: #f8f8f8;</span></p>
<p>			border-style: solid; <br />
			<span style="COLOR: #ff0000">border-color: #dddddd; </span><br />
			<span style="COLOR: #ff0000">border-width: 1px;<br />
				</span>text-align: left; <br />
			}</div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<div>
<hr /></div>
</div>
<div><a name="footer"></a>To change the<strong> footer </strong>background and border colors, edit the following code in styles.css: </p>
<div>&nbsp;</div>
<div>#footer {</p>
<p>			width: 968px;<br />
			height: 30px;<br />
			clear: both;<br />
			<span style="COLOR: #ff0000">background-color: #dddddd;<br />
				</span>border-style: solid; <br />
			<span style="COLOR: #ff0000">border-color: #CACACA; </p>
<p>				</span><span style="COLOR: #ff0000">border-width: 1px; </span><br />
			}</div>
<div></div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
</div>
<h3><a name="stnedit">Change Sitename Parameters</a></h3>
<div>&nbsp;</div>
<div><em>Note: The code shown below is taken from Layout-1-both. Your code may differ slightly depending on the template used.</em></div>
<div>&nbsp;</div>
<div>To change the <strong>sitename</strong> parameters, edit the following code in styles.css:</div>
<div>&nbsp;</div>
<div>#/* Logo Site Name Start */</p></div>
<div>h1#title, h1#title a, h1#title a:hover{<br />
	<span style="COLOR: #ff0000">font-size: 26px;<br />
		letter-spacing: -1.5px;</span><br />
	font-weight: bold;<br />
	padding: 110px 10px 10px 12px;</p>
<p>	<span style="COLOR: #ff0000">text-align: left;<br />
		</span>text-transform: uppercase;<br />
	text-decoration: none;<br />
	<span style="COLOR: #ff0000">color: #1f4983;<br />
		</span>}</div>
<div></p>
<p>	/* Logo Site Name End */</p></div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<h3><a name="stnrmv">Remove Default Sitename</a></h3>
<div>To remove the sitename from the header area, find the following code in the header.php file for&nbsp;your chosen template:</div>
<div>&nbsp;</div>
<div>&lt;div id=&#8221;header&#8221;> <br />
	&lt;div class=&#8221;headerimg&#8221;> <br />
	<span style="COLOR: #ff0000">&lt;h1 id=&#8221;title&#8221;> <br />
		&lt;a href=&#8221;&lt;?php print URL_PATH.&#8221;/&#8221;;?>&#8221;> &lt;?php print SITENAME.&#8221;";?>&lt;/a> </p>
<p>		&lt;/h1> <br />
		</span>&lt;/div> <br />
	&lt;/div> </div>
<div>&nbsp;</div>
<div>and delete the code shown in red.</div>
<div>&nbsp;</div>
<div><a href="#top">Return to Top of Page</a></div>
<div>&nbsp;</div>
<p><em>Originally written by Niche Store Market Admin Pip.</em></p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://nichestoremarket.com/2009/04/basic-bans-customization-with-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an Inline Horizontal Menu with BANS</title>
		<link>http://nichestoremarket.com/2009/04/creating-an-inline-horizontal-menu-with-bans/</link>
		<comments>http://nichestoremarket.com/2009/04/creating-an-inline-horizontal-menu-with-bans/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 15:52:25 +0000</pubDate>
		<dc:creator>Shane Isaacs</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Build a Niche Store]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[bans menu]]></category>
		<category><![CDATA[horizontal menu]]></category>
		<category><![CDATA[inline menu]]></category>
		<category><![CDATA[niche store menu]]></category>
		<category><![CDATA[pagenav]]></category>
		<category><![CDATA[storenav]]></category>

		<guid isPermaLink="false">http://nichestoremarket.com/blog/?p=243</guid>
		<description><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/creating-an-inline-horizontal-menu-with-bans/">Creating an Inline Horizontal Menu with BANS</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
Creating an Inline Horizontal Menu with BANSPost from: Niche Store Market Many people think that when they use Build a Niche Store they are limited to only using the Category and Page Menus as they display by default. This is not true. By default both menu types will display vertically for use in the sidebar. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/creating-an-inline-horizontal-menu-with-bans/">Creating an Inline Horizontal Menu with BANS</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
<p>Many people think that when they use Build a Niche Store they are limited to only using the Category and Page Menus as they display by default. This is not true. By default both menu types will display vertically for use in the sidebar. But what if you want the menu to display horizontally and above your products? This can be done! It is jut a matter of changing the ID used for the menu and adding some new CSS Style to control the look of the Menu ID.</p>
<p>This will open up a whole new area of display and design options for your Niche Sites. You can no longer be limited to the stale old look and having to find ways to &#8220;arrange&#8221; everything in the sidebars around your menus. By using this very simply modification you can create menus just like the one I use above, with page navigation inline above your category menu. Also, just like on this site, you could display the same menu inline and again in the sidebar if you wanted.</p>
<p><span id="more-243"></span></p>
<blockquote><p>ALWAYS MAKE A BACK-UP COPY OF THE ORIGINAL FILES <b>BEFORE</b> STARTING ANY MODIFICATION</p></blockquote>
<p>It is recommend that you try your skills out with this Mod on a test site. That will give you the time and opportunity to practice and fine tune the layout to your needs without worrying about causing display or functionality issues for your customers as you experiment.</p>
<p>This Modification can be used for displaying Store Navigation, Page Navigation or both.<b> You must use open navigation menus</b> with this Mod or it will not display correctly. The modifications we will be applying are the same ones used I use on <a href="http://nichestoremarket.com/2009/04/curve-v1-niche-template/">NSM Curve Niche Store Template v1</a> as show in the photo below. In this example I used the mod for the page navigation.</p>
<div style="margin-left:200px;padding:15px;">
                <a href="http://nichestoremarket.com/wp-content/uploads/2009/04/curve1d.jpg" rel="lightbox" title="NSM Curve Niche Store Template v1"><img src="http://nichestoremarket.com/wp-content/uploads/2009/04/curve1d-150x100.jpg" alt="NSM Curve Niche Store Template v1" /></a>
    </div>
<ol>
<li>From your stores Admin Area go to Templates and click on Modify: [styles.css]</li>
<li>Copy the CSS Styles below and paste them in to your themes Style Sheet<br />
<blockquote><p>.menu {<br />
	background: #000000; /*Change to your color*/<br />
	width:968px; /*Change to size needed for your template*/<br />
	height:35px;<br />
	margin:0px;<br />
	text-align:left;<br />
	padding:15px 0 0 15px;<br />
	}<br />
	.menu ul {<br />
	text-align:left;<br />
	list-style-type: none;<br />
	list-style-image: none;<br />
	}<br />
	.menu li {<br />
	color:#f0f0f0;<br />
	padding:15px 8px 0 8px;<br />
	display:inline;<br />
	font-family: Arial, Helvetica, sans-serif;<br />
	font-size: 16px; /*You can adjust text size here*/<br />
	}<br />
	.menu li a {<br />
	color:#f0f0f0; /*The color of the menu items*/<br />
	text-decoration:none;<br />
	}<br />
	.menu li a:hover {<br />
	color: #000033; /*The color of the mouse over*/<br />
	text-decoration:none;<br />
	}</p></blockquote>
</li>
<li>Make sure to click save!</li>
<li>Click on header.php in the menu just above the edit box</li>
<li>Add the following code(s) wherever you want your new menu(s) to display
<ul>
<li><b>Store Navigation:</b> &lt;div class=&#8221;menu&#8221;&gt;&lt;ul&gt;&lt;?=$front-&gt;storenav();?&gt;&lt;/ul&gt;&lt;/div&gt;</li>
<li><b>Page Navigation:</b> &lt;div class=&#8221;menu&#8221;&gt;&lt;ul&gt;&lt;?=$front-&gt;pagenav();?&gt;&lt;/ul&gt;&lt;/div&gt;</li>
</ul>
</li>
</ol>
<blockquote>
<ul>
<li>For proper appearance it is recommended not to place the above code inside another item(s) &lt;div&gt; tag. Place it after a closing &lt;/div&gt; and before the next opening &lt;div&gt;</li>
<li>If you have not done so already, please delete the old navigation functions and their &lt;ul&gt; tags from the sidebar (if you want).</li>
</ul>
</blockquote>
<p>You are all done! You can now style it anyway you want. Adjust the text size, height, width, color, spacing between links to add more per row and even add images. If you wish to return your store to normal just remove the tags we added into the header and replace the originals.</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://nichestoremarket.com/2009/04/creating-an-inline-horizontal-menu-with-bans/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Mouse Over effect with the eBay (or any) Image</title>
		<link>http://nichestoremarket.com/2009/04/creating-a-mouse-over-effect-with-the-ebay-image/</link>
		<comments>http://nichestoremarket.com/2009/04/creating-a-mouse-over-effect-with-the-ebay-image/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 00:51:18 +0000</pubDate>
		<dc:creator>Shane Isaacs</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Build a Niche Store]]></category>
		<category><![CDATA[Graphics]]></category>
		<category><![CDATA[ebay image]]></category>
		<category><![CDATA[image hover]]></category>
		<category><![CDATA[mouse over]]></category>

		<guid isPermaLink="false">http://nichestoremarket.com/blog/?p=224</guid>
		<description><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/creating-a-mouse-over-effect-with-the-ebay-image/">Creating a Mouse Over effect with the eBay (or any) Image</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
Creating a Mouse Over effect with the eBay (or any) ImagePost from: Niche Store Market Sometimes it is just the little things that can really set a site apart from the others. Having just a simple little variation in behavior or looks of anything, even something as small as the eBay Image used in Build [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/creating-a-mouse-over-effect-with-the-ebay-image/">Creating a Mouse Over effect with the eBay (or any) Image</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
<p>Sometimes it is just the little things that can really set a site apart from the others. Having just a simple little variation in behavior or looks of anything, even something as small as the eBay Image used in Build a Niche Store can mean the difference between a click through and a possible commission and the user losing interest and leaving. I was asked about doing this in the forum and thought I&#8217;d go ahead and post it for everyone.</p>
<p>Although the title and instructions are for creating a mouse over on the ebay.gif used in BANS, this can be applied to any image anywhere on your site. I&#8217;ll add some additional instructions below on how to accomplish this.</p>
<p>There are a few easy steps you will need to do in order to make this happen. For those that are not quite sure what a mouse over effect is, run your mouse over the ebay image below. The steps I took to make this image flip in this post are the same as listed in setup 2 below.</p>
<div class="ebayflip"><a href="#"><img src="http://nichestoremarket.com/wp-content/uploads/2009/04/ebay.gif" alt="blank image"/></a></div>
<p><span id="more-224"></span></p>
<h3>Setup 1: Adding a mouse over to the default eBay Image</h3>
<ol>
<li>Create 2 new images and name them ebay1.gif and ebay2.gif</li>
<li>Create a new transparent (completely clear, see thru) image the same size as the ones you made above and name it ebay.gif.</li>
<li>Upload the images to your themes image folder overwriting the original ebay.gif.</li>
<li>Open your style sheet (styles.css) and add this code at the bottom:<br />
<blockquote><p>
#ebaylogo a {<br />
   width: 70px;<br />
   float: left;<br />
   padding: 0px;<br />
   background-image:url(&#8216;images/ebay1.gif&#8217;);<br />
   background-repeat:no-repeat;<br />
   }</p>
<p>#ebaylogo a:hover {<br />
   background-image:url(&#8216;images/ebay2.gif&#8217;);<br />
   }
</p></blockquote>
</li>
<li>Save your changes and upload the style sheet to your themes folder overwriting the original styles.css.</li>
<li><b>BANS VERSION 2 ONLY FROM HERE!</b> Open the FrontControl.php in the cont folder and find the code below. Now add in the bold items to make the ebay logo a link<br />
(has to be a link to make it work!)</p>
<blockquote><p>
function logodisplay(){<br />
$temp = $this-&gt;getOptions(&quot;template&quot;);<br />
$ebaylogo = $this-&gt;getOptions(&quot;logo&quot;);<br />
if ($ebaylogo != &#8217;0&#8242;){<br />
$f = &quot;<b>&lt;a href=&#8217;YOUR AFFILIATE LINK&#8217;&gt;</b><br />
&lt;img src=&#8217;&quot;.URL_PATH.&quot;/themes/&quot;.$temp.&quot;/images/ebay.gif&#8217; alt=&#8217;eBay&#8217; /&gt;<b>&lt;/a&gt;</b><br />
&quot;;<br />
return $f;
</p></blockquote>
</li>
<li>Save your changes and upload the FrontConrol.php to your stores cont folder overwriting the original FrontControl.php</li>
</ol>
<p>That&#8217;s it. It will be working now. If the ebay.gif image is not transparent (ie made using a program like PhotoShop or Fireworks, that has that capability) then you will not see the behind effect as the image will render white and hide them.</p>
<h3>Setup 2: Adding the mouse over effect to any image</h3>
<p>To incorporate this method to any image simple follow about the same steps as I&#8217;ll show you below</p>
<ol>
<li>Create 2 new images and name them image1.gif and image2.gif</li>
<li>Create a new transparent (completely clear, see thru) image the same size as the ones you made above and name it image.gif.</li>
<li>Upload the images to your themes image folder.</li>
<li>Open your style sheet (styles.css) and add this code at the bottom:<br />
<blockquote><p>
.ebayflip a {<br />
   width: 70px; /*You can change this to the actual size of the image*/<br />
   padding: 0px;<br />
   background-image:url(&#8216;images/image1.gif&#8217;);<br />
   background-repeat:no-repeat;<br />
   }</p>
<p>.ebayflip a:hover {<br />
   background-image:url(&#8216;images/image2.gif&#8217;);<br />
   }
</p></blockquote>
</li>
<li>Save your changes and upload the style sheet to your themes folder overwriting the original styles.css.</li>
<li>Now anywhere you want to place the image in your site just add this code:<br />
<blockquote><p>&lt;div class=&#8221;ebayflip&#8221;>&lt;a href=&#8221;YOUR_LINK_HERE&#8221;>&lt;img src=&#8221;http://YOUR_DOMAIN_NAME/themes/YOUR_THEME/images/image.gif&#8221; alt=&#8221;" />&lt;/a>&lt;/div></p></blockquote>
</li>
</ol>
<p>That is all there is to it. Sometimes just a little something extra can make or break the sell!</p>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://nichestoremarket.com/2009/04/creating-a-mouse-over-effect-with-the-ebay-image/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Color Code List for developing Niche Stores or Websites</title>
		<link>http://nichestoremarket.com/2009/04/css-color-code-list-for-developing-niche-stores/</link>
		<comments>http://nichestoremarket.com/2009/04/css-color-code-list-for-developing-niche-stores/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 23:05:03 +0000</pubDate>
		<dc:creator>Shane Isaacs</dc:creator>
				<category><![CDATA[All Posts]]></category>
		<category><![CDATA[Build a Niche Store]]></category>
		<category><![CDATA[HTML and CSS]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[color code]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css code]]></category>
		<category><![CDATA[css list]]></category>
		<category><![CDATA[niche store css]]></category>
		<category><![CDATA[niche store style sheet]]></category>
		<category><![CDATA[style sheet code]]></category>
		<category><![CDATA[style sheet color]]></category>
		<category><![CDATA[style sheet list]]></category>

		<guid isPermaLink="false">http://nichestoremarket.com/blog/?p=221</guid>
		<description><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/css-color-code-list-for-developing-niche-stores/">CSS Color Code List for developing Niche Stores or Websites</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
CSS Color Code List for developing Niche Stores or WebsitesPost from: Niche Store Market Sometimes the hardest place to start in developing your niche is choosing that first color to build off of. Making your store visibly appealing to the general public is the first step in retaining the visitors that stumble across your site. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://nichestoremarket.com/2009/04/css-color-code-list-for-developing-niche-stores/">CSS Color Code List for developing Niche Stores or Websites</a><br/><br/>Post from: <a href="http://nichestoremarket.com/">Niche Store Market</a></p>
<p>Sometimes the hardest place to start in developing your niche is choosing that first color to build off of. Making your store visibly appealing to the general public is the first step in retaining the visitors that stumble across your site. Lots of times we just seem to just get stuck mentally on the same old &quot;sets&quot; of color schemes. I always seem to find myself changing the colors over and over trying to come up with something that is just right.</p>
<p>In order to help me, I decided that being able to &quot;see&quot; different color options was more beneficial than trying to &quot;picture&quot; them. So here is a very long list of CSS Colors I compiled to help with building and designing your niche stores. These colors can be used for any color field in the Style Sheet (style.css).</p>
<p>When you find the color you want just copy the six digit number in front of it and place that in your style sheet.</p>
<p>Have Fun!</p>
<p><span id="more-221"></span></p>
<div style="width:580px;border:1px #C0C0C0 solid;background-color:#000000;padding:10px;">
<div style="float:left;width:193px;">
<div style="color:#ffffff;width=79px;float:left">cdc0b0:</div>
<div style="width:114px;color:#cdc0b0">&nbsp;antique white 3</div>
<div style="color:#ffffff;width=79px;float:left">8b8378:</div>
<div style="width:114px;color:#8b8378">&nbsp;antique white 4</div>
<div style="color:#ffffff;width=79px;float:left">32bfc1:</div>
<div style="width:114px;color:#32bfc1">&nbsp;aquamarine 1</div>
<div style="color:#ffffff;width=79px;float:left">7fffd4:</div>
<div style="width:114px;color:#7fffd4">&nbsp;aquamarine 2</div>
<div style="color:#ffffff;width=79px;float:left">76eec6:</div>
<div style="width:114px;color:#76eec6">&nbsp;aquamarine 3</div>
<div style="color:#ffffff;width=79px;float:left">66cdaa:</div>
<div style="width:114px;color:#66cdaa">&nbsp;aquamarine 4</div>
<div style="color:#ffffff;width=79px;float:left">458b74:</div>
<div style="width:114px;color:#458b74">&nbsp;aquamarine 5</div>
<div style="color:#ffffff;width=79px;float:left">cdb79e:</div>
<div style="width:114px;color:#cdb79e">&nbsp;bisque 3</div>
<div style="color:#ffffff;width=79px;float:left">8b7d6b:</div>
<div style="width:114px;color:#8b7d6b">&nbsp;bisque 4</div>
<div style="color:#ffffff;width=79px;float:left">ffe4c4:</div>
<div style="width:114px;color:#ffe4c4">&nbsp;blanched almond</div>
<div style="color:#ffffff;width=79px;float:left">0000ff:</div>
<div style="width:114px;color:#0000ff">&nbsp;blue</div>
<div style="color:#ffffff;width=79px;float:left">0000ee:</div>
<div style="width:114px;color:#0000ee">&nbsp;blue 1</div>
<div style="color:#ffffff;width=79px;float:left">0000cd:</div>
<div style="width:114px;color:#0000cd">&nbsp;blue 2</div>
<div style="color:#ffffff;width=79px;float:left">00008b:</div>
<div style="width:114px;color:#00008b">&nbsp;blue 3</div>
<div style="color:#ffffff;width=79px;float:left">8a2be2:</div>
<div style="width:114px;color:#8a2be2">&nbsp;blue-violet</div>
<div style="color:#ffffff;width=79px;float:left">a52a2a:</div>
<div style="width:114px;color:#a52a2a">&nbsp;brown</div>
<div style="color:#ffffff;width=79px;float:left">ff4040:</div>
<div style="width:114px;color:#ff4040">&nbsp;brown 1</div>
<div style="color:#ffffff;width=79px;float:left">ee3b3b:</div>
<div style="width:114px;color:#ee3b3b">&nbsp;brown 2</div>
<div style="color:#ffffff;width=79px;float:left">cd3333:</div>
<div style="width:114px;color:#cd3333">&nbsp;brown 3</div>
<div style="color:#ffffff;width=79px;float:left">8b2323:</div>
<div style="width:114px;color:#8b2323">&nbsp;brown 4</div>
<div style="color:#ffffff;width=79px;float:left">deb887:</div>
<div style="width:114px;color:#deb887">&nbsp;burlywood</div>
<div style="color:#ffffff;width=79px;float:left">ffd39b:</div>
<div style="width:114px;color:#ffd39b">&nbsp;burlywood 2</div>
<div style="color:#ffffff;width=79px;float:left">cdaa7d:</div>
<div style="width:114px;color:#cdaa7d">&nbsp;burlywood 3</div>
<div style="color:#ffffff;width=79px;float:left">8b7355:</div>
<div style="width:114px;color:#8b7355">&nbsp;burlywood 4</div>
<div style="color:#ffffff;width=79px;float:left">5f929e:</div>
<div style="width:114px;color:#5f929e">&nbsp;cadet blue</div>
<div style="color:#ffffff;width=79px;float:left">98f5ff:</div>
<div style="width:114px;color:#98f5ff">&nbsp;cadet blue 1</div>
<div style="color:#ffffff;width=79px;float:left">8ee5ee:</div>
<div style="width:114px;color:#8ee5ee">&nbsp;cadet blue 2</div>
<div style="color:#ffffff;width=79px;float:left">7ac5cd:</div>
<div style="width:114px;color:#7ac5cd">&nbsp;cadet blue 3</div>
<div style="color:#ffffff;width=79px;float:left">53868b:</div>
<div style="width:114px;color:#53868b">&nbsp;cadet blue 4</div>
<div style="color:#ffffff;width=79px;float:left">7fff00:</div>
<div style="width:114px;color:#7ff000">&nbsp;chartreuse 1</div>
<div style="color:#ffffff;width=79px;float:left">76ee00:</div>
<div style="width:114px;color:#76ee00">&nbsp;chartreuse 2</div>
<div style="color:#ffffff;width=79px;float:left">66cd00:</div>
<div style="width:114px;color:#66cd00">&nbsp;chartreuse 3</div>
<div style="color:#ffffff;width=79px;float:left">458b00:</div>
<div style="width:114px;color:#458b00">&nbsp;chartreuse 4</div>
<div style="color:#ffffff;width=79px;float:left">ff7256:</div>
<div style="width:114px;color:#ff7256">&nbsp;coral 1</div>
<div style="color:#ffffff;width=79px;float:left">ee6a50:</div>
<div style="width:114px;color:#ee6a50">&nbsp;coral 2</div>
<div style="color:#ffffff;width=79px;float:left">cd5b45:</div>
<div style="width:114px;color:#cd5b45">&nbsp;coral 3</div>
<div style="color:#ffffff;width=79px;float:left">8b3e2f:</div>
<div style="width:114px;color:#8b3e2f">&nbsp;coral 4</div>
<div style="color:#ffffff;width=79px;float:left">222298:</div>
<div style="width:114px;color:#222298">&nbsp;cornflower blue</div>
<div style="color:#ffffff;width=79px;float:left">8b8878:</div>
<div style="width:114px;color:#8b8878">&nbsp;cornsilk 4</div>
<div style="color:#ffffff;width=79px;float:left">00ffff:</div>
<div style="width:114px;color:#00ffff">&nbsp;cyan 1</div>
<div style="color:#ffffff;width=79px;float:left">00eeee:</div>
<div style="width:114px;color:#00eeee">&nbsp;cyan 2</div>
<div style="color:#ffffff;width=79px;float:left">00cdcd:</div>
<div style="width:114px;color:#00cdcd">&nbsp;cyan 3</div>
<div style="color:#ffffff;width=79px;float:left">008b8b:</div>
<div style="width:114px;color:#008b8b">&nbsp;cyan 4</div>
<div style="color:#ffffff;width=79px;float:left">bdb76b:</div>
<div style="width:114px;color:#bdb76b">&nbsp;dark</div>
<div style="color:#ffffff;width=79px;float:left">b8860b:</div>
<div style="width:114px;color:#b8860b">&nbsp;dark goldenrod</div>
<div style="color:#ffffff;width=79px;float:left">ffb90f:</div>
<div style="width:114px;color:#ffb90f">&nbsp;dark goldenrod 1</div>
<div style="color:#ffffff;width=79px;float:left">eead0e:</div>
<div style="width:114px;color:#eead03">&nbsp;dark goldenrod 2</div>
<div style="color:#ffffff;width=79px;float:left">cd950c:</div>
<div style="width:114px;color:#cd950c">&nbsp;dark goldenrod 3</div>
<div style="color:#ffffff;width=79px;float:left">8b6508:</div>
<div style="width:114px;color:#8b6508">&nbsp;dark goldenrod 4</div>
<div style="color:#ffffff;width=79px;float:left">00562d:</div>
<div style="width:114px;color:#00562d">&nbsp;dark green</div>
<div style="color:#ffffff;width=79px;float:left">bdb76b:</div>
<div style="width:114px;color:#bdb76b">&nbsp;dark khaki</div>
<div style="color:#ffffff;width=79px;float:left">de00a5:</div>
<div style="width:114px;color:#de00a5">&nbsp;dark nessy</div>
<div style="color:#ffffff;width=79px;float:left">55562f:</div>
<div style="width:114px;color:#55562f">&nbsp;dark olivegreen</div>
<div style="color:#ffffff;width=79px;float:left">ff69b4:</div>
<div style="width:114px;color:#ff69b4">&nbsp;hot pink</div>
<div style="color:#ffffff;width=79px;float:left">ff6eb4:</div>
<div style="width:114px;color:#ff6eb4">&nbsp;hot pink 1</div>
<div style="color:#ffffff;width=79px;float:left">ee6aa7:</div>
<div style="width:114px;color:#ee6aa7">&nbsp;hot pink 2</div>
<div style="color:#ffffff;width=79px;float:left">cd6090:</div>
<div style="width:114px;color:#cd6090">&nbsp;hot pink 3</div>
<div style="color:#ffffff;width=79px;float:left">8b3a62:</div>
<div style="width:114px;color:#8b3a62">&nbsp;hot pink 4</div>
<div style="color:#ffffff;width=79px;float:left">6b3939:</div>
<div style="width:114px;color:#6b3939">&nbsp;indian red</div>
<div style="color:#ffffff;width=79px;float:left">ff6a6a:</div>
<div style="width:114px;color:#ff6a6a">&nbsp;indian red 1</div>
<div style="color:#ffffff;width=79px;float:left">ee6363:</div>
<div style="width:114px;color:#ee6363">&nbsp;indian red 2</div>
<div style="color:#ffffff;width=79px;float:left">cd5555:</div>
<div style="width:114px;color:#cd5555">&nbsp;indian red 3</div>
<div style="color:#ffffff;width=79px;float:left">8b3a3a:</div>
<div style="width:114px;color:#8b3a3a">&nbsp;indian red 4</div>
<div style="color:#ffffff;width=79px;float:left">8b8b83:</div>
<div style="width:114px;color:#8b8b83">&nbsp;ivory 4</div>
<div style="color:#ffffff;width=79px;float:left">b3b37e:</div>
<div style="width:114px;color:#b3b37e">&nbsp;khaki</div>
<div style="color:#ffffff;width=79px;float:left">cdc673:</div>
<div style="width:114px;color:#cdc673">&nbsp;khaki 3</div>
<div style="color:#ffffff;width=79px;float:left">8b864e:</div>
<div style="width:114px;color:#8b864e">&nbsp;khaki 4</div>
<div style="color:#ffffff;width=79px;float:left">8b8386:</div>
<div style="width:114px;color:#8b8386">&nbsp;lavender blush 4</div>
<div style="color:#ffffff;width=79px;float:left">8b8970:</div>
<div style="width:114px;color:#8b8970">&nbsp;lemon chiffon 4</div>
<div style="color:#ffffff;width=79px;float:left">f08080:</div>
<div style="width:114px;color:#f08080">&nbsp;light</div>
<div style="color:#ffffff;width=79px;float:left">b0e2ff:</div>
<div style="width:114px;color:#b0e2ff">&nbsp;light blue</div>
<div style="color:#ffffff;width=79px;float:left">9ac0cd:</div>
<div style="width:114px;color:#9ac0cd">&nbsp;light blue 3</div>
<div style="color:#ffffff;width=79px;float:left">68838b:</div>
<div style="width:114px;color:#68838b">&nbsp;light blue 4</div>
<div style="color:#ffffff;width=79px;float:left">f08080:</div>
<div style="width:114px;color:#f08080">&nbsp;light coral</div>
<div style="color:#ffffff;width=79px;float:left">7a8b8b:</div>
<div style="width:114px;color:#7a8b8b">&nbsp;light cyan 4</div>
<div style="color:#ffffff;width=79px;float:left">eedd82:</div>
<div style="width:114px;color:#eedd82">&nbsp;light goldenrod</div>
<div style="color:#ffffff;width=79px;float:left">ffec8b:</div>
<div style="width:114px;color:#ffec8b">&nbsp;light goldenrod 1</div>
<div style="color:#ffffff;width=79px;float:left">eedc82:</div>
<div style="width:114px;color:#eedc82">&nbsp;light goldenrod 2</div>
<div style="color:#ffffff;width=79px;float:left">cdbe70:</div>
<div style="width:114px;color:#cdbe70">&nbsp;light goldenrod 3</div>
<div style="color:#ffffff;width=79px;float:left">8b814c:</div>
<div style="width:114px;color:#8b814c">&nbsp;light goldenrod 4</div>
<div style="color:#ffffff;width=79px;float:left">ff80d2:</div>
<div style="width:114px;color:#ff80d2">&nbsp;light nessy</div>
<div style="color:#ffffff;width=79px;float:left">ffb6c1:</div>
<div style="width:114px;color:#ffb6c1">&nbsp;light pink</div>
<div style="color:#ffffff;width=79px;float:left">ffaeb9:</div>
<div style="width:114px;color:#ffaeb9">&nbsp;light pink 1</div>
<div style="color:#ffffff;width=79px;float:left">eea2ad:</div>
<div style="width:114px;color:#eea2ad">&nbsp;light pink 2</div>
<div style="color:#ffffff;width=79px;float:left">cd8c95:</div>
<div style="width:114px;color:#cd8c95">&nbsp;light pink 3</div>
<div style="color:#ffffff;width=79px;float:left">8b5f65:</div>
<div style="width:114px;color:#8b5f65">&nbsp;light pink 4</div>
<div style="color:#ffffff;width=79px;float:left">ffa07a:</div>
<div style="width:114px;color:#ffa07a">&nbsp;light salmon 1</div>
<div style="color:#ffffff;width=79px;float:left">ee9572:</div>
<div style="width:114px;color:#ee9572">&nbsp;light salmon 2</div>
<div style="color:#ffffff;width=79px;float:left">cd8162:</div>
<div style="width:114px;color:#cd8162">&nbsp;light salmon 3</div>
<div style="color:#ffffff;width=79px;float:left">8b5742:</div>
<div style="width:114px;color:#8b5742">&nbsp;light salmon 4</div>
<div style="color:#ffffff;width=79px;float:left">20b2aa:</div>
<div style="width:114px;color:#20b2aa">&nbsp;light seagreen</div>
<div style="color:#ffffff;width=79px;float:left">87cefa:</div>
<div style="width:114px;color:#87cefa">&nbsp;light skyblue</div>
<div style="color:#ffffff;width=79px;float:left">b0e2ff:</div>
<div style="width:114px;color:#b0e2ff">&nbsp;light skyblue 1</div>
<div style="color:#ffffff;width=79px;float:left">a4d3ee:</div>
<div style="width:114px;color:#a4d3ee">&nbsp;light skyblue 2</div>
<div style="color:#ffffff;width=79px;float:left">8db6cd:</div>
<div style="width:114px;color:#8db6cd">&nbsp;light skyblue 3</div>
<div style="color:#ffffff;width=79px;float:left">607b8b:</div>
<div style="width:114px;color:#607b8b">&nbsp;light skyblue 4</div>
<div style="color:#ffffff;width=79px;float:left">8470ff:</div>
<div style="width:114px;color:#8470ff">&nbsp;light slate blue</div>
<div style="color:#ffffff;width=79px;float:left">778899:</div>
<div style="width:114px;color:#778899">&nbsp;light slate gray</div>
<div style="color:#ffffff;width=79px;float:left">7c98d3:</div>
<div style="width:114px;color:#7c98d3">&nbsp;light steel blue</div>
<div style="color:#ffffff;width=79px;float:left">bcd2ee:</div>
<div style="width:114px;color:#bdc2ee">&nbsp;light steel blue 2</div>
<div style="color:#ffffff;width=79px;float:left">a2b5cd:</div>
<div style="width:114px;color:#a2b5cd">&nbsp;light steel blue 3</div>
<div style="color:#ffffff;width=79px;float:left">6e7b8b:</div>
<div style="width:114px;color:#6e7b8b">&nbsp;light steel blue 4</div>
<div style="color:#ffffff;width=79px;float:left">8b8b7a:</div>
<div style="width:114px;color:#8b8b7a">&nbsp;light yellow 4</div>
<div style="color:#ffffff;width=79px;float:left">00af14:</div>
<div style="width:114px;color:#00af14">&nbsp;lime green</div>
<div style="color:#ffffff;width=79px;float:left">ff00ff:</div>
<div style="width:114px;color:#ff00ff">&nbsp;magenta 1</div>
<div style="color:#ffffff;width=79px;float:left">ee00ee:</div>
<div style="width:114px;color:#ee00ee">&nbsp;magenta 2</div>
<div style="color:#ffffff;width=79px;float:left">cd00cd:</div>
<div style="width:114px;color:#cd00cd">&nbsp;magenta 3</div>
<div style="color:#ffffff;width=79px;float:left">8b008b:</div>
<div style="width:114px;color:#8b008b">&nbsp;magenta 4</div>
<div style="color:#ffffff;width=79px;float:left">8f0052:</div>
<div style="width:114px;color:#8f0052">&nbsp;maroon</div>
<div style="color:#ffffff;width=79px;float:left">ff34b3:</div>
<div style="width:114px;color:#ff34b3">&nbsp;maroon 1</div>
<div style="color:#ffffff;width=79px;float:left">ee30a7:</div>
<div style="width:114px;color:#ee30a7">&nbsp;maroon 2</div>
<div style="color:#ffffff;width=79px;float:left">cd2900:</div>
<div style="width:114px;color:#cd2900">&nbsp;maroon 3</div>
<div style="color:#ffffff;width=79px;float:left">8b1c62:</div>
<div style="width:114px;color:#8b1c62">&nbsp;maroon 4</div>
<div style="color:#ffffff;width=79px;float:left">d1c166:</div>
<div style="width:114px;color:#d1c166">&nbsp;medium</div>
<div style="color:#ffffff;width=79px;float:left">00938f:</div>
<div style="width:114px;color:#00938f">&nbsp;med aquamarine</div>
<div style="color:#ffffff;width=79px;float:left">3232cc:</div>
<div style="width:114px;color:#3232cc">&nbsp;med blue</div>
<div style="color:#ffffff;width=79px;float:left">32814b:</div>
<div style="width:114px;color:#32814b">&nbsp;med forest green</div>
<div style="color:#ffffff;width=79px;float:left">d1c166:</div>
<div style="width:114px;color:#d1c166">&nbsp;med goldenrod</div>
<div style="color:#ffffff;width=79px;float:left">bd52bd:</div>
<div style="width:114px;color:#bd52bd">&nbsp;med orchid</div>
<div style="color:#ffffff;width=79px;float:left">e066ff:</div>
<div style="width:114px;color:#e066ff">&nbsp;med orchid 1</div>
<div style="color:#ffffff;width=79px;float:left">d15fee:</div>
<div style="width:114px;color:#d15fee">&nbsp;med orchid 2</div>
<div style="color:#ffffff;width=79px;float:left">b452cd:</div>
<div style="width:114px;color:#b452cd">&nbsp;med orchid 3</div>
<div style="color:#ffffff;width=79px;float:left">7a378b:</div>
<div style="width:114px;color:#7a378b">&nbsp;med orchid 4</div>
<div style="color:#ffffff;width=79px;float:left">9370db:</div>
<div style="width:114px;color:#9370db">&nbsp;med purple</div>
<div style="color:#ffffff;width=79px;float:left">ab82ff:</div>
<div style="width:114px;color:#ab82ff">&nbsp;med purple 1</div>
<div style="color:#ffffff;width=79px;float:left">9f79ee:</div>
<div style="width:114px;color:#9f79ee">&nbsp;med purple 2</div>
<div style="color:#ffffff;width=79px;float:left">8968cd:</div>
<div style="width:114px;color:#8968cd">&nbsp;med purple 3</div>
<div style="color:#ffffff;width=79px;float:left">5d478b:</div>
<div style="width:114px;color:#5d478b">&nbsp;med purple 4</div>
<div style="color:#ffffff;width=79px;float:left">347766:</div>
<div style="width:114px;color:#347766">&nbsp;med sea green</div>
<div style="color:#ffffff;width=79px;float:left">6a6a8d:</div>
<div style="width:114px;color:#6a6a8d">&nbsp;med slate blue</div>
<div style="color:#ffffff;width=79px;float:left">238e23:</div>
<div style="width:114px;color:#238e23">&nbsp;med spring green</div>
<div style="color:#ffffff;width=79px;float:left">00d2d2:</div>
<div style="width:114px;color:#00d2d2">&nbsp;med turquoise</div>
<div style="color:#ffffff;width=79px;float:left">d52079:</div>
<div style="width:114px;color:#d52079">&nbsp;med violet red</div>
<div style="color:#ffffff;width=79px;float:left">2f2f64:</div>
<div style="width:114px;color:#2f2f64">&nbsp;med night blue</div>
<div style="color:#ffffff;width=79px;float:left">cdb7b5:</div>
<div style="width:114px;color:#cdb7b5">&nbsp;misty rose 3</div>
<div style="color:#ffffff;width=79px;float:left">8b7d7b:</div>
<div style="width:114px;color:#8b7d7b">&nbsp;misty rose 4</div>
</p></div>
<div style="float:left; width:193px;">
<div style="color:#ffffff;width=79px;float:left">ef84ef:</div>
<div style="width:114px;color:#ef84ef">&nbsp;orchid</div>
<div style="color:#ffffff;width=79px;float:left">ff83fa:</div>
<div style="width:114px;color:#ff83fa">&nbsp;orchid 2</div>
<div style="color:#ffffff;width=79px;float:left">ee7ae9:</div>
<div style="width:114px;color:#ee7ae9">&nbsp;orchid 3</div>
<div style="color:#ffffff;width=79px;float:left">cd69c9:</div>
<div style="width:114px;color:#cd69c9">&nbsp;orchid 4</div>
<div style="color:#ffffff;width=79px;float:left">8b4789:</div>
<div style="width:114px;color:#8b4789">&nbsp;orchid 5</div>
<div style="color:#ffffff;width=79px;float:left">a2cd5a:</div>
<div style="width:114px;color:#a2cd5a">&nbsp;dark olivegreen 3</div>
<div style="color:#ffffff;width=79px;float:left">6e8b3d:</div>
<div style="width:114px;color:#6e8b3d">&nbsp;dark olivegreen 4</div>
<div style="color:#ffffff;width=79px;float:left">ff8c00:</div>
<div style="width:114px;color:#ff8c00">&nbsp;orange</div>
<div style="color:#ffffff;width=79px;float:left">ff7f00:</div>
<div style="width:114px;color:#ff7f00">&nbsp;dark orange 1</div>
<div style="color:#ffffff;width=79px;float:left">ee7600:</div>
<div style="width:114px;color:#dd7600">&nbsp;dark orange 2</div>
<div style="color:#ffffff;width=79px;float:left">cd6600:</div>
<div style="width:114px;color:#cd6600">&nbsp;dark orange 3</div>
<div style="color:#ffffff;width=79px;float:left">8b4500:</div>
<div style="width:114px;color:#8b4500">&nbsp;dark orange 4</div>
<div style="color:#ffffff;width=79px;float:left">8b208b:</div>
<div style="width:114px;color:#8b208b">&nbsp;dark orchid</div>
<div style="color:#ffffff;width=79px;float:left">bf3eff:</div>
<div style="width:114px;color:#bf3dff">&nbsp;dark orchid 1</div>
<div style="color:#ffffff;width=79px;float:left">b23aee:</div>
<div style="width:114px;color:#b23aee">&nbsp;dark orchid 2</div>
<div style="color:#ffffff;width=79px;float:left">9a32cd:</div>
<div style="width:114px;color:#9a32cd">&nbsp;dark orchid 3</div>
<div style="color:#ffffff;width=79px;float:left">68228b:</div>
<div style="width:114px;color:#68228b">&nbsp;dark orchid 4</div>
<div style="color:#ffffff;width=79px;float:left">e9967a:</div>
<div style="width:114px;color:#e9967a">&nbsp;dark salmon</div>
<div style="color:#ffffff;width=79px;float:left">8fbc8f:</div>
<div style="width:114px;color:#8fbc8f">&nbsp;dark seagreen</div>
<div style="color:#ffffff;width=79px;float:left">698b69:</div>
<div style="width:114px;color:#698b69">&nbsp;dark seagreen 4</div>
<div style="color:#ffffff;width=79px;float:left">384b66:</div>
<div style="width:114px;color:#384b66">&nbsp;dark slate blue</div>
<div style="color:#ffffff;width=79px;float:left">2f4f4f:</div>
<div style="width:114px;color:#2f4f4f">&nbsp;dark slate gray</div>
<div style="color:#ffffff;width=79px;float:left">79cdcd:</div>
<div style="width:114px;color:#79cdcd">&nbsp;dark slate gray 3</div>
<div style="color:#ffffff;width=79px;float:left">528b8b:</div>
<div style="width:114px;color:#528b8b">&nbsp;dark slate gray 4</div>
<div style="color:#ffffff;width=79px;float:left">00a6a6:</div>
<div style="width:114px;color:#00a6a6">&nbsp;dark turquoise</div>
<div style="color:#ffffff;width=79px;float:left">9400d3:</div>
<div style="width:114px;color:#9400d3">&nbsp;dark violet</div>
<div style="color:#ffffff;width=79px;float:left">ff1493:</div>
<div style="width:114px;color:#ff1493">&nbsp;dark pink 1</div>
<div style="color:#ffffff;width=79px;float:left">ee1289:</div>
<div style="width:114px;color:#ee1289">&nbsp;dark pink 2</div>
<div style="color:#ffffff;width=79px;float:left">cd1076:</div>
<div style="width:114px;color:#cd1076">&nbsp;dark pink 3</div>
<div style="color:#ffffff;width=79px;float:left">8b0a50:</div>
<div style="width:114px;color:#8b0a50">&nbsp;dark pink 4</div>
<div style="color:#ffffff;width=79px;float:left">00bfff:</div>
<div style="width:114px;color:#00bfff">&nbsp;deep skyblue 1</div>
<div style="color:#ffffff;width=79px;float:left">00b2ee:</div>
<div style="width:114px;color:#00b2ee">&nbsp;deep skyblue 2</div>
<div style="color:#ffffff;width=79px;float:left">009acd:</div>
<div style="width:114px;color:#009acd">&nbsp;deep skyblue 3</div>
<div style="color:#ffffff;width=79px;float:left">00688b:</div>
<div style="width:114px;color:#00688b">&nbsp;deep skyblue 4</div>
<div style="color:#ffffff;width=79px;float:left">1e90ff:</div>
<div style="width:114px;color:#1e90ff">&nbsp;dodger blue 1</div>
<div style="color:#ffffff;width=79px;float:left">1c86ee:</div>
<div style="width:114px;color:#1c86ee">&nbsp;dodger blue 2</div>
<div style="color:#ffffff;width=79px;float:left">1874cd:</div>
<div style="width:114px;color:#1874cd">&nbsp;dodger blue 3</div>
<div style="color:#ffffff;width=79px;float:left">104e8b:</div>
<div style="width:114px;color:#104e8b">&nbsp;dodger blue 4</div>
<div style="color:#ffffff;width=79px;float:left">8e2323:</div>
<div style="width:114px;color:#8e2323">&nbsp;firebrick</div>
<div style="color:#ffffff;width=79px;float:left">ff3030:</div>
<div style="width:114px;color:#ff3030">&nbsp;firebrick 1</div>
<div style="color:#ffffff;width=79px;float:left">ee2c2c:</div>
<div style="width:114px;color:#ee2c2c">&nbsp;firebrick 2</div>
<div style="color:#ffffff;width=79px;float:left">cd2626:</div>
<div style="width:114px;color:#cd2626">&nbsp;firebrick 3</div>
<div style="color:#ffffff;width=79px;float:left">8b1a1a:</div>
<div style="width:114px;color:#8b1a1a">&nbsp;firebrick 4</div>
<div style="color:#ffffff;width=79px;float:left">509f69:</div>
<div style="width:114px;color:#509f69">&nbsp;forest green</div>
<div style="color:#ffffff;width=79px;float:left">daaa00:</div>
<div style="width:114px;color:#daaa00">&nbsp;gold</div>
<div style="color:#ffffff;width=79px;float:left">ffd700:</div>
<div style="width:114px;color:#ffd700">&nbsp;gold 1</div>
<div style="color:#ffffff;width=79px;float:left">eec900:</div>
<div style="width:114px;color:#eec900">&nbsp;gold 2</div>
<div style="color:#ffffff;width=79px;float:left">cdad00:</div>
<div style="width:114px;color:#cdad00">&nbsp;gold 3</div>
<div style="color:#ffffff;width=79px;float:left">8b7500:</div>
<div style="width:114px;color:#8b7500">&nbsp;gold 4</div>
<div style="color:#ffffff;width=79px;float:left">efdf84:</div>
<div style="width:114px;color:#efdf84">&nbsp;goldenrod</div>
<div style="color:#ffffff;width=79px;float:left">ffc125:</div>
<div style="width:114px;color:#ffc125">&nbsp;goldenrod 1</div>
<div style="color:#ffffff;width=79px;float:left">eeb422:</div>
<div style="width:114px;color:#eeb422">&nbsp;goldenrod 2</div>
<div style="color:#ffffff;width=79px;float:left">cd9b1d:</div>
<div style="width:114px;color:#ec9b1d">&nbsp;goldenrod 3</div>
<div style="color:#ffffff;width=79px;float:left">8b6914:</div>
<div style="width:114px;color:#8b6914">&nbsp;goldenrod 4</div>
<div style="color:#ffffff;width=79px;float:left">00ff00:</div>
<div style="width:114px;color:#00ff00">&nbsp;green</div>
<div style="color:#ffffff;width=79px;float:left">00ee00:</div>
<div style="width:114px;color:#00ee00">&nbsp;green 2</div>
<div style="color:#ffffff;width=79px;float:left">00cd00:</div>
<div style="width:114px;color:#00cd00">&nbsp;green 3</div>
<div style="color:#ffffff;width=79px;float:left">008b00:</div>
<div style="width:114px;color:#008b00">&nbsp;green 4</div>
<div style="color:#ffffff;width=79px;float:left">adff2f:</div>
<div style="width:114px;color:#adff2f">&nbsp;green-yellow</div>
<div style="color:#ffffff;width=79px;float:left">838b83:</div>
<div style="width:114px;color:#838b83">&nbsp;honeydew 4</div>
<div style="color:#ffffff;width=79px;float:left">548b54:</div>
<div style="width:114px;color:#548b54">&nbsp;pale green 4</div>
<div style="color:#ffffff;width=79px;float:left">668b8b:</div>
<div style="width:114px;color:#668b8b">&nbsp;pale turquoise 4</div>
<div style="color:#ffffff;width=79px;float:left">cd6889:</div>
<div style="width:114px;color:#cd6889">&nbsp;pale violet-red 3</div>
<div style="color:#ffffff;width=79px;float:left">8b475d:</div>
<div style="width:114px;color:#8b475d">&nbsp;pale violet-red 4</div>
<div style="color:#ffffff;width=79px;float:left">cdaf95:</div>
<div style="width:114px;color:#cdaf95">&nbsp;peach puff 3</div>
<div style="color:#ffffff;width=79px;float:left">8b7765:</div>
<div style="width:114px;color:#8b7765">&nbsp;peach puff 4</div>
<div style="color:#ffffff;width=79px;float:left">cd853f:</div>
<div style="width:114px;color:#cd853f">&nbsp;peru3</div>
<div style="color:#ffffff;width=79px;float:left">ffb5c5:</div>
<div style="width:114px;color:#ffb5c5">&nbsp;pink 1</div>
<div style="color:#ffffff;width=79px;float:left">eea9b8:</div>
<div style="width:114px;color:#eea9b8">&nbsp;pink 2</div>
<div style="color:#ffffff;width=79px;float:left">cd919e:</div>
<div style="width:114px;color:#cd919e">&nbsp;pink 3</div>
<div style="color:#ffffff;width=79px;float:left">8b636c:</div>
<div style="width:114px;color:#8b636c">&nbsp;pink 4</div>
<div style="color:#ffffff;width=79px;float:left">c5489b:</div>
<div style="width:114px;color:#c5489b">&nbsp;plum 1</div>
<div style="color:#ffffff;width=79px;float:left">eeaeee:</div>
<div style="width:114px;color:#eeaeee">&nbsp;plum 2</div>
<div style="color:#ffffff;width=79px;float:left">cd96cd:</div>
<div style="width:114px;color:#cd96cd">&nbsp;plum 3</div>
<div style="color:#ffffff;width=79px;float:left">8b668b:</div>
<div style="width:114px;color:#8b668b">&nbsp;plum 4</div>
<div style="color:#ffffff;width=79px;float:left">b0e0e6:</div>
<div style="width:114px;color:#b0e0e6">&nbsp;powder blue</div>
<div style="color:#ffffff;width=79px;float:left">a020f0:</div>
<div style="width:114px;color:#a020f0">&nbsp;purple</div>
<div style="color:#ffffff;width=79px;float:left">9b30ff:</div>
<div style="width:114px;color:#9b30ff">&nbsp;purple 1</div>
<div style="color:#ffffff;width=79px;float:left">912cee:</div>
<div style="width:114px;color:#912cee">&nbsp;purple 2</div>
<div style="color:#ffffff;width=79px;float:left">7d26cd:</div>
<div style="width:114px;color:#7d26cd">&nbsp;purple 3</div>
<div style="color:#ffffff;width=79px;float:left">551a8b:</div>
<div style="width:114px;color:#551a8b">&nbsp;purple 4</div>
<div style="color:#ffffff;width=79px;float:left">ff0000:</div>
<div style="width:114px;color:#ff0000">&nbsp;red</div>
<div style="color:#ffffff;width=79px;float:left">ee0000:</div>
<div style="width:114px;color:#ee0000">&nbsp;red 2</div>
<div style="color:#ffffff;width=79px;float:left">cd0000:</div>
<div style="width:114px;color:#cd0000">&nbsp;red 3</div>
<div style="color:#ffffff;width=79px;float:left">8b0000:</div>
<div style="width:114px;color:#8b0000">&nbsp;red 4</div>
<div style="color:#ffffff;width=79px;float:left">bc8f8f:</div>
<div style="width:114px;color:#bc8f8f">&nbsp;rosy brown</div>
<div style="color:#ffffff;width=79px;float:left">8b6969:</div>
<div style="width:114px;color:#8b6969">&nbsp;rosy brown 4</div>
<div style="color:#ffffff;width=79px;float:left">4169e1:</div>
<div style="width:114px;color:#4169e1">&nbsp;royal blue</div>
<div style="color:#ffffff;width=79px;float:left">4876ff:</div>
<div style="width:114px;color:#4876ff">&nbsp;royal blue 1</div>
<div style="color:#ffffff;width=79px;float:left">436eee:</div>
<div style="width:114px;color:#436eee">&nbsp;royal blue 2</div>
<div style="color:#ffffff;width=79px;float:left">3a5fcd:</div>
<div style="width:114px;color:#3a5fcd">&nbsp;royal blue 3</div>
<div style="color:#ffffff;width=79px;float:left">27408b:</div>
<div style="width:114px;color:#27408b">&nbsp;royal blue 4</div>
<div style="color:#ffffff;width=79px;float:left">8b4513:</div>
<div style="width:114px;color:#8b4513">&nbsp;saddle brown</div>
<div style="color:#ffffff;width=79px;float:left">e9967a:</div>
<div style="width:114px;color:#e9967a">&nbsp;salmon</div>
<div style="color:#ffffff;width=79px;float:left">ff8c69:</div>
<div style="width:114px;color:#ff8c69">&nbsp;salmon 1</div>
<div style="color:#ffffff;width=79px;float:left">ee8262:</div>
<div style="width:114px;color:#ee8262">&nbsp;salmon 2</div>
<div style="color:#ffffff;width=79px;float:left">cd7054:</div>
<div style="width:114px;color:#cd7054">&nbsp;salmon 3</div>
<div style="color:#ffffff;width=79px;float:left">8b4c39:</div>
<div style="width:114px;color:#8b4c39">&nbsp;salmon 4</div>
<div style="color:#ffffff;width=79px;float:left">f4a460:</div>
<div style="width:114px;color:#f4a460">&nbsp;sandy brown</div>
<div style="color:#ffffff;width=79px;float:left">529584:</div>
<div style="width:114px;color:#529584">&nbsp;sea green</div>
<div style="color:#ffffff;width=79px;float:left">2e8b57:</div>
<div style="width:114px;color:#2e8b57">&nbsp;sea green 4</div>
<div style="color:#ffffff;width=79px;float:left">8b8682:</div>
<div style="width:114px;color:#8b8682">&nbsp;seashell 4</div>
<div style="color:#ffffff;width=79px;float:left">96522d:</div>
<div style="width:114px;color:#96522d">&nbsp;sienna</div>
<div style="color:#ffffff;width=79px;float:left">ff8247:</div>
<div style="width:114px;color:#ff8247">&nbsp;sienna 1</div>
<div style="color:#ffffff;width=79px;float:left">ee7942:</div>
<div style="width:114px;color:#ee7942">&nbsp;sienna 2</div>
<div style="color:#ffffff;width=79px;float:left">cd6839:</div>
<div style="width:114px;color:#cd6839">&nbsp;sienna 3</div>
<div style="color:#ffffff;width=79px;float:left">8b4726:</div>
<div style="width:114px;color:#8b4726">&nbsp;sienna 4</div>
<div style="color:#ffffff;width=79px;float:left">729fff:</div>
<div style="width:114px;color:#729fff">&nbsp;sky blue</div>
<div style="color:#ffffff;width=79px;float:left">4a708b:</div>
<div style="width:114px;color:#4a708b">&nbsp;sky blue 3</div>
<div style="color:#ffffff;width=79px;float:left">7e88ab:</div>
<div style="width:114px;color:#7e88ab">&nbsp;slate blue</div>
<div style="color:#ffffff;width=79px;float:left">836fff:</div>
<div style="width:114px;color:#836fff">&nbsp;slate blue 1</div>
<div style="color:#ffffff;width=79px;float:left">7a67ee:</div>
<div style="width:114px;color:#7a67ee">&nbsp;slate blue 2</div>
<div style="color:#ffffff;width=79px;float:left">6959cd:</div>
<div style="width:114px;color:#6959cd">&nbsp;slate blue 3</div>
<div style="color:#ffffff;width=79px;float:left">473c8b:</div>
<div style="width:114px;color:#473c8b">&nbsp;slate blue 4</div>
<div style="color:#ffffff;width=79px;float:left">708090:</div>
<div style="width:114px;color:#708090">&nbsp;slate gray</div>
<div style="color:#ffffff;width=79px;float:left">6c7b8b:</div>
<div style="width:114px;color:#6c7b8b">&nbsp;slate gray 4</div>
<div style="color:#ffffff;width=79px;float:left">8b8989:</div>
<div style="width:114px;color:#8b8989">&nbsp;snow 4</div>
<div style="color:#ffffff;width=79px;float:left">41ac41:</div>
<div style="width:114px;color:#41ac41">&nbsp;spring green</div>
<div style="color:#ffffff;width=79px;float:left">00ff7f:</div>
<div style="width:114px;color:#00ff7f">&nbsp;spring green 1</div>
<div style="color:#ffffff;width=79px;float:left">00ee76:</div>
<div style="width:114px;color:#00ee76">&nbsp;spring green 2</div>
<div style="color:#ffffff;width=79px;float:left">00cd66:</div>
<div style="width:114px;color:#00cd66">&nbsp;spring green 3</div>
<div style="color:#ffffff;width=79px;float:left">008b45:</div>
<div style="width:114px;color:#008b45">&nbsp;spring green 4</div>
<div style="color:#ffffff;width=79px;float:left">5470aa:</div>
<div style="width:114px;color:#5470aa">&nbsp;steel blue</div>
<div style="color:#ffffff;width=79px;float:left">63b8ff:</div>
<div style="width:114px;color:#63b8ff">&nbsp;steel blue 1</div>
<div style="color:#ffffff;width=79px;float:left">5cacee:</div>
<div style="width:114px;color:#5cacee">&nbsp;steel blue 2</div>
<div style="color:#ffffff;width=79px;float:left">4f94cd:</div>
<div style="width:114px;color:#4f94cd">&nbsp;steel blue 3</div>
<div style="color:#ffffff;width=79px;float:left">36648b:</div>
<div style="width:114px;color:#36648b">&nbsp;steel blue 4</div>
<div style="color:#ffffff;width=79px;float:left">deb887:</div>
<div style="width:114px;color:#deb887">&nbsp;tab</div>
<div style="color:#ffffff;width=79px;float:left">ffa54f:</div>
<div style="width:114px;color:#ffa547">&nbsp;tan 1</div>
<div style="color:#ffffff;width=79px;float:left">ee9a49:</div>
<div style="width:114px;color:#ee9a49">&nbsp;tan 2</div>
<div style="color:#ffffff;width=79px;float:left">cd853f:</div>
<div style="width:114px;color:#cd853f">&nbsp;tan 3</div>
<div style="color:#ffffff;width=79px;float:left">8b5a2b:</div>
<div style="width:114px;color:#8b5a2b">&nbsp;tan 4</div>
<div style="color:#ffffff;width=79px;float:left">8b7b8b:</div>
<div style="width:114px;color:#8b7b8b">&nbsp;thistle 4</div>
<div style="color:#ffffff;width=79px;float:left">ff6347:</div>
<div style="width:114px;color:#ff6347">&nbsp;tomato 1</div>
<div style="color:#ffffff;width=79px;float:left">ee5c42:</div>
<div style="width:114px;color:#ee5c42">&nbsp;tomato 2</div>
<div style="color:#ffffff;width=79px;float:left">cd4f39:</div>
<div style="width:114px;color:#cd4f39">&nbsp;tomato 3</div>
</p></div>
<div style="float:left; width:192px;">
<div style="color:#ffffff;width=79px;float:left">f0f8ff:</div>
<div style="width:114px;color:#f0f8ff">&nbsp;alice blue</div>
<div style="color:#ffffff;width=79px;float:left">faebd7:</div>
<div style="width:114px;color:#faebd7">&nbsp;antique white</div>
<div style="color:#ffffff;width=79px;float:left">ffefdb:</div>
<div style="width:114px;color:#ffefdb">&nbsp;antique white 1</div>
<div style="color:#ffffff;width=79px;float:left">eedfcc:</div>
<div style="width:114px;color:#eedfcc">&nbsp;antique white 2</div>
<div style="color:#ffffff;width=79px;float:left">f0ffff:</div>
<div style="width:114px;color:#f0ffff">&nbsp;azure</div>
<div style="color:#ffffff;width=79px;float:left">e0cdcd:</div>
<div style="width:114px;color:#e0cdcd">&nbsp;azure 1</div>
<div style="color:#ffffff;width=79px;float:left">e0eeee:</div>
<div style="width:114px;color:#e0eeee">&nbsp;azure 2</div>
<div style="color:#ffffff;width=79px;float:left">c1cdcd:</div>
<div style="width:114px;color:#c1cdcd">&nbsp;azure 3</div>
<div style="color:#ffffff;width=79px;float:left">838b8b:</div>
<div style="width:114px;color:#838b8b">&nbsp;azure 4</div>
<div style="color:#ffffff;width=79px;float:left">f5f5dc:</div>
<div style="width:114px;color:#f5f5dc">&nbsp;beige</div>
<div style="color:#ffffff;width=79px;float:left">ffe4c4:</div>
<div style="width:114px;color:#ffe4c4">&nbsp;bisque 1</div>
<div style="color:#ffffff;width=79px;float:left">eed5b7:</div>
<div style="width:114px;color:#eed5b7">&nbsp;bisque 2</div>
<div style="color:#ffffff;width=79px;float:left">fff8dc:</div>
<div style="width:114px;color:#fff8dc">&nbsp;cornsilk 1</div>
<div style="color:#ffffff;width=79px;float:left">eee8cd:</div>
<div style="width:114px;color:#eee8cd">&nbsp;cornsilk 2</div>
<div style="color:#ffffff;width=79px;float:left">cdc8b1:</div>
<div style="width:114px;color:#cdc8b1">&nbsp;cornsilk 3</div>
<div style="color:#ffffff;width=79px;float:left">fffff0:</div>
<div style="width:114px;color:#fffff0">&nbsp;ivory 1</div>
<div style="color:#ffffff;width=79px;float:left">eeeee0:</div>
<div style="width:114px;color:#eeeee0">&nbsp;ivory 2</div>
<div style="color:#ffffff;width=79px;float:left">cdcdc1:</div>
<div style="width:114px;color:#cdcdc1">&nbsp;ivory 3</div>
<div style="color:#ffffff;width=79px;float:left">fff68f:</div>
<div style="width:114px;color:#fff68f">&nbsp;khaki 1</div>
<div style="color:#ffffff;width=79px;float:left">eee685:</div>
<div style="width:114px;color:#eee685">&nbsp;khaki 2</div>
<div style="color:#ffffff;width=79px;float:left">e6e6fa:</div>
<div style="width:114px;color:#e6e6fa">&nbsp;lavander</div>
<div style="color:#ffffff;width=79px;float:left">fff0f5:</div>
<div style="width:114px;color:#fff0f5">&nbsp;lavender blush 1</div>
<div style="color:#ffffff;width=79px;float:left">eee0e5:</div>
<div style="width:114px;color:#eee0e5">&nbsp;lavender blush 2</div>
<div style="color:#ffffff;width=79px;float:left">cdc1c5:</div>
<div style="width:114px;color:#cdc1c5">&nbsp;lavender blush 3</div>
<div style="color:#ffffff;width=79px;float:left">7cfc00:</div>
<div style="width:114px;color:#7cfc00">&nbsp;lawn green</div>
<div style="color:#ffffff;width=79px;float:left">fffacd:</div>
<div style="width:114px;color:#fffacd">&nbsp;lemon chiffon 1</div>
<div style="color:#ffffff;width=79px;float:left">eee9bf:</div>
<div style="width:114px;color:#eee9bf">&nbsp;lemon chiffon 2</div>
<div style="color:#ffffff;width=79px;float:left">cdc9a5:</div>
<div style="width:114px;color:#cdc9a5">&nbsp;lemon chiffon 3</div>
<div style="color:#ffffff;width=79px;float:left">bfefff:</div>
<div style="width:114px;color:#bfefff">&nbsp;light blue 1</div>
<div style="color:#ffffff;width=79px;float:left">b2dfee:</div>
<div style="width:114px;color:#b3dfee">&nbsp;light blue 2</div>
<div style="color:#ffffff;width=79px;float:left">e0ffff:</div>
<div style="width:114px;color:#e0ffff">&nbsp;light cyan 1</div>
<div style="color:#ffffff;width=79px;float:left">d1eeee:</div>
<div style="width:114px;color:#d1eeee">&nbsp;light cyan 2</div>
<div style="color:#ffffff;width=79px;float:left">b4cdcd:</div>
<div style="width:114px;color:#b4cdcd">&nbsp;light cyan 3</div>
<div style="color:#ffffff;width=79px;float:left">fafad2:</div>
<div style="width:114px;color:#fafad2">&nbsp;lt goldenrod yellow</div>
<div style="color:#ffffff;width=79px;float:left">cae1ff:</div>
<div style="width:114px;color:#cae1ff">&nbsp;light steel blue 1</div>
<div style="color:#ffffff;width=79px;float:left">ffffe0:</div>
<div style="width:114px;color:#ffffe0">&nbsp;light yellow 1</div>
<div style="color:#ffffff;width=79px;float:left">eeeed1:</div>
<div style="width:114px;color:#eeeed1">&nbsp;light yellow 2</div>
<div style="color:#ffffff;width=79px;float:left">cdcdb4:</div>
<div style="width:114px;color:#cdcdb4">&nbsp;light yellow 3</div>
<div style="color:#ffffff;width=79px;float:left">faf0e6:</div>
<div style="width:114px;color:#faf0e6">&nbsp;linen</div>
<div style="color:#ffffff;width=79px;float:left">f5fffa:</div>
<div style="width:114px;color:#f5fffa">&nbsp;mint cream</div>
<div style="color:#ffffff;width=79px;float:left">ffe4e1:</div>
<div style="width:114px;color:#ffe4e1">&nbsp;misty rose</div>
<div style="color:#ffffff;width=79px;float:left">eed5d2:</div>
<div style="width:114px;color:#eed5d2">&nbsp;misty rose 2</div>
<div style="color:#ffffff;width=79px;float:left">ffe4b5:</div>
<div style="width:114px;color:#ffe4b5">&nbsp;moccasin</div>
<div style="color:#ffffff;width=79px;float:left">ffdead:</div>
<div style="width:114px;color:#ffdead">&nbsp;navajo white</div>
<div style="color:#ffffff;width=79px;float:left">eecfa1:</div>
<div style="width:114px;color:#eecfa1">&nbsp;navajo white 2</div>
<div style="color:#ffffff;width=79px;float:left">fdf5e6:</div>
<div style="width:114px;color:#fdf5e6">&nbsp;old lace</div>
<div style="color:#ffffff;width=79px;float:left">c0ff3e:</div>
<div style="width:114px;color:#c0ff3e">&nbsp;olive drab 1</div>
<div style="color:#ffffff;width=79px;float:left">b3ee3a:</div>
<div style="width:114px;color:#b3ee3a">&nbsp;olive drab 2</div>
<div style="color:#ffffff;width=79px;float:left">caff70:</div>
<div style="width:114px;color:#caff70">&nbsp;dark olivegreen 1</div>
<div style="color:#ffffff;width=79px;float:left">bcee68:</div>
<div style="width:114px;color:#bcee68">&nbsp;dark olivegreen 2</div>
<div style="color:#ffffff;width=79px;float:left">c1ffc1:</div>
<div style="width:114px;color:#c1ffc1">&nbsp;dark seagreen 1</div>
<div style="color:#ffffff;width=79px;float:left">b4eeb4:</div>
<div style="width:114px;color:#b4eeb4">&nbsp;dark seagreen 2</div>
<div style="color:#ffffff;width=79px;float:left">9bcd9b:</div>
<div style="width:114px;color:#9bdc9b">&nbsp;dark seagreen 3</div>
<div style="color:#ffffff;width=79px;float:left">32d838:</div>
<div style="width:114px;color:#32d838">&nbsp;yellow-green</div>
<div style="color:#ffffff;width=79px;float:left">97ffff:</div>
<div style="width:114px;color:#97ffff">&nbsp;dark slate gray 1</div>
<div style="color:#ffffff;width=79px;float:left">8deeee:</div>
<div style="width:114px;color:#8deeee">&nbsp;dark slate gray 2</div>
<div style="color:#ffffff;width=79px;float:left">fffaf0:</div>
<div style="width:114px;color:#fffaf0">&nbsp;foral white</div>
<div style="color:#ffffff;width=79px;float:left">dcdcdc:</div>
<div style="width:114px;color:#dcdcdc">&nbsp;gainsboro</div>
<div style="color:#ffffff;width=79px;float:left">f8f8ff:</div>
<div style="width:114px;color:#f8f8ff">&nbsp;ghost white</div>
<div style="color:#ffffff;width=79px;float:left">f0fff0:</div>
<div style="width:114px;color:#f0fff0">&nbsp;honeydew 1</div>
<div style="color:#ffffff;width=79px;float:left">e0eee0:</div>
<div style="width:114px;color:#e0eee0">&nbsp;honeydew 2</div>
<div style="color:#ffffff;width=79px;float:left">c1cdc1:</div>
<div style="width:114px;color:#c1cdc1">&nbsp;honeydew 3</div>
<div style="color:#ffffff;width=79px;float:left">73de78:</div>
<div style="width:114px;color:#73de78">&nbsp;pale</div>
<div style="color:#ffffff;width=79px;float:left">eee8aa:</div>
<div style="width:114px;color:#eee8aa">&nbsp;pale goldenrod</div>
<div style="color:#ffffff;width=79px;float:left">73de78:</div>
<div style="width:114px;color:#73de78">&nbsp;pale green</div>
<div style="color:#ffffff;width=79px;float:left">9aff9a:</div>
<div style="width:114px;color:#9aff9a">&nbsp;pale green 1</div>
<div style="color:#ffffff;width=79px;float:left">90ee90:</div>
<div style="width:114px;color:#90ee90">&nbsp;pale green 2</div>
<div style="color:#ffffff;width=79px;float:left">7ccd7c:</div>
<div style="width:114px;color:#7ccd7c">&nbsp;pale green 3</div>
<div style="color:#ffffff;width=79px;float:left">afeeee:</div>
<div style="width:114px;color:#afeeee">&nbsp;pale turquoise</div>
<div style="color:#ffffff;width=79px;float:left">bbffff:</div>
<div style="width:114px;color:#bbffff">&nbsp;pale turquoise 1</div>
<div style="color:#ffffff;width=79px;float:left">aeeeee:</div>
<div style="width:114px;color:#aeeeee">&nbsp;pale turquoise 2</div>
<div style="color:#ffffff;width=79px;float:left">96cdcd:</div>
<div style="width:114px;color:#96cdcd">&nbsp;pale turquoise 3</div>
<div style="color:#ffffff;width=79px;float:left">db7093:</div>
<div style="width:114px;color:#db7093">&nbsp;pale violet-red</div>
<div style="color:#ffffff;width=79px;float:left">ff82ab:</div>
<div style="width:114px;color:#ff82ab">&nbsp;pale violet-red 1</div>
<div style="color:#ffffff;width=79px;float:left">ee799f:</div>
<div style="width:114px;color:#ee799f">&nbsp;pale violet-red 2</div>
<div style="color:#ffffff;width=79px;float:left">ffefd5:</div>
<div style="width:114px;color:#ffefd5">&nbsp;papaya</div>
<div style="color:#ffffff;width=79px;float:left">ffdab9:</div>
<div style="width:114px;color:#ffdab9">&nbsp;peach puff 1</div>
<div style="color:#ffffff;width=79px;float:left">eecbad:</div>
<div style="width:114px;color:#eecbad">&nbsp;peach puff 2</div>
<div style="color:#ffffff;width=79px;float:left">ffc1c1:</div>
<div style="width:114px;color:#ffc1c1">&nbsp;rosy brown 1</div>
<div style="color:#ffffff;width=79px;float:left">eeb4b4:</div>
<div style="width:114px;color:#eeb4b4">&nbsp;rosy brown 2</div>
<div style="color:#ffffff;width=79px;float:left">cd9b9b:</div>
<div style="width:114px;color:#cd9b9b">&nbsp;rosy brown 3</div>
<div style="color:#ffffff;width=79px;float:left">54ff9f:</div>
<div style="width:114px;color:#54ff9f">&nbsp;sea green 1</div>
<div style="color:#ffffff;width=79px;float:left">4eee94:</div>
<div style="width:114px;color:#4eee94">&nbsp;sea green 2</div>
<div style="color:#ffffff;width=79px;float:left">43cd80:</div>
<div style="width:114px;color:#43cd80">&nbsp;sea green 3</div>
<div style="color:#ffffff;width=79px;float:left">fff5ee:</div>
<div style="width:114px;color:#fff5ee">&nbsp;seashell 1</div>
<div style="color:#ffffff;width=79px;float:left">eee5de:</div>
<div style="width:114px;color:#eee5de">&nbsp;seashell 2</div>
<div style="color:#ffffff;width=79px;float:left">cdc5bf:</div>
<div style="width:114px;color:#cdc5bf">&nbsp;seashell 3</div>
<div style="color:#ffffff;width=79px;float:left">87ceff:</div>
<div style="width:114px;color:#87ceff">&nbsp;sky blue 1</div>
<div style="color:#ffffff;width=79px;float:left">7ec0ee:</div>
<div style="width:114px;color:#7ec0ee">&nbsp;sky blue 2</div>
<div style="color:#ffffff;width=79px;float:left">c6e2ff:</div>
<div style="width:114px;color:#c6e2ff">&nbsp;slate gray 1</div>
<div style="color:#ffffff;width=79px;float:left">b9d3ee:</div>
<div style="width:114px;color:#b9d3ee">&nbsp;slate gray 2</div>
<div style="color:#ffffff;width=79px;float:left">9fb6cd:</div>
<div style="width:114px;color:#9fb6cd">&nbsp;slate gray 3</div>
<div style="color:#ffffff;width=79px;float:left">fffafa:</div>
<div style="width:114px;color:#fffafa">&nbsp;snow 1</div>
<div style="color:#ffffff;width=79px;float:left">eee9e9:</div>
<div style="width:114px;color:#eee9e9">&nbsp;snow 2</div>
<div style="color:#ffffff;width=79px;float:left">cdc9c9:</div>
<div style="width:114px;color:#cdc9c9">&nbsp;snow 3</div>
<div style="color:#ffffff;width=79px;float:left">d8bfd8:</div>
<div style="width:114px;color:#d8bfd8">&nbsp;thistle</div>
<div style="color:#ffffff;width=79px;float:left">ffe1ff:</div>
<div style="width:114px;color:#ffe1ff">&nbsp;thistle 1</div>
<div style="color:#ffffff;width=79px;float:left">eed2ee:</div>
<div style="width:114px;color:#eed2ee">&nbsp;thistle 2</div>
<div style="color:#ffffff;width=79px;float:left">cdb5cd:</div>
<div style="width:114px;color:#cdb5cd">&nbsp;thistle 3</div>
<div style="color:#ffffff;width=79px;float:left">f5deb3:</div>
<div style="width:114px;color:#f5deb3">&nbsp;wheat</div>
<div style="color:#ffffff;width=79px;float:left">ffe7ba:</div>
<div style="width:114px;color:#ffe7ba">&nbsp;wheat 1</div>
<div style="color:#ffffff;width=79px;float:left">eed8ae:</div>
<div style="width:114px;color:#eed8ae">&nbsp;wheat 2</div>
<div style="color:#ffffff;width=79px;float:left">cdba96:</div>
<div style="width:114px;color:#cdba96">&nbsp;wheat 3</div>
<div style="color:#ffffff;width=79px;float:left">f5f5f5:</div>
<div style="width:114px;color:#f5f5f5">&nbsp;white smoke</div>
<div style="color:#ffffff;width=79px;float:left">ffff00:</div>
<div style="width:114px;color:#ffff00">&nbsp;yellow</div>
<div style="color:#ffffff;width=79px;float:left">eeee00:</div>
<div style="width:114px;color:#eeee00">&nbsp;yellow 2</div>
<div style="color:#ffffff;width=79px;float:left">19ccdf:</div>
<div style="width:114px;color:#19ccdf">&nbsp;turquoise</div>
<div style="color:#ffffff;width=79px;float:left">00f5ff:</div>
<div style="width:114px;color:#00f5ff">&nbsp;turquoise 1</div>
<div style="color:#ffffff;width=79px;float:left">00e5ee:</div>
<div style="width:114px;color:#00e5ee">&nbsp;turquoise 2</div>
<div style="color:#ffffff;width=79px;float:left">00c5cd:</div>
<div style="width:114px;color:#00c5cd">&nbsp;turquoise 3</div>
<div style="color:#ffffff;width=79px;float:left">00868b:</div>
<div style="width:114px;color:#00868b">&nbsp;turqouoise 4</div>
<div style="color:#ffffff;width=79px;float:left">9c3ece:</div>
<div style="width:114px;color:#9c3ece">&nbsp;violet</div>
<div style="color:#ffffff;width=79px;float:left">f33e96:</div>
<div style="width:114px;color:#f33e96">&nbsp;violet-red</div>
<div style="color:#ffffff;width=79px;float:left">ff3e96:</div>
<div style="width:114px;color:#ff3d96">&nbsp;violet-red 1</div>
<div style="color:#ffffff;width=79px;float:left">ee3a8c:</div>
<div style="width:114px;color:#ee3a8c">&nbsp;violet-red 2</div>
<div style="color:#ffffff;width=79px;float:left">cd3278:</div>
<div style="width:114px;color:#cd3278">&nbsp;violet-red 3</div>
<div style="color:#ffffff;width=79px;float:left">8b2252:</div>
<div style="width:114px;color:#8b2252">&nbsp;violet-red 4</div>
<div style="color:#ffffff;width=79px;float:left">8b7e66:</div>
<div style="width:114px;color:#8b7e66">&nbsp;wheat 4</div>
<div style="color:#ffffff;width=79px;float:left">cdcd00:</div>
<div style="width:114px;color:#cdcd00">&nbsp;yellow 3</div>
<div style="color:#ffffff;width=79px;float:left">8b8b00:</div>
<div style="width:114px;color:#8b8b00">&nbsp;yellow 4</div>
<div style="color:#ffffff;width=79px;float:left">6b8e23:</div>
<div style="width:114px;color:#6b8e23">&nbsp;olive drab</div>
<div style="color:#ffffff;width=79px;float:left">9acd32:</div>
<div style="width:114px;color:#9acd32">&nbsp;olive drab 3</div>
<div style="color:#ffffff;width=79px;float:left">698b22:</div>
<div style="width:114px;color:#698b22">&nbsp;olive drab 4</div>
<div style="color:#ffffff;width=79px;float:left">ffa500:</div>
<div style="width:114px;color:#ffa500">&nbsp;orange</div>
<div style="color:#ffffff;width=79px;float:left">ee9a00:</div>
<div style="width:114px;color:#ee9a00">&nbsp;orange 2</div>
<div style="color:#ffffff;width=79px;float:left">cd8500:</div>
<div style="width:114px;color:#cd8500">&nbsp;orange 3</div>
<div style="color:#ffffff;width=79px;float:left">8b5a00:</div>
<div style="width:114px;color:#8b5a00">&nbsp;orange 4</div>
<div style="color:#ffffff;width=79px;float:left">ff4500:</div>
<div style="width:114px;color:#ff4500">&nbsp;orange-red</div>
<div style="color:#ffffff;width=79px;float:left">ee4000:</div>
<div style="width:114px;color:#ee4000">&nbsp;orange-red 2</div>
<div style="color:#ffffff;width=79px;float:left">cd3700:</div>
<div style="width:114px;color:#cd3700">&nbsp;orange-red 3</div>
<div style="color:#ffffff;width=79px;float:left">8b2500:</div>
<div style="width:114px;color:#8b2500">&nbsp;orange-red 4</div>
<div style="color:#ffffff;width=79px;float:left">cdb38b:</div>
<div style="width:114px;color:#cdb38b">&nbsp;navajo white 3</div>
<div style="color:#ffffff;width=79px;float:left">8b795e:</div>
<div style="width:114px;color:#8b795e">&nbsp;navajo white 4</div>
<div style="color:#ffffff;width=79px;float:left">232375:</div>
<div style="width:114px;color:#232375">&nbsp;navy blue</div>
<div style="color:#ffffff;width=79px;float:left">ff42d2:</div>
<div style="width:114px;color:#ff42d2">&nbsp;nessy</div>
<div style="color:#ffffff;width=79px;float:left">8b3626:</div>
<div style="width:114px;color:#8b3626">&nbsp;tomato 4</div>
</p></div>
</p></div>


<!-- Begin TwitThis script (http://twitthis.com/) -->
<div style="text-align:left;">
<script type="text/javascript" src="http://s3.chuug.com/chuug.twitthis.scripts/twitthis.js"></script>
<script type="text/javascript">
<!--
document.write('<a href="javascript:;" onclick="TwitThis.pop();"><img src="http://s3.chuug.com/chuug.twitthis.resources/twitthis_grey_72x22.gif" alt="TwitThis" style="border:none;" /></a>');
//-->
</script>
</div>
<!-- /End -->

]]></content:encoded>
			<wfw:commentRss>http://nichestoremarket.com/2009/04/css-color-code-list-for-developing-niche-stores/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
