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

/* Nav Search */
.custom ul.menu li.nav_right {
  float: right;
  height: 22px;
  font-size: 150%;
  font-weight: normal;
  overflow: hidden;
  padding: 5px 5px 0 0;
}

/* Styles background color in nav menu */
/* .custom .menu {background-color:#84DB84;} */
.custom .menu {background-color:#175C17;}

/* Styles current navigation item to have border below it */
.custom .menu, .custom .menu a, .custom .menu li ul {
	border-bottom-color: #175C17;
}


/* Style 728x90 banner ad at top of page */
.custom img.banner_ad_728_90_top {
display: block;
align: center;
width: 728px;
height: 90px;
padding: 20px 36px 10px 36px;
}


/* Styles Adsense big box ads to float right at top of posts */
.custom .adsense-big-box {
  float: right;
  padding: 10px;
}

		
/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #FFFFFF;
	/* widget padding */
	padding: 10px;
	/* margin at bottom of widgets */
	margin-bottom: 10px;
	/* do not change this! */
	overflow: hidden;
}

/* widget item setup */
#footer_setup .footer_items {
	/* contents alignment */
	text-align: left;
	/* widget width */
	width: 100%;
	/* 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: 12pt;
	/* bold or not */
	font-weight: regular;
	/* uppercase or not */
	text-transform: none;
        /* use smallcaps? */
        font-variant: small-caps;
	/* space out the letters*/
	letter-spacing: 2px;
	/* font color*/
	color: #555555;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 1px solid #888888;
	/* 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; }


/* Style the widget titles in the sidebar */
.custom .sidebar h3{
	/* font size */
	font-size: 12pt;
	/* space out the letters*/
	letter-spacing: 2px;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 1px solid #888888;
	/* distance between border and widget text */
	margin-bottom: 5px;
}



