/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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


/*
.custom h1, .custom h2, .custom h3, .custom h4 { font-weight: bold;}

.custom h2 {font-size: 3em; }
.custom h2 {font-size: 6em; }
.custom .content_inner h2 { padding-top: 1.1em; border-top: 1px dotted #bbb; }
.custom h2.top { border-top: none !important; }

.custom .sidebar h3 { color: #111; font-weight: bold; font-size: 0.84615em; line-height: 1.45455em; margin-bottom: 1em; padding: 0.63636em 0.45455em 0.54545em 0.45455em; text-transform: uppercase; letter-spacing: 2px; border-top: 1px solid #ddd; border-bottom: 1px dotted #ddd; }

.custom li.linkcat { width: 15.46154em; margin-bottom: 2.53846em; font-size: 1.3em; line-height: 1.38462em; float: left; }

.custom li.widget ul, .custom li.linkcat ul { list-style: none; }

.custom li.widget ul li, .custom li.linkcat ul li { margin-bottom: 0.61538em; padding-left: 0.84615em; background: url('images/bullet.gif') 0 0.46154em no-repeat; }

.custom li.widget li ul, .custom li.linkcat li ul { margin-top: 0.61538em; }


.custom p.previous span, .custom p.next span {font-family: Arial, Helvetica, sans-serif; }

.custom .noborder {border: none; }
*/


