/*
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/
*/

/* Body Lines Background */
body { background: url(images/background.gif) top left repeat-y; }

.sidebar h3 { color:#111111; font-size: 1.5em; line-height: 1.585em; margin-bottom: 0.692em; }
.headline_area h2 { font-size: 2.4em; line-height: 1.364em; }


/* Header Image */
.custom #header { 
border-bottom:none;
height:195px;
padding-top:0;
padding-bottom:0;
background:url(images/header.jpg)
center left no-repeat; }

.custom #header #logo { display:none; }
.custom #header #tagline { display:none; }
.custom #page {padding:0 1em 1em;}

/* Mailing List in Sidebar */
#mailinglist { 
background:url(images/mailinglist-box.jpg) no-repeat; 
height:85px;
width:167px;
padding: 85px 23px 0px 20px;
}

#mailinglist input,
#mailinglist select { 
	padding:3px;
	border:1px solid #E4E4E4; 
	font:1.1em helvetica, san-serif;
	color:#434343;
	background:#ffffff;
	vertical-align:top;
}
#mailinglist input:hover,
#mailinglist select:hover	{
	border: 1px solid #CFC8B8;
	background:#ffffff; 
}

#mailinglist input:focus,
#mailinglist select:focus	{ 
	color:#434343;
	background:#ffffff; 
}

#mailinglist input.msubmit	{ 
	width:125px; height:45px;
	padding:5px;
	margin: 8px 3px 0px 19px;
	background:url(images/button-subscribe.gif) no-repeat;
        cursor:pointer;
	border:0px solid #adadad!important;

}



/* Book Ad in Sidebar */
#bookbox { 
background:url(images/book-box.gif) no-repeat; 
height:180px;
width:230x;
padding: 50px 0px 0px 10px;
}

#bookbox a{color:#D00000;}

/* social icons in Sidebar */
.social-icons {margin-bottom:2.6em; border-bottom: 1px solid #E4E4E4;}

/* Styles search box in nav menu */
#s {
color:#000; 
background:#fff; 
border-right: 1px solid #E4E4E4;
border-left: 1px solid #E4E4E4;
border-top: 1px solid #E4E4E4;
border-bottom: 0px solid #E4E4E4;
padding:5px;
font-family:"Arial"; 
font-size:10px; 
width:18em;
height:17px;  
}

/* Removes FireFox's dotted link border */
a:active { outline: none;}


/* Removes FireFox's dotted link border */
a:focus { -moz-outline-style: none;}

/* Removes huge spacing before Widgets & Bottom  */
.sidebar ul.sidebar_list { padding-top: 1.3em; }
.sidebar .widget {margin-bottom:1.2em;}

blockquote {border-left:0px;border-bottom:1px solid #e4e4e4;}

/* Footer Share Box */
.box { background: url(images/post-footer-box.jpg) no-repeat; width:391px;height:79px; padding-top:41px; padding-left:82px; margin-top:55px;}
.box h3 { margin-top: 0; }
.box p { margin-bottom: 0; }
.box .stayintheloop {float:left; width:58%;}
.box .social_icons {float:right; width:38%; }
.box .social_icons a, .box .social_icons a:hover {border:none;}
.box .social_icons img {filter:alpha(opacity=100); -moz-opacity: 1.0; opacity: 1.0;-khtml-opacity: 1.0; }
.box .social_icons img:hover {filter:alpha(opacity=50);-moz-opacity: 0.5; opacity: 0.5;-khtml-opacity: 0.5;}

/* Twitter Sidebar */

.aktt_tweets {background:#FFFAD3 url(images/twitter.png) top center no-repeat; padding: 47px 10px 7px 10px; border:1px solid #E4E4E4;}

