/*
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; }	&lt;--- 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/
*/

/* HEADER ZONE */

.custom #header_area {
	background: transparent url('images/gold-tile-dark.jpg') repeat-x; 
height: 160px;
padding-bottom: 0em;
}

.custom #header_area .page {
background: transparent url('images/logo.jpg') no-repeat scroll 0 0;
height: 160px;
padding-bottom: 0em;
padding-top:0em;
}

.custom #header {
height: 160px;
	background: transparent;
	border-bottom: 0;
padding-bottom: 0em;
}



/* CLICKABLE HEADER ZONE */


/* 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: 160px; 
width: 100%; 
background:transparent center center; 
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; }

/* BEHIND EVERYTHING */

body.custom {
	background: #9E8E6C;
}


/* NAVBAR ZONE */

.custom #nav_area {
	background: #3F503E;
margin-left: 0;
}

.custom #nav_area .page {
	background: #5C7B53;
}

.custom .menu {
	background: #5C7B53;
	border: 0;
}

.custom .menu li.tab a, li.tab {
	border: 0;
}

/* CONTENT ZONE */


.custom #content_area {
	background: #FAFAF0;

}

.custom #content_area .page {
	background: #FFFFFF;

}

.custom #content_box {
background: #FFFFFF;
}

/* FOOTER ZONE */

.custom #footer_area { 
background: transparent url(images/gold-footer-dark.jpg) repeat-x top scroll;
	
}

.custom #footer_area .page {
padding-bottom: 0em;
background: #EED195 url(images/gold-footer2.jpg) no-repeat center top scroll;
}


.custom #footer {
	border: 0;
background: transparent;
text-align: left;
	}



/* WIDGETIZED FOOTER */

.custom #footer_1 {text-align:left; color:#333;}
	.custom #footer_1 ul.sidebar_list li.widget {width:25%; margin-right:2%; float:left;}
		.custom #footer_1 ul.sidebar_list li.widget h3 {color:#222;}
		.custom #footer_1 ul.sidebar_list li.widget a {color:#444; border-bottom:0;}
		.custom #footer_1 ul.sidebar_list li.widget a:hover {color:#111;}



/* BLOCKQUOTE */


.custom blockquote {
background:#FAFAF0 none repeat scroll 0 0;
border-bottom:1px solid #E8E7D0;
border-top:1px solid #E8E7D0;
border-left: 0px;
margin:1.2em 20px;
padding:1em 20px;

}

/* HOMEPAGE BLOCKQUOTE */

.custom #order-book {
background:none repeat scroll 0 0 #FAFAF0;
border-bottom:1px solid #E8E7D0;
border-left:0 none;
border-top:1px solid #E8E7D0;
margin:1.2em 20px;
padding:1em 20px;
width:50%;
}

/* SIDEBARS */

.custom #sidebars {
	border-width: 0px;
}

.custom .sidebar h3 {font-size: 1.3em;
color: #333333; }

/* COMMENTS */

.custom dl#comment_list .bypostauthor {
background:#F8DFA6 none repeat scroll 0 0;
}

.custom input, textarea {

background:#FAFAF0 none repeat scroll 0 0;
	
}

/* IMAGES AND CAPTIONS */

.custom .wp-caption {
background-color:#FAFAF0;
}

/* SPECIAL STYLES */

div.foreign
{
  margin: 0px 5px 10px;
padding: 0 0 0 10px;

  height: 430px;
  width: 210px;
  float: left;
  text-align: left;
border: 1px dotted #E8E7D0;
}


div.foreign img
{
  display: inline;
  margin: 5px;
border: 1px #FFFFFF;
}



div.foreign-desc
{
  text-align: left;
  font-weight: normal;
  width: 210px;
height: 120px;
  margin: 2px 2px 10px 2px;
}



