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


body.custom { background: #fff url('images/deb-bg.png'); }


.custom .pinterest-thumbs { float:right; margin-bottom:0.6em; }
		.custom #page { margin:50px 0; padding: 2em 1.9em; background: #fff; border: 0.1em solid #b5b198; color: #333; }


.custom .format_text blockquote {
width:50%;
color:#000;
background:#fff url('images/blockquotes-1.png') 1.4em 1.6em no-repeat;
margin-left:auto; margin-right:auto;
padding:1.6em 1.6em 0.2em 9em;
border:1px solid #111;
}
.custom a:link {color:#5fb9e2;}
.custom a:visited {color:#5fb9e2;}
.custom a:hover {color:#5fb9e2; text-decoration:underline;}

.custom #header {background: url('images/deb-header.png') no-repeat; height: 297px; width: 1055px; border: 0px; margin: 0px; padding: 0px;}
	.custom #header #logo { display:none; border: 0px; margin: 0px; padding: 0px;}
	.custom #header #tagline { display:none; border: 0px; margin: 0px; padding: 0px; }

.custom ul#tabs {margin: 0px; padding: 0px; background: url('images/tab-bg.png') 4px 0px repeat-x; list-style: none; border-width: 0;}
	.custom	ul#tabs li { background: #B1E3FA; border-color: #fff;}
	.custom	ul#tabs li.current_page_item, ul#tabs li.current-cat { padding-bottom: 0.1em;
            background: #fff; border: 1px solid #fff; border-bottom: 0px;}
	.custom	ul#tabs li.rss { padding-right: 5px; border: none; float: right; background: none;}
		
.custom #footer {text-align: left; padding:0.5em 0; border-top: 1px solid #ccc; background: #fff;}

.custom #content {
float:right;
width:88em;
}

.custom .teaser {
width:42em;
}

.custom .teasers_box {
width:86em;
}

.custom .categorytitle {
  font-size: 100%;
  color: #999;
  font-weight: bold;
}

.custom li.MainCategory strong.category a.productlink {
  color: #5fb9e2;
  font-weight: normal;
}

.custom li.MainCategory strong.category a.productlink:visited {
  color: #5fb9e2;
  font-weight: normal;
}

.custom li.MainCategory strong.category a.productlink:link {
  color: #5fb9e2;
  font-weight: normal;
}

.custom li.MainCategory strong.category a.productlink:hover {
  color: #5fb9e2;
  font-weight: normal;
}

..headline_area {
	position:absolute;
	top:-1500px;
	left:-1500px;
}