/*
File:			custom.css
Description:	Custom styles for Thesis

BASIC USAGE:

If you have enabled the custom stylesheet in the Thesis options panel, the <body> tag 
will be appended with the "custom" class, like so: <body class="custom">. You can use 
the "custom" class to override *any* CSS declarations contained in the 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!

More information about styling your Thesis installation using this file can be found
in the User's Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/

site background color #999999
header background color #999999
page background color #999999
content background color #6B6B6B
post_box background color #CCCCCC
teaser background color #CCCCCC
footer background color #6B6B6B
link hover color #A80000

*/

.custom #header {
	width: 100%;
	height: 200px;
	background: #999999;
	margin-top: 50px;
	margin-bottom: 0px;
	padding: 0px;
	border-top: none;
	border-left: none;
	border-bottom: none;
	border-right: none;
	border-color: #000000;
	border-width: 1px;
}

.custom #banner_ad {
	float: right;
	width: 700px;
	height: 150px;
	background: #FFFFFF;
}

.custom #header #logo_image {
	width: 30%;
	float: left;
}

.custom #logo {
	width: 68%;
	float: left;
	margin-top: 0px;
	margin-left: 10px;
}

.custom #logo a:hover {
	color: #CCCCCC;
}

.custom #tagline {
	float: left;
	width: 50%;
	margin-top: 20px;
	margin-left: 10px;
}

.custom .menu {
	background: #6B6B6B;
	width: 100%;
	height: 39px;
	margin-top: 0px;
	margin-bottom: 2px;
	border-top: solid;
	border-left: solid;
	border-bottom: solid;
	border-right: solid;
	border-color: #000000;
	border-width: 1px;
}

.custom .menu li {
	margin: 0px;
	border: none;
}

.custom .menu li a {
	height: 25px;
	background: #CCCCCC;
	border-top: none;
	border-left: none;
	border-bottom: none;
	border-right: solid;
	border-width: 1px;
}

.custom .menu li a:hover {
	background: #AAAAAA;
	border-color: #000000;
}

.custom .current a {
	background: #AAAAAA;
}

.custom .current a:hover {
	background: #AAAAAA;
}

.custom .menu .rss {
	height: 16px;
	margin-top: 3px;
	margin-right: 5px;
	padding: 0px;
	background: transparent urt('images/icon-rss.gif') no-repeat scroll 100% 50%;
}

.custom .menu .rss a {
	height: 16px;
	padding-top: 5px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-right: 20px;
	background: transparent url('images/icon-rss.gif') no-repeat scroll 100% 50%;
	border: none;
}

.custom .menu .rss a:hover {
	height: 16px;
	padding-top: 5px;
	padding-left: 0px;
	padding-bottom: 0px;
	padding-right: 20px;
	background: transparent url('images/icon-rss.gif') no-repeat scroll 100% 50%;
	border: none;
}

.custom .page {
	border-left: none;
	border-right: none;
	border-color: #000000;
	border-width: 1px;
}

.custom #content_box {
	background: #6B6B6B;
	margin-top: 0px;
	border: solid;
	border-color: #000000;
	border-width: 1px;
	
}

.custom #content {
	width: 68.2em;
	background: #6B6B6B;
	border-right: none;
	border-color: #000000;
	border-width: 1px;
}

.custom .post.post_box {
	margin-top: 10px;
	margin-botom: 0px;
	padding: 10px;
	background: #CCCCCC;
	border: solid;
	border-color: #000000;
	border-width: 1px;
}

.custom .teaser {
	background: #CCCCCC;
	width: 30.1em;
	margin-right: 14px;
	padding: 4px;
	border: solid;
	border-color: #000000;
	border-width: 1px;
}

.custom #sidebars {
	background: #750000;
	margin-top: 0px;
	margin-left: 0px;
	margin-bottom: 0px;
	margin-right: 0px;
	border-left: solid;
	border-right: none;
	border-width: 1px;
}

.custom #sidebars a {
	color: #999999;
}

.custom .sidebar h3 {
	padding-left: 0.4em;
	border-top: none;
	border-left: none;
	border-bottom: solid;
	border-right: none;
	border-color: #530000;
	border-width: 1px;
}

.custom #multimedia_box {
	background-color: #7F7F7F;
	border-top: none;
	border-left: none;
	border-bottom: solid;
	border-right: none;
	border-color: #000000;
	border-width: 1px;
}

.custom #image_box {
	border-color: #444444;
}

.custom a {
	text-decoration: none;
}

.custom a:hover {
	color: #A80000;
}

.custom .format_text .to_comments .bracket {
	color: #000000;
}

.custom #respond_intro p {
	color: #CCCCCC;
}

.custom #commentform input {
	background-color: #CCCCCC;
}

.custom #commentform textarea {
	background-color: #CCCCCC;
}

.custom #commentform .form_submit:hover {
	color: #A80000;
}

.custom #commentform .required {
	color: #750000;
}

.custom .comments_intro p {
	color: #333333;
}

.custom .comment_time a {
	color: #333333;
}

.custom #comment_list p {
	color: #CCCCCC;
}

.custom #comment_list .bypostauthor {
	background-color: #F1F1F1;
}

.custom #comment_list .bypostauthor p {
	color: #000000;
}

.custom #cancel-comment-reply-link {
	color: #000000;
	background-color: #750000;
	border-color: #000000;
	border-width: .18em;
}

.custom #footer {
	width: 100.5em;
	background: #6B6B6B;
	margin-top: 2px;
	border-top: solid;
	border-left: solid;
	border-bottom: none;
	border-right: solid;
	border-color: #000000;
	border-width: 1px;
}

.custom #footer a {
	color: #780000;
	border-color: #000000;
}

.custom #footer a:hover {
	color: #A80000;
	text-decoration: none;
}