/*
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: #62883f; }

	.custom #container { margin-top: 2em; margin-bottom: 2em; }

		.custom #page { background: #fff; }


#header { background: url(http://www.our-landscaper.com/images/header.jpg) no-repeat; height:64px; }
/* images */
img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left;
	}
/* End images */
/* Captions */
.aligncenter,
div.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	border: 1px solid #ddd;
	text-align: center;
	background-color: #f3f3f3;
	padding-top: 4px;
	margin: 10px;
	-moz-border-radius: 3px;
	-khtml-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}

.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
}

.wp-caption p.wp-caption-text {
	color:black;
	text-align:center !important;
	font-size: 11px;
	line-height: 17px;
	padding: 0 4px 5px;
	margin: 0;
}
/* End captions */

/* blockquotes */

blockquote {
  border: 0px;
}

blockquote div {
  background-color: #e6dfcf;
  padding: 8px 32px 2px 44px;
  border-top: 2px solid #365535;
  border-right: 4px solid #365535;
  border-bottom: 4px solid #365535;
  border-left: 2px solid #365535;  
}

/* End blockquotes */

/* definition lists */
dt {
  font-weight: bold;
  font-size: 1.2em;
  float: left;
  width: 130px;
}
dd {
  float: left;
  width: 400px;
}

/* end definition lists */

/*
body.custom { background: #7c7657 url('images/bg102.jpg') 50% 0 no-repeat; }

	.custom #container { margin-top: 2em; margin-bottom: 2em; }

		.custom #page { background: #fff; }
body.custom { background: #394f5c url('images/bg-clouds.jpg') 50% 0 no-repeat; }

	.custom #container { margin-top: 2em; margin-bottom: 2em; }

		.custom #page { background: #fff; }


body.custom { background: #44443f; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }

		.custom #page { background: #fff; }
*/
