/*
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: #ccb8a3;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.4em;
    background: #807366;
    border: 0.4em solid #a69685;
}

.custom #page {
    background: #fff;
}

#header { 
	background: url('images/b2c-partners-header.gif') no-repeat;
	height: 118px;
	padding-bottom: 0;
}

#sidebars { 
	background: #e6dace url('images/sidebar.gif'); 
	padding: 0 0 15px 0; margin: 0 0 0 0;
}

li.widget { 
	width: 230px; 
	margin:0; 
	border-bottom:dotted 1px; 
	border-color:#FFF; 
	padding:18px 15px 18px 15px;
	font-weight:normal;}
	
form.search_form p { margin:0 0 0 0; padding:0 0 0 0; }

form.search_form input { font: 10pt Georgia; background:#fff;}

/*---: li.widget .widget_box { background: none; border-style: none; border-color: #ccb8a3; } :---*/

li.widget h3 { 
	font-variant: normal; 
	color: #2361a1; 
	font: 10px Verdana; 
	font-weight:bold; 
	padding-bottom:6px; 
	text-transform: uppercase;}

.widget select { font: 10pt Georgia;padding:3px 0 0px 0; }

.widget option { height:16px; padding:2px 0 2px 0; }

.twitter-item { padding-bottom:10px; }

.widget_links li {font: 11px Verdana, Geneva, sans-serif;list-style:square;margin:0 0 0 16px;padding-bottom:6px;line-height:9px;color:#999;}

.wp_widget_mylinkorder li {font: 11px Verdana, Geneva, sans-serif;list-style:square;margin:0 0 0 16px;padding-bottom:6px;line-height:9px;color:#999;}

.twitter-timestamp {font-style:italic;color:#999;}

#sidebars h3 { padding:0 0 12px 0;margin:0; }
#sidebar_1 { padding:0;margin:0; }

/*---:[ core layout elements ]:---*/
div#top-strip {
background: #000;
font-family: Tahoma,Arial,Helvetica,Geneva,sans-serif;
font-size: 8pt;
height: 26px;
line-height: 18px;
}

div#top-strip a.b2c-logo {
display: block;
width: 125px;
height: 18px;
position: absolute;
left: 10px;
top: 3px;
background: url('images/top-strip.jpg');
text-decoration: none;
text-indent: -10000px;
padding: 0;
line-height: 18px;
}

div#top-strip ul {
position: absolute;
top: 4px;
right: 0;
}

div#top-strip li {
list-style:none;
float: left;
padding: 0 10px 0 0;
margin-right: 10px;
border-right: 1px solid #2a2a2a;
}

div#top-strip li a {
color: #ccc2b8;
text-decoration: none;
}

div#top-strip li a:hover {
color: #f4f4f4;
text-decoration: underline;
}

div.wrapper {
position: relative;
width: 890px;
margin: 0 auto;
}
