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

/* USE CUSTOM HEADER IMAGE */
.custom #header { border-bottom:double-line;
height:84px;
padding-left:0;
padding-top:0.1;
padding-bottom:0;
background:url('http://www.sportaches.com/images/header.gif')
center left no-repeat; }

/* DO NOT DISPLAY "COMMENTS CLOSED" IF THEY ARE CLOSED ON POSTS AND PAGES */
.custom .comments_closed p { display: none; }

.custom .format_text h2 {
font-size:1.333em;
line-height:1.25em;
margin:1em 0 0.625em;
}

/* --- Set links to blue and underline on hover --- */

.custom a, .custom a:visited { color: #2361A1; }
.custom a:hover { color: #2361A1; }
.custom a:hover { text-decoration: underline; }

/* --- Set byline links to be blue with black hover --- */

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

.custom .format_text a { text-decoration:none; }
.custom .format_text a:hover { color: #2361A1; }
.custom .format_text a:hover { text-decoration: underline; }


/* --- Set title links to black with blue hover --- */

.custom .entry-title a { color: #000; }
.custom .entry-title a:hover { color: #2361A1; }

/* --- Remove stippled grey underline from meta links in byline --- */

.custom .headline_meta a { border-bottom: none; }
.custom .headline_meta a:hover { color: #2361A1; text-decoration: underline; }

/* --- Remove stippled grey underline from edit link on archive pages --- */

.custom .edit_post  a { border-bottom: none; }
.custom .edit_post a:hover { color: #2361A1; text-decoration: underline; }

/* --- Change background color, add grey border --- */

body.custom { background: #000; }

.custom #container {
margin-top: 2em;
margin-bottom: 2em;
padding: 0em;
background: #33332f;
border: 0.4em solid #aaa;
}

.custom #page { background: #fff; }

/* --- Remove content borders --- */

.custom #content_box {background:none;}
.custom #column_wrap {background:none;}

/* --- Reducing space between sidebars and content --- */

.custom .post_box, .teasers_box, .full_width #content_box .page { margin: 0 0.5em; }

/* --- Customize spacing between sidebar widgets --- */

.custom li.widget {margin-bottom: 1.6em;}

/* --- Google search box customization --- */

.custom #cse-search-box div input { width: 240px; }
.custom #cse-search-results { width: 500px; }
.custom #cse-search-results iframe { width: 500px; overflow: hidden; }

/* --- Customize h2 tags --- */

.custom .format_text h2 {
font-size:1.333em;
line-height:1.25em;
margin:1em 0 0.625em;
}

/* --- Customize bullets for unordered lists --- */

.custom .format_text ul { list-style-type: disc }

/* --- Remove underline from 'more' link --- */

.custom .format_text.entry-content a { text-decoration: none; }
.custom .format_text.entry-content a:hover { text-decoration: underline; }

/* --- Change left side spacing of Leave a Comment header --- */

.custom #respond_intro { margin-left: 0.5em; }