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

/*
The four lines below change the background color and borders of the tab menu at the top of the screen. BDC
*/
.custom ul#tabs { border-left: 1px solid #B0B0B0; }
.custom ul#tabs li { background: #DCD0A3; border: solid 1px #B0B0B0; border-left: 0;}
.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #FFFFFF; color: #000000; border: solid 1px #B0B0B0; border-bottom-color: #fff;}
.custom ul#tabs li.rss { background: none; } 

/*
Change the nav links to match the 1740 House font color 
*/
.custom .sidebar a, a:visited {color: #253F22 ;}

/*
Change the background color of the page to enclose the page
*/
body.custom {
    background: #253F22;
}
.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0em;
    background: #FFFFFF;
    border: 1em solid #C4B062;
}

.custom #page {
    background: #fff;
}


/*
The div lines below create new classes for handling an image gallery to be used in conjunction with Lightbox-2
*/
div.img
  {
  margin:3px;
  height:auto;
  width:auto;
  float:left;
  text-align:center;
  }
div.img img
  {
  display:inline;
  margin:5px;
  border:1px solid #000000;
  }
div.desc
  {
  text-align:center;
  font-weight:normal;
  width:200px;
  margin:0px;
  }


/*
The default behavior for category archives pages is to style an <h1> the same as an <h3> so that the focus is on the post titles, which are <h2> and, 
therefore, larger.  If you want category archives pages to behave with <h1> as a true <h1>, the styling item below fixes the situation.
*/

.custom #content #archive_info h1 { font-size: 2em; }

/*---:[ Modified image captioning ]:---*/
.wp-caption2 { border-style: solid; border-color: #FFF; background-color: #FFF; text-align: center; font-style: italic; }
	.wp-caption2.alignleft { float: left; }
	.wp-caption2.alignright { float: right; }
	.wp-caption2.aligncenter { margin-right: auto; margin-left: auto; float: none; clear: both; }
	.wp-caption2.alignnone { clear: both; }


/*
The line below defines the button table for the rooms and rates page to have padding left and right
*/
.custom #button table tr td {padding-right: 90px; padding-left: 80px; }

/*
The line below removes whitespace below my photo banner and above the horizontal border at the top of the page
*/
.custom #header { padding-bottom: 0; } 