/*
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/
*/
/*
/* Top Links Starts */
/*
#toplinks { float:right; color:#000; position:relative; padding:0.75em; background:#ffffff; width:55em; font-size:1em;}
#toplinks a { color: #111; text-transform: uppercase; letter-spacing: 2px; text-decoration:none; font-size:1em;}
#toplinks a:hover {color: #111; text-decoration: underline; font-size:1em;}
.asneeded {line-height: 2em; color: #111; text-transform: uppercase; letter-spacing: 2px; text-decoration:none; font-size:1em;}
*/
/* Top Links Ends */
/* background page and content area START*/
body.custom {
    background: #c3dc9b url('http://www.junglebook.in/images/bg_main_strip_h2.jpg') 50% 0;
	background-repeat:repeat-y;
}

.custom #container {
    margin-top: 0em;
    margin-bottom: 2em;
}

.custom #page {
background: #ffffff url('http://www.junglebook.in/images/main_bg.jpg') 50% 0 no-repeat;
    
}
/* background page and content area END*/
/* header area START*/
.custom #header { border-bottom:none;
height:200px;
padding-top:0;
padding-bottom:0;
 }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }
/* header area END*/


.custom #image_box { 
	background: none; 
	border-bottom: none;
}

/* Byline mod START*/
/* Style Author Name */
/* Unlinked author name */
.custom span.author {
   color: #003300;
}

/* Linked author name */
.custom span.author a {
   color: #003300;
}
/* Style Published On Date */
.custom abbr.published {
   /*font-weight:bold;*/
   cursor: default;
   color: #003300;
}
/* Style Comments and categories link */
.custom .headline_meta a {
   color: #003300;
}
/* Remove Italics */
.custom .headline_meta {
   /* font-style: normal; */
   color: #003300;
}
/* Remove Uppercase */
.custom .headline_meta span,
 .custom .headline_meta abbr {
   /* text-transform: none; */
   color: #003300;
}

/* Byline mod END*/
/* Remove title from these pages START */


#post-74 h1 {display:none;}

/* Remove title from these pages END */

