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


/* Add background image */

.custom #container {
margin-top: 2em;
margin-bottom: 2em;
}

/* Site title */
.custom #titleheader {
background-color: #FFF; 
}

.custom #titleheader img {
padding-top: 30px;
position: relative;
left: 200px;
}

.custom #titleheader .menu {
float: right;
position: relative;
top: 30px;
right: 200px;
}

/* Header adjustments */
.custom #header #logo { display: none; }
.custom #header #tagline { display: none; }

/* Optional to remove space around header image so image sits on divider line */
.custom #header { padding: 0; }

/* Remove From the Archives message */
.custom #archive_info {display:none;}

/* Remove homepage title */
.home div.headline_area {display:none;}

/* Styles the sidebar elements */

.custom #sidebar_1 {
text-align: center;
}

.custom #sidebaremailbox {
padding: 10px;
border-bottom: 1px solid #ddd;
}

.custom .sidebartwitter img {
vertical-align: middle;
}

.custom #sidebarebook {
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
}

.custom .widget_killer_recent_entries {
text-align: left;
}

.custom .widget_killer_recent_entries h3 {
text-align: center;
}

/* Full-width teasers */

.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;
}

/* Styles the footer elements */

.custom #footerelements {
text-align: left;
font-size: 14px;
}

.custom #footerelements a {
border: none;
padding-left: 20px;
padding-right: 10px;
}

.custom #footerelements a img {
vertical-align: middle;
}

.custom #footerelements h3 {
display: inline;
padding-left: 40px;
}

.custom #footerelements form {
display: inline;
}

.custom #footerelements span {
display: inline;
}

.custom #s {
display: inline; 
position: relative;
top: -43px;
right: -340px; 
width:40em; 
height: 18px;
font-size: 12px;
}

/* Misc. Global Styles */

.custom .photocredit {
font-style: italic;
font-size: 0.7em;
}
