/*
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 #header { border-bottom:none;
height:209px;
padding-top:0;
padding-bottom:0;
background:url(http://greysnews.com/wp-content/themes/thesis_16/Images/logo1_bigger3.png)
center left no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }




.custom .format_text .to_comments span.bracket {color: #ffffff;}

    .custom #crp_related {

    }
	
.custom #crp_related {
background: #dce5f5;
border-top: 0.2em solid #636d7f;
margin-bottom: 2em;
padding: 1em 1em 0.4em 1em;
}

.custom #content_box {background-color:#fff;}
.custom #content {background-color:#fff;} 

.custom h3 {
color:#2a2c2e;
}

.custom h2 {
color:#ffffff;
background-color:#c7d4e3;
margin-top:0.5em;
margin-bottom:0.5em;
margin-right:0.1em;
margin-left:0em;
border-style:dotted;
border-width:2px;
border-color:#74889e;
text-align:center;
}

.custom h4 {
color:#000000;
background-color:#c7d4e3;
}

/* Unlinked author name */
.custom span.author {
   color: #648cb9;
}

/* Linked author name */
.custom span.author a {
   color: #648cb9;
}

.custom .headline_meta a {
   color: #648cb9;
}

.custom dl#comment_list dt.bypostauthor, .custom dl#comment_list dd.bypostauthor>div {background: #d4e5fa none repeat scroll 0 0; padding-top:20px; border-color:#aec2d4; border-width:1px; border-style:solid;}

.custom dl#comment_list dd p.reply { margin: 1em 0 1.5em 0; }
.custom dl#comment_list dd p.reply a {background: #4675B3; color: #FFF;font-size: 11px;font-weight: normal;padding: 4px 6px;text-transform: uppercase;}
.custom dl#comment_list dd p.reply a:hover {background:#46382d; border: 0;}

.custom #content li {padding-bottom:10px;}


.custom blockquote { color: #000000; padding-top: 10px; padding-bottom: 0.5px; padding-right: 5px;
font: normal  1.2em Verdana, Times, serif; -moz-border-radius: 5px;
-webkit-border-radius: 5px;

}

.custom blockquote { background: #cadcf1; }

.custom #sidebar_1 {background:#d4e5fa none repeat scroll 0 0;}

/*---------------------------------*/
/* WIDGETIZED FOOTER               */
/* Mike Nichols - October 17, 2009 */
/*---------------------------------*/

/* footer widget area setup */
#footer_setup {
	/* widgetized footer background (not footer background) */
	background: #5c5f6d;
	/* 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: 300px;
	/* space between widgets */
	padding-right: 18px;
	/* text color */
	color: #e0eaf4;
	/* do not change these! */
	display: inline-block;
	float: left;
	height: 100%;
}

/* widget item headers*/
#footer_setup .footer_items h3 {
	/* font size */
	font-size: 1.5em;
	/* bold or not */
	font-weight: bold;
	/* uppercase or not */
	text-transform: uppercase;
	/* space out the letters*/
	letter-spacing: 1px;
	/* font color*/
	color: #5c5f6d;
	/* padding under header text */
	padding-bottom: 3px;
	/* border under header text */
	border-bottom: 1px solid #5c5f6d;
	/* 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; }

/* footer font styles */
.custom #footer a {
	font-size: 12px;
	border-bottom: none;
	/* default Thesis link color */
	color: #779bb0;
}
.custom #footer a:visited {
	text-decoration: none;
	/* default Thesis link color */
	color: #d7ecf4;
}
.custom #footer a:link {
	text-decoration: none;
	/* default Thesis link color */
	color: #779bb0;
}
.custom #footer a:hover {
	text-decoration: none;
	background-color:#ffffff;
	/* default Thesis link color */
	color: #779bb0;
}

.custom #footer {
	height: 350;
	width: 1000px;
	background: #5c5f6d;
}

.custom #feature_box {
padding-right: 0;
padding-left: 0;
background-color:#ffffff;
}

.custom li.widget_text {
   padding-top: 10px;

}

.custom li.widget_text {
   margin-bottom: 0.0em;
}

/* NUMBERED PAGE NAV */
.page-nav { font-size: 1.35em; font-weight: bold; margin: 1em 0; padding: 0; overflow: hidden; }
.page-nav-intro { float: left; padding: .3em .5em; margin: 0 1em 1em 0; background: #efefef; 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: #efefef; border: .1em solid #ccc; }
.elipses { float: left; padding: .3em .2em; }


