/*
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/
*/


/* Background stuff per http://diythemes.com/thesis/rtfm/custom-backgrounds/ */
/*---:[ Set 6: image of ocean water that slides into a tranquil blue-green color ]:---*/
body.custom { background: #8db6b6 url('images/bg-ocean.jpg') 50% 0 no-repeat; }
.custom #container { margin-top: 2em; margin-bottom: 2em; }
	.custom #page { background: #fff; }
/*---[ end Set 6 ]:---*/


/* Italicize the tagline in the header. */
#tagline { font-weight: normal; font-style: italic; }

/* Drop shadow on images. (But not if they have captions.) */
.post img{
background: url(/blog/images/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;
}


/* Style the First (or Only) Post */
/* #666666 */
/* .custom .post.top {
   background:#FFFFFF none repeat scroll 0 0;
   border: outset  !important;
   margin:1em;
   padding:2em;
}
*/

/* Style Remaining Posts (in a Multi-Post Listing) */
/* .custom .post.post_box {
   background:#FFFFFF none repeat scroll 0 0;
   border: outset;
   margin:1em;
   padding:2em;
}
*/

/*
	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/shadowAlpha.png) no-repeat bottom  right !important;
   background: url(/blog/images/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/shadowAlpha.png) no-repeat bottom  right !important;
   background: url(/blog/images/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;
            } 


/* 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;}