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

BALANCESEEKER.NET

*/

/* header */
.custom #header { border-bottom:1px solid #CCCCCC;
height:100px;
padding-top:0;
padding-bottom:0;
padding-left:0;

position:relative;
}

.custom #header h1 {
	display:none;
}

/* end header */

/* nav menu */

.custom ul#tabs {
	border:medium none;
	list-style-image:none;
	list-style-position:outside;
	list-style-type:none;
	position:absolute;
	right:0.5em;
	top:1.1em;
}
.custom ul#tabs li {
	border:none; 
	background:none;
	border-right: 1px solid #2fd2ff;
}

.custom ul#tabs li a {
	text-transform:none;
	letter-spacing:0px;
	line-height:5px;
 	font-family:Arial, Helvetica, sans-serif;
	font-weight:normal;
	font-size:13px;
	color:#cd2802;
}

.custom ul#tabs li.current_page_item {background:none;}

/* ordered list formatting */

.custom #content ol li {
margin-bottom:1em;
}

.custom #content ol li br {
margin-bottom:1em;
}

/* content */
.custom .img_credit {
clear:left;
margin-top:1em;
float:right;
color:#CCCCCC;
font-size:9px;
}

.custom .img_credit a{
text-decoration:none;
color:#CCCCCC;
}

.custom .img_credit a:hover{
text-decoration:underline;
}

.custom .post_box,.custom .teasers_box{
border-top:2px solid #32d2ff;
}

.custom .to_comments{
text-align:right;
}

.custom .headline_meta span{
text-transform:none;
}

.custom .prev_next {
border-top:2px solid #32d2ff;
}

.custom #content_box{
/*vertical bar between content & sidebars
background:transparent url(images/dot-red.gif) repeat-y scroll 70.1em 0;
*/
}

/*  sidebars */

.custom .orange_header, .custom .sidebar_list li h3{
text-transform:none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-weight:bold;
font-variant:normal;
color:#FF9900;
}

.custom #shantz-qotd{
padding-top:2em;
margin-bottom:9px;
}

.custom #rss_header{
text-transform:none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-weight:bold;
font-variant:normal;
color:#FF9900;
}
.custom #rss_p{
margin-bottom:0.5em;
}

.custom #full_div{
padding-bottom:2em;
}

.custom #email_div{
float:left;
}

.custom #rss_div{
float:left;
}

.custom .paypal_button{
background:none;
border:none;
color:#444444;
}

.custom .paypal_button:hover{
background:#e8a500;
border:none;
color:#444444;
}

/* comments */
.custom #commentform {
border-top:1px solid #32d2ff;
}

/* footer */

.custom #footer{
border-top:3px solid #e8a500;
}

