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

body.custom {background: #44443f;}

.custom ul.bookmark_links {list-style: none; margin: 3.14286em 0 1.57143em 0; padding: 0.57143em 0.78571em; background: #e7f8fb; border: 0.07143em solid #9ad5df;}

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

.custom #page {background: #fff;}

.custom .format_text .drop_cap { color: #4A6744; }

.custom a, .custom a:visited { color: #b0002d; text-decoration: none; }
.custom a:hover { color: #688985; text-decoration: none; }

.custom h2 .custom a:hover { color: #688985; }
.custom #header #logo a:hover { color: #688985; }
.custom #header #logo a { color: #4A6744; }
/* .custom .author_comment { background: #f9f9f9; } */

.custom #image_box { padding: 1.1em; background: #eee; border-bottom: 1px solid #ddd; }

pre {font-size: 11px; background-color: #F9F9F9; font-family:  Monaco, Verdana, Arial, Lucida Grande;}

.custom div.welcome_box {text-align: justify; border: 3px solid #F2EC49; background-color: #FFFDCB; color: #000; padding:1em; margin-left:0em; margin-right: 0em; margin-top: 0.5em; margin-bottom: 0.5em; padding-bottom: 0em;}

.custom blockquote.left {
   width: 200px;
   margin: 5px 15px 5px 0;
   padding: 5px 0;
   border: 3px double #aaa;
   border-width: 3px 0;
   font-size: 1.4em;
   text-align: center;
   float: left;
}

.custom blockquote.right {
   width: 200px;
   margin: 5px 0 5px 15px;
   padding: 5px 0;
   border: 3px double #aaa;
   border-width: 3px 0;
   font-size: 1.4em;
   text-align: center;
   float: right;
}

/* .custom #custom_box {background:#FFFFFF none repeat scroll 0 0;} */

.custom dl#comment_list .even { background: #f5f5f5; }
.custom dl#comment_list .odd { background: #fff; }

/*
.custom dl#comment_list .bypostauthor { background: #efefe8; }
*/

.custom dl#comment_list dl dt.bypostauthor, dl#comment_list dl dd.bypostauthor > .format_text { border-color: #b0002d; border-left:1px dotted #B0002D; }


.aspace {background-color:#FFFFFF; margin:0 auto; padding-top:0.25em; text-align:center;}
.aspace .ablock img {padding:0.5em;}
.aspace .ablock table {padding:0em; margin-left:auto; margin-right:auto;}

/*
<span class="drop_cap">T</span>his is my paragraph. The "T" is my drop cap.

<p class="note">Your note text goes here!</p>

<p class="alert">Your alert text goes here!</p>

<blockquote class="right"><p>This pullquote will float to the right.</p></blockquote>
<blockquote class="left"><p>This pullquote will float to the left.</p></blockquote>

<div class="ad"><!‐‐adsense‐‐></div>
<div class="ad_left"><!‐‐adsense‐‐></div>

<div class="welcome_box">
<p><?php quotescollection_display_randomquote() ?></p>
</div>
*/