/*
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: #afbf75; 
	margin-top: 29px;
}

.custom .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: white;
	border-bottom-width: 4px;
	border-color: black;
	box-shadow: 0px 4px 5px #222222;
}

.custom .menu li {
	margin-bottom: 0;
}

.custom #container { 
	padding: 0.3em; 
	background: #d6a41c; 
	border: 0.4em solid #657025; 
}

.custom #page { 
	background: #fff; 
}

.custom #feature_box {
	padding: none;
	border: none;
}

.custom #header {
	border: none;
}

.custom #content_box {
	background: none;
}

.custom .headline_meta span, .custom .headline_meta abbr {
	text-transform: capitalize;
	letter-spacing: 0;
	font-size: 1.2em;
	line-height: 1.2em;
	font-style: italic;
	color: #666666;
}

.custom .format_teaser {
	font-size: 1.4em;
}

.custom #sidebar_1 {
	position: relative;
	top: -153px;
	border-radius: 20px;
	border-width: 1px;
	border-color: black;
	border-style: dashed;
	background: #deded7;
	z-index: 100;
	box-shadow: 3px 3px 4px #62635E;
	padding-left: 9px;
}

.custom ul.sidebar_list {
	padding-bottom: 2.2em;
}
.custom li.widget:last-of-type {
	height: 0;
	visibility: hidden;
	line-height: 0;
	margin-bottom: 0;
}

.custom #sidebar_2 {
	width: 200px;
	padding-left: 8px;
}

.custom #footer {
	border: none;
}

.custom .format_text .drop_cap {
  font-family: Cambria;
  font-weight: bold;
  font-size: 2.8em;
  color: #d6a41c; /*333333*/
}



.mt_widget {
/* customize your Goodreads widget here*/
border: 2px solid #555555;
border-radius:10px;
padding: 0 0px 10px 0px;
background-color: #FFFFFF;          
color: #000000;          
width: 200px;
}
.mt_container {
/* customize your Goodreads widget container here*/
width: 100%;
}
.mt_super_header {
/* customize your Goodreads super header here*/
text-align: center;
font-size: 2.0em;
margin: 0.5em 0 0.3em 0;
}
.mt_header {
/* customize your Goodreads header here*/
border-bottom: 2px solid #555555;
border-top: 2px solid #555555;
margin: 0 0 5px 0;
padding: 8px 0 3px 0;
text-align: center;
font-size: 1.5em;
}
.mt_each_container {
/* customize each individual book container here */
clear: both;
overflow: auto;
}
.mt_book_container { 
/* customize your book covers here */
overflow: hidden;
text-align: center;
margin: 10px 4px 10px 4px;
border-bottom: 1px solid gray;
}
.mt_logo_container { 
/* customize your book covers here */
overflow: hidden;
text-align: center;
margin-bottom: 10px;
}
.mt_title {
padding-left: 4px;
font-style: italic;
}
.mt_author {
/* customize your author names here */
font-size: 10px;
}
.mt_tags {
/* customize your tags here */
font-size: 10px;
color: gray;
}
.mt_rating {
/* customize your rating stars here */
float: right;
}
