/*
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: #44443f;*/
  /*font-family: 'Palatino Linotype', Palatino, Palladio, 'URW Palladio L', 'Book Antiqua', Baskerville, 'Bookman Old Style', 'Bitstream Charter', 'Nimbus Roman No9 L', Garamond, 'Apple Garamond', 'ITC Garamond Narrow', 'New Century Schoolbook', 'Century Schoolbook', 'Century Schoolbook L', Georgia, serif;*/
  font-family: Constantia, 'Lucida Bright', Lucidabright, 'Lucida Serif', Lucida, 'DejaVu Serif', 'Bitstream Vera Serif', 'Liberation Serif', Georgia, serif;
}

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

.custom #page {
	background: #ffffff;
}
*/

.custom a {
	text-decoration: none;
}

.custom a:hover {
	text-decoration: underline;
}


/*
.custom #header { padding-top: 0; }
.custom #footer { padding-bottom: 0; }
*/

.custom .format_text .note {
	background: #F0EEC2;
}

.custom .sidebar {
	margin-left: 8em;
}

.custom .sidebar h3 {
	font-variant: normal;
}

.custom .format_teaser {
	color: #444444;
}


.custom .teasers_box .entry_title h1, h2, h2 a {
	color: #2361A1;
}

.custom .note a {
	text-decoration: none;
}

.custom .note a:hover {
	text-decoration: underline;
}

.custom p.post_tags {
	line-height: 8em;
}

.custom #header_area {
	background: #111111;
}

.custom #header_area .page {
	background: #111111;
}

.custom #footer_area {
	background: #111111;
}

.custom #footer_area .page {
	background: #111111;
}

.custom #tagline {
	font-weight: bold;
}

#logo, #logo a {
	letter-spacing: 0.6em;
}

.custom .teaser .format_teaser {
	margin-top: 0.25em;
	margin-bottom: 0.75em;
}

/*
.custom .teaser_link {
	float: right;
}
*/


.custom #footer { text-align:left; }
.custom #footer .sidebar { margin-left: 0;}

.custom #footer_area { color:#BBB;  }
	.custom #footer_area ul.sidebar_list li.widget { width:27%; margin-right:2%; float:left; }
		.custom #footer_area ul.sidebar_list li.widget h3 { color:#BBB; }
		.custom #footer_area ul.sidebar_list li.widget a { color: #338FED; border-bottom:0; }

.custom #footer_area .page { padding-left: 0; }

.custom #footer_area .search_form { font-size: 0.6em; }


#sharethis {
	margin-top: 8em;
	border-top-style: dotted;
	border-top-color: #888;
	border-top-width: 1px;
	margin-left: 0px;
	margin-right: 25px;
	padding-left: 12px;
	padding-right: 12px;
}

#sharethis a {
	font-family: 'Trebuchet MS', 'Lucida Grande', 'Lucida Sans Unicode', 'Lucida Sans', Arial, sans-serif;
	font-size: 1em;
	line-height: 1em;
}

#sharethis h3 {
	margin-top: 1em;
}

#related {
	margin-top: 2em;
	border-top-style: dotted;
	border-top-color: #888;
	border-top-width: 1px;
	margin-left: 0px;
	margin-right: 25px;
	padding-left: 12px;
	padding-right: 12px;
}

#related h3 {
	margin-top: 1em;
}

#related ol {
	list-style-type: none;
	margin-left: 0px;
}

.poem p {
	font-size: 1.05em;
	font-style: italic;
	margin-top: 0em;
	text-indent: -1em;
	margin-left: 1em;
	margin-bottom: 0.75em;
}

.haiku p {
	font-size: 1.25em;
	font-style: italic;
	margin-top: 0em;
	margin-bottom: 0.5em;
}

.haiku p+p {
	text-indent: 1em;
}

.haiku p+p+p {
	text-indent: 2em;
}
