/*
	
	File name: color.css
	Website: earlsfurniture.biz
	Author: Adrien Monteleone
	Created: 2/26/10
	Modified: 9/24/11
	
	Comments: this file handles only color and does so for all pages, all elements site-wide  RGB values are included because Microsoft's IE programmers are too stupid to figure out how to get their browswer to read HSL colors like every other browser can.
	
*/


/* ####################  Color Definitions  #################### */
/*
	
	Brown
		rgb(71,61,31)
		hsl(45,40%,20%)
		
	Brown 10%
		rgb(36,31,15)
		hsl(45,40%,10%)
		
	Brown 60%
		rgb(194,173,112)
		hsl(45,40%,60%)
		
	Brown 80%
		rgb(224,214,184)
		hsl(45,40%,80%)

	Brown 90%
		rgb(240,235,219)
		hsl(45,40%,90%)
		
	Oyster
		rgb(214,209,194)	
		hsl(45,20%,80%)
		
	Oyster 90%
		rgb(235,232,224)	
		hsl(45,20%,90%)
		
	Brick
		rgb(99,27,3)
		hsl(15,95%,20%)
	
	Brick 15%
		rgb(75,20,2)
		hsl(15,95%,15%)
		
	Brick 95%
		rgb(254,236,230)
		hasl(15,95%,95%)	
		
	Orange
		rgb(161,65,18)
		hsl(20,80%,35%)
	
	Orange 15%
		rgb(69,28,8)
		hsl(20,80%,15%)
		
	Orange 90%
		rgb(250,223,209)
		hsl(20,80%,90%)
		
	Blue
		rgb(54,101,125)
		hsl(200,40%,35%)
		#36657D
	
	Blue 15%
		rgb(23,43,54)
		hsl(200,40%,15%)
		
	Blue 40%
		rgb(0,136,204)
		hsl(200,40%,40%)
		
	Blue 90%
		rgb(219,233,240)
		hsl(200,40%,90%)	
		
	Forrest
		rgb(59,73,54)
		hsl(105,15%,25%)
	
	Forrest 5%
		rgb(12,15,11)
		hsl(105,15%,5%)
		
	Forrest 15%
		rgb(35,44,33)
		hsl(105,15%,15%)
		
	Forrest 90%
		rgb(228,233,226)
		hsl(105,15%,90%)	
		
	Olive
		rgb(116,107,62)
		hsl(50,30%,35%)
	
	Olive 15%
		rgb(50,46,27)
		hsl(50,30%,15%)
		
	Olive 90%
		rgb(237,235,222)
		hsl(50,30%,90%)
		
	Grass
		rgb(128,153,51)
		hsl(75,50%,40%)
	
	Grass 15%
		rgb(48,57,19)
		hsl(75,50%,15%)
		
	Grass 30%
		rgb(96,115,38)
		hsl(75,50%,30%)
		
	Grass 85%
		rgb(226,236,198)
		hsl(75,50%,85%)
		
	Grass 90%
		rgb(236,242,217)
		hsl(75,50%,90%)
		
	Mustard
		rgb(226,183,75)
		hsl(45,70%,60%)
		
	Mustard 15%
		rgb(65,52,11)
		hsl(45,70%,15%)
	
	Mustard 20%
		rgb(87,69,15)
		hsl(45,70%,20%)
	
	Mustard 40%
		rgb(173,138,31)
		hsl(45,70%,40%)
	
	Mustard 80%
		rgb(240,222,168)
		hsl(45,70%,80%)
		
	Mustard 90%
		rgb(247,238,212)
		hsl(45,70%,90%)
		
	Gold
		rgb(156,112,22)
		hsl(40,75%,35%)
	
	Gold 15%	
		rgb(67,48,10)
		hsl(40,75%,15%)
		
	Gold 90%	
		rgb(249,236,210)
		hsl(40,75%,90%)
	
		
*/

/* ####################  General  #################### */

body {
	/* rgb colors for IE 7< */
	background: rgb(255,255,255);
}

body {	
	/* White - this is the browser background */
	background-color: hsl(0,0%,100%);
}

body:before {
	/* rgb colors for IE 7< */
	box-shadow: 0px 0px 10px rgba(0,0,0,.8);
	box-shadow: 0px 0px 10px hsla(0,0,0,.8);
}

#container {
	/* rgb colors for IE 7< */
	/* White - this is the content section of the site*/
	background: rgb(255,255,255);
}

#container {
	/* rgb colors for IE 7< */
	/* White - this is the content section of the site*/
	background-color: hsl(0,0%,100%);
}

#info {
	/* rgb colors for IE 7< */
	/* Brown - main text */
	color: rgb(71,61,31);
}

#info {
	/* Brown - main text */
	color: hsl(45,40%,20%);
}




/* ####################  Images  #################### */




/* ####################  Headings  #################### */

h1 {
	/* rgb colors for IE 7< */
	/* 90% Forrest on "aged" Forrest with 5% Forrest text shadow */
	background: rgb(59,73,54);
	color: rgb(228,233,226);
	box-shadow: inset 0 -.25em 1.25em rgba(12,15,11,.75);
	text-shadow: 0px -1px 0px rgb(12,15,11);
}

h1 {
	/* 90% Forrest on "aged" Forrest with 5% Forrest text shadow */
	background-color: hsl(105,15%,25%);
	color: hsl(105,15%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(105,15%,05%,.75);
	text-shadow: 0px -1px 0px hsl(105,15%,15%);
}

h2, h3, h4, h5, h6 {
	/* rgb colors for IE 7< */
	/* Brick - this is when they are within content, otherwise they are header bars as defined below */
	color: rgb(99,27,3);
}

h2, h3, h4, h5, h6 {
	/* Brick - this is when they are within content, otherwise they are header bars as defined below */
	color: hsl(15,95%,20%);
}




/* ####################  Lists  #################### */




/* ####################  Links  #################### */

a:link {
	/* rgb colors for IE 7< */
	/* Blue */
	color: rgb(54,101,125);
}

a:link {
	/* Blue */
	color: hsl(200,40%,35%);
}

a:visited {
	/* rgb colors for IE 7< */
	/* Orange */
	color: rgb(161,65,18);
}

a:visited {
	/* Orange */
	color: hsl(20,80%,35%);
}

a:hover {
	/* rgb colors for IE 7< */
	/* Saturated Blue */
	color: rgb(0,136,204);
}

a:hover {
	/* Saturated Blue */
	color: hsl(200,100%,40%);
}

a:focus {
	/* rgb colors for IE 7< */
	/* Saturated Blue */
	color: rgb(0,136,204);
}

a:focus {
	/* Saturated Blue */
	color: hsl(200,100%,40%);
}



/* ####################  Forms  #################### */
/* ####################  Tables  #################### */

table thead #cornerLeft {
	/* rgb colors for IE 7< */
	/* Brown table borders */
	border-bottom-color: rgb(71,61,31);
}

table thead #cornerLeft {
	/* Brown table borders */
	border-bottom-color: hsl(45,40%,20%);
}

table th.columnHead {
	/* rgb colors for IE 7< */
	/* 90% Brown on Brown */
	background: rgb(71,61,31);
	color: rgb(240,235,219);
}

table th.columnHead {
	/* 90% Brown on Brown */
	background-color: hsl(45,40%,20%);
	color: hsl(45,40%,90%);
}

table td {
	/* rgb colors for IE 7< */
	/* 85% Grass with Brown borders */
	background: rgb(226,236,198);
	border-color: rgb(71,61,31);
}

table td {
	/* 85% Grass with Brown borders */
	background-color: hsl(75,50%,85%);
	border-color: hsl(45,40%,20%);
}

table th.rowHead {
	/* rgb colors for IE 7< */
	/* 90% Brown with Brown borders */
	background: rgb(240,235,219);
	border-right-color: rgb(71,61,31);
	border-bottom-color: rgb(71,61,31);
	border-left-color: rgb(71,61,31);
}

table th.rowHead {
	/* 90% Brown with Brown borders */
	background-color: hsl(45,40%,90%);
	border-right-color: hsl(45,40%,20%);
	border-bottom-color: hsl(45,40%,20%);
	border-left-color: hsl(45,40%,20%);
}

table thead th {
	/* rgb colors for IE 7< */
	/* 90% Brown borders */
	border-color: rgb(240,235,219);
}

table thead th {
	/* 90% Brown borders */
	border-color: hsl(45,40%,90%);
}

table tr:nth-child(odd) td {
	/* rgb colors for IE 7< */
	/* Every other row is Grass */
	background: rgb(128,153,51);
}

table tr:nth-child(odd) td {
	/* Every other row is Grass */
	background-color: hsl(75,50%,40%);
}




/* ####################  Header  #################### */

#header {
	/* rgb colors for IE 7< */
	/* Brown */
	color: rgb(71,61,31);
}

#header {
	/* Brown */
	color: hsl(45,40%,20%);
}

#logo, #logo a {
	/* rgb colors for IE 7< */
	/* Forrest - this is a text logo, not an image */
	color: rgb(59,73,54);
}

#logo, #logo a {
	/* Forrest - this is a text logo, not an image */
	color: hsl(105,15%,25%);
}

#Earls {
	/* rgb colors for IE 7< */
	text-shadow: -1px -1px 0 rgb(255,255,255), 1px -1px 0 rgb(255,255,255), -1px 1px 0 rgb(255,255,255), 1px 1px 0 rgb(255,255,255), .075em .075em 0 rgb(128,128,128);
}

#Earls {
	text-shadow: -1px -1px 0 hsl(0,0%,100%), 1px -1px 0 hsl(0,0%,100%), -1px 1px 0 hsl(0,0%,100%), 1px 1px 0 hsl(0,0%,100%), .075em .075em 0 hsl(0,0%,50%);
}

#phone {
	/* rgb colors for IE 7< */
	/* Forrest */
	color: rgb(59,73,54);
}

#phone {
	/* Forrest */
	color: hsl(105,15%,25%);
}




/* #################### Main Menu #################### */

#mainNav {
	/* rgb colors for IE 7< */
	/* "aged" Olive with 15% Olive text shadow*/
	background: rgb(116,107,62);
	box-shadow: inset 0 -.25em 1.25em rgba(50,46,27,.75);
}

#mainNav {
	/* "aged" Olive with 15% Olive text shadow*/
	background-color: hsl(50,30%,35%);
	box-shadow: inset 0 -.25em 1.25em hsla(50,30%,15%,.75);
}

#mainNav a {
	/* rgb colors for IE 7< */
	/* 90% Olive on "aged" Olive with 15% Olive text shadow*/
	color: rgb(237,235,222);
	text-shadow: 0px -1px 0px rgb(50,46,27);
}

#mainNav a {
	/* 90% Olive on "aged" Olive with 15% Olive text shadow*/
	color: hsl(50,30%,90%);
	text-shadow: 0px -1px 0px hsl(50,30%,15%);
}

#mainNav a:hover {
	/* rgb colors for IE 7< */
	/* 20% Mustard on "aged" Mustard with 80% Mustard text high-light*/
	color: rgb(87,69,15);
	background: rgb(224,189,82);
	box-shadow: inset 0 -.25em 1.25em rgba(173,138,31,.75);
	text-shadow: 0px 1px 0px rgb(240,222,168);
}

#mainNav a:hover {
	/* 20% Mustard on "aged" Mustard with 80% Mustard text high-light*/
	color: hsl(45,70%,20%);
	background-color: hsl(45,70%,60%);
	box-shadow: inset 0 -.25em 1.25em hsla(45,70%,40%,.75);
	text-shadow: 0px 1px 0px hsl(45,70%,80%);
}

#mainNav a#current {
	/* rgb colors for IE 7< */
	/* Brown on "aged" 80% Brown with 90% Brown text high-light*/
	color: rgb(71,61,31);
	background: rgb(224,214,184);
	box-shadow: inset 0 -.25em 1.25em rgba(194,173,112,.75);
	text-shadow: 0px 1px 0px rgb(240,235,219);
}

#mainNav a#current {
	/* Brown on "aged" 80% Brown with 90% Brown text high-light*/
	color: hsl(45,40%,20%);
	background-color: hsl(45,40%,80%);
	box-shadow: inset 0 -.25em 1.25em hsla(45,40%,60%,.75);
	text-shadow: 0px 1px 0px hsl(45,40%,90%);
}



/* ####################  Home Page  #################### */

#featuredItems h2 {
	/* rgb colors for IE 7< */
	/* 90% Grass on "aged" Grass with 15% Grass text shadow */
	background: rgb(128,153,51);
	color: rgb(236,242,217);
	box-shadow: inset 0 -.25em 1.25em rgba(48,57,19,.75);
	text-shadow: 0px -1px 0px rgb(48,57,19);
}

#featuredItems h2 {	
	/* 90% Grass on "aged" Grass with 15% Grass text shadow */
	background-color: hsl(75,50%,40%);
	color: hsl(75,50%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(75,50%,15%,.75);
	text-shadow: 0px -1px 0px hsl(75,50%,15%);
}

#newArrivals  h2 {
	/* rgb colors for IE 7< */
	/* 90% Orange on "aged" Orange with 15% Orange text-shadow */
	background: rgb(161,65,18);
	color: rgb(250,223,209);
	box-shadow: inset 0 -.25em 1.25em rgba(69,28,8,.75);
	text-shadow: 0px -1px 0px rgb(69,28,8);
}

#newArrivals  h2 {
	/* 90% Orange on "aged" Orange with 15% Orange text-shadow */
	background-color: hsl(20,80%,35%);
	color: hsl(20,80%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(20,80%,15%,.75);
	text-shadow: 0px -1px 0px hsl(20,80%,15%);
}

#newManufacturers h2, #currentPromos h2 {
	/* rgb colors for IE 7< */
	/* 90% Blue on "aged" Blue with 15% Blue text-shadow */
	background: rgb(54,101,125);
	color: rgb(219,233,240);
	box-shadow: inset 0 -.25em 1.25em rgba(23,43,54,.75);
	text-shadow: 0px -1px 0px rgb(23,43,54);
}

#newManufacturers h2, #currentPromos h2 {
	/* 90% Blue on "aged" Blue with 15% Blue text-shadow */
	background-color: hsl(200,40%,35%);
	color: hsl(200,40%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(200,40%,15%,.75);
	text-shadow: 0px -1px 0px hsl(200,40%,15%);
}

#currentDeals h2 {
	/* rgb colors for IE 7< */
	/* 90% Gold on Gold*/
	color: rgb(249,236,210);
	background: rgb(156,112,22);
	box-shadow: inset 0 -.25em 1.25em rgba(67,48,10,.75);
	text-shadow: 0px -1px 0px rgb(67,48,10);
}

#currentDeals h2 {	
	/* 90% Gold on "aged" Gold with 15% Gold text shadow*/
	color: hsl(40,75%,90%);
	background-color: hsl(40,75%,35%);
	box-shadow: inset 0 -.25em 1.25em hsla(40,75%,15%,.75);
	text-shadow: 0px -1px 0px hsl(40,75%,15%);
}

#roomPackages h2 {
	/* rgb colors for IE 7< */
	/* 95% Brick on "aged" Brick with 15% Brick text-shadow */
	background: rgb(99,27,3);
	color: rgb(254,236,230);
	box-shadow: inset 0 -.25em 1.25em rgba(75,20,2,.75);
	text-shadow: 0px -1px 0px rgb(75,20,2);
}

#roomPackages h2 {
	/* 95% Brick on "aged" Brick with 15% Brick text-shadow */
	background-color: hsl(15,95%,20%);
	color: hsl(15,95%,95%);
	box-shadow: inset 0 -.25em 1.25em hsla(15,95%,15%,.75);
	text-shadow: 0px -1px 0px hsl(15,95%,15%);
}

dd a.featuredItems, dd a.newArrivals, dd a.newManufacturers, dd a.currentDeals, #promoLinkLG, #promoLinkBest, dd a.roomPackages, dd a.currentPromos {
	/* rgb colors for IE 7< */
	/* 10% Brown with 90% Brown text - for IE 7< */
	background: rgb(36,31,15);
	filter: alpha(opacity=65);
	color: rgb(240,235,219);
	text-shadow: 0px -1px 2px rgb(36,31,15);
}

dd a.featuredItems, dd a.newArrivals, dd a.newManufacturers, dd a.currentDeals, #promoLinkLG, #promoLinkBest, dd a.roomPackages, dd a.currentPromos {
	/* Transparent 10% Brown with 90% Brown text and 10% Brown text-shadow */
	background-color: hsla(45,40%,10%,.65);
	color: hsl(45,40%,90%);
	text-shadow: 0px -1px 2px hsl(45,40%,10%);
}

#home .price, #home .dollar {	
	/* rgb colors for IE 7< */
	color: rgb(148,194,10);
	text-shadow: 0px 1px 0px rgb(96,115,38);
}

#home .price, #home .dollar {	
	/* 90% Grass with 30% Grass text-shadow */
	color: hsl(75,90%,40%);
	text-shadow: 0px 1px 0px hsl(75,50%,30%);
}

a.checkThisOut {
	/* rgb colors for IE 7< */
	/* 10% brown with 90% Brown text */
	/* and a.currentPromos,  when it is text */
	background: rgb(240,235,219);
	box-shadow: inset 0 -1em 5em rgba(194,173,112,.75);
}

a.checkThisOut {
	/* "aged" 90% Brown */
	/* and a.currentPromos,  when it is text */
	background-color: hsl(45,40%,90%);
	box-shadow: inset 0 -1em 5em hsla(45,40%,60%,.75);
}

.sold {
	/* rgb colors for IE 7< */
	/* White on 65% Transparent Brick with Brick text shadow */
	background: rgb(99,27,3);
	filter: alpha(opacity=65);
	color: rgb(255,255,255);
	text-shadow: 0px -1px 2px rgb(99,27,3);
}

.sold {
	/* White on 65% Transparent Brick with Brick text shadow */
	background-color: hsla(15,95%,20%,.65);
	color: hsl(15,95%,100%);
	text-shadow: 0px -1px 2px hsl(15,95%,20%);
}




/* ####################  Contact Page  #################### */

#directions h2 {
	/* rgb colors for IE 7< */	
	/* 90% Mustard on "aged" Mustard with 80% Mustard text high-light*/
	color: rgb(247,238,212);
	background: rgb(224,189,82);
	box-shadow: inset 0 -.25em 1.25em rgba(173,138,31,.75);
	text-shadow: 0px -1px 0px rgb(65,52,11);
}

#directions h2 {	
	/* 90% Mustard on "aged" Mustard with 80% Mustard text high-light*/
	color: hsl(45,70%,90%);
	background-color: hsl(45,70%,60%);
	box-shadow: inset 0 -.25em 1.25em hsla(45,70%,40%,.75);
	text-shadow: 0px -1px 0px hsl(45,70%,15%);
}

#contacts h2 {
	/* rgb colors for IE 7< */
	/* 90% Orange on "aged" Orange with 15% Orange text-shadow */
	background: rgb(161,65,18);
	color: rgb(250,223,209);
	box-shadow: inset 0 -.25em 1.25em rgba(69,28,8,.75);
	text-shadow: 0px -1px 0px rgb(69,28,8);
}

#contacts h2 {
	/* 90% Orange on "aged" Orange with 15% Orange text-shadow */
	background-color: hsl(20,80%,35%);
	color: hsl(20,80%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(20,80%,15%,.75);
	text-shadow: 0px -1px 0px hsl(20,80%,15%);
}

#holidays h2 {
	/* rgb colors for IE 7< */
	/* 90% Grass on "aged" Grass with 15% Grass text shadow */
	background: rgb(128,153,51);
	color: rgb(236,242,217);
	box-shadow: inset 0 -.25em 1.25em rgba(48,57,19,.75);
	text-shadow: 0px -1px 0px rgb(48,57,19);
}

#holidays h2 {
	/* 90% Grass on "aged" Grass with 15% Grass text shadow */
	background-color: hsl(75,50%,40%);
	color: hsl(75,50%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(75,50%,15%,.75);
	text-shadow: 0px -1px 0px hsl(75,50%,15%);
}




/* ####################  About Page #################### */
/* ####################  Privacy Page  #################### */
/* ####################  Single Column  #################### */




/* ####################  Left Menu  #################### */



.leftMenu {
	/* rgb colors for IE 7< */
	/* Brown on Oyster faded */
	color: rgb(71,61,31);
	background: rgb(214,209,194);
}

.leftMenu {
	/* Brown on Oyster faded */
	color: hsl(45,40%,20%);
	background-color: hsl(45,20%,80%);
}




/* ####################  Three Columns  #################### */

#featuredItems, #newArrivals, #directions, #contacts, #special_buy, #discontinued {
	/* rgb colors for IE 7< */
	/* Forrest */
	border-right-color: rgb(59,73,54);
}

#featuredItems, #newArrivals, #directions, #contacts, #special_buy, #discontinued {
	/* Forrest */
	border-right-color: hsl(105,15%,25%);
}




/* ####################  Column 1  #################### */
/* ####################  Column 2  #################### */
/* ####################  Column 3  #################### */




/* ####################  Specials Page  #################### */

#special_buy h2 {
	/* rgb colors for IE 7< */
	/* 90% Grass on "aged" Grass with 15% Grass text shadow */
	background: rgb(128,153,51);
	color: rgb(236,242,217);
	box-shadow: inset 0 -.25em 1.25em rgba(48,57,19,.75);
	text-shadow: 0px -1px 0px rgb(48,57,19);
}

#special_buy h2 {
	/* 90% Grass on "aged" Grass with 15% Grass text shadow */
	background-color: hsl(75,50%,40%);
	color: hsl(75,50%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(75,50%,15%,.75);
	text-shadow: 0px -1px 0px hsl(75,50%,15%);
}

#discontinued h2 {
	/* rgb colors for IE 7< */
	/* 90% Blue on "aged" Blue with 15% Blue text-shadow */
	background: rgb(54,101,125);
	color: rgb(219,233,240);
	box-shadow: inset 0 -.25em 1.25em rgba(23,43,54,.75);
	text-shadow: 0px -1px 0px rgb(23,43,54);
}

#discontinued h2 {
	/* 90% Blue on "aged" Blue with 15% Blue text-shadow */
	background-color: hsl(200,40%,35%);
	color: hsl(200,40%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(200,40%,15%,.75);
	text-shadow: 0px -1px 0px hsl(200,40%,15%);
}

#closeout h2 {
	/* rgb colors for IE 7< */
	/* 95% Brick on "aged" Brick with 15% Brick text-shadow */
	background: rgb(99,27,3);
	color: rgb(254,236,230);
	box-shadow: inset 0 -.25em 1.25em rgba(75,20,2,.75);
	text-shadow: 0px -1px 0px rgb(75,20,2);
}

#closeout h2 {
	/* 95% Brick on "aged" Brick with 15% Brick text-shadow */
	background-color: hsl(15,95%,20%);
	color: hsl(15,95%,95%);
	box-shadow: inset 0 -.25em 1.25em hsla(15,95%,15%,.75);
	text-shadow: 0px -1px 0px hsl(15,95%,15%);
}

#importantInfo {
	/* rgb colors for IE 7< */
	/* 90% Orange on "aged" Orange with 15% Orange text-shadow */
	background: rgb(161,65,18);
	color: rgb(250,223,209);
	box-shadow: inset 0 -.25em 1.25em rgba(69,28,8,.75);
	text-shadow: 0px -1px 0px rgb(69,28,8);
}

#importantInfo {
	/* 90% Orange on "aged" Orange with 15% Orange text-shadow */
	background-color: hsl(20,80%,35%);
	color: hsl(20,80%,90%);
	box-shadow: inset 0 -.25em 1.25em hsla(20,80%,15%,.75);
	text-shadow: 0px -1px 0px hsl(20,80%,15%);
}

.price, .dollar {
	/* rgb colors for IE 7< */	
	/* Grass with 30% Grass text-shadow */
	color: rgb(128,153,51);
	text-shadow: 0px 1px 0px rgb(96,115,38);
}

.price, .dollar {	
	/* Grass with 30% Grass text-shadow */
	color: hsl(75,50%,40%);
	text-shadow: 0px 1px 0px hsl(75,50%,30%);
}

.itemName {
	/* rgb colors for IE 7< */
	/* Gold */
	color: rgb(156,112,22);
}

.itemName {
	/* Gold */
	color: hsl(40,75%,35%);
}




/* ####################  Reverse float on Specials page  #################### */

#closeout dl:nth-child(even), #discontinued dl:nth-child(even), #special_buy dl:nth-child(even) {
	/* rgb colors for IE 7< */
	/* "aged" 90% Brown */
	background: rgb(240,235,219);
	box-shadow: inset 0 -1em 5em rgba(194,173,112,.75);
}

#closeout dl:nth-child(even), #discontinued dl:nth-child(even), #special_buy dl:nth-child(even) {
	/* "aged" 90% Brown */
	background-color: hsl(45,40%,90%);
	box-shadow: inset 0 -1em 5em hsla(45,40%,60%,.75);
}




/* ####################  Manufacturer's Table  #################### */
/* ####################  Item Listing Pages  #################### */




/* ####################  Individual Item Page  #################### */

.item {
	/* rgb colors for IE 7< */
	/* Grass border with White background*/
	border-color: rgb(128,153,51);
	background: rgb(255,255,255);
}

.item {
	/* Grass border with White background*/
	border-color: hsl(75,50%,40%);
	background-color: hsl(0,0%,100%);
}

.priceLarge {
	/* rgb colors for IE 7< */
	/* grass */
	color: rgb(128,153,51);
}

.priceLarge {
	/* grass */
	color: hsl(75,50%,40%);
}




/* ####################  ItemGroup Page  #################### */

.usa {
	/* rgb colors for IE 7< */
	/* White on 65% Transparent Brick with Brick text shadow */
	background: rgb(99,27,3);
	filter: alpha(opacity=65);
	color: rgb(255,255,255);
	text-shadow: 0px -1px 2px rgb(99,27,3);
}

.usa {
	/* White on 65% Transparent Brick with Brick text shadow */
	background-color: hsla(15,95%,20%,.65);
	color: hsl(15,95%,100%);
	text-shadow: 0px -1px 2px hsl(15,95%,20%);
}

#aicoGrandTraditions dl {
	/* rgb colors for IE 7< */
	/* "aged" 90% Brown */
	background: rgb(240,235,219);
	box-shadow: inset 0 -1em 5em rgba(194,173,112,.75);
}

#aicoGrandTraditions dl {
	/* "aged" 90% Brown */
	background-color: hsl(45,40%,90%);
	box-shadow: inset 0 -1em 5em hsla(45,40%,60%,.75);
}


/* ####################  Group Price Table  #################### */
/* ####################  Payment Methods Page  #################### */
/* ####################  Mattress Warranty Table  #################### */
/* ####################  Delivery Rates Table  #################### */




/* ####################  Footer  #################### */

#footer {
	/* rgb colors for IE 7< */
	/* Brown on Oyster faded */
	color: rgb(71,61,31);
	background: rgb(214,209,194);
}

#footer {
	/* Brown on Oyster faded */
	color: hsl(45,40%,20%);
	background-color: hsl(45,20%,80%);
}

#lagniappeContainer, #servicesContainer, #customerCareContainer {
	/* rgb colors for IE 7< */
	/* 90% Oyster */
	border-right-color: rgb(235,232,224);
}

#lagniappeContainer, #servicesContainer, #customerCareContainer {
	/* 90% Oyster */
	border-right-color: hsl(45,20%,90%);
}

