/*
File:			custom.css
Description:	Custom styles for the Neoclassical Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's style.css file.

For example, if you wish to change the default link color to green, you would add the 
following declarations to this file:

	.custom a, .custom a:visited { color: #090; } <--- This makes links green
	
	.custom a:hover { color: #00f; } <--- This makes links blue when you mouse over them

Why this works:

By using the "custom" class, you are creating more specific CSS declarations for HTML
elements. CSS styling is applied through rules of specificity, and because declarations
prepended with .custom are more specific, they get applied when the page is rendered!
*/


.custom #masthead #logo { font: bold 1.6em Georgia, "Times New Roman", Times, serif; letter-spacing: -1px; }

.custom #masthead { width: 865px; margin: 0 0 10px 0; padding: 0 10px; text-align: left; }

.custom #container { width: 885px; margin: 0 auto; padding: 4px 0; }

.custom #masthead #logo a, #masthead #logo a:visited { color: #111; }

.custom #masthead #logo a:hover { color: #237fa1; text-decoration: none; }
	
.custom #masthead h1, #masthead #tagline { font: normal 1.3em/1.32857em Verdana, serif; padding: 0; color: #333; }

.custom li a, a:visited { color: #237fa1;  background: none;  text-decoration: underline; }

.custom li a:hover { color: #c00;  background: none;  text-decoration: underline; }

.custom ul li a:, a:visited { color: #237fa1; background: none; text-decoration: underline; }

.custom ul li a:hover { color: #c00;  background: none; text-decoration: underline; }
