/*
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: #ffffff url('/wp-content/themes/thesis_17/custom/images/quatrefoil.jpg') 25% 0 repeat;

}

.custom #container {
    margin-top: 1em;
    margin-bottom: 2em;
}

.custom #page {
    background:fff;
}

.custom #header { border-bottom:none;
height:250px; width:940px
padding-top:0;
padding-bottom:0;
background:url('/wp-content/themes/thesis_17/custom/images/jan12blogbanner2.jpg')
center no-repeat; }

.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }

.custom .menu li {
        margin-right: 1em;
}

/* save this code in custom.css file */
.custom ul.sidebar_list li.widget h3
{
margin:0 ;
padding:1.5em 1em;
font-size:14px;
}

/*common css code for different IMAGE in each sidebar heading */

.custom ul.sidebar_list li#categories-3 h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/craftycategories.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

.custom ul.sidebar_list li#text-8 h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/grab-a-button.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

.custom ul.sidebar_list li#text-4 h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/sweet-sponsors.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

.custom ul.sidebar_list li#text-7 h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/craftingwiththechicks.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

.custom ul.sidebar_list li#text-3 h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/givingcredit.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

.custom ul.sidebar_list li#search h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/searchoursite.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

.custom ul.sidebar_list li#text-20 h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/chickspicks.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

.custom ul.sidebar_list li#archives-3 h3
{
background:url("http://thecraftingchicks.com/wp-content/themes/thesis_17/custom/images/archives.png");
margin-left:-0.76em;
width:250px;
font-size:1.6em;
line-height:2em;
color:#fff;
padding-top:0.3em;
background-repeat: no-repeat;
background-position: center center;
}

/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#FFFFFF none repeat scroll 0 0;
width: 100%;
float: left;
}
.custom ul#topnav li { float: right; padding: 3px 10px 3px 0px; }
.custom ul#topnav li a { font-size: 1.1em; color: #000000; }
.custom ul#topnav li a:hover { text-decoration: underline; }