/*
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 ul#tabs { border-bottom: none; border-left: none; }
	.custom ul#tabs li { margin-bottom: 0; border: none; background: none; }
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat { padding-bottom: 0; background: none; }
	/*---[ .custom ul#tabs li.rss {}
		.custom ul#tabs li a {}  **No reason to declare empty CSS elements** ]---*/
		.custom ul#tabs li a:hover { text-decoration: none; }
		/*---[  **see above** .custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {} ]---*/


.custom #header, .custom .post, .custom .teasers_box, .custom #footer, .custom #footer a, .custom #footer a:active, .custom #archive_info, .custom .prev_next, .custom #comment_list, .custom #comment_list dd, .custom #commentform, .custom #sidebar_1, .custom #sidebar_2, .custom #comment_list dt.comment, .custom #comment_list dd.comment, .custom #comment_list dl .bypostauthor .format_text, .custom #trackback_list {
        border: 0; /* padding in one declaration; no em or px declaration needed with zero */

}
.custom #content_box, .custom #column_wrap {
        background: none;
}

/* body color controlled in Design Options */

.custom #container {
    margin-top: 4em;
    margin-bottom: 2em;
    padding: 0.9em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}
.custom a {
	/* colors controlled in Design Options */
	outline: none; /*--[ removes outline from <a> ]--*/
}


.custom li.widget { background: #83abdb; padding: .5em 0em .5em .833em; }
.custom .widget h2, .custom .widget h3 { font-size: 1.286em; font-weight: bold; font-family: "Helvetica Neue",Helvetica,Arial,Verdana,sans-serif; }
.custom #sidebars .sidebar_list { padding-left: 0; }


div.social_icons img {padding: 2px;}

.custom #header
{
background: #ffffff;
padding: 0; /* padding in one declaration; no em or px declaration needed with zero */
border: 0; /* same as above */
margin: 0; /* same as above */
}

.custom #header #logo a
{
display: block;
/* width not needed */
height: 309px;
background: url('http://rbeale.com/wp-content/themes/thesis_16/custom/images/rbeale-logo.jpg') /* full width element so no positioning needed */ no-repeat;
/* no color declaration needed */
text-indent: -9999px;
padding: 0; /* padding in one declaration; no em or px declaration needed with zero */
border: 0; /* same as above */
margin: 0; /* same as above */
}

.custom #header #tagline
{
/* color controlled in Design Options & color not needed when text-indent is set to -9999px */
text-indent: -9999px;
}

/* .postauthor {}   **no empty css declarations**  */

.custom #footer { border-bottom: none; }

.custom #wpcf { margin-left: 4em; }
.custom #wpcf label { clear: both; display: block; float: left; width: 160px; }
.custom #wpcf input { float: left; width: 200px; padding: 1px; margin: 2px 5px 2px 0; }
.custom #wpcf input[type=checkbox] { width: auto; }
.custom #wpcf textarea { width: 360px; height: 100px; padding: 1px; margin: 0 5px 10px 0; }
.custom #wpcf #contactsubmit { margin-left: 250px; width: 100px; }

/*---[ that's some dang fine code for your feedback bar ;) ]---*/
.custom #feedback { background: transparent; width: 3.2em; position: fixed; top: 40%; left: 0.25%; }

.custom #feedback a { display: block; text-indent: -9999px; }

.custom #feedback #twitter { background: url('http://thesistutor.com/wp-content/uploads/2009/07/twittericon.png') no-repeat 0 -3.2em; width: 3.2em; height: 3.2em; }
	.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 -3.2em; width: 3.2em; height: 3.2em; }
	.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 -3.2em; width: 3.2em; height: 3.2em; }
	.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 -3.2em; width: 3.2em; height: 3.2em; }
	.custom #feedback #email:hover { background-position: 0 0; }

/* random menu declarations deleted */

