/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

/* GENERAL */
body {background:#555555 url(images/bg/bg.jpg) top left repeat-x; margin:0; padding:0;}

/* containers */
#container{background:url(images/bg/shadow.png) top left repeat-x !important; background:none;}
#page{background:#FFF;}
#content_box {background:url(images/bg/contentBox.gif) top left repeat-y;}
#content {background:url(images/bg/colLeft.gif) top left repeat-y; color:#666666;}
.post_box {margin:0 20px 0 21px; width:526px;}

/* links */
a, a:visited {color:#d84c0e; text-decoration:none;}

/* HEADER */
#header {border:none; margin:0; padding:0; position:relative; width:100%; height:175px;}

/* nav */
ul#tabs {border:none; position:absolute; bottom:-1px; left:16px;}
ul#tabs li {background:#fff; border:none; margin-right:2px;}
ul#tabs li a, ul#tabs li a:visited {color:#555555; font-weight:bold; letter-spacing:0;}
ul#tabs li.current_page_item, ul#tabs li.current-cat {padding-bottom:0.1em; color:#d84c0e;}
ul#tabs li.current_page_item a, ul#tabs li.current-cat a, ul#tabs li.current_page_item a:visited, ul#tabs li.current-cat a:visited {color:#d84c0e;}

/* CONTENT */

/* left col */
#content h2, #content h1 {background:#d84c0e; display:inline; padding:0 45px 0 21px; margin-left:-21px; font-weight:bold; color:#FFF;}
#content h2 a, #content h1 a {color:#FFF;}
#content h3 {font-weight:bold;}

#archive_info {border-bottom:1px solid #dedede;}
#archive_info h1 {margin-left:-11px;}

#comment_form .inputValid{background:#f4f6ea;font-weight:normal;color:#333;}
#comment_form .inputRequired{background:#edccdb;font-weight:bold;color:#333;}

.post_box {border-top: 1px solid #dedede;}
.author_and_date {font-style:normal; color:#666; text-transform:capitalize;}
.author_and_date span, .author_and_date abbr {text-transform:capitalize; letter-spacing:0; color:#666666; font-size:1.1em;}

/* pagination */
#pagination{ padding-left:20px; padding-bottom:20px;}
.wp-pagenavi span.pages, .wp-pagenavi span.current{ border-color:#666666; color:#666666;}
.wp-pagenavi a, .wp-pagenavi a:link, .wp-pagenavi a, .wp-pagenavi a:active, .wp-pagenavi a, .wp-pagenavi a:visited{ color:#666666; border-color:#666666;}
.wp-pagenavi span.current{ color:#d84c0e;}

.post_footer {width:100%; overflow:hidden; margin-bottom:10px;}
.post_footer .author {color:#666; text-transform:uppercase; float:left; height:24px; margin-top:4px;}
.post_footer .to_comments {background:url(images/bg/comments.gif) top left no-repeat; width:24px; height:24px; float:left;}
.post_footer .to_comments .number{width:24px; margin:0 auto; text-align:center;}

/* right col */
.sidebar {background:#FFF url(images/bg/sidebarFooter.gif) bottom left no-repeat; width:189px; padding-bottom:45px;}
.sidebar li ul{background:url(images/bg/sidebarContent.gif) top left repeat-y; width:151px; padding:10px 20px 10px 18px;}
.sidebar li h3 {color:#666666; font-weight:bold; background:url(images/bg/sidebarTitle.gif) top left no-repeat; width:171px; height:19px; padding:16px 0 0 18px;  margin:0;}
.sidebar li.widget_categories h3 {color:#666666; font-weight:bold; background:url(images/bg/sidebarHeader.gif) top left no-repeat; width:171px; height:19px; padding:17px 0 0 18px;}
.sidebar #rss {padding:0 8px; margin-bottom:-3px;}
.sidebar li.categories{font-size:1.1em; line-height:1.455em;width:100%;}
.sidebar li.categories ul li {margin-bottom:0.636em; list-style:none; background:none;}
.sidebar li.categories h3 {color:#666666; font-weight:bold; background:url(images/bg/sidebarHeader.gif) top left no-repeat; width:171px; height:19px; padding:17px 0 0 18px;}

/* FOOTER */
#footer {color:#cccccc; text-align:left; padding:30px 10px; width:736px; overflow:hidden; border:none;}
.footer_border {border-top:1px solid #dedede; border-bottom:5px solid #dedede; height:2px;}
.footer_content {margin:10px; text-align:left; }