/*
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 */
body { 
	background: url('http://www.supplyexpert.com/wp-includes/images/sidebarbg.gif') repeat top left;
	color: #333333;
}
.custom #page {
	padding: 0 2.4em 2em 2.4em;
	background: url('http://www.supplyexpert.com/wp-includes/images/line-bg.jpg') no-repeat top left; 
}
/*  site background color */
.custom #container { 
	background-color: #fff; 
}

/* Header */
.custom #header  {
	border: none;
	padding-top:0;
	padding-bottom:1.5em;
}

.custom #header #logo a {
	color: #CC0000;
	font-weight: normal;
}
.custom #header #tagline {
	color:#1860aa;
}
.custom #logo {
	margin-top:0px;
}

/*  POST HEADINGS */
.custom h1, h2 {
	color:#CC0000;
}
.custom h2 a {
	color:#1860aa;
}
.custom .headline_area h1, { 
	padding: 0px; 
	font-size:30px;
	border-bottom: 1px dashed #eee;
	color:#CC0000;
}
.custom .sidebar h3 {
	font-weight: bold;
}

/*  CONTENT */
/*  line-height fix */
.custom .format_text h1 { 
	line-height:1em;
	margin-bottom:5px; 
}
/*  remove comments brackets */
.custom .format_text .to_comments span.bracket {
	display:none;
}
.custom .comments_intro span.bracket {
	display:none;
}
.custom .format_text .to_comments {
	display:none;
}

/*  change widget box background */
.custom li.widget .widget_box {
	background-color: #E8F1FE
}

/* SIDEBARS */
/* Multimedia Image Rotator */
.custom .image_box {
	background: none;
	border: none;
}

.custom #image_box img {
	border: none;
	margin-left: auto;
	margin-right: auto;
}

/* FOOTER */

.custom #footer { 
	font-size: 14px; 
	text-decoration: none; 
	font-style:bold;
}
.custom #footer p { 
	font-size: 12px; 
	text-decoration: none; 
	font-style:normal;
        text-align:left;
	color:#333333;
}
.custom #footer a { 
	color: #333333;
}