/*
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/
*/

/*Page setup*/
	
.custom #page {
	padding:0;
	}

.custom #content {
float:left;
margin:2em;
width:60em;
}
	
.custom #container {
	margin:0;
	width:auto;
	}

.custom #content_box {
	margin:0 auto;
	width:95em;
	}
	
.custom #footer {
	border:1px solid #CCCCCC;
	margin:0 auto 1.5em;
	width:930px;
	}
	
/*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: 179px; width: 956px; align: center; background: url('images/blogbanner5.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; }
	


.custom #tagline {
display:none;
}




.custom #header {
	background-color:#193441;
	padding-bottom:0em;
	padding-top:0em;
	color:#ffffff;
	font-size:0.9em;
	border:none;
	}
	
.custom #header #logo a, .custom #header #logo a:hover {
	color:#ffffff;
	text-decoration:none;
	}
	
.custom ul#tabs {
	margin:0 auto;
	width:975px;
	border:none;
	
	}
	
.custom #header #logo {
	font-weight:normal;
	margin:0 auto;
	width:950px;
	}


.custom .tabs-menu {
	background-color:#3E606F;
	border-color:#CCCCCC;
	border-style:solid;
	border-width:1px 0 0;
	}
	
.custom .search-top  {
	background-color:#FCFFF5;
	border:1px solid #CCCCCC;
	margin:1.5em auto 0;
	padding:0.5em 0;
	width:950px;
        height:24px;
	}
	
.custom #searchform {

        float:left;

        padding:0 1em;

        }
	
.custom .search-top label {
	display:none;
	}
	
.custom #searchform input {
	background:#FFFFFF none repeat scroll 0 0;
	border:1px solid #CCCCCC;
	color:#6E9DBB;
	font-size:1.5em;
	padding:0.05em;
	}
	
.custom #searchform input#searchsubmit {
	background:#3E606F none repeat scroll 0 0;
	border:1px solid #CCCCCC;
	color:#FFFFFF;
	font-size:1.2em;
	padding:0.2em;
	}

.custom ul#tabs li, .custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {
	background-color:#3E606F;
	color:#ffffff;
	border-color:#ffffff;
	border-style:solid;
	border-width:0px 1px 0px 0px;
	padding:0 0.7em;
	}
	
.custom ul#tabs li {
	margin:0.4em 0;
	}
	
.custom ul#tabs li a{
	color:#ffffff;
	padding:0.35em 1.5em;
	}
	
/*Sidebar*/

.custom #sidebars {
	margin-top:0em;
	}
	
/*Content*/
	
.custom #content_box {
	background:none;
	border-color:#cccccc;
	border-style:solid;
	border-width:0px 1px;
	}
	
/*Comments*/

.custom span.bracket {
	display:none;
	}
	
.custom .to_comments {
	background-image:url(images/chat.jpg);
	background-repeat:no-repeat;
	padding:0 2.8em;
	}
	
.custom .post_box {
	border-bottom:1px solid #cccccc !important;
	border-top:medium none;
	
	}
	
.custom .post_box:last-child{
	border-bottom:none !important;
	}
	
/*Widget*/

.custom li.widget {
	border:1px solid #CCCCCC;
	float:left;
	margin-bottom: 0;
	margin-top: 2em;
	
	}
	
.custom .sidebar h3 {
	background-color:#FCFFF5;
	border-bottom:1px solid #CCCCCC;
	padding:3px 0 5px 10px;
	}
	
.custom .sidebar .textwidget, .sidebar_list li ul {
	padding:10px;
	}
	
.custom .sidebar .textwidget img {
	padding:0 6px 6px 0;
	}

.custom .sidebar ul.sidebar_list {
	padding-right:3em;
}

.custom ul.sidebar_list {
padding-top:0;
}


	
/*RSS*/

.custom ul#tabs li.rss {
	border:none;
	}


.custom ul#feed {
	list-style:none;
	}

.custom ul#feed li.rss a {
	
background-image:url(images/rss2.png);
	
background-repeat:no-repeat;
	
color:#999999;
	
float:right;
	
font-size:1.1em;
	
list-style-image:none;
	
list-style-position:outside;
	
list-style-type:none;
	
padding:0px 10px 2px 20px;
	
margin:4px 0;
	
text-transform:uppercase;
	
}

