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

#content_box {
  background: none;
}


/*--- signup page customizations */
.widecolumn { 
  width: 450px; 
  padding: 5px 5px 5px 5px;
  font-size: 12pt; }
  
.mu_register h2 {
  font-size: 22px;
  line-height: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid #C4C4C4;
}

.mu_register #setupform {
  margin: 10px;
}
  
.mu_register label {
  color: #777;
  font-size: 15px;
  font-weight: 700;
  margin: 0px 0px 15px;
  display: block;
}

.mu_register input {
  margin: 5px 0px;
  width: 100%;
  font-size: 24px;
  background-color: white;
}

.mu_register p.submit {
  float: right;
}

/* home page image */

.productrays img, #leanpub-splash-image {
  border: thin solid grey;
}

/*Shopp cart page button*/

#shopp #cart .update-button {
  width: 100%;
}

form.shopp li span {
  margin-right: 10px;
}

form.shopp li span input:submit {
  width: 100%;
}

/* shopp account download table */

div#shopp form.shopp table tbody tr td{
  padding-bottom: 10px;
  padding-right: 10px;
  font-size: 110%;
}

div#shopp form.shopp table tbody tr td small{
  padding-top: 10px;
  display: block;  
}

div#shopp form.shopp table thead tr th{
  padding-bottom: 10px;
  padding-right: 10px;
  font-size: 150%;  
}

/* confirm page */
#confirm-button {
  background-color: #ffbb22;
  height: 2em;
  font-size: 1.5em;
  font-family: "Lucida Grande", "Lucida Sans Unicode", Tahoma, Verdana, sans-serif;
}