/*
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/
*/

#header { background: url("<?php bloginfo('stylesheet_directory'); ?>/images/header.jpg") no-repeat bottom center; }

.format_text a { text-decoration: none; }

#column_wrap .sidebar ul.sidebar_list { padding-top: 2.2em; }
	li.widget { font-size: 1.35em; line-height: 1.3em; margin-bottom: 1.2em;}
	li.tag_cloud { line-height: 1.692em; color: #000000; }

		li.widget p { margin-bottom: 1.385em; }
		li.widget abbr, li.widget acronym { font-size: 0.769em; }
		li.widget code { font-size: 0.846em; }
li.widget a { color: #880000;}
li.widget_tag_cloud a {color: #000000;}
li.widget_rss a {color: #006666;}
			li.widget ul li { margin-bottom: 0.600em; }
				li.widget li ul { margin: 0.692em 0 0 1.385em; }


li.widget h3 {color: #ffffff; background-color: #000066; font-size: 1em; font-family: Georgia, serif; font-weight:lighter; padding: 2px; padding-left: 6px; }
li.widget h3 a {color: #ffffff; background-color: #000066; font-size: 1em; font-weight:lighter; padding: 2px;}

.sidebar h3 { font-variant: normal; letter-spacing: 2px; color: #555; width: 97%; padding-left: 5px; line-height: 1.8em; font-family: Arial, sans-serif; }

.custom .comments_closed p {display: none ;}

.custom #category_info p {
	font-size: 1.48em;
	line-height: 1.5em;
	margin-bottom: 1.571em;
	text-transform: none;
	letter-spacing: normal;
}

.custom #category_info h1 {
	font-family: Arial, sans-serif;
font-weight: bold;
	font-size: 2.7em;
	line-height: 1.267em;
	margin-bottom: 1.2em;
	margin-top: 0.6em;
	text-transform: none;
	letter-spacing: normal;
}

.custom #category_info {
	padding-top: 1.1em;
	padding-bottom: 1.1em;
	padding-right: 2.2em;
	padding-left: 1.1em;
	border-bottom: 2px solid #ddd
}

#content_info h2 { 
font-size: 20px;
padding-top: 0em;
padding-bottom: 1.1em; 
}

#content_info p {
	font-size: 1em;
	line-height: 1.3em;
padding-top: 0em;
	margin-bottom: 1.385em;
	text-transform: none;
border-bottom: 2px solid #cccccc;
width: 102%; 
}

#content_info {
font-size: 1.2em;
line-height: 1.5em;
	padding-top: 0em;
	padding-bottom: 1.1em;
	padding-right: 11.6em;
	padding-left: 1.1em;
margin-top: -2em;
border-top: 0px solid #282828;
border-bottom: 0px solid #282828;
border-left: 0px solid #282828;
border-right: 0px solid #282828;
width: 92%; 
column-width: 420px; 
}