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

/*
	Color Glossary
	
	rgb(210, 216, 217); bluish-gray
	rgb(70, 70, 70); dark gray
	
	rgb(0, 31, 66); dark blue
	rgb(51, 76, 103); medium blue 
	rgb(75, 141, 200); blue
	rgb(231, 79, 32); orange
*/

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

html,
body {
	background-color: rgb(210, 216, 217); /* bluish-gray */
}

body div#page {
	color:            rgb(70, 70, 70); /* dark gray */
/*	background-color: white;*/
}

body div#footer {
	color: rgb(70, 70, 70); /* dark gray */
}

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

/* Misc. Block */

/* Misc. Inline */

/* Links */

a:link {
	color: rgb(75, 141, 200); 
}

a:visited {
	color: rgb(75, 141, 200);
}

a:focus,
a:hover,
a:active {
	color: rgb(231, 79, 32); /* orange */
}

/* Headings */

h3 {
	color: rgb(0, 31, 66); /* dark blue */
}

/* Lists */

/* Forms */

/* Data Tables */

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

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

/* Primary Content */

div#page div#primary-content {
	border-top-color: rgb(165, 198, 227);
}

div#primary-content p#summary {
	color: rgb(0, 31, 66); /* dark blue */
}

div.vcard .fn,
div.vcard .fn a {
	color: rgb(0, 31, 66); /* dark blue */
}

div.vcard a:hover {
	color: rgb(231, 79, 32); /* orange */
}

/* Supporting Content */

div#content div#supporting-content {
	border-top-color: rgb(165, 198, 227);
	border-bottom-color: rgb(165, 198, 227);
}

div#supporting-content blockquote {
	color: rgb(51, 76, 103); /* medium blue */
}

div#supporting-content cite {
	color: rgb(90, 90, 90);
}

/* Pagination */

ul#pagination li {
	color: rgb(0, 31, 66); /* dark blue */
}

ul#pagination li a {
	color: rgb(0, 31, 66); /* dark blue */
}

ul#pagination li a:hover {
	color: rgb(231, 79, 32); /* orange */
}

/* Footer
===========================================================================*/

div#footer a {
	color: rgb(70, 70, 70); /* dark gray */
}

div#footer a:hover {
	color: rgb(231, 79, 32); /* orange */
}

* html body div#footer {
	margin-top: -1px;
	background-color: rgb(210, 216, 217); /* bluish-gray */
}