/*
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 settings for fixed paged framework */

/*.custom {background: #333 url("images/wood-p8-512.jpg") repeat-x;}
.custom #page {background: #fff; margin: 2em auto;}*/

/*custom settings for full width or fluid framework */

body.custom { background: #333 url('images/wood-bg.jpg') repeat; }

.custom .page {background: #fff;}
.custom #header_area .page {background: #fff; margin-top: 2em;}
.custom #footer_area .page {background: #3E3E3E; top-border: none; margin-bottom: 2em; min-height: 315px; border-top: 3px solid red; border-bottom: 3px solid red;}
.custom #footer {border-top: 0px solid red;}


/*---------custom link styling---------*/

.custom .format_text a:hover { color: #000; border-bottom: 2px solid red; }
/*this makes the link look like a button when you click it*/
.custom .format_text a:active { position: relative; top: 2px; }
.custom .format_text a { text-decoration: none; }

.custom a:active { position: relative; top: 2px; }





/*Custom settings for extra footer area content from kristarella.com*/
.custom #footer_1 {text-align:left; color:#fff;}
	.custom #footer_1 ul.sidebar_list li.widget {width:23%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#000;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#fff; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}


/*Search_Results Page Styling*/
h1 .search_results { font-size: 1.5em; font-style: italic; font-weight: bold; padding: 5px; }




/*Photography-Page Styling*/

#photography-page .content { background-color: #333; }
#photography-page .menu { padding: 10px 0px 0px 0px; }






/*
/*social icons taken from thesis tutor*/

.custom #feedback { background: transparent; width: 3.2em; position: fixed; top: 40%; left: 0.25%; }

.custom #feedback a { display: block; text-indent: -9999px; height: 32px;}

.custom #feedback #twitter { background: url('http://thesistutor.com/wp-content/uploads/2009/07/twittericon.png') no-repeat 0 -32px; }
	.custom #feedback #twitter:hover { background-position: 0 0; }

.custom #feedback #facebook { background: url('http://thesistutor.com/wp-content/uploads/2009/07/facebookicon.png') no-repeat 0 -32px; }
	.custom #feedback #facebook:hover { background-position: 0 0; }

.custom #feedback #rss { background: url('http://thesistutor.com/wp-content/uploads/2009/07/rssicon.png') no-repeat 0 -32px; }
	.custom #feedback #rss:hover { background-position: 0 0; }

.custom #feedback #email { background: url('http://thesistutor.com/wp-content/uploads/2009/07/emailicon.png') no-repeat 0 -32px; }
	.custom #feedback #email:hover { background-position: 0 0; }
*/


