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

/* Custom Header Start
/* 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: 277px; width: 959px; background: url('images/header.jpg') no-repeat; outline: none; }

/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { 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 is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }

/* 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 { padding: 0; }
/* Custom Header Finish
/* ----------------------------------------------


/*---:[ Set 1: solid background with borders around the page area ]:---*/

body.custom { background: #347235; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #254117; border: 0.4em solid #3e3e3a; }

		.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/
/* ------------------------------------------------------------------------------------------------

/* Blocks display of headlines on menu pages */
.custom #no_headline .headline_area { display: none; }

/* remove extra space at top of page from the above block display of headlines
.custom #no_headline .post_box {padding-top: 0;}
/* end remove extra space
/* --------------------------------------------------------------------------------------------------

/* No uppercase for nav tab words */
.custom #tabs a { text-transform: none; }
/* --------------------------------------------------------------------------------------------------

/* CONTEXTUAL SUBMENUS STYLING 
These css selectors are split out to make it easier 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: 3px;
	border-left-style: single;
	border-left-color: #ddd;
	border-left-width: 3px;
	background:#D8E5F2 none repeat scroll 0 0;
	margin-bottom: 4px;
	/* 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-top: .2em; 
	padding-right: 0em; 
	padding-bottom: .2em; 
	padding-left: 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: #000000; 
	font-weight: bold;
	word-spacing: .03em;
}

.custom ul#context_submenu li a:hover { text-decoration: underline; }
.custom #logo {margin-top: .3em;}
.custom #context_submenu {margin-top: -1em;}

/* CONTEXTUAL SUBMENU - BLANK
Use the same values as the contextual submenu in this selector. */
ul#context_submenu_blank {
	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: 3px;
	border-left-style: single;
	border-left-color: #ddd;
	border-left-width: 3px;
	background:#D8E5F2 none repeat scroll 0 0;
	margin-bottom: 4px;
	/* Do not change the values below! */
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	width: 100%;
	float: left;  
}

/* If you have your nav menu at the top, you might 
have to adjust the header spacing between it and the contextual submenu */
.custom	#header { margin-top: .15em; }

/* These settings make the blank bar the same height as the regular one. 
It should be roughly the sum of the contextual submenu font's padding and font-size.*/
ul#context_submenu_blank li { 
	padding-top: .2em; 
	padding-bottom: 1.3em; 
	/* Do not change the value below! */
	float: left; 
}
/* --------------------------------------------------------------------------------------------------

/* Removes bullets from lists*/
.custom .format_text ul { list-style: none;
/* --------------------------------------------------------------------------------------------------
/* Float clearing for IE6: */

* html .clearfix
{
  height: 1%;
  overflow: visible;
}    
/* Float clearing for IE7: */
*+html .clearfix
{
  min-height: 1%;
}
/* Float clearing for everyone else: */
.clearfix:after
{
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}