/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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 overwrite *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!
*/


/*---:[ #header styles ]:---*/


.custom	#header #logo a, #header #logo a:visited { font-family:  "neuva std", serif; color: #000000;  }

.custom	#header #logo a:hover { color: #444442; }
	
.custom #header #tagline {  font-family: "neuva std", serif; font-weight: normal; font-size: 1.6em; line-height: 1.6em; color: #444442; }


/* This line sets up our clickable background image based on the site title's link */
/* DIY: Adjust the height & width attributes to reflect the actual size of your image */
/* DIY: Change the filename of your image to reflect the actual header's file name */
.custom #header #logo a { display: block; height: 252px; width: 970px; background: url('images/AWR_v4.png') no-repeat; outline: none; }
/* This line gets rid of the site title & tagline by casting them out to far left field */
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }
/* This line collapses the vertical space of the tagline so that there isn't unnecessary white space after the header image */
/* This is a bit of a kludge, but it seems to work. */
.custom #header #tagline { height: 0; }
/* This line removes the padding from the header so that the background image sits close to the nav menu, the bottom border of the header, and the sides of the content */
.custom #header { padding: 0; }




/*---:[ #nav tabs ]:---*/

.custom ul#tabs li { background: #660000; }

.custom ul#tabs li.current_page_item, ul#tabs li.current-cat { background: #c84542;}

.custom ul#tabs li.rss { background: none; }

.custom ul#tabs li a, ul#tabs li a:visited { color: #fff;  }


/*---:[ nav menu styles ]:---*/
.custom ul#tabs li a { font-size: 1.3em; padding: 0.545em 0.818em; }


/*---:[ #sidebar fix ]:---*/

.custom #content { border-right: none; }



/*  CUSTOM BACKGROUND */
body.custom {
    background: #1e0f06 url('images/red.jpg');
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}


/*---:[ #paragraph fix ]:---*/
p {
	text-indent: 2em;
}

/*---:[ feature box ]:---*/

#feature_box { background: #FFFFFF; border-bottom: 0px solid #ddd; }

/*---:[ multimedia box ]:---*/

	#image_box { padding: 0; background: #000000; border-bottom: 1px solid #ddd; margin: .5em .0em .0em 0em; }

/*---:[ global elements ]:---*/

a { color: #000066; text-decoration: none; }

/*---:[ h3 ]:---*/
	
	.sidebar h3 { color: #660000; }

/* Front Page Stuff */    
    /* Read More Links */ 
    .custom a.readmore {border-bottom: 1px dashed #333;border-top: 1px dashed #333; display: block; width: 100%; padding: .5em 0; text-align: center; margin: 1em 0 0 0; color: #000000; }
    .custom a.readmore:hover { background: #eee; color: #5e5e5e;}
    .custom #custom_featured_post_container a.readmore {width: 48.2%; float: right;}

.clearfix:after,.custom #header:after, .custom #tabs:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}  


    /* Primary Featured Photos Stuff */ 
    .custom #custom_featured_photo {float: left; width: 18%; margin: .5em 0 .5em .5em ; border:1px solid #fff; border-left: 1px dashed #ccc; padding: 0 0 0 .5em;}           
    .custom #custom_featured_photo h2 { background: #660000; margin: 0 0 .5em 0; padding: .5em; text-align: center; font-size:1.2em;} 
    .custom #custom_featured_photo h2 a {color: #ffffff; } 
    .custom #custom_featured_photo img {width: 10em; height: 12em; margin: .0em .0em .0em 5.0em;}

 /* Primary Featured Post Stuff */ 
    .custom #custom_featured_post_container {margin: 1em .5em 1em 0; border-color: #993333;}
    .custom #custom_featured_post { margin: .5em; clear: both;} 
    .custom #custom_featured_post h2 { background: #000000; margin: 0 0 .5em 0; padding: .5em; text-align: center; font-size: 2em;}  
    .custom #custom_featured_post h2 a {color: #fff;}
    .custom #custom_featured_post .custom_featured_post_content p { font-size: 1.2em; line-height: 1.3em}
    .custom #custom_featured_post img {float: left; width: 50%; border: 1px solid;}
    .custom #custom_featured_post .custom_featured_post_content {float: right; width: 48%; height: 16.4em;}
                                                                                                 
