/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's 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!
*/


/* Custom styling to turn the rotating images box into an ad station */


.custom #image_box img {margin:3px;}
.custom #image_box a:hover img {border:4px solid #bebebe;}
.custom #image_box a img {border:4px solid #eee;}

.custom #image_box img {height: 120px; width: 120px; display: inline;}

.custom #image_box p.sponsors {color: #888; text-transform: uppercase; padding-left: 8px; letter-spacing: .2em;}

.custom #image_box p.promo a {color: #888; align: right; text-decoration: none; padding-left: 81%;}
.custom #image_box p.promo a:hover {color: #222;}

/* I don't like the bold headlines */

.custom #content h2, h1 {font-weight: normal; font-size: 2.2em;}


/* Adding borders to the page */

.custom #content_box {
    border: 0.1em solid #ccc;
    border-width: 0 0.1em;
}

/* And change the header background color */

.custom #header {
	border-left: 0.1em solid #ccc;
	border-right: 0.1em solid #ccc;
	border-bottom: 3px double #ddd
    border-width: 0 0.1em;
    background: #d93d00;
}

/* matching the tab color */

.custom ul#tabs li.current_page_item { background: #d93d00; border-bottom-color: #d93d00; }

.custom ul#tabs li.current_page_item a { color: #FFF; }


/* Styling for the blog network image */

.custom #header img.network {display: inline;}










