/*
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 CSS Styles
 */
body.custom {
    font-family: "Lucida Grande", "Verdana", sans-serif;
    color: #333;
    background: #9fcae7 url(../images/butterfly_bg2.gif) top center repeat-y; }

body.custom ul#tabs {
margin-bottom: 4px !important; }

body.custom ul#tabs li a {
font: bold 12px "Lucida Grande", "Verdana", sans-serif;
letter-spacing: 0;
text-transform: none; }

body.custom #header {
width: 1012px !important;
height: 122px !important;
border-bottom: 3px double #ddd
margin: 5px 0 5px 0 !important;
padding:  0 5px 0 !important;
background: #fff url(../images/butterfly_header.gif) top left no-repeat;
text-indent: -9000px !important;
font-size: 8px !important; }

body.custom .headline_area h2, body.custom .headline_area h1 {
font: bold 24px "Helvetica", sans-serif;
color: #000;
padding-bottom: 0;
margin-bottom: 4px; }

body.custom .format_text h3 {
font: bold 18px "Helvetica", sans-serif;
color: #000; }

body.custom h2.entry-title a {
color: #0b4167;
text-decoration: none; }

body.custom h2.entry-title a:hover {
color: #0074c5;
text-decoration: underline; }

body.custom p.headline_meta {
font: normal 11px "Lucida Grande", "Verdana", sans-serif;
color: #a3a3a3; }

body.custom p.headline_meta span, body.custom p.headline_meta abbr {
letter-spacing: 0;
text-transform: none;
font-size: 12px;
color: #767676;
background: #f3f3f3;
padding: 1px 6px;
-webkit-border-radius: 7px;
-moz-border-radius: 7px; }

body.custom form input.form_submit {
background: #d5d5d5 !important;
padding: 4px 10px !important;
-webkit-border-radius: 10px !important;
-moz-border-radius: 10px !important;
border: 1px solid #ccc !important;
font: bold 12px "Lucida Grande", "Verdana", sans-serif !important;
color: #000 !important; }

body.custom ul.sidebar_list h3 {
font: bold 16px "Helvetica", "Verdana", sans-serif;
color: #333;
padding: 0 0 3px 0;
border-bottom: 1px dotted #ccc;
margin: 0 0 3px 0;
text-transform: normal;
letter-spacing: 0; }


