/*
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: #d1dfef; 
	background-image: url(/blog/images/background.png);
	background-repeat: repeat-x;
	background-position: top;
	background-attachment: fixed; }

.custom #container { margin-top: 0.5em; margin-bottom: 0.5em; padding: .60em; background: #0000ff; }

.custom #header { padding: 0px; padding: 0px; border-style: none; border-bottom: none; padding-bottom: 0em;}

/*
This will remove any whitespace after the header image: (doesn't appear to work for my needs but keep for reference)
*/
.custom #header #tagline { height: 0; color: #000000; }

.custom #page { background: #FFFFFF; font-family: Arial,Verdana,Helvetica,sans-serif; padding-top: 0em; padding-bottom: 2em; padding-left: 2em; padding-right: 2em; }

.custom .ebayheader { color: #0000FF; font-weight: bold; font-size: 16px; }

.custom .menu {	border-color: #FFFFFF; }

.custom .ebaylinks { color: #0000FF; font-weight: bold; font-size: 14px; }

.custom a:link { color: #0000FF; text-decoration: none; }

.custom a:hover { color: #B707CF; text-decoration: none; }

.custom #tabs a:hover { color: #0000FF; cursor: pointer; text-decoration: underline; }

.custom #footer { color: #000000; font-weight: normal; font-size: 12px; padding-bottom:0; padding-top:0; }

.custom #footer a { color: #0000FF; text-decoration: none; }

.custom .format_text a { text-decoration:none; }

.custom a { color:#0000FF; text-decoration:none; }

.custom .sidebar h3 { font-size: 1.2em; color: #000000; font-variant:normal; font-weight: bold; letter-spacing:1px; background-image: url(/blog/images/menu-background.png); background-position: top; background-position: left; background-repeat: no-repeat; height: 27px; width: 140px; padding: 6px 0px 0px 8px; }

.custom #tabs { background-color: #ffffff; border: 0px solid #0000FF; }

.custom #tabs li { background-color: #ecf1f7; border-top: solid 1px #0000FF; border-left: solid 1px #0000FF; border-right: solid 1px #0000FF; }

.custom #tabs .rss { padding-right: 8px; }

.custom li.widget .widget_box { background: #ffffff; border-style: none; }

.custom .ebayheading { color: #FF0000; font-weight: bold; font-size: 1.3em; }

.custom #categories-3 li a, #recent-posts-3 li a, #archives-3 li a, #popular-posts li a, #recent-comments-3 li a {
	background:transparent url(/blog/images/bullet.gif) no-repeat scroll 0 0.45em;
	display: block;
	line-height: normal;
	padding: 2px 5px 2px 15px;
	text-decoration: none;
	width: auto;
	}

.custom #categories-3 li a:hover, #recent-posts-3 li a:hover, #archives-3 li a:hover, #popular-posts li a:hover, #recent-comments-3 li a:hover {
	background:transparent url(/blog/images/bullet-alt.gif) no-repeat scroll 0 0.45em;
	display: block;
	line-height: normal;
	padding: 2px 5px 2px 15px;
	text-decoration: none;
	width: auto;
	}

.custom li.widget {
        font-size:1.2em;
        line-height:1.5em;
        margin-bottom:1.5em;
}
.custom .format_text input, #commentform input, #commentform textarea {
width:auto;
}
/*search form style*/
.custom input, textarea {
background:#FFFFFF;
border-color:#0003FD;
border-style:solid;
border-width:1px;
color: #000000;
}

.custom a { outline: none; }

.custom .td-phpbay a{ display: block; }

/*
Teasers One Across Instead of Two (Start)
*/

.custom .teaser {
   width: 100%;
   margin-top: 2em;
   padding-top: 2em;
   border-top: 1px dotted #bbb;
   text-align: justify;
}
.custom .teasers_box {
   padding-top: 0;
   padding-bottom:0;
   border-top: 0;}

/*
Teasers One Across Instead of Two (End)
*/

