/*
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/
*/


a {
/*
color:#858585;
*/
color:#861727;
text-decoration:underline;
}

a:hover {
color:#861727;
text-decoration:none
}

a.link {
color:#ffffff;
font-size:9px;
text-decoration:none
}

a:hover.link {
color:#861727;
/*
color:#fcfcfc;
*/
font-size:9px;
text-decoration:none
}

#articleBody a.sectionLink { color: #111; text-decoration: none; }

#articleBody a.sectionLink:hover { color: #861727; }


#articleBody h2 { font-weight: bold; font-size: 1.8em; margin-top: 0; margin-bottom: 0;}
#articleBody .byline { margin-top: 0; }

#articleBody h2,
#articleBody h3,
#articleBody h4,
#articleBody h5,
#articleBody h6 { color: #111111; }

#articleBody h3 { font-size: 1.5em; margin-bottom: 0; }
#articleBody h4 { font-size: 1.2em; margin-bottom: 0;}
#articleBody h5 { font-size: 1em;  margin-bottom: 0;}

div.toc { margin-top: 1em; }


div.tipHeading { text-align: center; font-weight: bold; margin-bottom: 3px; }

div.note, div.alert { margin: 1em 2em; padding: .6em .8em; }

div.note { background: #f5f5f5; border: 1px solid #ddd; }

div.alert { background: #ffffa0; border: 1px solid #e5e597; }

td pre, pre { font-family: Consolas, "Andale Mono", Courier, "Courier New"; background: #eee; border: 1px solid #ddd; overflow: auto; clear: both; }

td pre, pre {
font-size:0.929em;
line-height:1.385em;
margin-bottom:1.692em;
padding:0.615em 0.846em;
}




.toc { margin-bottom: 2em; }

.toc2 { text-indent: 1.5em; }
.toc3 { text-indent: 3em; }
.toc4 { text-indent: 4.5em; }


div.figCaption { font-weight: bold; font-size: .8em; margin-bottom: 2em; }

div.exampleCaption { font-weight: bold; font-size: .9em; }

ul.simple { list-style-type: none; }

div.figure { text-align: center; }

div.docbookSidebar { padding: 20px; padding-bottom: 0; background-color: #c5c5c5; border: 3px ridge #666; margin-bottom: 1em; }

div.docbookSidebarTitle { font-weight: bold; text-align: center; margin-bottom: 1em; }

/* disable code highlights in sidebars */
.docbookSidebar code { background-color: transparent; }

table.articleTable { font-size: 9pt; }

table.articleTable caption {font-weight: bold; font-size: .9em; }

table.articleTable th { background-color: #999; }

table.articleTable td,
table.articleTable th { 
                        border: thin solid;
                        padding: .2em;
                      }

table.articleTable { border-collapse: collapse; width: 100%; /*margin-bottom: 2em;*/ }

table.articleTable caption { text-align: left; }

.testimonials  blockquote {
    font-size: 13pt;
    font-style: italic;
    color: black;
  }

.testimonials  blockquote em {
    font-weight: bold;
  }

.testimonials  blockquote cite {
    font-style: normal;
    font-size: 11pt;
  }

.testimonials  img {

    float: left;
	margin-left:0;
	margin-right:10px;
    padding: 0px;
  }

.testimonials  img.right {
    float: right;
    padding: 0px 0px 0px 10px;
  }

.testimonials img.nofloat {
 padding: 0;
 float: none;
}

img.bookLeft {
  float: left;
  padding: 0px 0px 10px 0px;
}

img.bookRight {
  float: right;
  padding: 0px 20px 0px 10px;
}

.testimonials  blockquote p:before { content: open-quote; font-weight: bold; }
.testimonials  blockquote p:after { content: close-quote; font-weight: bold; }

.testimonials  blockquote.book {
    font-size: 12pt;
  }

.testimonials  .citation {

    /* bump the citation up a bit */
    position: relative;
    top: -2em;

    font-size: 10pt;
    line-height: 1.2em;
    text-align: right;
  }



body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}





