.custom p { line-height: 1.5em; margin-bottom: .75em; }
.custom img.frame { margin:-.5em 0 -.3em -.6em; }
.custom img.aligncenter { margin: 1.4em auto 1.571em auto; }
.custom { background:#8e8e8e; }
.custom a:link {text-decoration: none}
.custom a:visited {text-decoration: none}
.custom img.frame-narrow {border:7pt; margin:-.5em 0 0 -.7em; background: #eee; border-style: solid; border-color: #ddd;}
.custom .format_text input, #commentform input, #commentform textarea {width:auto;}  /*  fix for defaults in Thesis that screw up Paypal button sizing */
.custom input.noborder {border-color: #FFF; background-color:transparent}   /*  fix for defaults in Thesis that screw up Paypal button transparency */
.custom .red-text {color: #C00;}
.custom #header {height:8.5em;}  /*  collapses the extra space in the headline area  */
.custom #logo { font-weight: normal; font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; } /*  sets the font in the main blog header area  */
.custom .headline_area h2, h1 {font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif; margin-top: -12px; } /*  sets the font in the post headline areas, and the leading, from baseline to the top  */
.custom img.mule-image { margin: -4px 0 6px -4px ; }  /*  sets the position of the mule on mulita.com homepage  */
.custom a.mule-text { font-family: "Century Gothic", "Myriad Pro", "Helvetica Neue Light", Helvetica, sans-serif; font-size: 11px; } /* sets the font for the mule's top sidebar item on home blog page */
.custom li.widget { margin-bottom: 12px; }  /*  adjusts space between widgets in the sidebar */
.custom #sidebars { margin-top: -6px; }  /*  sets baseline of the mule graphic to match post headline_area class  */

/*

.custom img.frame {border:7pt; margin:-.5em 0 0 -.7em; background: #eee; border-style: solid; border-color: #ddd;}
	.format_text p { margin-bottom: 1.571em; }
.custom p { line-height: 1.4em; }
.custom { background:#8e8e8e; }
.custom body { background:#f4f4f4 url(http://mulita.com/images/background.gif) top center repeat-y; color:#303030; }

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