/*
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/
*/

/*gets rid of top header border*/

.custom ul#tabs {
border-color: #FFFFFF;}

/*increases space between header bottom border & feature box*/

.custom #feature_box {
padding-top: 1.1em;
}

/*The following replaces the header with a clickable image! */

.custom #header #logo a { display: block; height: 239px; width: 949px; background: url('images/gmheader.png') no-repeat; outline: none; }

.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

.custom #header #tagline { height: 0; }

.custom #header {padding: 0; }

/*Feature box customization for use as alternative nav bar*/

.custom #feature_box {
background: #FFFFFF;
border: none;
padding-left: 0;
padding-right: 0;}

/* changes background to custom tiled image */
body.custom {
background: url('canvas.jpg');
}

/* adds border around container -- "background" (inner border) is farrow & ball cream */
.custom #container {
margin-top: 2em;
margin-bottom: 2em;
padding: 0.3em;
background: #F8EDCF;
}

/* overall background of page is white */
.custom #page {
background: #FFF;
}

/* header background is white */
.custom #header {
background: #FFFFFF;
}

/* sidebar background is white */
.custom #sidebars {
background: #FFFFFF;
}

.custom .sidebar ul.sidebar_list {
background: #FFFFFF;
}

/* global mama is deeper aqua */
.custom #header #logo a, #header #logo a:visited {
color: #57A9Ae;
}

/* global mama is in normal font */
.custom #header #logo {
font-weight: normal;
}

/* hover-link color for global mama is white */
.custom #header #logo a:hover {
color: #FFF;
}

/* links same as lolalina */

.custom a {
text-decoration: none;}

.custom a {
color: #0089AA;}

.custom h2 a {
color: #111111;}

.custom .headline_meta a {
color: #888888;}

/* post titles in italics */

.custom .headline_area h1 {
font-style: italic;
}

.custom .headline_area h2 {
font-style: italic;
}

/* I removed the border from footer */
.custom #footer {
border-top: 0px;
}

/* google custom search button: I'm making it normal font, 1 pixel single border */
.custom li.thesis_widget_google_cse form input[type="submit"] {
font-weight: normal;
text-decoration: none;
border: 2px;
border: #777777;
color: #555555;
background: #FFFFFF;
}

/* RSS subscription widget, gets rid of underlining */
.custom li.widget p a, li.widget p a:visited {
text-decoration: none;
}