/*
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: #ddd;}
.custom #container {margin-top: 0; margin-bottom: 0; padding: 0.3em; background: #eaeaea;border: 0.3em solid #ccc; border-top:0;}
.custom #page {background: #fff;}


.custom a {color:#990000;}
.custom a:hover {color:#333;}
.custom h2 a {color:#333;}
.custom h2 a:hover {color:#990000;}
.custom #header #logo {font-size:2.5em;}
.custom #header #logo a {color:#333;}
.custom #header #logo a:hover {color:#990000;}

/* nav menu */
ul#tabs li a {background-color: #fff;}
.custom ul#tabs li.current-cat a { background-color: #fff; }
.custom ul#tabs li.current_page_item a { background-color: #fff; }
.custom ul#tabs li a:hover { text-decoration: none; background: #fff; color: #990000; }
.custom #tabs {border-left:0;}
.custom .menu {border:0;}

/* make the comment numbers normal size */
.custom .comments_intro span {font-size:inherit;}
.custom .format_text .to_comments span {font-size:inherit;}
.comments_closed p {display:none;}

/* for the images within the blog post */
.custom .wp-caption-text {text-align:center;font-size:small;color:#666666;}
.custom .wp-caption {background: #fff;}
/* borders around the images */
.custom .size-medium {border:1px solid #ddd;padding:1px;}
.custom .size-full {border:1px solid #ddd;padding:1px;}
.custom .size-thumbnail {border:1px solid #ddd;padding:1px;}
.custom .size-large {border:1px solid #ddd;padding:1px;}

.custom .format_text img.frame, .format_text .wp-caption {border:1px; padding:1px;}


/* sidebar */

.custom li.widget p a {text-decoration:none;}

.custom .sidebar h3 {font-variant: small-caps; } 
.custom .widget li { margin-top:0; margin-bottom:0;} /* for consistent li spacing in the sidebar widgets */
.custom li.widget {margin-bottom:2em;}

/* for the wp stat plugin */
img#wpstats{display:none}


/* archives */
.custom .archive { margin:0; padding:0;}
.custom .archive .archiveleft {display:inline;float:left;width:280px;}
.custom .archive .archiveright {display:inline;float:right;margin-right:5px; width:250px;text-align:right;}
.custom .archive .archiveright li {list-style-type:none;}

/* image box */
.custom #image_box {background:#fff none repeat scroll 0 0;border-bottom:0px solid #ddd; padding:1em;}
.custom .image_box {border:0;}

/* multimedia box */
.custom #multimedia_box {padding:0;}


/* clean archives reloaded */
.custom ul.car-monthlisting {list-style-type:circle;}
.custom ul.car-list {list-style-type:circle;}
.custom .car-yearmonth {font-weight:bold;}
.custom ul.car-list a {text-decoration:none;} /* easier to read when these links aren't underlined */

.custom #twitter-tools {}
.custom .aktt_tweets  {}
.custom .aktt_more_updates {}

