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

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

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

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

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

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

.custom .entry-title a { color: #000; }
.custom .entry-title a:hover { color: #7D0000; }

/* --- Make the header link red on hover --- */

.custom #header #logo a { color:#000; }
.custom #header #logo a:hover { color:#7D0000; }
.custom #header #logo a:hover { text-decoration:none; }

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

.custom .headline_meta a { border-bottom: none; }
.custom .headline_meta a:hover { color: #7D0000; 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: #7D0000; text-decoration: underline; }

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

body.custom { background: #ddd; }

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

.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.5em;}

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

.custom .format_text h3 {
margin:0.9em 0 0.625em;
}


/* --- Customize h4 tags --- */

.custom .format_text h4 {
font-size:1em;
line-height:1em;
margin:1em 0 1.5em;
font-style:italic;
color:#666;
}

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

/* --- Change the space between widget list items --- */

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

/* --- Reduce space after related articles --- */

/* .custom .format_text.entry-content { } */

/* --- Social icons in the header --- */

.custom #soc_icons {
float: left;
position:relative;
margin-top:-24px;
z-index:100;
padding: 0px 0px 0px 0px;
background:transparent none repeat scroll 0 0; width: 400px;
float: right;
}

.custom #soc_icons a {
font-size:1.3em;
}

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

.custom div.sochead {
float: right;
font-size:1.3em;
padding: 0px 6px 2px 20px;
background:none no-repeat scroll 0 0;
}

.custom div.soctext {
float: right;
font-size:1.3em;
color:#555555;
padding: 0px 6px 2px 20px;
background:none;
}

.custom div.rss a {
float: right;
padding: 0px 10px 2px 20px;
background:transparent url(images/rss_16.png) no-repeat scroll 0 0;
}

.custom div.email a {
float: right;
padding: 0px 10px 2px 20px;
background:transparent url(images/email.gif) no-repeat scroll 0 0;
}

.custom div.twitter a {
float: right;
padding: 0px 10px 2px 20px;
background:transparent url(images/twit_16.png) no-repeat scroll 0 0;
}

/* --- Search box and feed count in the header --- */

.custom #search_fc {
float: left;
margin: 15px 12px 0 0;
width: 400px;
float: right;
}

.custom #search_fc div.search_text {
float: right;
}

.custom #search_fc div.search_box {
padding-left: 3px;
float: right;
}

/* --- Customize table style --- */
.custom td { padding: 3px }
.custom table { margin-bottom: 1em }