/*
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/
*/



/*---:[ begin custom header information]:---*/
/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { 
padding-top: 0em;
padding-right: 0em;
padding-bottom: 20px;
padding-left: 0em;}
/*---:[ end custom header information]:---*/

/*---:[ begin custom navigation bar information]:---*/

/*---:[ end custom navigation bar information]:---*/

/*---:[ begin body information]:---*/
/*---:[ Solid background with slick borders around your "page" area ]:---*/ 
body.custom {
    background: url("http://www.lactivistleanings.com/wp-content/themes/thesis_16/custom/images/background.gif")}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0em;
    background: #dbf1a9;
    border: 0.4em solid #92b842;
}

/*---:[ end background and container information]:---*/
/*---:[ end body information]:---*/



/*---:[ begin block qoute information]:---*/
.custom blockquote { color: #303030; padding-top: 10px; padding-bottom: 0.5px; padding-right: 5px;
font: italic 12pt Georgia, "Times New Roman", Times, serif; -moz-border-radius: 5px;
-webkit-border-radius: 5px;}

.custom blockquote { background: #e9f7ca; }
/*---:[ end block quote information]:---*/


/*---:[ begin pull qoute information]:---*/
.custom .format_text blockquote.left {
   border: none;
   color: #bbb;
   background-color: #fff;}

.custom .format_text blockquote.right {
   border: none;
   color: #bbb;
   background-color: #fff;}
/*---:[ end pull quote information]:---*/

/*---:[ begin drop quote information]:---*/
.custom .format_text .drop_cap {
  font-family: Georgia;
  font-weight: bold;
  font-size: 1.8em;
  color: #A24a71;}
/*---:[ end drop quote information]:---*/


/*---:[ begin sidebar information]:---*/
 
/*---:[ end sidebar information]:---*/

/*---:[ begin multimedia information]:---*/
.custom #image_box {background: #d8f0ef;}  /* MultiMedia box controls */
.custom #video_box {background: #d8f0ef;}  /* MultiMedia box controls */
.custom #custom_box {background: #d8f0ef;}  /* MultiMedia box controls */
/*---:[ end multimedia information]:---*/

/*---:[ begin comment information]:---*/

/*---:[ begin #Comment information]:---*/
.custom .format_text .to_comments {
font-size:1.0em;
line-height:2.0em;}

.custom .format_text .to_comments span.bracket {color: #fff;}
.comments_intro p span.bracket { color: #fff; }
.custom .comments_intro p { color: #694a93; }
.custom .comments_intro p a { color: #92b842; }
/*---:[ end #Comment information]:---*/

/*---:[ begin comment numbering information]:---*/
.custom .comment_num {
  float:right;
  padding-left:5px;}
/*---:[ end comment numbering information]:---*/

/*---:[ end comment information]:---*/

/*---:[ begin teaser information]:---*/

.custom .teaser 
{
   width: 100%;
   margin-top: 0em;
   padding-top: 1em;
   padding-bottom: 1em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}

.custom .teasers_box 
{
   padding: 0px;
   border: 0px;
}

.custom .teasers_box h2 a {color: #92b842;}
.custom .teasers_box h2 a:hover {color: #a24a71;}

.custom .teaser .format_teaser 
{
   margin-bottom:0px;
   margin-top:0px;
}

/*---:[ end teaser information]:---*/
