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

/* Custom clickable logo */
.custom #header, #header #logo { 
	padding: 0px;
	margin: 0px;
}
.custom #header #logo a { 
	display: block; 
	width: 960px; 
	height: 220px; 
	background: url('/wp-content/themes/thesis/images/canadian_seo_header.jpg') no-repeat; 
	outline: none; 
	text-indent:-2001px; 
}

a {
color: #b91f03;
}

a:hover {
color: #000;
}

body {
background: #1286ab url('/wp-content/themes/thesis/images/bodybg.gif') repeat-x top left;
}

#container {
background-color: #fff;
border: 1px solid #603e18;
border-top: 0;
border-bottom: 0;
}

ul#tabs {
background: #c81d01 url('/wp-content/themes/thesis/images/navbg.gif') repeat-x bottom left;
min-height: 30px;
font-family: 'Trebuchet MS', helvetica, arial;
font-size: 13px;
padding-left: 10px;
}

ul#tabs li {
padding-left: 18px;
padding-right: 18px;
border: 0;

}

ul#tabs li.current_page_item, ul#tabs li.current-cat {
background: transparent url('/wp-content/themes/thesis/images/icon-whiteleaf.png') no-repeat 0 50%;
border: 0;
color: #f0d69d;
}

ul#tabs li.page_item{
background: transparent url('/wp-content/themes/thesis/images/icon-whiteleaf.png') no-repeat 0 50%;
border: 0;

}

ul#tabs li a {
color: #fff;
letter-spacing: 0;

}

ul#tabs li a:hover {
color: #f0d69d;
}

ul#tabs li.current_page_item a {
color: #f0d69d;
}

ul#tabs li  {
background: url('/wp-content/themes/thesis/images/icon-whiteleaf.png') no-repeat 0 50%;
}

ul#tabs li.rss {
padding-right: 10px;
font-size: 14px;
}
ul#tabs li.rss a {
background: url('/wp-content/themes/thesis/images/icon-feed.png') no-repeat 100% 50%;
padding-right: 25px;
color: #fff;
}

ul#tabs li.rss a:hover {
color: #f0d69d;
}

#content h1 {
font-family: 'Trebuchet MS', helvetica, arial;
color: #492f16;
font-size: 21px;
line-height: 24px;
}

#content h2 {
font-family: 'Trebuchet MS', helvetica, arial;
color: #492f16;
font-size: 21px;
line-height: 24px;
}

#content h2 a {
color: #492f16;
}

.headline_meta {
background: url('/wp-content/themes/thesis/images/icon-redleaf.gif') no-repeat 0 90%;
padding-left: 25px;
padding-top: 5px;
}

.sidebar h3 {
color: #492f16;
font-family: 'Trebuchet MS', helvetica, arial;
text-transform: uppercase;
letter-spacing: 0;
font-size: 15px;
background: url('/wp-content/themes/thesis/images/bg-sidebarheader.gif') no-repeat bottom left;
padding-top: 10px;
border-bottom: 1px solid #99cbda;
}

/* Subscribe to Comments */
.wrapHolder {
	margin-left: auto;
	margin-right: auto;
	width: 959px;
	padding: 20px;
	background: #fff;
	border: 1px solid #603e18;
	border-top: 0;
	border-bottom: 0;
}

.wrapTop {
	float: left;
	padding: 0px;
	text-align: center;
	min-height: 20px;
	height: auto !important;
	height: 20px;
	margin-bottom: 15px;
	margin-top: 15px;
}

.wrapHolder .updated-error
{
	margin-bottom: 10px;
	padding: 0 10px 0 10px;
}

body.custom #content.subscription-manager {
	margin-left: auto;
	margin-right: auto;
}

.wrapHolder .options {
	padding: 10px;
	margin-bottom: 15px;
}

.wrapHolder p {
	margin-bottom: 10px;
}

.wrapHolder input[type='submit'] {
	cursor: pointer;
	font-weight: bold;
}

.wrapHolder input, .wrapHolder textarea
{
	padding: 4px;
	font-size: 1.3em;
	position: relative;
	font-family: Verdana, sans-serif; 
}

.wrapHolder #removeSubscription {
	padding: 0 0 0 20px;
}