/*
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 #header #logo a {color: #FF0000}
*/

.custom #header #tagline { font-size 1.5em; color: #FF0000}

.custom #entry-title {color: #FF0000; }
.custom #header #logo {color: #FF0000; }
.custom h2 a {color: #FF0000}
.custom h2 {font-size: 3em; color: #FF0000}
.custom h2.top {font-size: 2.5em; color: #FF0000}
.custom content_inner h2 {font-size: 2.5em; color: #FF0000}
/*.custom p {text-indent: .75cm}*/
/*.custom .format_text p { margin: 0 0 .4em 0; }*/
/*.custom body { background: fffff; color: #333; font: Arial, Verdana, Geneva, Helvetica, sans-serif; }*/
/*.custom .format_text { font-size: 2.0 em}*/
/*.custom content h2 {font-size: 2.5em}*/
.custom .sidebar h2 {font-size: 0.83333em}
.custom #content { border-right: none; }
/*.custom #header #logo a { margin: 0 auto; color:#FF0000}*/
.custom #header  a { margin: 0 auto; }
/*.custom h1 {color: #FF0000}*/
.custom #footer {text-align: left}

.custom #header {padding-bottom: 0em}
.custom #content_box {padding-top: 4.0em}

/* begin REMOVE LINES separating page areas */
#header {border:none;}
#content_box {background: none;}
#sidebar_1 {border-style:none;}
#footer {border:none;}
ul#tabs {border:none;}
/* end REMOVE LINES separating page areas */

/* for post titles */
.custom .entry-title a { color:#FF0000; }

/* custom headers in posts */
.custom h1 { color:#FF0000; }
.custom .format_text h3 { color:#FF0000; }
