/*
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/
*/

/* dotted line */
.custom div.dotted-line { 
width: 100%;
border: dashed #ddd; 
border-width:0 0 1px 0;
padding-top:0px;
padding-bottom:30px;
margin-top: 0px;
}

/* width and height of default comment box */
.custom #commentform textarea {
width: 590px;
height:5em;
}



.custom #logo {background-image: url('images/logo.jpg'); background-repeat: no-repeat; width: 200px; height: 90px; text-indent: -9999px; }
.custom #logo a {width: 200px; height: 90px; display: block; outline: none;}
.custom #tagline { text-indent:-9999px; }


/*
removes borders below
*/

.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-bottom: 0px;
        border-top: 0px;
        border-right: 0px;
        border-left: 0px;
}
.custom #content_box, .custom #column_wrap {
        background: #fff;
}


/*
better looking navigation menu via http://www.howtomakemyblog.com/thesis/8-thesis-theme-design-tips-to-make-your-blog-better/
*/
.custom ul#tabs {border-bottom:none; border-left:none; background:#EEEEEE;}
.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:#FFFFFF}
.custom ul#tabs li.rss {}
.custom ul#tabs li a {}
.custom ul#tabs li a:hover {text-decoration:none; background:#FFFFFF}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {}
.custom ul#tabs li.current_page_item a:hover {text-decoration:none; background:#FFFFFF;}, .custom ul#tabs li.current-cat a:hover {text-decoration:none; background:#FFFFFF}

/*
color of content and sidebar via http://www.howtomakemyblog.com/thesis/8-thesis-theme-design-tips-to-make-your-blog-better/
*/
.custom #content_box {background-color:#fff;}
.custom #content {background-color:#fff;}

/* background color for the article headline on single pages*/
.custom h1.entry-title { background:#FFFFFF none repeat scroll 0 0; color:#000000; padding:0.1em 0; text-align:left; }

/* background color for the article headline on home page only*/
.custom h2.entry-title { background:#FFFFFF none repeat scroll 0 0; color:#ffffff; padding:0.1em 0; text-align:left; }

/*
color of headings via http://www.howtomakemyblog.com/thesis/8-thesis-theme-design-tips-to-make-your-blog-better/
*/

.custom h3 {
color:#897E7C;
}

/*
google adsense box styling before post
*/
.custom div.ad-after-headline { 
width: 100%;
border: dashed #ddd; 
border-width:1px 0 1px 0;
padding-top:0px;
padding-bottom:0px;
margin-top: -15px;
}

/*
Text align justify
*/
.custom .format_text 
{
   text-align:justify;
} 

/*
below added to fix images overflowing the layout of post column
*/
p img {
    padding: 0;
    max-width: 100%;
}
#header, #content, #footer, .widget {
    overflow: hidden;
}

/* removes smiley from footer */
.custom img#wpstats{width:0px;height:0px;padding:0px;border:none;overflow:hidden}

/* HEADER AD */
.custom #header_ad { float:right; position:absolute; width:728px; height:90px; top:100px;
margin-left: 213px; margin-top: -78px; margin-bottom: 0px; margin-right:0px; }

/*
Facebook Like Styling
*/
.custom div.flikeline { 
width: 100%;
border: dashed #ddd; 
border-width:1px 0 1px 0;
padding-top:0px;
padding-bottom:0px;
margin-top: -15px;
background-color:#F2F3ED
}

/*
Removes border from multimedia box
*/
.custom #image_box img {
border: 0;
}

.custom .comments_closed {display: none;}

