/*
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!
*/


body.custom {
	background-image: url(images/alleybgorangebottom.jpg);
	background-color: #a94919;
	background-position: center top;
	background-repeat: no-repeat;
}

/*
.custom #logo { 
	background-image: url(images/ball.png);
	background-repeat: no-repeat;
	background-position: top left;
	height: 100px;
	padding-left: 120px;
}

.custom #masthead h1 {
	text-align: center !important;
	font-weight: bold;
}
*/

/*.custom #rotating_image {display: none; }*/

.custom a { color: #0066cc;}

h3, 
#masthead h1, 
#masthead #tagline, 
table#wp-calendar td, 
#footer p, 
#footer a, 
#footer a:visited, 
.sidebar h2 {
	color: #eee;
}

.post_author, 
.post_author a, 
.post_author a:visited, 
.post_author a:hover, 
.to_comments,
#comment_form,
.form_submit,
.comment_num a, 
.comment_num a:visited, 
.comment_time {
	color: #333;
}

.custom #content_inner h3 {
	color: #333;
}

.custom #content_box {

}

.custom #content_inner {
}


.custom .textwidget img {
	margin: 5px;
}

.custom .sidebar a {
	font-weight: bold !important;
}

.custom #pages h2 {
	display: none;
}

.custom #text-334219041 {
	margin-bottom: 9px;
}

.custom #linkcat-3 h2 {
	font-family: Verdana, sans-serif;
	font-size: 1.2em;
	font-weight: bold;
	color: #0066cc;
}

/* sidebars narrower, content wider */

.custom .sidebar {
width: 150px;
}

.custom ul.sidebar_list li.widget, .custom ul.sidebar_list li.linkcat {
width: 150px;
}

.custom #left_box {
width: 700px;
}
.custom #content {
width: 535px;
}

.custom #content_inner {
width: 525px;
}

.custom #content_box {
background: transparent url(images/whitebg.gif) repeat-y scroll 50% 0;
}

.custom .navigation {
width: 485px;
}

.custom #comments,
.custom #comment_list,
.custom dt.comment {
width: 515px;
margin-left: 3px;
}

.custom dl#comment_list dt.comment,
.custom dl#comment_list dd.comment {
width: 500px;
}

body.custom h2.textwidget {
	display: none !important; 
}
