/*
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/
*/


/* Defining global body styles*/


body.custom {
    background: #dfca88 url('/wp-content/uploads/background.png') 50% 0 no-repeat;
}
.custom #container {
    margin-top: 94px;
    margin-bottom: 2em;
}
.custom #img {
	padding-top: 0;
margin-top: 0;
}

.custom #header{
	padding-left: 0;
	padding-right: 0;
	padding-bottom: 0;
        padding-top: 0;
	}	
	
.custom #header #logo{
	background: url('/wp-content/uploads/header1.png') no-repeat;
	height: 98px;
	width: 987px;
	margin-left: 0.0em;
	}
 
.custom #header #logo a{
	text-indent: -9999px;
	display: block;
		}	
	
.custom #header #tagline{
	text-indent: -9999px;
	}
.custom #header #logo a{
	text-indent: -9999px;
	display: block;
		}	
.custom #header #tagline{
	text-indent: -9999px;
	}

.custom .menu {
	background-color: #5caa9a; padding-left: .5em;padding-right: .5em; } 
/* Twitter widget Before content */
#twitter_div {
  background:transparent url(http://bookninjas.com/wp-content/themes/twitter_verysmall.gif) no-repeat scroll 15px 10px;
  padding:10px 0 10px 70px; position:relative;
}
#twitter_div li {
  font-family:georgia,serif;
  font-size:1em;
  font-size-adjust:none;
  font-stretch:normal;
  font-style:normal;
  font-variant:normal;
  font-weight:normal;
  line-height:normal;
  list-style-image:none;
  list-style-position:outside;
  list-style-type:none;
}
#twitter_div li span {
  display:block;
  font-size:1.1em;
  font-style:italic;
}
#twitter_div ul {
  margin:0 0 8px 12px;
}
#twitter_div li span a a:visited {
  color:#2A69A3; text-decoration:none;
}
#twitter_link {
  color:#2A69A3;
  text-decoration:none;
  font-size:1em;
  font-style:italic;
  float:right;
  margin-right:25px;
}
/* Twitter widget Before content */ 

