/*
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 .menu { padding: 0 0.5em; font-weight: bold; padding-top: .25em; font-size: 1.1em; }
.custom #header { padding-top: 0; border-bottom: 0.2em solid; padding-bottom: 2.5em; }
.custom #footer { padding-bottom: 0; border-top: 0; background: #EEEEEE; } 

/* Positioning Nav Menu inside header 
.custom #header {position:relative;}
	.custom ul.menu {position:absolute; bottom: 37em; right: 18em; width:auto;}
		.custom ul.menu li.rss {float:left;}*/

.custom ul.menu li a { text-transform: lowercase; } /* nav menu remove caps*/

/* NUMBERED PAGE NAV */
.page-nav { font-size: 1.35em; font-weight: normal; margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #FFFFFF; border: .1em solid #ccc; }
.page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #fff; border: .1em solid #ccc;  }
.current-page-number { float: left; padding: .3em .5em; margin: 0 .2em; background: #FFFFFF; border: .2em solid #ccc; }
.elipses { float: left; padding: .3em .2em; }

/* FORMAT FOR WELCOME WIDGET */
.custom #text-4.widget { font-size: 1.5em; font-family: "georgia"; color: #000000; border-bottom: .1em solid;  }
.custom #text-4 h3 { font-size: 2.2em; font-weight: normal; color: #000000; font-family: "georgia"; font-variant: normal; }

/* FORMAT FOR SOCIAL BUTTONS WIDGET */
.custom #suboptions-widget-4 h3 { font-size: 1.75em; font-weight: normal; color: #000000; font-family: "georgia"; font-variant: normal; background: #FFFFFF; }
.custom #suboptions-widget-4.widget { border-bottom: 0.1em solid; padding-bottom: 1.25em; margin-bottom: 1em; }

/* SPACING BETWEEN SIDEBAR WIDGETS */
.custom li.widget { margin-bottom: 25px; }

/* Format for Top Articles */
.custom #query-posts-4 h3 { font-size: 1.75em; font-weight: normal; color: #000000; text-align: left; font-variant: normal; }
.custom #query-posts-4 .entry-title { text-align: left; font-weight: normal; font-size: 1.0em; border-bottom: .1em solid #AAAAAA; }
.custom #query-posts-4.widget { margin-top: .5em; }
.custom #query-posts-4.widget { border-bottom: 0.1em solid; padding-bottom: 1.25em; margin-bottom: 1em; }

/* FORMAT FOR SIDEBAR ADS*/
.custom .sidebar ul.goodies li.left { float: left; margin-bottom: 10px; margin-right: 5px; }
.custom .sidebar ul.goodies li.right { float: right; margin-left: 5px; margin-bottom: 10px; margin-right: 10px; }
.custom .sidebar ul.goodies li a { display: block; }
.custom #text-6 h3 { font-size: 1.75em; font-weight: normal; color: #000000; text-align: left; font-variant: normal; }

/*---------------------------------*/
/* 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 type */
	font-family: "georgia";
	/* font size */
	font-size: 2.0em;
	/* bold or not */
	font-weight: normal;
	/* uppercase or not */
	text-transform: none;
	/* space out the letters*/
	letter-spacing: 0px;
	/* font color*/
	color: #000000;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 1px solid #000000;
	/* distance between border and widget text */
	margin-bottom: 10px;
}

/* do not change these! */
#footer_setup .footer_items ul li { list-style: none; }
#footer_setup .footer_items ul { margin: 0px; padding: 0px; }