/*
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/
*/

/* ---------------------- MY CHANGES START HERE ----------------------  */

/* STYLES FOR DIFFERENT PAGE HEADERS  */
.homepageHeader #header {
	height: 300px;
	background:url(http://williamlkatz.com/wp-content/uploads/2014/03/home1.png) center top no-repeat;
}

.bioHeader #header {
	height: 300px;
	background:url(http://williamlkatz.com/wp-content/uploads/2013/11/bio.png) center top no-repeat;
}

.booksHeader #header {
	height: 300px;
	background:url(http://williamlkatz.com/wp-content/uploads/2023/05/williamlorenkatz-books-header.png) center top no-repeat;
}

.lecturesHeader #header {
	height: 300px;
	background:url(http://williamlkatz.com/wp-content/uploads/2013/11/lectures.png) center top no-repeat;
}

.mediaHeader #header {
	height: 300px;
	background:url(http://williamlkatz.com/wp-content/uploads/2013/11/media.png) center top no-repeat;
}

.appearancesHeader #header {
	height: 300px;
	background:url(http://williamlkatz.com/wp-content/uploads/2013/12/appearances.png) center top no-repeat;
}

.contactHeader #header {
	height: 300px;
	background:url(http://williamlkatz.com/wp-content/uploads/2014/01/invite.png) center top no-repeat;
}
/* --------------------- */


/* STYLES FOR THE SEARCH BAR  */
.custom li.search {
	float:right;
	margin-right:6em;
	position:relative;
}

.custom li.search input[type="text"],
    .custom li.search input[type="submit"] {
	width:100%;
	font-size:1.1em;
	line-height:1.273em;
	padding:0.5em 2em;
}
/* --------------------- */


/* CHANGE NAVIGATION BACKGROUND AND ADD BOTTOM BORDER COLOR  */
.custom .menu{
	background: #6d6d6d;
	border-bottom: 0.2em solid #FFFFFF;
}
/* --------------------- */


/* PROPERTIES FOR CUSTOM PAGE SIDEBARS COLOR  */

/* --- affects essays blog page ---  */
.custom #sidebars {
	Background-color:#0764A3;
}

/* --- all sidebars ---  */
div#sidebar_1.sidebar, div#sidebar_2.sidebar, div#sidebar_3.sidebar, div#sidebar_4.sidebar, div#sidebar_5.sidebar, div#sidebar_6.sidebar, div#sidebar_7.sidebar, div#sidebar_8.sidebar {
	float: left;
	width:291px;
	padding-right: 3px;
	padding-left: 2px;
	background: none repeat scroll; 
}

/* --- essay page ---  */
div#sidebar_1.sidebar {
	height:1100px;
	background: #004b8f;
}

/* --- bio page ---  */
div#sidebar_2.sidebar {
	background: #baa109;
	height:1075px;
}

/* --- books page ---  */
div#sidebar_3.sidebar {
	background: #7c0025;
	height:1150px;
}

/* --- lectures page ---  */
div#sidebar_4.sidebar {
	background-color: #bd4d03;
	height:700px;
}

/* --- media page ---  */
div#sidebar_5.sidebar {
	background-color: #4c0901;
	height:1640px;
}

/* --- appearances page ---  */
div#sidebar_6.sidebar {
	background-color: #105e60;
	height:890px;
}

/* --- contact katz page ---  */
div#sidebar_7.sidebar {
	background-color: #4f4f4f;
	height:770px;
}
/* --------------------- */

/* --- homepage ---  */
div#sidebar_8.sidebar {
	background-color: #4c9100;
	height:1500px;
}
/* --------------------- */

/* custom header widget  */
.custom .sidebar ul.sidebar_list 
	{position: relative;}
.custom #header_widget_1 ul.sidebar_list li.widget {
	position: absolute; 
	display: block; 
	top:221px; 
	left:50px; 
	width:500px;
	font-size:5.7em;
 }
/* --------------------- */


/* CHANGE LINK COLORS IN SIDEBARS  */
.custom li.widget a {
	text-decoration: underline;
	color: #FFFFFF;
}

.custom li.widget a:hover {
	text-decoration: none;
	color: #FFFFFF;
}


/* REMOVE UNDERLINE FROM CONTENT LINKS  */
.custom a, a:hover {
	text-decoration: none;
}

.custom a:hover {
	text-decoration: underline;
}


/* ADD NAVIGATION TO BOTTOM */
.custom #custom_footer_nav {text-align: right; }

.custom #custom_footer_nav ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
margin:0;
padding:0 0 1px;
font-size: 1.25em;
}

.custom #custom_footer_nav li {
border-right: 0px;
display: inline;
margin-right: 0px;
padding-left: 5px;
}

.custom #custom_footer_nav li.noborder {
border-right: 0px;
}

.custom #custom_footer_nav li a {
color:#777777;
font-weight:normal;
text-decoration:none;
}
/* --------------------- */


.format_text img.frame, .format_text .wp-caption { 
	border-width: 1px; 
	border-style: solid; 
	border-color: #CCCCCC; 
	padding: 3px; 
	margin: -10px;
	background-color: #FFFFFF;
}