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

/* Control how category image shows (get rid of bullet style) */
li.category_image { list-style: none; }

/* Custom background image for Thesis. */
/*---:[ Set 4: image of clouds that gently slides into a steely blue background color ]:---*/
body.custom { background: #394f5c url('images/bg-clouds.jpg') 50% 0 no-repeat; }
.custom #container { margin-top: 2em; margin-bottom: 2em; }
.custom #page { background: #fff; }
/*---:[ end Set 4 ]:---*/

/* Drop shadow on images. (But not if they have captions.) */
/*
.post img{
background: url(/blog/images/decor/shadow.gif) no-repeat right bottom;
padding: 4px 10px 10px 4px;
border-top: #eee 1px solid;
border-left: #eee 1px solid;
}
.wp-caption img{
background: none;
padding: 0px;
border-top: 0px;
border-left: 0;
}
.img-shadow-right img{
background: none;
padding: 0px;
border-top: 0px;
border-left: 0;
}
.img-shadow-left img{
background: none;
padding: 0px;
border-top: 0px;
border-left: 0;
}
.chicklet img{
background: none;
padding: 0px;
border-top: 0px;
border-left: 0;
}
.wp-print img{
background: none;
padding: 0px;
border-top: 0px;
border-left: 0;
}
*/

/* DCH - match blockquote */

p.block
{
  display:block;
  background:#FCFCFC  none repeat scroll 0 0;
  padding:2px 10px;
	clear:both;
	margin-left:0px;
	margin-right:0px;
}

img.right {
              margin-left : 10px;
              float : right;
              border-color: "#000000";
              }

img.left {
             margin-right : 10px;
              float : left;
              border-color: "#000000";
              }

/*
	Img-Shadow stuff from http://www.alistapart.com/articles/cssdropshadows/ and 
http://www.blogula-rasa.com/
*/

.img-shadow-left {
   float:left;
   background: url(/blog/images/decor/shadowAlpha.png) no-repeat bottom  right !important;
   background: url(/blog/images/decor/shadow.gif) no-repeat bottom right;
   margin: 10px 10px 0 10px !important;
   margin: 10px 10px 0 5px; /* increase 2nd number +10 to add rt margin */
            }

      .img-shadow-left img {
            display: block;
            position: relative;
            background-color: #fff;
            border: 1px solid #a9a9a9;
            margin: -6px 6px 6px -6px;
            padding: 4px;
            } 



.img-shadow-right {
   float:right;
   background: url(/blog/images/decor/shadowAlpha.png) no-repeat bottom  right !important;
   background: url(/blog/images/decor/shadow.gif) no-repeat bottom right;
   margin: 10px 0 0 20px !important;
   margin: 10px 0 0 15px; /* increase last number +10 to add left margin */
               }

      .img-shadow-right img {
            display: block;
            position: relative;
            background-color: #fff;
            border: 1px solid #a9a9a9;
            margin: -6px 6px 6px -6px;
            padding: 4px;
            } 

/* Miscellaneous changes */

ul.aktt_tweet_digest { list-style: circle;} /* Different bullets for Twitter lists. */
.format_text li { margin-bottom: 6px;}  /* Add space below line items */

/* For RecReading plugin */
/* add spacing between items: */
li.gReader-item { margin-bottom: 10px;}

/* italic notes (for alaJoAnn): */
/* .gReader-notes { font-style: italic; } */

/* source on same line as link: */
.gReader-source { display: inline; }
/* and then i changed the preface text to ” |” . this results in a compact display of _link_ | _source_. */

/* For AVH Amazon to hide the titles. */
#avhamazon-widget .wishlistcaption {
display:none;}

	dl#comment_list  { background: #e7f8fb; }
	dl#comment_list .bypostauthor { background: #FFF; }
		dl#comment_list dl .bypostauthor { background: #FFF; }
/* DCH Fix Comment Form Quicktags problem? */


/* Override font resizing of 1 em to be too small in Comment Form Quicktags. */
/* input, textarea { font-size: 16px;  } */
/* #commentform input {width:auto; font-size:12px;} */
#commentform span.allowed span {font-size:11px;}

/* Blockquote */

blockquote {
 border : 0px solid #DDD;
 margin: 0 0 1.5em 0.75em;
 padding-left: 0.75em; padding-right: 0.75em;
 /* padding-top: 0.5em; */ 
 padding-top: 0.5em; 
 padding-bottom: 0.1em;
 background-color: #FFF3D1;
 font-family: Calibri, "Trebuchet MS", Tahoma, Arial, Helvetica, sans-serif;
 quotes: "\201C" "\201D";
 }

.sm2wp {
  background-color: #F2F2F2;
   }
 
/* For the Reshared By text */
.sm2wpreshared {
   font-family: Calibri, "Trebuchet MS", Tahoma, Arial, Helvetica, sans-serif;
   font-style: italic;
   }


