/*
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/
*/

/*
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 {
    background: #44443f;
}

.custom #container {
    margin-top: 0 auto;
    margin-bottom: 2em;
    padding: 0;
    background: #33332f;
    border: none;
}

.custom #page {
    background: #fff url(images/bg-sidebar2.gif) repeat-y scroll 55.6em 0;
    padding: 0px;
}

.custom #header {
	background:#FFF url(images/chaitra_blog.gif) no-repeat scroll 0 50%;
	padding-top: 0.001em;
	padding-bottom: 3.5em;
	padding-left: 54.6em;
}

.custom .rss {
	padding-right: 1.1em;
}

.custom .menu {
	background:#a0b7c0 no-repeat scroll 100% 0;
	border-top: 1px solid #ddd;
}

.custom #header #logo a {
	display:block;
	height:3.7em;
	outline-style:none;
	outline-width:medium;
	text-indent:-9999px;
	width:11.45em;
}

.custom #content_box { background:transparent url(images/bg-sidebar.gif) repeat-y scroll 77.3em 0; }

.custom #footer { background: #FFF; border-top: #b7b5b5 solid thin; }

.custom .wp-caption { background-color: #fff; }
.custon .format-text .wp-caption { font-size: 0.75em; }
