/*
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 #header {
background: #fff url('images/spotlightheaderbackground2.jpg');
background-position: center center;
border-width: thin; border-style: solid; color: #999; border-bottom-width: medium; border-bottom-style: solid; border-bottom-color:#666;
}

.custom #header #tagline {color: #333; font-size: 13px; font-weight:550}

.custom #header #logo a {color: #444;}
.custom #header #logo a:hover { color: #000;}


.custom #page {
    background: #fff;
}

body.custom {
    background: #FFFFAE;
}

.custom #container {
    margin-top: 1.5em;
    margin-bottom: 1em;
    background: #555;
    border: 0.4em solid #555;
}




.custom ul#tabs { list-style: none; border: 1px solid #ddd; border-width: 0 0 1px 1px; }

	.custom ul#tabs li { margin-bottom: -0.1em; background: #efefef; border: 1px solid #ddd; border-left: 0; float: left; }

	.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { font-weight: 600; padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
	
		.custom ul#tabs li a { display: block; line-height: 1em; color: #111; text-transform: uppercase; letter-spacing: 2px; }

		.custom ul#tabs li a:hover { color: #111; background:#FFFF99; text-decoration: none; }
	
		.custom ul#tabs li.current_page_item a, ul#tabs li.current-cat a { cursor: default; }
		
		.custom ul#tabs li.current_page_item a:hover, ul#tabs li.current-cat a:hover {background: none; text-decoration: none; }
	
	.custom ul#tabs li.rss { padding-right: 0; background: none; border: none; float: right; }
		
		.custom ul#tabs li.rss a { padding-right: 16px; background: url('../images/icon-rss.gif') 100% 50% no-repeat; }


/*--Sidebar Widget Text Headers Modifications--*/
.custom .sidebar h3 {
color: #222; 
}






.custom .post_box {border-bottom: 1px solid #444; }

.custom #footer {border-color: #333;}

/* Add padding to ordered lists on post #4704 */
.custom .post-4704 .entry-content ol li {
    padding: 4px;
}

/* Add padding to ordered lists on post #5004 */
.custom .post-5004 .entry-content ol li {
    padding: 4px;
}
/* Reduce bottom margin of <p> inside <li> */
.custom .post-5004 .entry-content ol li p {
	margin-bottom: 4px;
}


