/*
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: #EDD08A url('images/') top left repeat-x; margin-top: 0em; }

/* header & banner */
.custom #header_area .page { background: #6d2305 url('images/banner_cape.png') center -112px no-repeat;  }

.custom #header {margin: 0px; padding: 0px;}
.custom #header #logo a { display: block; height: 200px; width: 904px; background: url('images/banner.png') top left; }
.custom #header #logo, .custom #header #tagline { text-indent: -9999px; }

/* menu styles */
.custom .menu { border-width:0 0 0 0; }

.custom .menu .current a, .menu .current a:hover, .menu .current-cat a, .menu .current-cat a:hover {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background: #6d2305 none repeat scroll 0 0;
color:#f1f2f3;
font-family: Arial, Helvetica, sans-serif;
}

.custom .menu a, .menu .current ul a, .menu .current-cat ul a {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#6d2305 none repeat scroll 0 0;
color:#f1f2f3;
font-family: Arial, Helvetica, sans-serif;
}

.custom .menu, .menu a, .menu li ul {
border-color:#DDDDDD;
}

.custom .menu a {
border-width:0;
font-size:1.1em;
line-height:1.273em;
padding:0.636em 0.818em;
}

.custom .menu a {
letter-spacing:2px;
text-transform:uppercase;
}

.custom .menu, .menu a, .menu li ul {
border-style:solid;
}

.custom .menu a {
display:block;
}


/* page styles */
.custom #content_box { background: #fcf3e2 url('images/banner_page.png') top center no-repeat; }
.custom .sidebar_list { background: #feedcc; }

.custom #footer_area .page { background: #6d2305 url('images/bg_horizontalshadow.png') top left repeat-x; }


/* other */
.wp-caption { background-color:#fff; }
