/*
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 IMAGE *****/


.custom {background: #FFFFFF url('images/tiled090.jpg');}


 /***** CUSTOM HEADER *****/

.custom #page
{margin-top: 0px;
padding-top:0px;}

.custom #header { border-bottom:none;
height:90px;
padding-top:0px;
padding-bottom:0px;
margin: 0px 0 0px 0px;
background:url(images/header2.png) no-repeat 10px 10px; }

.custom .menu {
padding: 100px 0 0px 0;
border-left: 0px;
border-right: 0px;
}

.custom .menu .tab-home {
border: 5px;
}








 /***** STYLE LOGO AND TAGLINE *****/

.custom #header #logo a {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:visited {
   color: #111111;
   text-decoration: none;
}

.custom #header #logo a:hover {
   color: #ffffff;
   text-decoration: underline;
}
.custom #header #logo a:active {
   color: #ffffff;
   text-decoration: none;
}

.custom #header #tagline {
   color: #111111;
   font-weight: normal;
   padding-left: 0px;
}


 /***** remove H1 from home page *****/

.custom.welcome h2
 {
   display:none;
}




 /***** PULL QUOTES *****/

.custom .format_text blockquote {
   border: 1px dotted #aaa;
   color: ##8387AF;
   background-color: #FFF5DF;
   padding: 10px;
   font-size: 1.1em;
}

.custom .format_text blockquote.left {
   margin: 5px 20px 3px 0;
}

.custom .format_text blockquote.right {
   margin: 5px 0 3px 10px;
}

 /***** DISABLE ?Comments on this entry are closed.? *****/

.custom .comments_closed p {
  display: none;
}


 /***** CUSTOM FOOTER - 3 COLUMNS *****/

#footer{
 background: #eeeeee;
}
.custom #footer {
 height: 100%;
 width: 100%;
 border-top:2em solid #DCC180;
 background: #EFE4D1;
padding:0em;
}
.custom #footer a{
 border-bottom: 1px none #cccccc;
color: #DCC180;
}
.custom #footer {
 text-align:center;
}
/* footer widget area setup */
#footer_setup {
 /* widgetized footer background (not footer background) */
 background: url(images/chess-white1.png) 10px 10px no-repeat #6F0707;
 /* widget padding */
 padding:2.2em;
 /* margin at bottom of widgets */
 margin-bottom: 25px;
 /* do not change this! */
 overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
 /* contents alignment */
 text-align: left;
 /* widget width */
 width: 30%;
 /* space between widgets */
 padding-right: 20px;
 /* text color */
 color: #FFF;
 /* paragraph text size */
 font-size: 1.2em;
 /* do not change these! */
 display: inline-block;
 float: left;
 height: 100%;
}

/* widget item headers http://adwordsshop.com/wp-admin/admin.php?page=thesis-file-editor*/
#footer_setup .footer_items h3 {
 /* font size */
 font-size: 1.5em;
 /* bold or not */
 font-weight: bold;
 /* uppercase or not */
 text-transform: uppercase;
 /* space out the letters*/
 letter-spacing: 0px;
 /* font color*/
 color: #ffffff;
 /* padding under header text */
 padding-bottom: 3px;
 /* border under header text */
 border-bottom: 3px none #ffdf00;
 /* distance between border and widget text */
 margin-bottom: 5px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style:none;
 font-size:1.1em;
 line-height:1.2em;
margin: 0 0 0.6em 0em;
padding: 0px;
}
#footer_setup .footer_items ul { margin: 0em 0 2em 0; padding: 0px; }


 /***** THREE COLUMN HOMEPAGE *****/


.containerhome {
  width: 840px;  
/* Centering for IE6+ in strict mode,
Firefox, and other modern browsers */
margin: auto;
/* Don't center every line of text -
we inherited this setting from body */
text-align: left;

}
  
.lefthome {
  float: left;
  padding: 0px 10px 0px 0px;
  width: 0px;
}

.middlehome {
  top: 10px;
  margin-left: 0px;
  margin-right: 5px;
  padding-top: 0px;
}

.righthome {
  float: right;
  padding: 0px 5px 0px 5px;
  width: 310px;
}


 /***** TESTIMONIALS IMAGES *****/

.tm-image {
margin: 6px 10px 10px 0px;
float: left;
}


 /***** FIXED FOOTER IMAGE *****/

#bottomimage {
position:fixed;
bottom:10px;
left:1050px;
z-index:-1000;
}

