/*
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 Users Guide:
	http://diythemes.com/thesis/rtfm/customizing-thesis-with-customcss/
*/


/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

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

.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/


/*---:[Sets the color of the title in the header to gray]:--- */

.custom #header #logo a {color: #44443f;}

/*---:[Sets the color of the title in the post to gray]:--- */


.custom .entry-title {color: #44443f;}

/*---:[Adds back the hover color for the title in the header, as in styles.css]:--- */

.custom	#header #logo a:hover {color: #2361a1;}


/* if need centering of image in multimedia box
 #custom_box { text-align: center; }
 #custom_box img { margin-left: auto; margin-right: auto; }*/
.custom #custom_box{text-align:center;}
.custom #custom_box{text-align:center;background:transparent;border-bottom:none;}


.custom #image_box { text-align: center; }
.custom #image_box img { margin-left: auto; margin-right: auto; }
_
/* changes hover color of nav tabs to dark blue */

.custom ul#tabs li a:hover {
  color:#2361a1;
}


p.right { text-align: right !important; }
h2.right { text-align: right !important; }

/*
The layouts for random quotes from zombierobots 
*/

#wp_quotes
{
	margin-left: 5px;
}
	
div.wp_quotes_quote
{
	margin-left: 5px;
	font-size:13px;
	margin-top: 5px;
}
	
div.wp_quotes_author
{
	text-align:right;
	font-style: italic;
	margin-top: 5px;
}

/* This is for richarddooling.com only; the geek book*/
.box{  
	border-style: solid;
	border-width: 1px;
	border-color: #006633;
	padding:5px;
	margin:5px 0;
	}

.geekgreen {
/*	color: #006633; */
	color: #339966;
	font-weight:bold;
}

/*    This code comes from the Thesis style.css file 
      and styles alternating comments with a different background color.
    .author_comment redefined as without it the .alt color took precedence */ 
/*.custom #comment_list dt.alt, .custom #comment_list dd.alt { background: #f5f5f5; }
.custom .author_comment { background: #e7f8fb !important; }*/
