/*
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!
*/

/* all links */
.custom a, .custom a:visited { color: #5a3d1c; }
.custom a:hover { color: #000; text-decoration: underline; }

/* headlines h2 */

.custom h2 { font-size: 1.8em; line-height: 1.11111em; padding: 1.11111em 10px 0 10px; border-top: 1px dotted #5a3d1c; color: #111; }

.custom	h2 a, h2 a:visited { color: #5a3d1c; }

.custom	h2 a:hover { color: #000; text-decoration: underline; }
	
.custom	h2.top { padding-top: 0; border-top: none; }
	
.custom	.sidebar h2 { font-size: 0.83333em; margin: 0 0 0.9em 0; line-height: 1.9em; padding: 0; text-transform: uppercase; letter-spacing: 2px; border-top: 0; border-bottom: 1px solid #000; }

/*  */
.custom h3 { font-size: 1.23077em; line-height: 1.25em; color: #000; }

/*  */

.custom h4 { font-size: 0.84615em; line-height: 1.81818em; text-transform: uppercase; letter-spacing: 2px; color: #000; }

/*---:[ global elements ]:---*/

.custom a, a:visited { color: #5a3d1c; text-decoration: none; }

.custom a:hover { color: #000; text-decoration: underline; }

.custom a img { border: none; }

.custom blockquote { font-family: Georgia, "Times New Roman", Times, serif; color: #5a3d1c; margin: 0 0 1.53846em 10px; padding: 0 0 0 10px; border-left: 2px solid #5a3d1c; }

.custom abbr, acronym { font-size: 0.84615em; border-bottom: 1px dotted #5a3d1c; letter-spacing: 1px; text-transform: uppercase; line-height: 1.0em; cursor: help; }

.custom sub, sup { line-height: 1.0em; }
	
.custom code { font: 0.92308em Consolas, "Andale Mono", Courier, "Courier New"; color: #5a3d1c; }

.custom pre { margin: 0 0 1.66667em 0; padding: 0.75em; font: 0.92308em/1.66667em Consolas, "Andale Mono", Courier, "Courier New"; background: #eee; border: 1px solid #5a3d1c; overflow: auto; clear: both; }






