/*
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/
*/

/*
File:			custom_backgrounds.css
Description:	CSS template for customizing your Thesis background

USAGE: Please do not use this file directly! Instead, copy the appropriate set of CSS you want 
to use and paste it into your custom stylesheet, custom.css. You can find this file at: 
wp-content/themes/thesis/custom/custom.css

NOTE: If you want to prevent your background from scrolling with the rest of the page, simply 
add "background-attachment: fixed;" to your body.custom declaration. For example, if you would 
like to use the example cloud background but keep it fixed, your body.custom declaration 
should look like this:

body.custom { background: #394f5c url('images/bg-clouds.jpg') 50% 0 no-repeat; background-attachment: fixed; }

*/


/*---:[ Set 1: solid background with slick borders around your "page" area ]:---*/

body.custom { background: #660000; }
	
	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #33332f; border: 0.4em solid #3e3e3a; }

		.custom #page { background: #fff; }
		
/*---:[ end Set 1 ]:---*/

/* #header, #footer { padding-right: 0em; padding-left: 0em; }

.custom #header #logo a {
background:url("http://www.juliawertz.com/wp-content/themes/thesis/custom/images/masthead3.gif") no-repeat scroll 0 0 transparent;
display:block;
height: 127px;
outline:none;
text-align:center;
width: 730px;
} */

.custom #header #logo, .custom #header #tagline {
text-indent:-9999px;
}

/* Featured Post Formatting */
.custom #feature_box {  padding:0em; }

.custom #my-feature-box1 { width:90%; padding-left:1em; }
.custom #my-feature-box,#my-feature-box1  {float:left;  font-family: Helvetica,Arial,sans-serif; color: #ffffff; background: #111; padding: 22px 15px 22px 15px; }
.custom #my-feature-box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #my-feature-box h2 a,#my-feature-box a  { color: #fff; text-decoration: none; }
.custom #my-feature-box h2 a:hover { color: #fb0; }
.custom #my-feature-box p {color:#fb0;  font-size: 1.5em; line-height:1.5em; text-align: justify;}
.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0; }
.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; }


/* customize Thesis a bit for wertz -n */

.custom div.prev_next p.previous { float:left; }
.custom div.prev_next p.next { float:right; }
.prev_next { border:0; }
#header { padding:12px 0; border:0; }
#header_area .page { background:#cfc4ae; padding:0 2.2em; }
.post_box { padding-top:0; }

#feature_box, #archive_intro, #comment_nav_2 { border:0; }
.format_text input { width:auto; padding:0; border:0; }
.teasers_box { display:none; }

.woocommerce .page-description {
    font-size: 1.4em;
}