/*
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 .full_width .page { width: 81.1em; padding: 0; background: #CCE196; }
.custom #header_area { margin: 4px 0px 24px 0px; background: #CCE196;}
.custom #header { height:170px; width:100%; background:#CCE196 url('http://www.oolonginkwell.com/wp-content/themes/thesis_16/custom/images/oolongInkwellHead710x160.png') center no-repeat; }
.custom #header { padding: 0; border-bottom:none;}
.custom .menu  { padding: 0 1.1em; font-weight: bold; }
.custom a:hover { background: #9ce679; }
.custom #sidebars { border-top: 0; background: #FFFFFF; height: 100%; }
.custom #sidebars .sidebar {font-family: "Lucida Sans", sans serif; width: 100%;  height: 100%; background: #FFFFFF; margin-bottom: 192.769em; overflow:hidden; }
.custom #sidebar_1 { font-family: "Lucida Sans", sans serif; border: 0; height: 100%; background: #FFFFFF; }
.custom .sidebar h3 { font-family: "Lucida Sans", sans serif; font-size: 1em;  text-transform: uppercase; line-height: 1.385em; margin-bottom: 0.692em; }
.custom #content_area { margin: -20px 0px 0px 0px; float: center; height: 100%; width=90%; }
.custom #content_area .page { background: #FFFCDB;  }
.custom .menu {float: right; background: #CCE196;}
.custom .rss li a:hover { padding: 0 1.1em; font-weight: bold; background: #9CE679; }
.custom .rss li a:selected { padding: 0 1.1em; font-weight: bold; background: #8CCC6C; }
.custom body { font-family: "Lucida Sans", sans serif; background: #CCE196; }
.custom #footer_area { margin: 0px 0px 40px 0px; }
.custom #footer_area .page { background: #FFFCDB; }
.custom #footer { padding-bottom: 0;}

