/*===========================================================================
	Colors (Global)
	
	This stylesheet defines the colors for the following:
	* Text and links
	* Backgrounds
	* Borders
===========================================================================*/

/*
	Color Glossary
	
	rgb(121, 137, 163); blue
	rgb(102, 102, 51); green
	rgb(118, 33, 4); red
	rgb(153, 102, 0); orange
	rgb(51, 34, 34); brown
	rgb(108, 111, 114); gray
*/

.temp { color: magenta; }

/* Page
===========================================================================*/

html,
body {
	background-color: rgb(121, 137, 163); /*blue*/
}

body div#page {
	color: rgb(108, 111, 114); /*gray*/
	background-color: #fff;
}

/* Defaults
===========================================================================*/

/* Misc. Block */

/* Misc. Inline */

/* Links */

a:link {
	color: rgb(108, 111, 114); /*gray*/
}

a:visited {
	color: rgb(108, 111, 114); /*gray*/
}

a:focus,
a:hover,
a:active {
	color: rgb(118, 33, 4); /*red*/
}

/* Headings */

/* Lists */

/* Common Classes
===========================================================================*/

/* Content
===========================================================================*/

div#content h2 {
	color: rgb(118, 33, 4); /*red*/
}

div#content ul li h3 {
	color: rgb(118, 33, 4); /*red*/
}

div#content ul li a.read-more,
div#content p a.back-link {
	color: rgb(118, 33, 4); /*red*/
}

/* Copyright
===========================================================================*/

p#site-by-rd2 a {
	color: rgb(118, 33, 4); /*red*/
	text-decoration: none;
}

p#site-by-rd2 a:hover {
	color: #000;
}