/*
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/
*/
.custom #header #tagline {
position: absolute;
top: 7.7em;
left: 44em;
color: #ffffff;
}
#recent-posts li {
	background: #FFA033;
	border: 1px solid #333333;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px; overflow: hidden;
}

#recent-posts img { float: left; padding-right: 8px; }

#recent-comments li {
	background: #FFA033;
        border: 1px solid #CF1D10;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px; overflow: hidden;
}

#similar-posts img { float: left; padding-right: 8px; }
#disqus_thread { margin: 1.5em; }
#nav_search { background: CF1D10; }
#popular-posts li {
	background: #FFA033;
	border: 1px solid #CF1D10;
	line-height: 1.4em;
	-moz-border-radius: 5px;
	padding: 0.9em;
	-webkit-border-radius: 5px;overflow: hidden;
}
#popular-posts img { float: left; padding-right: 8px; }
#popular-posts div.right { color: #baaf2e; float: right; font-size: 11px; text-transform: uppercase; }
COPY AND PASTE THIS CODE INTO YOUR CUSTOM.CSS FILE. THIS WILL NOT DO ANYTHING UNTIL YOU ADD THE FUNCTION TO YOUR CUSTOM_FUNCTIONS.PHP FILE
------------------------------
PASTE THE FOLLOWING CODE BELOW
------------------------------

#foot { 
	background: #FFA033;
	border-style: 1em solid;
	border-color: #111111;
	font-size: 12px;
	margin: 20px auto;
	overflow: hidden;
	padding: 2em;
}

	#foot a { color: #FFA033; border-bottom: 1px dashed #DBEDF9; text-decoration: none; }

		#foot a:hover { background: none; color: #CF1D10; }
	
	#foot span.cat, #foot h3 { /* controls all blue headings */
		color: #23A2D7; font-size: 12px; font-weight: bold; letter-spacing: 1px; text-transform: uppercase; }
	
	#foot h5 { font-size: 20px; margin-left: 15px; margin-top: 5px; margin-bottom: 5px; }
	
	#foot ul li ul { list-style-type: square; margin-left: 20px; }
	
	#foot ul.sidebar_list { padding: 1.8em 30px 0 0; }
	
	#foot li.widget .widget_box { background: #111111; border: 10em; }
	
	#foot .textwidget p { line-height: 22px; margin-bottom: 11px; }
	
	#foot .col { float: none; list-style: none; width: 70%; }
	
	#cats { 
		background: #FFA033;
		list-style-type: square;
		margin-top: 13px;
		overflow: hidden;
		padding: 10px 0 7px 20px;
	}

		#cats li { 
			float: left; 
			font-size: 1.2em;
			line-height: 1.8em;
			margin: 0 2px 5px 0;
			width: 165px;
		}
	
#copyright { 
	border-top: 1px dashed #3D3C3C; 
	clear: both;
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 21px;
	padding-top: 10px;
}
	
	#copyright p { font-size: 13px; }

	#copyright ul.sidebar_list, #copyright .textwidget, #copyright li.widget .widget_box, #copyright li.widget { margin: 0; padding: 0; }
#foot .teaser { width: 18em; color: #FFA033; }

