/*
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 a, .custom a:visited { color: #006600; } 
	
.custom a:hover { color: #669900;text-decoration:underline; } 

/*---:[ search widget ]:---*/

			.custom #search { padding: 0.83333em 0; border: 1px dotted #ddd; border-width: 1px 0; text-align: right; }

				.custom #search #s { width: 184px; padding: 2px; color: #333; background: #f2f2f2; font: normal 0.91667em Verdana, sans-serif; border: 1px solid #aaa; border-right-color: #eee; border-bottom-color: #eee; text-align: left; }

				.custom #search #s:focus { background: #fff; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }

				.custom #search input[type="submit"] { margin: 0.25em 0 0 0; padding: 2px 3px; color: #333; font: bold 1.0em Georgia, "Times New Roman", Times, serif; background: url('images/submit_bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; }

				.custom #search input[type="submit"]:hover { color: #237fa1; }
				
			/*---:[ default search form styles ]:---*/

			.custom #search_form { }
			
/*---:[ START UPDATE!!! ]:---*/
				.custom #search_form .search_input { width: 184px; padding: 2px; color: #333; background: #C0D5A9; font: normal 0.91667em Verdana, sans-serif; border: 1px solid #006600; border-right-color: #eee; border-bottom-color: #eee; }
				
				.custom #rotating_image img { display: block; border: 10px solid #C0D5A9; }
				
				.custom .archives h1 { font-size: 1.1em; line-height: 1.81818em; text-transform: uppercase; letter-spacing: 2px; margin: 0 0 1.81818em 0; padding: 0.36364em 10px 0.36364em 10px; background: #eee; border-top: 1px solid #006600; border-bottom: 1px dotted #006600; text-align: center; }
				
				.custom #search_form .search_input:focus { background: #C0D5A9; border-color: #006600; border-right-color: #ccc; border-bottom-color: #ccc; }
				
				.custom #footer { padding: 1.0em 0; border-top: 1px double #006600; }
				
				.custom dl#comment_list dt.author, dl#comment_list dd.author { background: #eff8e4 !important; }
		
				
				/*---:[ END UPDATE!!! ]:---*/