/*
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/background-tile.gif');
}

.custom input {
  width: auto;
}

.custom a, .custom a:visited {
  color: #8bb9bc;
}

.custom .format_text ul {
  list-style-type: disc;
}

.custom .format_text li ul {
  list-style-type: circle;
}

.custom .error {
  color: #cc3333;
}

.custom .hidden {
  display: none;
}

.custom .format_text .form_field {
  margin-bottom: 0.5em;
}

.custom #feature_box .format_text label {
  display: block;
  width: 5em;
  float: left;
  position: relative;
  top: 0.2em;
}

.custom #content_box, .custom #footer {
  background-color: #ffffff;
}

.custom #header {
  border-style: solid;
  border-color: #6c615a;
  border-width: 1px 1px 0 1px;
  cursor: pointer;
}

.custom #content_box {
  border-style: solid;
  border-color: #6c615a;
  border-width: 0 1px 0 1px;
}

.custom #feature_box {
  padding-left: 0;
  padding-right: 0;
  background: #ffffff;
}

.custom #feature_box h2, .custom #feature_box h3 {
  clear: both;
}

.custom #feature_box fieldset {
  border-style: none;
  margin-bottom: 1.571em;
}

.custom .format_text .form_field {
  margin-bottom: 0.5em;
}

.custom #feature_box button {
  border-style: none;
  background-color: #ffffff;
}

.custom #feature_box .color-swatch {
  width: 17em;
  float: left;
}

.custom #feature_box .color-swatch p {
  font-size: 0.9em;
  line-height: 1em;
}

.custom form#newsletter p {
  text-align: center;
}

.custom form#newsletter img {
  display: block;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1em;
}

.custom form#newsletter .form_field {
  margin-bottom: 0.5em;
}

.custom form#newsletter label {
  display: block;
  width: 5.7em;
  float: left;
  position: relative;
  top: 0.3em;
}

.custom form#newsletter input {
  width: 8em;
}

.custom form#newsletter button {
  border-style: none;
  background-color: #ffffff;
  width: 100%;
}

.custom form#newsletter button img {
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}

.custom #footer {
  width: 927px;
  border-right: 1px solid #6c615a;
  border-bottom: 1px solid #6c615a;
  border-left: 1px solid #6c615a;
}

.custom #tabs li {
  background-color: #bdddda;
  border-color: #add2cf;
}

.custom #tabs li.current_page_item, .custom #tabs li.current-cat {
  background-color: #f6f3c3;
}

.custom #header {
  width: 927px;
  height: 120px;
  background-image: url('images/logo.gif');
  background-repeat: no-repeat;
  background-position: top right;
  border-bottom: none;
  padding-top: 0px;
  padding-bottom: 0px;
}

.custom #image_box {
  background-color: #ffffff;
}

.custom #comments {
  display: none;
}
