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



h1, h2, h3, h4, h5,h6
{
	color:#fff;
}

a
{
	color:#bfbfbf;
	font-weight:bold;
}

a:visited
{
	color:#bfbfbf;
	font-weight:bold;
}

a:hover
{
	color:#bfbfbf;
	font-weight:bold;
	text-decoration:underline;
}

#container
{
	padding: 0 0 0 0;
}

#content_box
{
	position:relative;
	top:-70px;
	background:none !important;
}

h2 a
{
	color:#fff;
}

h2 a:hover
{
	color:#fff;
	text-decoration:underline;
}

h2 a:visited
{
	color:#fff;
}

p
{
	color:#bfbfbf;
}

blockquote
{
	color:#bfbfbf;
}

body
{
	background-color:#000;
}

#logo
{
	height:0px;
}


.custom
{
	background-color:#000;
}

#page
{
	text-align:center;
}

#masthead
{
	background-image:url(images/header.jpg);
	background-position:center top;
	background-repeat:no-repeat;
	width:860px;
	height:270px;
}

#masthead h1
{
	display:none;
	text-indent:-9999px;
}

#masthead #logo
{
	text-indent:-9999px;
	
}

#masthead #rss_subscribe
{
	display:none;
	width:14px;
	height:14px;
}

#masthead #rss_subscribe a
{
	background:transparent url(images/rss_feed.gif) no-repeat scroll 0%;
	height:14px;
	width:14px;
}

#rotating_image
{
	display:none;
}

.navigation
{
	background-color:#000;
}

.comment_list
{
	background-color:#000 !important;
}

dl#comment_list dt.author, dl#comment_list dd.author 
{
	background-color:#000 !important;
}

dl#comment_list dt.comment
{
	background-color:#000 !important;
}

dt
{
	color:#fff;
}

#right_bar 
{
	border-left:1px solid #848484;
	padding:0pt 0pt 0pt 9px;
	min-height:1000px;
}

#left_bar
{
	border-right:1px solid #848484;
	padding:0pt 9px 0pt 0pt;
	min-height:1000px;
}

.navigation
{
	border-top:1px solid #848484;
	margin-left:12px;
	width:420px;
}

#tagline
{
	display:none;
}

.comments_intro
{
	margin-left:12px;
	margin-right:12px;
}

dl#comment_list dd.comment
{
	margin-left:12px;
	width:420px;
}