﻿/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
You can use the "custom" class to overwrite *any* CSS declarations contained in this
theme's 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!
*/

body.custom {
	background: url('http://www.mindpowerca.com/wp-content/themes/thesis/images/1.jpeg') repeat-x 50% 0;
	color: #333333;
	font: 62.5% "Avenir LT Std","Georgia", Times, serif;
}
.custom #container {
	margin-top: 2em;
	margin-bottom: 2em;
	padding: 0.3em;
	background: #CC3300;
	border: 0.25em solid #96999A;
}

		.custom #page { padding: 2em 1.9em; background: #fff; border: 0.1em solid #fff; border-top: 0; }

/* HEADER */

.custom #header {
background: url("http://www.greenyourdecor.com/wp-content/images/newheader.png")
repeat-x top left; }

.custom #header #logo { text-indent: -9999px; }
.custom #header h1, .custom #header p#tagline { text-indent: -9999px; }


/* TYPOGRAPHY */

.custom h1, h2, h3, h4 { font: bold 1em "Avenir LT Std","Georgia", Times, serif; color:#666666; text-transform: uppercase; }
.custom h1 { font-weight: lighter; font-size: 2.5em; line-height: 1.1em; }

	.content_inner h1 { padding-top: 1.1em; }

	.page h1 { margin-bottom: 1.1em; }
	
	#archive_info h1 { font-weight: normal; font-size: 2.5em; line-height: 1em; padding-top: 0.45833em; }
.custom .content_inner h2 { font: lighter 2em "Avenir LT Std","Georgia", Times, serif; color:#666666; }
.custom h3 { font-weight: normal; font-size: 1.5em; line-height: 1.22222em; text-transform:lowercase;}

	.format_text h3 { margin: 1.83333em 0 0.61111em 0; }

	.format_text h3.top { margin: 0 0 0.61111em 0 !important; }


/* BLOCKQUOTE */

.custom .pullquote_left { width: 200px; margin: 5px 15px 5px 0; font-size: 1.4em; text-align: center; float: left; }

.custom .pullquote_right { width: 200px; margin: 5px 0 5px 15px; font-size: 1.4em; text-align: center; float: right; }

.custom blockquote { background-image: url(images/section-mark.png); background-position: left center; margin-top: 0; margin-right: 15px; margin-bottom: 0; margin-left: 20px; background-repeat: no-repeat; padding-left: 50px; padding-top: 20px; border-top: 1px dotted #ddd; color: #666; border-bottom: 1px dotted #ddd; color: #666 }


		/*---:[ search ]:---*/
.custom #searchform {
	padding: 10px;
}
.custom #searchform .s {
	border-top: 1px solid #999999; border-bottom: 1px solid #999999; border-left: 1px solid #999999; border-right: 1px solid #999999; 
        background-color: #ffffff; 
	color: #666666;
	font-family: Arial, Helvetica, Sans-Serif;
	padding: 5px;
	margin-right:5px;
	width: 250px;
	float: left;
}
.custom #searchform .button { 
        background: none; border: none;  
    }
.custom #  ul {
	margin: 10px 0px 0px 0px;
	padding: 0px 0px 0px 10px;
	}