/*
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-image: url('images/bg.gif'); background-repeat:repeat-x; 

}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #fff;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
}

.custom a {color: #333399;}

/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 75px; width: 400px; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo { text-indent: -9999px;}

/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */


/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { position: relative; padding: 0; background: url('images/header.jpg') no-repeat;  height: 150px;}
.custom #header #header-buttons-new { width: 166px; position: absolute; top: 0px; right: 124px; }
.custom #header #header-buttons-new a {display: block; width: 167px; height: 49px; clear: both; padding: 0; margin: 0; text-indent: -10000px;  background: url('images/header-buttons.jpg') no-repeat; background-position: center top;}
.custom #header a#donate-button-new { background-position: center 0px;}
.custom #header a#subscribe-button-new { background-position: center -49px;}
.custom #header a#share-button-new { background-position: center -98px;}
.custom #header h1#tagline, .custom #header #tagline {float: left; margin: 4px 0 0 15px; padding: 0; color: #666699; width: 450px; font-size: 20px;}

#custom_box, .custom #feature_box {color: #666699; font-size: 16px; padding: 15px 12px; }
#custom_box h2, .custom #feature_box h2 {font-size: 24px; font-weight: bold; }
#custom_box p, .custom #feature_box p {padding-bottom: 8px;}
#custom_box ul, .custom #feature_box ul {padding-bottom: 8px; list-style-type:disc; padding-left: 1em;}
.custom #feature_box .video-promo {
font-size: 11px;
width: 120px;
text-align: left;
float: left;
padding: 4px 30px 0px 0;
margin: 0;
}
.custom #feature_box .video_promo a img {
padding: 2px;
border-color: #ccc;
border-style: solid;
border-width: 1px;
}

/* CONTEXTUAL SUBMENUS STYLING - PUT THIS IN YOUR CUSTOM.CSS FILE
These css selectors are split out to make it easy to change values.
Change the border width, colors and other styles to suit. 
If all four borders are the same you can use the border-style, border-color, and border-width properties to set all four at the same time. 
Do not change the list-style, width, and float settings.*/
ul#context_submenu {
	border-top-style: none;
	border-right-style: single;
	border-right-color: #ddd;
	border-right-width: 3px;
	border-bottom-style: double;
	border-bottom-color: #ddd;
	border-bottom-width: 1px;
	border-left-style: single;
	border-left-color: #ddd;
	border-left-width: 3px;
	background: #FFE2EC none repeat scroll 0 0;
	/* Do not change the values below! */
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	width: 100%;
	float: left;
}

/* Padding-left determines the space between submenu items. */
ul#context_submenu li { 
	padding: .7em 0em .5em 2.5em; 
	/* Do not change the value below! */
	float: left; 
}

/* Change the font size, color, and weight to suit. Word-spacing set to tighten up spacing. 
You can add other properties, such as font-family, etc. */
ul#context_submenu li a { 
	font-size: 1.05em; 
	color: #111111;
	text-transform: uppercase;
	letter-spacing: 2px;
	word-spacing: .03em;
}

.custom ul#context_submenu li a:hover { text-decoration: underline; }
