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


.custom #sidebar_1 h3 {
	color: #905e2d;
	font-size: 1.1em;
	font-family: trebuchet, verdana, sans-serif;
	font-weight: bold;
	text-transform: none;
	font-variant: normal;
	letter-spacing: normal;
	}

.custom #header { height: 140px; border-style: double; border-color: #ddd; clear: both; }

.custom h3 {font-weight: bold; color: #cf9717;}

.custom h4 {font-size: 1.15em; font-weight: bold; color: #cf9717;}

/********HOME PAGE***********/

.custom #homecontainer {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
.custom #homesidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 480px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
.custom #homecontent { 
	margin: 0 520px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.custom .fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.custom .fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.custom .clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}

#content h1 {font-size: 2.8em; font-weight: bold;}

.home .puzzle img {padding: 30px; background-color: #EBEBEB; border: 1px solid #cdcdcd;}
