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

/* navbar style */
.custom ul#tabs {border-top: solid 1px #f5f5f5; border-bottom: solid 1px #000; border-left:none;}
.custom ul#tabs li {margin-bottom:0; border:none; background:none}
.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:#000; }
.custom ul#tabs li.rss {}
.custom ul#tabs li a {}
.custom ul#tabs li a:hover {text-decoration:none; background:#FFF0AF}
.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {color:#fff;}
.custom ul#tabs li.current_page_item a:hover {text-decoration:none; background:#FFF0AF;}
.custom ul#tabs li.current-cat a:hover {text-decoration:none; background:#FFF0AF}


.custom #footer {border-top:solid 1px #f5f5f5;}

/* Background Color & Image */
body.custom {
    background: #000;
}

/* body border & margin */
.custom #container {
    background: #fff;
	border: solid 3px #8e8e8e;
    margin-top: 2em;
    margin-bottom: 2em;
}


/* sidebar background color */
.custom #content_box {background-color:#fff;}
.custom #content {background-color:#fff;}

/* custom header image */
.custom #header {
border-bottom:solid 2px #f5f5f5;
height:150px;
padding-top:0;
padding-bottom:0;
background: #000 url(http://www.ignitethiscity.com/images/ignitethiscity_header.png) left no-repeat; 
}


.custom #header #logo { display:none; }

.custom #header #tagline { display:none; }


/* sidebar ads */
.ads {clear:both;display:block;margin:0px 0;padding:0 0 20px 0;width:264px;}
.ads img{background:transparent;border:none;display:block;padding:0;}
.ads .ad-left{float:left;margin:0 0 5px}
.ads .ad-right{float:right;margin:0 0 5px}

/* Subscribe button */
.custom .rss {
	margin-right:10px;
}

/* Hide closed comments dialog */
.custom .comments_closed p {display: none ;}


