/*
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 table.compare tr {
  border-bottom: solid 1px #eeeeee;
}

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

.custom .post_box table.compare 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 .post_box .headline_area h2 {
  display: none;
}

.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;
}

.quote { font-family: 'Varela', arial, serif; font-size: 13px;}

/* Table styles */

.custom table.schedule {
  border-collapse: collapse;
  width: 100%;
}

.custom table.schedule th:first-child {
  border-top-left-radius: 12px;
  -moz-border-radius-topleft: 12px;
}

.custom table.schedule th:first-child + th {
  width: 50%;
}

.custom table.schedule th.last {
  border-top-right-radius: 12px;
  -moz-border-radius-topright: 12px;
}

.custom table.schedule tr.last td {
  border-top: none;
  line-height: 0.2;
}

.custom table.schedule tr.last td:first-child {
  border-bottom-left-radius: 12px;
  -moz-border-radius-bottomleft: 12px;
}

.custom table.schedule tr.last td.last {
  border-bottom-right-radius: 12px;
  -moz-border-radius-bottomright: 12px;
}

.custom table.schedule th {
  border: none;
  border-left: 1px solid #ffffff;
  background-color: #d2e6aa;
}

.custom table.schedule td {
  background-color: #e8f2d4;
  padding: 10px 10px;
  border-top: 2px solid #ffffff;
  border-left: 1px solid #ffffff;
}

.custom table.schedule td.week {
  background-color: #fdf5c3;
}

.custom .signup {
  width: 297px;
  height: 260px;
  background-image: url('http://www.rightbrainbusinessplan.com/wp-content/uploads/2013/03/sign-up-box-free-class-red.png');
  padding-top: 68px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.custom .signup input {
  display: block;
  margin: 10px auto;
  background-color: #ffffff;
  width: 207px;
}

.custom .signup .button {
  border: none;
  padding: 0;
  width: 175px;
  margin: 0 auto 7px auto;
}

.custom .signup p {
  font-size: 11px;
  line-height: 1.3;
  text-align: center;
}

/*
 * Majel styles
 * https://github.com/brianng/majel
 */
.m-box { padding: 1.5em; background-color: #eeeeee; margin: 1.25em 0;}
.m-box:before, .m-box:after { content: ""; display: table; }
.m-box:after { clear: both; }
.m-box { zoom: 1; }
.m-box h1, .m-box h2, .m-box h3, .m-box h4, .m-box h5, .m-box h6 { margin: 0; padding: 0; font-weight: bold; letter-spacing: 0; text-align: center; text-transform: none; }
.m-box h1 { font-size: 2em; }
.m-box h2 { font-size: 1.8em; }
.m-box h3 { font-size: 1.6em; }
.m-box h4 { font-size: 1.4em; }
.m-box h5 { font-size: 1.2em; }
.m-box h6 { font-size: 1em; }
.m-box p { margin: 1em 0 0 0; padding: 0}
.m-box p:first-child { margin-top: 0; }
.m-box p.m-quote:before { content: '\201c'; }
.m-box p.m-quote:after { content: '\201d'; }
.m-box p.m-attribution { text-align: right; }
.m-box p.m-attribution:before { content: '\2014'; }
.m-box b { font-weight: bold; }
.m-black-on-yellow { color: #000000; background-color: #f6f4c2; }

.m-table { width: 100%; }
.custom .m-table th { padding: 5px 10px; }
.custom .m-table td { padding: 5px 10px; }
.m-table.m-black-on-green th, .m-table.m-black-on-green td { color: #000000; border: 2px solid #ffffff; }
.m-table.m-black-on-green th { background-color: #d2e6aa; }
.m-table.m-black-on-green td { background-color: #e8f2d4; }

.m-table tr.m-black-on-yellow td { color: #000000; background-color: #f6f4c2; }
.m-table tr.m-black-on-strong-yellow td { color: #000000; background-color: #fbec88; }

.m-table.m-rounded-12 th:first-child { -webkit-border-top-left-radius: 12px; -moz-border-radius-top-left: 12px; border-top-left-radius: 12px; }
.m-table.m-rounded-12 th.last { -webkit-border-top-right-radius: 12px; -moz-border-radius-top-right: 12px; border-top-right-radius: 12px; }
.m-table.m-rounded-12 tr.last td:first-child { -webkit-border-bottom-left-radius: 12px; -moz-border-radius-bottom-left: 12px; border-bottom-left-radius: 12px; }
.m-table.m-rounded-12 tr.last td.last { -webkit-border-bottom-right-radius: 12px; -moz-border-radius-bottom-right: 12px; border-bottom-right-radius: 12px; }

.m-rounded { -moz-background-clip: padding; -webkit-background-clip: padding-box; background-clip: padding-box; }
.m-rounded-12 { -webkit-border-radius: 12px; -moz-border-radius: 12px; border-radius: 12px; }

.m-table td.checked { background-image: url(/wp-content/uploads/2012/02/yellow-checkbox.png); }
.m-table td img.aligncenter { margin: 5px auto; }

.custom .artizen-form-field {
  margin-bottom: 10px;
}

.custom .artizen-form-field label {
  display: block;
}

.custom .artizen-form-field input[type=text],
.custom .artizen-form-field input[type=email] {
  padding: 4px;
  border: 1px solid #cccccc;
}

.custom .artizen-form-field input[type=text].required,
.custom .artizen-form-field input[type=email].required {
  border: 1px solid #ff7777;
}

.custom .artizen-form-button {
  width: 120px;
  height: 22px;
  border: none;
  background-color: #a0a374;
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 22px;
  text-transform: uppercase;
  cursor: pointer;

  -webkit-border-radius: 2px;
  border-radius: 2px;

  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.custom .artizen-form-button:hover {
  background-color: #b0b384;
}

.custom .artizen-form-button:active {
  background-color: #909364;
}

.custom .artizen-form-rbbp-downloads {
  width: 200px;
  margin: 0 auto;
}

.custom .artizen-form-rbbp-downloads input[type=text],
.custom .artizen-form-rbbp-downloads input[type=email] {
  width: 200px;
}

