/*
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/
*/

/*  This messed up the Blog
.headline_area {
	position:absolute;
	top:-1500px;
	left:-1500px;
}
*/
.custom .comments_closed p {display: none ;}

.custom #header { padding-bottom: 0; }

.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 #tabs {
 border-bottom: none;
 }


.custom #column_wrap {
        
}


//.custom .menu {float:right;}

//Remove Borders and Line Below Header
/*
.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: none;
}
.custom #tabs {
 border-bottom: none;
 }

* Removed cause it doesn't work -
*/

//another attempt
/*
.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}
*/
/* Removed 7 13 10
.custom #header { padding: 0; border-bottom:none;}
#header {display:none;}
*/
/*.custom #content_box { background: url('http://balalaikaguesthomes.com/contentbg.jpg') 50% 0  repeat-x; background-attachment:fixed} */

/*Custom Background */
body.custom { background: url('http://balalaikaguesthomes.com/bodybg.jpg') 50% 0  repeat-x; background-attachment:fixed}

.custom #content_box {background: url('http://balalaikaguesthomes.com/contentbg.jpg') 50% 0  repeat-x;
	padding-top: 1px;
	line-height: 120%;
        background-attachment:fixed;
.format_text h1 {margin:0em 0em 0.75em 0em; padding:0; font-size:1.1em; font-weight:bold; display:inline;}
.format_text h2 {margin:0em 0em 0.75em 0em; padding:0; font-size:1em; font-weight:bold;}
.format_text h3 {margin:0em 0em 0.0em 0em; padding:0; font-size:1em; font-weight:bold;}
}

p.inline_txt {display:inline;}
/* Last edits 
.headline_area {display:none;} */