/*

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/

*/

/*KLL BEGIN code to change color of links in body only*/


div.format_text a {color:#d11919;}
div.format_text a:hover {color:#1b84bd;}


/*KLL END code to change color of links in body only*/



/*KLL BEGIN code to make byline lowercase*/



.headline_meta span, .headline_meta abbr {

font-style:normal;

letter-spacing:1px;

text-transform:capitalize; <--- this setting changes it to upper/lower case

}


/*KLL END code to make byline lowercase*/



/*KLL BEGIN code to reduce white space in sidebar*/


.custom li.widget { margin-bottom: 1em }


/*KLL end code to reduce white space in sidebar*/





/*KLL BEGIN code to remove space below content in post content*/



.entry-content {margin-bottom:-1em;}



/*KLL END code to remove space below content in post content*/





/*KLL BEGIN code to remove space above post headlines*/



.post {padding-top:0;}



/*KLL END code to remove space above post headlines*/




/*KLL BEGIN code for post headlines*/



/*KLL BEGIN code for post headlines, h1 controls headlines on full post pages*/



.custom #content h1 

{

font: bold 1.60em Arial, Verdana, Helvetica, sans-serif;

letter-spacing: .05em;

color: #1b84bd;

}



/*KLL END code for post headlines, h1 controls headlines on full post pages*/



/*KLL BEGIN code for post headlines, h2 controls headlines on home page*/



.custom #content h2

{

font: bold 1.5em Arial, Verdana, Helvetica, sans-serif;

letter-spacing: .05em;

color: #1b84bd;

}

.custom h2 a {color: #1b84bd; }

.custom h2 a:visited { color: #1b84bd; font-weight: bold; }

.custom h2 a:hover { color: #d11919; font-weight: bold; }


/*KLL END code for post headlines, h2 controls headlines on home page*/



/*KLL BEGIN this line of code controls sidebar headings such as categories*/


.custom h3 {letter-spacing:1px; font-variant: normal; font: bold 1.6em; text-transform:capitalize;}


/*KLL END this line of code controls sidebar headings such as categories*/


/*KLL BEGIN this line of code centers sidebar headings & textbox contents*/

.custom .sidebar h3 { text-align: center; }

.custom #sidebars { text-align:center; }

/*KLL BEGIN this line of code centers sidebar headings & textbox contents*/



/*KLL BEGIN don't know what h3 controls yet*/



.custom #content h3

{

font: 1em Verdana, Arial, Helvetica, sans-serif;

font-weight: bold;

letter-spacing: .1em;

color: #1b84bd;

margin: 1em 0 .2em;

padding: 0;

}



/*KLL END don't know what h3 controls yet*/



/*KLL END code for post headlines*/



/*KLL BEGIN center align drop down categories and its title*/



.custom .widget_categories {text-align:center;}

.custom .widget_categories h3 {text-align:center;}



/*KLL END center align drop down categories and its title*/



/*KLL BEGIN space reduction after categories widget*/



.custom .widget_categories {margin-bottom:.25cm;}



/*KLL END space reduction after categories widget*/



/*KLL BEGIN reduction of space after post headline*/



.custom .headline_area {

margin-bottom:.5em;

}


/*KLL END reduction of space after post headline*/



/*KLL BEGIN change to page background*/



body.custom {

    background: #f1f5f7;

}



.custom #container {

    margin-top: 2em;

    margin-bottom: 2em;

    padding: 0.2em;

    background: #8a8b8e;

    border: 0.2em solid #;

}



.custom #page {

    background: #fff;

}

/*KLL END change to page background*/





/*KLL BEGIN change to HEADER*/



/* DoubleMule Clickable Header v. 1.0 */



.custom #header 

{

background: #ffffff;

padding-top: 1em;

padding-right: 0em;

padding-bottom: 1.5em;

padding-left: 0em;

border-top: 0em;

border-right: 0em;

border-bottom: 0em;

border-left: 0em;

margin-top: 0em;

margin-right: 0em;

margin-bottom: 0em;

margin-left: 0em;

}



.custom #header #logo a

{

display:block;

width:250px;

height:35px;

background:url(http://dealformation.com/wp-content/themes/thesis_151/custom/images/WIDJ-Header-Logo.gif) center no-repeat;

color:#000000;

text-indent: -9999px;

padding-top: 0em;

padding-right: 0em;

padding-bottom: 0em;

padding-left: 0em;

border-top: 0em;

border-right: 0em;

border-bottom: 0em;

border-left: 0em;

margin-top: 0em;

margin-right: 0em;

margin-bottom: 0em;

margin-left: 0em;

}



.custom #header #tagline 

{

color:#000000;

text-indent: -9999px;

}

/*KLL END change to HEADER*//*KLL END change to HEADER*/