/*
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!
*/


/* Kristarella's Navigation Reset .. clears all borders and such, leaving padding, main layout and fonts. */
.custom ul#tabs {border-bottom:none; border-left:none;}
	.custom ul#tabs li {margin-bottom:0; border:none; background:none;}
	.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {padding-bottom:0; background:none;}
	.custom ul#tabs li.rss {}
		.custom ul#tabs li a {}
		.custom ul#tabs li a:hover {}
		.custom ul#tabs li.current_page_item a, .custom ul#tabs li.current-cat a {}

/* === HEADER === */
#header { padding-top: 0em; padding-bottom: 0em; }
.custom #header_area {background:url(images/bnr-dancingsol.jpg) center 946px no-repeat; position:relative; height:149px; padding:0px; }
.custom #header_area .page {background:#FFF; text-align:center; padding:0em;}

.custom #header { padding: 0em; border-style: none;}

/*.custom #header { padding:0; height:130px; border-bottom:medium none; }*/


/* nav styles */

.custom ul#tabs {position:relative; top:0em;}
	.custom ul#tabs li {background:#EEE; }
	.custom ul#tabs li.current_page_item {background:#8EA8FF; }
/*	.custom ul#tabs li.current_page_item {background:#F6F17C; }*/


/*--HEADER image-- */
/*
.custom #header_area {background:#8EA8FF;}

custom #nav_area {background:#F0ECDB; }
	.custom ul#tabs {border-bottom:0; border-color:#DBD4B7;}
		.custom ul#tabs li {border-color:#DBD4B7; background-color:#E6DEC0;}
		.custom ul#tabs li.current_page_item, .custom ul#tabs li.current-cat {background:#fff;}
*/

/*--TEXT colors--*/
body.custom { color:#000;}
.format_text { font-size: 1.5em; line-height: 120%; padding-right: 0.78571em; }

/*--HEADLINES--*/
.custom h3 { color: #000; }
.custom h4 { color: #000; font-weight:bold; line-height: 1.1em;}
	
/*--BORDERLINES--*/
/* .custom #header { border-bottom: 3px double #DCB; } 
.custom blockquote { border-left: 1px solid #DCB; }
.custom ul#tabs { border-left: 1px solid #DCB; }
.custom ul#tabs li { border: 1px solid #DCB; border-left: 0; }
.custom	.format_text p.note { border: 1px solid #DCB; }
.custom .format_text p.alert { border: 1px solid #DCB; }
.custom #archive_info { border-bottom: 1px solid #DCB; }
.custom .prev_next { border-top: 1px dotted #DCB; }
.custom #footer { border-top: 3px double #DCB;}
.custom #content_box { width: 96em; background: url('images/dot-dcb.gif') 49.1em 0 repeat-y; text-align: left; }
.custom #image_box img, .custom #image_box img.four_by_three { display: block; width: 42em; height: 31.5em; padding: 0.1em; background: #DCB; border: 0.1em solid #DCB; }
.custom #sidebars { background: url('images/dot-ddd.gif') 22.3em 0 repeat-y; }
.custom .prev_next { border-top: none; }				
.custom .content_inner h2 { padding-top: 1.1em; border-top: 1px dotted #DCB; }
.sidebar h2 {border-top-color: #DCB</body>; border-bottom: 1px dotted #DCB; }
*/

/*--LINK colors, bgs, and borders--*/
.custom a, .custom a:visited { color: #4A7F00; text-decoration: none; }
/* .custom a:hover, .custom a:focus { color: #4A7F00; background: #FFF97F; padding: 1px;} */
.custom .format_text a:link, .custom .format_text a:visited; {color: #000;}
.custom .sidebar a:link, .custom .sidebar a:visited { color: #4A7F00;}
.custom .sidebar a:hover {color: #4A7F00; text-decoration: none;}
.custom #footer a:link, .custom #footer a:visited { color: #000;}	
.custom #footer a:active, .custom #footer a:hover {color: #000; background: #FFF97F;}	


