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


/*********************************************/
/*   Site Structure / Site
/*********************************************/
body.custom {
	background: url('images/bg.jpg') repeat top left;
	}

.custom #container {
	padding-left: 30px;
	padding-right: 30px;
	width: 900px;
	}

.custom #page {
	background: url('images/content-bkg-small.png');
	}
	
.custom a:hover {
	text-decoration: none;
	color: #ff6666;
	}



/*********************************************/
/*   Header
/*********************************************/
.custom #logo a {
	background: url('images/headline-repeat.png');
	padding-top: 3px;
	padding-bottom: 10px;
	}

.custom #header {
	border-bottom-color:#FED5D5; 
	height:70px;
	padding-top: 70px;
	padding-bottom:0;
	background:url('images/wide-header-140.jpg');
	width: 780px;
	padding-left: 60px;
	padding-right: 60px;
	font-style: italic;
	letter-spacing: 4px;
	}

.custom #header #logo { 
	font-family: Georgia;
	font-weight: lighter;
	}

.custom #header #tagline {
	padding-top: 3px;
	font-family: 'Gloria Hallelujah';
	font-style: normal;
	font-size: 14px;
	letter-spacing: 0px;
	font-style: ita
	}


/*********************************************/
/*   Navigation Menu
/*********************************************/


.custom #navigation_container {
	padding-left: 30px;
	padding-right: 30px;
	width: 840px;
	height: 73px;
	background:url('images/content-header.png') no-repeat;
	text-align: right;
	}

.custom .menu {
	float: right;
	border: none;
	}

.menu a {
	border: none;
	background: none;
	padding: 2px 3px 2px 3px;
	line-height: 30px;
	}

.menu .current-menu-item a {
		background: none;
	}

.menu .current-menu-item a:hover {
		background: none;
	}

.menu .menu-item-home a:hover {
	background: none;
	}	

.menu .menu-item-object-category a:hover {
	background: none;
	}

.menu .menu-item-object-page a:hover {
	background: none;
	}


/*********************************************/
/*   Content
/*********************************************/

.custom #content_box {
	padding-left: 30px;
	padding-right: 30px;
	width: 840px;
	background:url('images/content-bkg-wide.png') repeat-y;
	}

/*********************************************/
/*   Sidebar Configuration
/*********************************************/

.custom li.thesis_widget_google_cse form input[type="text"] {
	width: 75%;
	}

.custom li.widget {
	margin-bottom: 25px;
	}


.custom ul.sidebar_list {
	padding-left: 40px;
	}

.custom #sidebars ul li h3 {
	background: url('images/sidebar-title.png') no-repeat;
	height: 24px;
	line-height: 24px;
	text-indent: 10px;
	margin-left: -15px;
	margin-bottom: 16px;
	}

.custom li.widget ul li {
	list-style: square url('images/sidebar-bullet.png');
	list-style-position: inside;
	}


.custom li.widget_links ul li a:link, li.widget_links ul li a:visited {
	color: #555555
	}


/*********************************************/
/*   Post Configuration
/*********************************************/
.custom #content {
	padding-right: 25px; 
	}
	
.custom div.post img.post_image {
	border: 1px dotted #E8DF89;
	padding: 9px;
}

.custom h1.entry-title, .custom .headline_area h1, .custom .headline_area h2, .custom h2.entry-title a{
	font-family: 'Waiting for the Sunrise';
	}
	
.custom .format_text a {
	font-variant: small-caps;
	text-decoration: none;
}

.custom p.post_tags { 
	margin-bottom: 0px;
	text-align: right;
	line-height: 12px;
	}

.custom p.post_tags a {	
	font-variant: normal;
}

.custom p.custom_comments {
	margin-bottom: 0px;
	text-align: right;
	font-size: 24px;
	font-family: 'Waiting for the Sunrise';
}

.custom span.to_comments_line {
	float: right;
	width: 447px;
	height: 24px;
	vertical-align: middle;
	background:url('images/blog-footer-dashed.png');
	background-repeat: no-repeat;
	background-position: left center;
	margin-left: 53px;
	text-align: left;
	text-indent: -50px;
	font-size: 11px;
	line-height: 18px;
	font-family: Georgia;
	}
	
.custom .comments_intro span {
	font-size: 24px;
	font-family: 'Waiting for the Sunrise';
}

.custom div.tweetbutton {
	float: right;
	padding-right: 5px;
}

.custom div.fbbutton {
	float: right;
	width: 75px;
	overflow: visible;
	/*margin-right: -10px;*/
}

custom div.socialmedia {
	float: right;
	}



/*********************************************/
/*   Footer
/*********************************************/
.custom #footer {
	background: url('images/content-footer.png');
	padding-top: 20px;
	padding-left: 30px;
	padding-right: 30px;
	}
