/*
Each month, the stylesheet must be replicated, date amended, and modified to match the month's colorset:
/style.[2 digit month].css

Styles used in layout, that do NOT require modification monthly, are found in /layout.css

Scan for iterations of "change background color" comments within this file.
a) background-color is the main body background color
b) NAVI background-color is the color of the top navi strip
c) funfinder search background-color is for the right column search box
d) highlight background-color is the lighter 'pallette' background color

In general, "background-color" denotes the color of the background of the text block, or block level element, and "color" refers to the color of the text within the specified block.

*/

/* change background-color below - the general background color of the page */
body {background-color:rgb(0, 153, 204);font-family:"Verdana", sans-serif;margin:0px;padding:0px;}

	a {color:white;text-decoration:none;}
	a:hover {text-decoration:underline;}
	a:visited {color:rgb(255, 255, 204);}

	/* change background-color below - the background color of the layout tables used throughout the page */
	.structure {background-color:rgb(0, 153, 204);font-family:"Verdana", sans-serif;color:rgb(255,255,255);width:100%;padding:0px;margin:0px;border:0px solid white;}

	/* change NAVI background-color below - this is the top horizontal site navigation */
	#navi {background-color:rgb(255, 153, 0);border-top:1px solid gray;border-bottom:1px solid gray;padding-right:0px;padding-left:0px;margin:0px;}

	/* change color below - this is the default paragraph text color */
	h3 {font-family:"Verdana", sans-serif;}
	p {font-size:12px;margin:1px 3px 15px 3px;color:rgb(255,255,255);}

	/* change color below - small table is used in the "most popular" section */
	table.small {font-size:12px;color:rgb(255,255,255);}

	/* change highlight background-colors below .lt is used in the center column on the second level pages, .dk is used on the homepage [and should be the same as the general background color */
	.lt {background-color:rgb(255, 153, 0);}
	.dk {background-color:rgb(0, 153, 204);}

	/* background-color below - not currently in use */
	#rightCol div {width:160px;margin:0px 0px 1px 0px;background-color:rgb(102, 102, 104);}

	/* change fun finder search background-color below - right column */
	#search {border:1px solid white;background-color:rgb(255, 204, 102);font-family:"Arial";font-size:.70em;color:rgb(102, 102, 102);width:160px;margin:10px 0px 10px 0px;}

	/* all of the following ids are used in the submission forms for arts and crafts, recipies, etc. */
	#submissionTitle {color:rgb(255,255,255);padding-bottom:6px;padding-left:0px;}
	#items {color:rgb(255,255,255);padding-bottom:6px;padding-left:8px;}
	#steps, #creative {color:rgb(255,255,255);padding-bottom:6px;padding-left:18px;}
	#submitterInfo {color:rgb(255,255,255);padding-bottom:6px;padding-left:8px;}
