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

#page { background-color: white; width: 900px;
	padding: 5px;
	margin: 0;
	color: black;
}

/* This line gets rid of the site title & tagline by casting them out to the far left */

.custom #header { height: 384px; width: 900px; background: url(/wp-content/themes/thesis_151/custom/images/header.jpg) no-repeat; outline: none;
	border: 2px none silver;
	visibility: visible;
	padding: 0;
}
a { color: #2361a1; text-decoration: none; }

	#column_wrap { float: left;
	background-color: #fffeff;
}
	.post_box, .teasers_box { clear: both;
	background-color: transparent;
	border-style: none;
}
	.teasers_box .post_box { margin: 0; border-top: none; clear: none;
	background-color: transparent;
	border-style: none;
}
		.teaser { float: left;
	background-color: transparent;
}
		.teaser_right { float: right;
	background-color: transparent;
}
	.top { border: none !important;
}
		#sidebars { border-style: solid; border-color: #ddd;
	background-color: transparent;
}
			#sidebar_1 { border-style: none; border-color: #ddd;
	font-variant: small-caps;
	padding: 0;
	font-size: 1em;
}

		#sidebar_2 { border-style: none; border-color: #ddd;
	padding: 0;
}
			
			/*---:[ feature box ]:---*/
#feature_box { background: #eee;
	border-style: none;
}
			
			
ul#tabs:after, #content_box:after, #sidebars:after, .format_text:after, .teasers_box:after, .prev_next:after, ul.sidebar_list:after { content: "."; display: block; height: 0; clear: both; visibility: hidden;
	background-color: transparent;
}

	h2 a { color: black;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 0.8em;
}
/* Facebook Connect Styles */

.facebook-connect{ /* I added this div wrapper myself, was not part of the plugin */
  position: relative;
  float: right;
  width: 200px;
  margin-top: -65px;
  text-align: right
}

.facebook-connect a,  /* you probably won't need this css */
.facebook-connect a:hover {
	color: white;
	text-decoration: underline;
}
.facebook-connect a img,
.facebook-connect a:hover img{
  border: 0;
	color: white;
}

.facebook-connect .fbc_connect_button_area { /* This is the button container for your comment form */
  border: 0;
  float:none;
  margin:0;
  padding:0
}

body .fbc_profile_header { /* I added body to override the CSS from Facebook Connect's default CSS */
  background:#000000 url("images/quote-bg-repeat5.jpg") repeat-x;
  border:1px solid #3d3e3d;
  border-right: 0;
  padding:10px 5px 5px 10px;
  position:fixed; top: 45%; right:0;
  text-align:left;
  width:160px;
	color: white;
}

body .fbc_profile_header a.logout{ /* this is a custom class I added to the HTML in fbconnect.php */
  font-size: .9em;
  color: #999
}