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

/* ------------------- EDITS TO THE HEADER ------------------ */

.custom {
	background: #ddd url(images/earth_back_darker.jpg) no-repeat fixed center top;
	padding-top: 20px;
}

#header {
	text-align: center;
	border: none;
/*	background:transparent url(images/title.png) no-repeat scroll 10px 0; */
	padding-bottom: 1.2em; /* pre-cufon was 1.8 */
	padding-top: 4.4em; 
	font-size: 1.4em;
}
	
#content_box {
	background: none;
}

#header #logo a {
	/*display:none;*/
	color: white;
}


/* ------------------------- FOOTER ------------------------- */

#footer {
	display: none;
}

.prev_next {
	margin:10px;
	width:600px;
	background: white;
	padding-top: 0;
	padding-bottom: 0;
}

/* ------------------- EDITS TO THE TITLES ------------------ */

.entry-title {
/* 	background: white;
	position: absolute; */
	font-weight: bold;
	opacity: 0.8;
	margin-bottom: 4px;
}

/* .headline_area { position: relative; } */

.headline-meta {
	position: absolute;
	top: 140px;
}

/*.headline_area .entry-title {
	top: 70px;
	width: 480px;
	height: 60px;	
	padding:12px;
	line-height: 1.22em; 
}

.teaser .entry-title {
	top: 70px;
	width: 240px;
	padding:6px;
}*/

.teaser .post_image_link img.alignleft {
	margin-bottom: 0;
}

.teaser { 
	position: relative; 
	width:295px;
	background: white;
	padding: 10px;
}

.post_box {
	background: white url(images/grey_shadow.png) repeat-x bottom right;
	padding: 10px;
	margin-bottom: 20px;
	border: none;
}

.teasers_box {
	padding-top:0;
	border: none;
}

/* ------------------- NAVIGATION ------------------ */

.sidebar ul.sidebar_list {
	padding: 0;
}

li.widget {
	padding: 10px;
	background-color: #4b4b4b;
	opacity: 0.8;
	width: 400px;
	margin-bottom: 1.1em;
}

li.widget_text {
	background-color: white;

}

#tabs {
	padding: 2.2em 1em  1em 1em;
	border: none;
	background-color: white;
	opacity: 0.8;
	margin-bottom: 1.1em;
	width: 400px;
 	display: none; 
}

#tabs li {
	float: none;
	border-width: 2px 0px 0px 0px;
	border-color: white;
}

.tumblr_post {
	color: #cccccc;
	padding: 0;
}

.sidebar h3 { 
	color: white;
	font-size:1.1em;
}

#archive_info {
	display: none;
}


/* ------------------- TEASER ------------------ */

.custom .teaser {
width: 620px;
margin-bottom: 2em;
margin-left: 0;
/*padding-top: 2em;*/
padding-bottom: 0;
text-align: justify;
}

.custom .teasers_box {
padding-top: 0;
padding-bottom:0;
border-top: 0;
}

/* ------------------- NAVIGATION ------------------ */

.thumb {
	padding: 0 0 1em;
}

/* ------------------- PORTFOLIO ------------------ */

.portfolio-info {
	margin: 0 1em 1em;
	padding-bottom: 1em;
	border-bottom: solid 5px black;
	width: 210px;
	float: right;
	font-size: 0.85em;
}

.portfolio-info p {
	margin-bottom: 0px;	
}

.portfolio-info-label {
}

.portfolio-info-item {
}

/* --------------- PORTFOLIO SIDEBAR --------------- */

#thesis_sidebar_teasers-3 {
	height: 240px;
}

#thesis_sidebar_teasers-4 {
	height: 580px;
}

.thesis_sidebar_teasers > .teaser {
	width: 190px;
	height: 100px;
	float: left;
	overflow: hidden;
	padding: 0;
	margin-right: 10px;
	margin-bottom: 10px;
}

.thesis_sidebar_teasers * .format_teaser{
	display: none;
}

.thesis_sidebar_teasers * .teaser_date{
	display: none;
}

.thesis_sidebar_teasers * .teaser_link{
	display: none;
}

.thesis_sidebar_teasers * h2  {
	position: absolute;
	font-size: 1em;
	padding: 6px;
	background-color: white;
	opacity: 0.8;
	width: 100%;
}

.thesis_sidebar_teasers * .thumb  {
/*	left: -150px
	top: -150px */
	width: 192px;
	height: 144px;
}

.format_text .to_comments {
	display: none;
	overflow: hidden;
	height: 0;
	margin-bottom: 0;
}

.category-portfolio  > .headline_area {
	display: none;
}

.category-portfolio  * .headline_meta {
	display: none;
	position: absolute;
}


