/*
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-color: #c9e6e9;
}

.custom .no_sidebars {
  background: #ffffff !important;
}

.custom .no_sidebars .post_box {
  margin: 0 13em;
}

.custom #content_box {
  background-color: #ffffff;
  border-style: none;
/*
  -moz-background-clip: border;
  -moz-background-inline-policy: continuous;
  -moz-background-origin: padding;
  background: transparent url(images/vr.gif) repeat-y scroll 51.3em 0;
 */
}

.custom #custom-tabs {
  width: 949px;
  height: 88px;
  background-color: #ffffff;
  list-style: none;
}

.custom #custom-tabs li {
  float: left;
  margin: 10px;
}

.custom #tabs li {
  width: 120px;
  height: 40px;
  background-image: url('images/nav-background.gif');
  background-repeat: no-repeat;
  background-position: top right;
  margin-bottom: 0;
  margin-right: 20px;
}

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

.custom .post_box {
  border: none;
}

.custom .post_box .quote {
  width: 660px;
  margin: 0 20px;
  color: #6b9446;
  font-style: italic;
}

.custom .post_box table {
  border-collapse: collapse;
  margin-left: 10px;
  margin-bottom: 20px;
}

.custom .post_box tr {
  border-bottom: solid 1px #eeeeee;
}

.custom .post_box td:first-child {
  width: auto;
  padding-right: 30px;
  text-align: left;
}

.custom .post_box td {
  width: 85px;
  text-align: center;
}

.custom .post_box table.purchase td:first-child {
  text-align: left;
  width: auto;
}

.custom .post_box table.purchase td {
  text-align: center;
  width: 110px;
}

.custom .post_box td.checked {
  background: url(/wp-content/uploads/2010/01/checkbox1.jpg) center no-repeat;
}

.custom .post_box table, .custom .post_box td {
  border: none;
}

.custom .post_box td {
  padding: 15px 10px;
}

.custom #feature_box {
  padding-left: 0;
  padding-right: 0;
  background: #ffffff;
  border-bottom-style: dashed;
}

.custom #feature_box .post_box {
  padding-top: 0;
}

.custom #feature_box h2 {
  margin-top: 0;
  font-weight: bold;
}

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

.custom #sidebar_1 {
  border-style: dashed;
}

.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 form#commentform input.form_submit {
  display: none;
}

.custom form button, .custom form input[type=image] {
  background-color: #ffffff;
  border: none;
}

.custom .post_box form tr {
  border-bottom: none;
}

.custom #footer {
  width: 949px;
  height: 160px;
  background-color: #ffffff;
  background-image: url('images/footer-background.jpg');
  background-repeat: no-repeat;
  background-position: top right;
  border-top: none;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.custom #footer p {
  padding-top: 170px;
}

.custom input {
  width: auto;
}

.custom a {
  color: #7faeb3;
}

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

.custom .error {
  color: #cc3333;
}

.custom .hidden {
  display: none;
}
