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



/*this should add a buffer in the margin-padding of content*/
.custom .format_text 
{
padding-left: 1.00em;
}
.custom .headline_area 
{
padding-left: 1.00em;
}



.custom #page {
    background: #fff;
}

.custom #header {
background:#000000 none repeat scroll 0 0;padding:0;
}

/*this should hide the comment text from the home page*/
.custom .comments_closed p {
text-indent: -99999em ;
}

/* this should change the background color of the FOLLOW PM widget to black
.custom #text-424141002.widget {
	background-color: black;
}
*/

/* this should change the background color of the quotes widget
.custom #text-436947571.widget {
           background-color: white;
}
*/

/* this should change the background color of the store widget to black
.custom #text-433400641.widget {
	background-color: black;
}
*/

/*this should change the color of the footer*/
.custom #footer {
height: 50px;
background-color: #000000;
color: #FFFFFF;
border: none;
}

/*sidebar colors old-#F5F5F5
.custom #sidebar_1 {background: #ffffff;}
.custom #sidebar_2 {
background: #ffffff;
border: none;
}
*/

/*this should extend the 2nd sidebar background to the right edge and be flush with the footer right*/
.custom #sidebars {
width:32.1em;
}


/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }


/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content. changed to 1 from 0 */
/*.custom #header { padding: 1; }*/

/* THIRD TRY FOR HEADER

.custom #header {
background:#000000 none repeat scroll 0 0;padding:0;}

.custom #header #logo a {
background:transparent url(images/newheader.gif) no-repeat scroll 0 0;
display:block;
height:100px;
outline-color:-moz-use-text-color;
outline-style:none;
outline-width:medium;
width:525px;}
*/

/*fourth try for header*/
.custom #header #logo a { 
   display: block; 
   height: 100px; 
   width: 525px; 
   background:url('images/newheader.gif') no-repeat; 
   outline: none; 
   }

.custom #header #logo, .custom #header #tagline { 
   text-indent: -9999px; 
   }


/* this removes the underlines on the nav menus */
.custom ul#tabs li a:hover {
  text-decoration: none;
}
/* END this removes the underlines on the nav menus */

/* feature box customs */
/* this might put the cd cover next to the tracks */
#screenshots { position: absolute; top: 295px; left: 40%; margin-left: 13px; width: 180px; }
#about-screenshot { margin: 5px 5px 10px 0px; font: 11px Verdana, Arial, Helvetica, sans-serif; line-height: 2.2em; }


/* Featured Post Formatting 
.custom #feature_box { font-family: Helvetica,Arial,sans-serif; color: #ffffff; background: #bbbbbb; padding: 22px 15px 22px 15px; }
.custom #feature_box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #feature_box h2 a { color: #000000; text-decoration: none; }
.custom #feature_box h2 a:hover { color: #ffffff; }
.custom #feature_box p { font-size: 1.4em; line-height:1.571em; text-align: justify;}
.custom #feature_box .featurereadmore { padding: 22px 0 0 0; }
.custom #feature_box .featurereadmore a { font-size: 14px; text-decoration: none; }
end feature box customs */

