/*

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: #44443f; }

	

	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }



		.custom #page { background: #fff; }





/* HERE IS CODE FOR HEADER */

/* This line sets up our clickable background image based on the site title's link */

/* DIY: Adjust the height & width attributes to reflect the actual size of your image */

/* DIY: Change the filename of your image to reflect the actual header's file name */

.custom #header #logo a { display: block; height: 230px; width: 960px; background: url('images/header/header_3g_960x230_title.jpg') no-repeat; outline: none; }



/* 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 collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */



/* This is a bit of a kludge, but it seems to work. */

.custom #header #tagline { height: 0; }



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

.custom #header { padding: 0; }



/* END OF HEADER - END OF HEADER - END OF HEADER - END OF HEADER */



//// THIS DOES NOT WORK ////

/* HERE IS CODE FOR AD IN POSITION 1 ABOVE SIDEBARS */

.custom_first_ad a {display: block; height: 120px; width: 420px; background: url('images/blog_ads/au_ad_420x120.gif') no-repeat; outline: none; }

/* END OF CODE FOR AD IN POSITION 1 ABOVE SIDEBARS */



//// THIS DOES NOT WORK ////

/* HERE IS THE CODE FOR AD IN POSITION 2 ABOVE SIDEBARS */

.custom_second_ad a {display: block; height: 160px; width: 420px; background: url('images/blog_ads/rs_ad_420x160.gif') no-repeat; outline: none; }

/* END OF CODE FOR AD IN POSITION 2 ABOVE SIDEBARS */





/* HERE IS THE CODE FOR CHANGING THE MM BOX BACKGROUND TO WHITE */

.custom #custom_box { background-color: #fff; }

/* END OF THE CODE FOR CHANGING THE MM BOX BACKGROUND TO WHITE */





/* HERE IS THE CODE FOR CHANGING THE IMAGE ROTATOR BOX BACKGROUND TO WHITE */

.custom #image_box { background-color: #fff; }

/* END OF THE CODE FOR CHANGING THE IMAGE ROTATOR BOX BACKGROUND TO WHITE */





/* HERE IS THE CODE FOR REDUCING PAD AROUND MULTIMEDIA BOX */

.custom #image_box { padding-top: 0; padding-bottom: 0; padding-left: 0; padding-right: 0 }

/* END OF THE CODE FOR REDUCING PAD AROUND MULTIMEDIA BOX */





/* HERE IS THE CODE FOR INSERTING IMAGES IN PLACE OF TEXT HEADINGS IN SIDEBARS  */

.custom li.thesis_widget_subscriptions h3 {height: 40px; background: url('images/sidebar_headings/subscribe.gif') no-repeat; text-indent: -9999px;}

.custom li.widget_links h3 {height: 40px; background: url('images/sidebar_headings/to_do_list.gif') no-repeat; text-indent: -9999px}

.custom li.thesis_widget_search h3 {height: 44px; background: url('images/sidebar_headings/search.gif') no-repeat; text-indent: -9999px}

.custom li.widget_recent_entries h3 {height: 47px; background: url('images/sidebar_headings/recent_posts.gif') no-repeat; text-indent: -9999px}

.custom li.widget_categories h3 {height: 45px; background: url('images/sidebar_headings/topics.gif') no-repeat; text-indent: -9999px}

.custom li.widget_to_do_list h3 {height: 40px; background: url('images/sidebar_headings/to_do_list.gif') no-repeat; text-indent; -9999px}

.custom li.widget_read_me h3 {height: 40px; background: url('images/sidebar_headings/subscribe.gif') no-repeat; text-indent; -9999px}

/* END OF THE CODE FOR INSERTING IMAGES IN PLACE OF TEXT HEADINGS IN SIDEBAR  */







/* HERE IS THE CODE TO REMOVE PADDING FROM AROUND IMAGE LINKS IN SIDEBAR */

// FROM KRISARELLA ON DIY THESIS FORUMS //

// NO IDEA WHY MY THE FIRST THREE LINES NEED TO BE THERE TO MAKE THIS WORK //

// ON THE SUBCSRIPTIONS LIST WHEN THE TO DO LIST ONLY NEEDS ONE LINE...HUH //

.custom widget_read_me .read_me_1 { padding-top:0; padding-bottom:0; padding-left:0; padding-right:0 }

.custom widget_read_me .read_me_2 { padding-top:0; padding-bottom:0; padding-left:0; padding-right:0 }

.custom widget_read_me .read_me_3 { padding-top:0; padding-bottom:0; padding-left:0; padding-right:0 }

.custom li.widget_read_me ul li {margin-bottom:0;}

.custom li.widget_to_do_list ul li {margin-bottom:0;}

/* END OF THE CODE TO REMOVE PADDING FROM AROUND IMAGE LINKS IN SIDEBAR */







/* HERE IS CODE FOR SUBSTITUTING IMAGES IN PLACE OF TEXT LINKS UNDER THE SUBSCRIBE HEADING */

.custom li.widget_read_me .read_me_1 {height: 69px; background: url('images/subscribe_links/01_rss.gif') no-repeat; text-indent: -9999px;}

.custom li.widget_read_me .read_me_2 {height: 71px; background: url('images/subscribe_links/02_twitter.gif') no-repeat; text-indent: -9999px;}

.custom li.widget_read_me .read_me_3 {height: 70px; background: url('images/subscribe_links/03_newsletter.gif') no-repeat; text-indent: -9999px;}

.custom li.widget_read_me .read_me_4 {height: 116px; background: url('images/subscribe_links/04_whats_that.gif') no-repeat; text-indent; -9999px;}

.custom li.widget_read_me ul li a {display:block; height:69px; width:200px; outline:none;}

/* END OF CODE FOR SUBSTITUTING IMAGES IN PLACE OF TEXT LINKS UNDER THE SUBSCRIBE HEADING */







/* HERE IS CODE FOR SUBSITUTING IMAGES IN PLACE OF TEXT LINKS UNDER THE TO DO LIST HEADING */

/* THANK YOU, CHRIS! */

.custom li.widget_to_do_list .to_do_1 { height: 42px; background: url('images/to_do_links/01_references.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list .to_do_2 { height: 30px; background: url('images/to_do_links/02_resume.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list .to_do_3 { height: 31px; background: url('images/to_do_links/03_linkedin.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list .to_do_4 { height: 49px; background: url('images/to_do_links/04_retailspeaks.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list .to_do_5 { height: 52px; background: url('images/to_do_links/05_alwaysupward.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list .to_do_6 { height: 36px; background: url('images/to_do_links/06_consulting.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list .to_do_7 { height: 29px; background: url('images/to_do_links/07_speaking.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list .to_do_8 { height: 77px; background: url('images/to_do_links/08_chocolate.gif') no-repeat; text-indent: -9999px; }

.custom li.widget_to_do_list ul li a {display:block; height:42px; width:200px; outline:none;}

/* END OF CODE FOR SUBSTITUTING IMAGES IN PLACE OF TEXT LINKS UNDER THE TO DO LIST HEADING */







/* HERE IS THE COMBINATION THAT KEEPS SIDEBAR LINKS BLUE, POST TITLES RED */

.custom a, .custom a:visited {

color:#CC0033;

}

.custom #sidebars a {

color:#336699;

}

/// THIS PART ADJUSTS THE HOVER AND VISITED COLORS OF POST TITLE LINKS ///

.custom .entry-title a{color:#CC0033;}

.custom h2 a:visited {color: #CC0033; }

.custom h2 a:hover { color: #FF0033; }

/* END OF THE COMBINATION THAT KEEPS SIDEBAR LINKS BLUE, POST TITLES RED */







/* TURN LINK TEXT IN NAV BAR TO BLACK */

.custom .menu a {color: black;}

/* END OF LINK TEXT IN NAV BAR TO BLACK */



////START HERE NEXT /////