/*
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/
*/

.custom #header #logo a { 
	display: block; height: 182px; width: 900px; background: url('images/header.jpg') no-repeat; outline: none; 
}
.custom #header #logo, .custom #header #tagline { text-indent: -800px; }
.custom #header #tagline { height: 0; }
.custom #header {border-bottom:none; padding:0}
.custom #header { padding: 0; }
 
 
body.custom {
    background: #8B8178;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
}

.custom #page {
    background: #ffffff;
}

/* Remove keyline from top tabs menu */
#tabs {
border:0;
}

/* Padding around outside perimeter */
#page {
padding:.5em 2.2em 2.2em 2.2em;
}

/* Image box top right multimedia? styling */
#image_box {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#EEEEEE none repeat scroll 0 0;
border-top:1px solid #DDDDDD;
border-bottom:1px solid #DDDDDD;
border-right:1px solid #DDDDDD;
}

/* Caption bg and keyline around image in text */
.wp-caption {
background-color:#EEEEEE;
border-color:#DDDDDD;
border-style:solid;
padding:0;
font-style:italic;
text-align:center;
}

/* Feature box (grey line under header graphic) */
#feature_box {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#EEEEEE none repeat scroll 0 0;
border-bottom:0px solid #DDDDDD;
}

/* Links colour brown */
a {
color:#B3995D;
text-decoration:none;
}

h2 a:hover {
color:#895130;
}

/* Note style */
.format_text p.note {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#F5F5F5 none repeat scroll 0 0;
border:1px solid #DDDDDD;
}

/* Sidebar colour background */
#sidebars {
border:0 none;
float:right;
width:36.2em;
background:#EEEEEE;
}

/* Sidebar text */
li.widget {
font-size:1.3em;
font-color:#895130;
line-height:1.385em;
}

