/*
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/
*/

/* Header Image */

/*
.custom #header { border-bottom:none;height:100px; padding-top:0;padding-bottom:0;background:url(images/banner1.jpg) center left no-repeat; }
.custom #header #logo a { display: block; height: 100px; width: 189px; background: url(images/logo.jpg) no-repeat; outline: none; float:right;   color:#2D3338;}
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0;   }
*/
.custom #header { border-bottom:none;height:100px; padding-top:0;padding-bottom:0; background:url(images/banner1.jpg) #2D3338 center  right no-repeat; }
.custom #header #logo a { display: block; height: 100px; width: 213px; background: url(images/logo3.jpg) center right no-repeat; outline: none; float:left;   color:#2D3338;}
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0;   }
.custom #post-1 h1 { display: none; }
.custom #post-23 h1 { display: none; }
.custom #post-3 h1 { display: none; }
.custom #post-30 h1 { display: none; }
.custom #post-11 h1 { display: none; }
.custom #post-161 h1 { display: none; }
.custom #post-162 h1 { display: none; }
.custom #post-170 h1 { display: none; }
.custom #post-172 h1 { display: none; }
.custom .to_comments {display:none; }
.custom #comments {display:none; }

.custom .sidebar h5 
{
  font-size: 0.8em; 
  font-variant:normal;
  text-align: left;
  color:#A7EBE6;
}

.custom #footer h7
{
  font-size: 1.2em; 
  font-variant:normal;
  text-align: left;
  color:#A7EBE6;	
}

.custom #content 
{
    margin : 1.0em;
    width: 70.0em; 
    border : 1px solid #333;
}

.custom .entry-title 
{
    text-transform: lowercase;
    font-size:1.6em;
    font-weight : bold;
}

.custom h3
{
  text-transform: lowercase;
  font-size:1.6em;
  font-weight : bold;
  color:#1E90FF;	
}

.custom h4
{
  text-transform: lowercase;
  font-size:1.2em;
  font-weight : bold;
  color:#1E90FF;	
}

.custom .sidebarheader 
{
     background: url(images/sidebarheader.jpg) center center no-repeat;
     height: 60px;
}

.custom .twitter
{
    color:#A7EBE6;
}

.custom #footer 
{
  font-size: 1em; 
  font-variant:normal;
  text-align: center;
  color:#777;
}
.custom .menu a
{
  text-transform: lowercase;
  padding : 0.2em 0.5em 0.2em 0.5em;;
}

.custom .tpara
{
    line-height : 1.0em;
    font-family: arial,verdana,sans-serif;
    font-size: 0.8em; 	
}

.custom .image_block
{
background-attachment: scroll;
background-clip: border-box;
background-color: transparent;
background-image: none;
background-origin: padding-box;
display: block;
font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
font-size: 13px;
line-height: 13px;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
height: 200px;
text-align: left;
}


