/*
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/
*/
/*====================================*/
/* COLORS */
/*====================================*/

/*====================================*/
/* GENERAL UI MODS */
/*====================================*/

/*====================================*/
/* FONT COLOR CHANGES */
/*====================================*/

/*====================================*/
/* BORDERS AND BACKGROUND */
/*====================================*/
/* outside border, margin top and bottom */
.custom #container { 
	border: 4px solid #E2E2E2;
	padding: 5px;
	margin-top: 2em;
	margin-bottom: 2em;
}

/* background color */
body.custom { background: #575757; }

/* set the page background to white */
.custom #page { background: #FFFFFF; }

/*====================================*/
/* HEADER */
/*====================================*/
/* header image */
.custom #header #logo a { 
	display: block; 
	height: 160px;
	width: 942px;
	background: url('images/header.jpg') left no-repeat;
	outline: none; 
	/*border: 1px solid #000;*/
}

/* push title and tagline to far left and make tagline tiny */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; }

/* align header image */
.custom #header #logo { margin: 0px 0px 0px 0px; }

/* header padding */
.custom	#header { padding: 0em 0em 0em 0em; }

/* change header background color */
.custom #header { 
	background: #e2e2e2; 
	border-bottom: 4px solid #575757;
}

/*====================================*/
/* THESIS NAVIGATION BAR */
/*====================================*/
.custom .menu {
	width: 100%;
	background: #E2E2E2;
	border-bottom: 4px solid #575757;
}

#google_search {
	float:right; 
	font-size: 1.20em;
	position: relative;
	top: 5px;
	left: -5px;
	z-index: 105;
}

/*------------------------------------*/
/* WordPress search bar in nav menu */
/* position search box */
.custom form.search_form {
	position:relative; 
	top: 2px;
	left: -2px;
	z-index: 105;
	outline: none;
	border: none;
}
/* put a background image on the search box */
#s {
     float: right;
     background: url("images/bkg_search.png") 0 0 no-repeat;
     color: #FFFFFF;
     padding: 6px 10px 6px 30px;
     width: 156px;
	outline: none;
	border: none;
}

/*====================================*/
/* CONTENT BOX */
/*====================================*/
/* remove right divider between content and sidebar */
/*.custom #content_box { background: none; }*/

/*====================================*/
/* POSTS AND COMMENTS */
/*====================================*/

/*====================================*/
/* MULTIMEDIA BOX AND IMAGES */
/*====================================*/

/*====================================*/
/* WIDGETS AND SIDEBARS */
/*====================================*/
/* Format widget headings - sidebar */
.custom .sidebar h3 {
	font-size: 0.92em;
	font-weight: bold; 
	line-height: 1.455em; 
	text-align: center;
	color: #C31F29;
	margin-bottom: 1em; 
	padding: 0.636em 0.455em 0.545em 0.455em; 
	text-transform: uppercase; 
	/*background: #ddd;*/
	border-top: 2px solid #575757; 
	border-bottom: 2px solid #575757; 
}

.custom li.widget {
	color: #575757;
}

.custom li.widget a {
	color: #575757;
}
/*====================================*/
/* FOOTER */
/*====================================*/
.custom #footer { border-top: 4px solid #575757; }

/* footer copyright & attribution */
#footer_info_right, #footer_info_left { 
	font-size: 1.25em; 
	color: #575757; 
	position: relative;
	top: -10px;
}
#footer_info_right { float: right; }
#footer_info_left { float: left; }
