/*
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: #959595; }
	
.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.1em solid red; }

.custom #page { background: #fff; 
	padding-top:  0.3em;}

.custom #header { display: block; height: 138px; width: 960px; background: url('images/bitbackground.png') no-repeat; outline: none; 
text-indent:  -9999px;}

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #tagline { 
	text-indent: 25px;
	color: black;
}

.custom #header #tagline img {
	position:  relative;
	left:  0px;
	bottom:  -20px;
	clear:  left;
}



/* 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; 
	border-bottom:  1px solid red; 
/*	border-top: 1px solid red; */
	clear: both;}

.custom #header #logo a {
	display:  block;
	background:  url('images/bitwiselogo2.png') no-repeat;
	height:  75px;
	width:  919px;
	position:  relative;
	top:  21px;
	left: 20px;
}

.custom ul#tabs {	width: 960px;	font-size: 14px;
	font-weight:  bolder;	color: #fff;	padding: 0;
	padding-left: 0px;
	border-right: 0px solid;
	border-right-color:  red;
	overflow: hidden;
	margin-bottom: 0;
	margin-right: 0;
	text-indent: 0px;
	border:  none;
}

/*.custom ul#tabs  li{	float: left;	color: #000;	white-space: nowrap;}
*/

/*
.custom ul#tabs li .main {	
	color: #ffffff;
}
*/
.custom ul#tabs a{	display: block;	text-decoration: none;
	padding: 5px 15px;
}.custom #tabs a:link,.custom #tabs a:visited {	color: #000;}

.custom ul#tabs li{	color: #fff;
	float: left;
}

.custom #tabs a:hover{	color: #000;
	text-decoration:  none;}

.custom ul#tabs li:hover  {
	padding-top:  0px;
	padding-bottom: 0px;	border-bottom: 3px solid red;
	border-top: 3px solid white;
	color: gray;
}

.custom ul#tabs li { 
	margin-bottom: -0.1em;
	padding-top: 0px; 
	background: none;
	float: left;
	border-top-style: solid;
	border-top-width: 3px;
	border-top-color: white;
	border-bottom-style: solid;
	border-bottom-width: 3px;
	border-bottom-color: white;
}

.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { 
	padding-bottom: 0;
	padding-top:  0px; 
	background: none; 
	border-bottom: 3px solid red;
	border-top:  3px solid red; }

.custom ul#tabs li a { display: block; line-height: 1em; color: #111; text-transform: none; letter-spacing: 2px; }

.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 { text-decoration: none; }

.custom ul#tabs li.rss { 
	padding-right: 0; 
	padding-top:  3px;
	background: none; 
	border: none; 
	float: right;
	font-weight: normal;
	font-style: normal;
	font-size: smaller;
}

.custom li.widget ul {
	padding-left:  10px;
	list-style-type: disc;
}

.custom sidewidget li {
	padding-top: 10px;
	padding-bottom:  10px;
}

.custom #widget_killer_recent_entries-386486781 {
	background-color: #ff0000;
}

.custom #header #searchbox {
	border-style: solid;
	border-color: #d6290c;
	height:  50px;
	width: 150px;
	position:  relative;
	left:  600px;
	top:  10px;
	clear:  left;

}

/* Hide blog title for Blog page */
.custom #blogheadline {
	visibility: hidden;
	display: none;
}

.custom #feature_box {
	color: #000;
	font: 12pt Georgia, "Times New Roman", Times, serif;
	background-color: white;
	padding: 25px 15px 15px;
	border-top: 2px none #ddd;
}

.custom #feature_box p {
	margin-bottom: 24px;
}

        
.custom #subscriptionwidget a {
	text-decoration: none;
	color: #000;
	border-bottom: 1px dotted #ff0000;
}
