/*
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.custom {
        height:  105%;
        #background: #0f0f0f url('images/bg.jpg') repeat-y top center;
        background-color: #131313;
        border-color: #00ff00;
        color: #fffdef;
}


.custom h1 {border-left: 5px solid #dc7d1b; padding-left: 10px; }
.custom h2 {border-left: 5px solid #dc7d1b; padding-left: 10px; }
.custom h2.entry-title { border-left: 5px solid #dc7d1b; padding-left: 10px; }
.custom h3 {border-left: 5px solid #dc7d1b; padding-left: 10px; }
.custom h4 {border-left: 2px solid #dc7d1b; padding-left: 10px; font-size: 1.222em; }
.custom h5 {border-left: 2px solid #dc7d1b; padding-left: 10px; }
.custom h6 {border-left: 2px solid #dc7d1b; padding-left: 10px; }

.custom li.widget h3 { border: none;
                       padding: 0px; }

.custom p.headline_meta { padding-left: 15px; }

.custom #tagline { border: none; 
                   padding: 0px; }

.custom p { line-height: 1.5em; }
.custom p.note{ background: #7c7c7c; border: 1px solid #dddddd; }
.custom p.alert{ background: #ff0000; border: 1px solid #ff0000; }

.custom #header #logo a { color: #ffffff; }
.custom #header #logo a:hover { color: #0000ff; }

.custom #page { background-color: #131313; }

.custom h2 a { color: #eeeeee; }

.custom #header { background: url('images/andystevens-photography-logo.jpg') no-repeat 0 center;
                  height: 85px;
                  padding: 0px;
                  border-bottom: 3px double #222222;
                  clear: both;
                }

.custom #header #tagline { float: left;
                           color: #999999;
                           font-size: 1.25em;
                           margin-left: 21.0em;
                           padding-top: 2.5em;
                         }
 
.custom #footer { color: #888;
                  border-top: 3px double #222222; 
                  text-align: right; 
                  clear: both; }
 
.custom #tabs { list-style: none; border: 1px solid #222222; border-width: 0 0 1px 1px; }
.custom #tabs li { margin-bottom: -0.1em; background: #191919; border: 1px solid #222222; border-left: 0; float: left; }
.custom #tabs .current_page_item, #tabs .current-cat { padding-bottom: 0.1em; background: #131313; border-bottom: 0; }
.custom #tabs a { display: block; line-height: 1em; color: #666666; text-transform: uppercase; letter-spacing: 2px; }
.custom #tabs a:hover { background: #222222; color: #999999; text-decoration: none; }
.custom #tabs .current_page_item a, #tabs .current-cat a { color: #ffffff; cursor: text; }
.custom #tabs .current_page_item a:hover, #tabs .current-cat a:hover { text-decoration: none; }
.custom #tabs .rss { padding-right: 0; background: none; border: none; float: right; }
/*.custom #tabs .rss a { padding-right: 16px; background: url('images/icon-rss.gif') 100% 50% no-repeat; }*/

.custom .format_text .to_comments span { color: #ffffff; line-height: 1em; }
.custom .format_text .to_comments span.bracket { color: #ccc; }

/*.custom #content_box { border: 1px solid #0000ff; }*/

.custom .format_text blockquote { margin: 0 0 1.571em 1.571em; padding-left: 0.786em; }
.custom blockquote { font-size: 1em; border-left: 1px solid #aaaaaa; color: #666; }

.custom code { line-height: 1em;
               background: #131313;
               font-family: "Courier New", Courier; }
               
.custom pre { border: 1px solid #666666;
              background: #222222;
              overflow: auto;
              clear: both; }

.custom .wp-caption { border-style: solid; border-color: #111111; background-color: #0c0c0c; text-align: center; }

.custom #archive_info { border-bottom: 2px solid #222222; }

/*---:[ form inputs ]:---*/
.custom input, textarea { font-size: 1em; color: #eeeeee; background: #222222; border: 1px solid #333333; border-right-color: #333333; border-bottom-color: #333333; }
.custom input:focus, textarea:focus { background: #222222; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }
.sidebar .text_input { width: 95%; }
.custom input.form_submit { font-weight: normal; font-size: 1em; color: #eee; border: 1px single #00ff00; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; width: 100px !important; overflow: visible; }
.custom #commentform input.form_submit { font-size: 1em; border-width: 1px; }
.custom input.form_submit:hover { color: #ff0000; }

.custom dl#comment_list .bypostauthor { background: #444444; }

