/*
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/
*/
.custom #page {padding-top: 1em;}


/*Banner from http://www.doublemule.com/how-to-add-banner-image-thesis-theme-header-css-custom/ */
.custom #header { border-bottom:none;
height:125px;
padding-top:0;
padding-bottom:0;
background:url(images/banner.jpg)
center left no-repeat; }

/*http://www.shoutmeloud.com/how-to-add-clickable-header-into-thesis-wordpress-theme.html 
.custom #header #logo a { display: block; height: 160px; width: 1300px; background: url(images/yard.jpg) no-repeat; outline: none; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
.custom #header #tagline { height: 0; } .custom #header { padding: 0; }
.custom #header {border-bottom:none;}
*/


/*change sidebar colors */
.custom #sidebar_1 {background:#f2e9bf none repeat scroll 0 0;}
.custom #sidebar_2 {background:#e8e4d0 none repeat scroll 0 0;}

/* Removing image box in multimedia http://diythemes.com/forums/customization/17250-multimedia-box.html

.custom #image_box, .custom #video_box, .custom #custom_box{
padding:0;
border: none;
background-color: #fff;
}
.custom #image_box img, .custom #video_box img, .custom #custom_box img {
background-color: #fff;
border: none;
}
*/

/*removes frame around rotating multimedia box */
.custom #multimedia_box
{
	background:none;
}

/* css code for tagline */
.custom #tagline { font-style: italic; text-indent: 10px; }


/* Sidebar customization */
.custom .sidebar h3 {font-weight:700;letter-spacing:1px; }
.custom .sidebar LI.widget p {margin-bottom:0.25em;} /* space below title and next line */


/* To Turn RSS feed titles to black */
.custom  #kb-advanced-rss-9 h3 a:link, #kb-advanced-rss-10 h3 a:link, #kb-advanced-rss-11 h3 a:link, #kb-advanced-rss-9 h3 a:visited, #kb-advanced-rss-10 h3 a:visited,  #kb-advanced-rss-11 h3 a:visited   {color: #000000; text-decoration: none; }

.custom #kb-advanced-rss-9 h3 a:hover, #kb-advanced-rss-10 h3 a:hover, #kb-advanced-rss-11 h3 a:hover {color: #000000; text-decoration: underline; }
 /* End RSS Feed titles */




/* change textbox in sidebar */
.custom #text-4 h3 a:hover, #text-4 h3 a:link, #text-4 h3 a:visited {color: #000000; text-decoration: none; }
.custom #text-4 h3 a:hover {color: #000000; text-decoration: underline; }
.custom #text-3 h3 a:hover, #text-3 h3 a:link, #text-3 h3 a:visited {color: #000000; text-decoration: none; }
.custom #text-3 h3 a:hover {color: #000000; text-decoration: underline; }


/*for main text*/
.custom #text-6 a:hover, #text-6 a:link, #text-6 a:visited {color: #650202; text-decoration: none; } 
.custom #text-6 a:hover {color: #650202; text-decoration: underline; }
.custom #text-6 a {color:#650202; font-size:0.87em; padding-left:5px; }
/* for header */
.custom #text-6 h3 a:hover {color: #000000; text-decoration: underline; }
.custom  #text-6 h3 a:link, #text-6 h3 a:visited {padding-left:0px; font-size:1em; color: #000000; text-decoration: none; }

.custom #text-3, #text-4 {margin-bottom:0;}
.custom  #kb-advanced-rss-11 h3 {letter-spacing:normal; }  /* Facebook */
.custom #kb-advanced-rss-9, #kb-advanced-rss-10, #kb-advanced-rss-11 {margin-bottom:1.5em;}
.custom #kb-advanced-rss-9 li, #kb-advanced-rss-10 li, #kb-advanced-rss-11 li {padding-left:5px;}


/** Background colors **/
/** From http://www.sagaciousnews.com/initial-setup-thesis-wordpress-theme/ **/
/**
 body.custom {
    background: #d4bca0;
}




.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #f0eee1;
    border: 0.4em solid #c4af94;
}
**/
/** .custom #page {
    background: #fff;  
}
**/
































































