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


/* background */
body.custom {
    background: #e4fdd3 url('images/bkgdtile_green.gif');
}
.custom #page {
    background: #fff;
}
.custom #content {
	background: none;
}



/* custom header */
 .custom #header { 
 border: none;
 height:155px;
 padding: 0px 0px 40px 0px;
 background:url(images/banners/customheader.gif) top left no-repeat; }

 .custom #header #logo { display:none; }

 .custom #header #tagline { display:none; }
 
 
 /* delete content box border */

.custom #content_box, .custom #column_wrap {
	background: none;
}
 
	
/* change nav bar background */
.custom ul#tabs { 
width: auto; 
border-bottom: 1px #339933;
background: #339933;
}
	
	
	
/* Change the home tab unselected color */
.custom ul#tabs .home-item { 
background: none;
border-top: none;
border-right: 1px white;
border-bottom: none;
border-left: 1px white;
}
 
/* Change the home tab unselected font color */
.custom ul#tabs .home-item a { color: white; }



/* Change the other tabs unselected color */
.custom ul#tabs .page-item-1, .custom ul#tabs .page-item-2, .custom ul#tabs .page-item-3, .custom ul#tabs .page-item-4, .custom ul#tabs .page-item-5, .custom ul#tabs .page-item-6 {	
background: none;
border-top: none;
border-right: 1px white;
border-bottom: none;
border-left: 1px white;
 }
/* Change the other tabs unselected font color */
.custom ul#tabs .page-item-1 a,  .custom ul#tabs .page-item-2 a, .custom ul#tabs .page-item-3 a, .custom ul#tabs .page-item-4 a, .custom ul#tabs .page-item-5 a, .custom ul#tabs .page-item-6 a { color: white; }


/* Change the color of the currently selected tab (pages and category pages) */
.custom ul#tabs li.current_page_item { background: #66cc66; border-bottom: none;}
.custom ul#tabs li.current-cat { background: #66cc66; border-bottom: none; }
/* Change the font color of the currently selected tab (pages and category pages) */
.custom ul#tabs li.current_page_item a { color:black; }
.custom ul#tabs li.current-cat a { color:black; }


/* subscribe tab */
.custom #tabs .rss a {
   color: #fff;
   margin-right: 25px;
}

/*------------twitter------------------*/
.thesis_widget_subscriptions .sub_twit a { padding-left: 20px; background: url('images/twitter_T.gif') 0 50% no-repeat; } 



/*--------------FONT COLORS--------------*/

/* links */
.custom a, .custom a:visited { color: #339933; }


/*headline color -- currently black */
.custom h1, .custom h1 a, .custom h1 a:visited, .custom h2, .custom h2 a, .custom h2 a:visited  {
color: #000000;
}


/* sidebar text*/
.custom #sidebars h2 {
color:#333333; size:9pt; padding: 0 0 5px 0;
}
.custom #twitter_update_list ul {
color:#666666; size:8pt;
} 
.custom #sidebars a, .custom #sidebars a:visited, .custom #sidebars a:active {color: #669966;}





/*-------------MULTIMEDIA BOX-------------*/


/*mm box text styling*/
.custom #mmtext {font-size: 1.25em;
font-style: italic;
line-height: 150%;
color: #666666;
}

.custom .mymmbox {
width: 90%;
border: none;
padding: 25px 35px 25px 15px;
margin: 0px;
}



/*-------------AD BOX------------------------*/

.custom .adbox {
width: 160px;
height: 600px;
border: 1px dotted #666666;
}


/*-----------SOCIAL MEDIA ICONS---------------*/
	.social { border: dashed #ddd; border-width:1px 0 1px 0; margin: -15px auto 10px; display:block; padding: 3px 0 1px 0px;  overflow: hidden; }
	.social .social_button {float: left; display: inline; overflow: hidden; height:22px; }
 
	.social .social_button.dg { margin: 0px 0 0 0px ; padding-top: 0px;}
	.social .social_button.tm { margin: 0px 0 0 15px;  padding-top: 4px;}
	.social .social_button.fb { margin: 0 0 0 0px;  padding-bottom:0px;}
	.social .social_button.su { margin: 0px 0 0 20px;  padding-top: 2px;}
        .social .social_button.em { margin: 0 0 0 20px;  padding-top: 0px;}
        .social .social_button.em a{background:#eee url(images/emailthis.gif) 3px 50% no-repeat; padding:2px 3px 2px 20px;  font-size:10px; border:#ddd 1px solid; text-decoration:none; -moz-border-radius: 3px; -webkit-border-radius: 3px;}
		.social .social_button.em a:hover {background:#ddd url(images/emailthis.gif) 3px 50% no-repeat}
	.social .social_button a img { border: 0; padding: 0; }
	.social strong { font-size: 11px; float: left; margin:2px 0 0 0; color:#555;}
 
.clear{clear:both;
}


