/*
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/
*/


/*This is the beginning of header logo image*/
.custom #header #logo a {
background:url('http://www.fockery.com/wp-content/themes/thesis_17/custom/images/header-black-border.jpg') no-repeat scroll 0 0;
display:block;
height:210px;
width:1000px;
padding:0;
}

.custom #header #logo, .custom #header #tagline {
text-indent:-9999px;
}
/*This is the end of the header logo image*/







/*This is the beginning of the background image*/
body.custom { background: #f9f5db url('http://www.fockery.com/wp-content/themes/thesis_17/custom/images/gradient-background.jpg'); }

		.custom #page { padding: 2em 1.9em; background: #fff; border: 0.1em solid #b5b198; border-top: 0; }
/*This is the end of the background image*/














/*This is the beginning of the widgetized footer code*/
/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #EEEEEE;
	/* widget padding */
	padding: 16px;
	/* margin at bottom of widgets */
	margin-bottom: 25px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 210px;
	/* space between widgets */
	padding-right: 10px;
	/* text color */
	color: #2361A1;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #000000;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 3px solid #FF0000;
	/* distance between border and widget text */
	margin-bottom: 5px;
}
	
/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }
/*This is the end of the widgetized footer code*/






/*This is the beginning of the rotating images gallery code*/
/*=============================================== */
/* ROTATING IMAGES GALLERY                        */
/* Version 1.0                                    */
/* Written by Mike Nichols December 20, 2009      */
/* Website: http://thesisthemetools.com/          */
/* Copyright (c) 2009 by Michael L Nichols        */
/* License: Creative Commons Share-Alike 3.0      */
/* http://creativecommons.org/licenses/by-sa/3.0/ */
/*=============================================== */
/* image gallery in a widget */
#image_gallery_widget {
	/* width and height must be the same size as images */
	width:195px;
	height:138px;
	/* border if desired */
	border:2px solid #999;
	/* font size */
	font-size: .7em;
	/* font family if desired */
	font-family: Georgia, serif;
	/* bold or not */
	font-weight: bold;
	/* do not change these! */
	overflow:scroll;
	margin: 0;
	padding: 0;
}

/* image gallery in a page or post */
#image_gallery_page {
	/* width and height must be the same size as images */
	width:405px;
	height:280px;
	/* border if desired */
	border:4px double #000000;
	/* font size */
	font-size: 1.3em;
	/* font family if desired */
	/*font-family: Verdana, sans-serif;*/
	/* bold or not */
	font-weight: bold;
	/* do not change these! */
	overflow:scroll;
	margin: 0;
	padding: 0;
}
/*This is the end of the rotating images gallery code*/
