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

/* save this code in custom.css file */
.custom ul.sidebar_list li.widget h3{margin:0 -0.9em;padding:0.5em 1em;font-size:16px;}

/*common css code for different color in each sidebar heading */
.custom ul.sidebar_list li.widget h3{color:#333333;background-color:#FBE1B3;
/* background:url(" enter your image path"); */ }

/*widget headline title color*/
.custom .sidebar h3 { color: #00CC33 background:#F1FFFC;}

.custom #sidebar_1 {background:#FFFFFF none repeat scroll 0 0;}
/* change sidebard background color */

/* .custom #sidebar_2 {background:#FFFFFF none repeat scroll 0 0;}
 change sidebard background color
 I am not using sidebar 2 */

.custom .comments_closed {display: none;}
/* Remove link --> "Comments are closed" */

/* .custom #content_box {background-color:#FFFFFF;}
 to change sidebar background color */

/* .custom #content {background-color:#FFFFFF;}
 to change main content background color */

.custom h3 { color:#897E7C; }

/*side bar widget area link style */
.custom li.widget ul li{
background:#FFFFE0;
border: 0.05em solid #FEFEFE;
-moz-border-radius:4px;
padding:0.2em;
margin:0.2em;
}


/*side bar widget bacground*/
.custom li.widget ul {
background:#FFFFD0;
border: 0.05em solid #FDFDFD;
-moz-border-radius:4px;
padding:0.2em;
}


.custom div.welcome_box {
width: 95%;
padding: 0.271em 0.486em;
margin-left: 0.5em;
margin-right: 0.5em;
margin-bottom: 0.5em;
margin-top: 0.5em;
margin-bottom: 0em;
padding-bottom: 0em;
}


.postauthor { background: #F5F5F5; border-top: 1px solid #e1e1e0; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1.5em; }
.postauthor img { border: 5px solid #e2dede; float: left; margin-right: 1.5em; }
.postauthor h4 { color: #666; font-size: 2em; margin-bottom: 5px; }
.postauthor p { color: #515151; font-size: 13px; margin-bottom: 12px; }

.socialmedia { background: #FFFBCC; border-top: 1px solid #E6DB55; border-bottom: 1px solid #e1e1e0; overflow: hidden; padding: 1em; text-align: center;}
.socialmedia p { color: #515151; font-size: 1.3em;}

h3 { font-weight: bold; }

