/*
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/
*/
/* Get rid of little gray border on nave border edge */
.custom .menu { border-left: none; text-transform: lowercase;}

.custom #header {border-bottom: none;padding: 0em 0em 0em 5em;}
/* Remove padding around the Navigation Bar */
.custom #header_area .page {
  padding:0em;
}

/* Give a Background to the Navigation Bar */
.custom .menu {
  margin-top:-1.5em;
  margin-left:9.0em;
}
.custom #header {
margin-top:-2.5em;
border-bottom: 0.3em solid #3e3e3a;
}

.custom .menu .tab-home a {
	
        text-transform: lowercase;
}

/* second tab unselected background and font color */
.custom .menu .tab-1 a {
	
text-transform: lowercase;
}

/* third tab unselected background and font color */
.custom .menu .tab-2 a {

text-transform: lowercase;
}
/* fourth tab unselected background and font color */
.custom .menu .tab-3 a {

text-transform: lowercase;
}

/* fifth tab unselected background and font color */
.custom .menu .tab-4 a {

text-transform: lowercase;
}
/* sixth tab unselected background and font color */
.custom .menu .tab-5 a {

text-transform: lowercase;
}
/* RSS background and font color */
.custom .menu .rss a {
	background: #E41B23;
	color: white;
text-transform: lowercase;}



.custom #logo {background-image: url('images/logo.jpg'); background-repeat: no-repeat; width: 900px; height: 250px; text-indent: -9999px;}


/*GLOBAL WIDGET STYLES*/
li.widget {margin-bottom:0; width:auto !important;}
ul.sidebar_list {padding: 0 !important;}
#sidebars h3 {background: #FEAC18 url(images/sidebar_header.png) repeat-x; margin: 0 -1.3em 0 0; padding: 10px; width: auto;font: bold; color:#fff;-webkit-box-shadow: 3px 3px 10px #888; -moz-box-shadow: 3px 3px 10px #888;box-shadow: 3px 3px 10px #888;}


/*SEARCH BOX STYLE*/
#search {text-align:center;padding:1.1em 0;}
#search p {margin-bottom:1.0em;}
.sidebar .text_input{width:80%;padding:.5em .5em !important;font-size:1em;background:#FFF;border:3px solid #dddddd;-moz-border-radius:13px;-khtml-border-radius:13px;-webkit-border-radius:13px;border-radius:13px;text-align:center;}
.sidebar .text_input:focus{width:80%;padding:.5em .5em !important;font-size:1em;background:#FFF;border:3px solid #cccccc;-moz-border-radius:13px;-khtml-border-radius:13px;-webkit-border-radius:13px;border-radius:13px;text-align:center;outline:none;}

/*TWITTER WIDGET*/
#text-442251071 {border-bottom: 2px solid #dddddd;}
#text-442251071 li {margin: 0; padding:0.3em 1.1em 1.1em 1.1em;}
#twitter-link {display:block; text-align:center; padding:0.5em 0 0.5em 0; font-size:10px;}

/*CATEGORIES*/
.custom li.widget_categories ul li {background: url(images/favicon.ico) 2% 45% no-repeat;border-bottom: 1px solid #ffffff; display: block; margin: 0; padding: 1.0em 1.0em 0.5em 2.5em;}
.custom li.widget_categories li:hover {background: url(images/favicon.ico) 2% 45% no-repeat;display:block;margin: 0; padding: 1.0em 1.0em 0.5em 2.5em;}



/*KILLER RECENT ENTRIES*/
#widget_killer_recent_entries-2 li {background: url(images/favicon.ico) 2% 45% no-repeat;border-bottom: 1px solid #ffffff; display: block; margin: 0; padding: 1.0em 1.0em 0.5em 2.5em;}
#widget_killer_recent_entries-2 li:hover {background: url(images/favicon.ico) 2% 45% #ffffff no-repeat;display:block;margin: 0; padding: 1.0em 1.0em 0.5em 2.5em;}

.custom #feedback { background: transparent; width: 3.2em; position: fixed; top: 40%; left: 0.25%; }

.custom #feedback a { display: block; text-indent: -9999px; height: 32px; outline: none; }

.custom #feedback #twitter { background: url('http://thesistutor.com/wp-content/uploads/2009/07/twittericon.png') no-repeat 0 -32px; }
	.custom #feedback #twitter:hover { background-position: 0 0; }

.custom #feedback #facebook { background: url('http://thesistutor.com/wp-content/uploads/2009/07/facebookicon.png') no-repeat 0 -32px; }
	.custom #feedback #facebook:hover { background-position: 0 0; }

.custom #feedback #rss { background: url('http://thesistutor.com/wp-content/uploads/2009/07/rssicon.png') no-repeat 0 -32px; }
	.custom #feedback #rss:hover { background-position: 0 0; }

.custom #feedback #email { background: url('http://thesistutor.com/wp-content/uploads/2009/07/emailicon.png') no-repeat 0 -32px; }
	.custom #feedback #email:hover { background-position: 0 0; }

