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


/* HEADER */
.custom #header { 
	padding: .1em 0em 0em 0em; /* Added top padding to adjust for the -1px margin-bottom in the nav menu */
	border: 0px;
}
.custom a img { 
	margin: 0px 0px -3px 0px; 
}


/* NAV MENU */
.custom ul#tabs {
	position: relative; 
	border-style: none; /* Removes gray border around nav tabs */ 
	margin-bottom: -1px; /* Fix for IE6 */
	border-bottom:0;
}
.custom ul#tabs .rss {
	background: none; /* Removes background behind RSS */
}
.custom ul#tabs li {
	background:#ADCDA5 none repeat scroll 0 0; /* Changes non-current nav menu background color */
	border-style: none; 
}
	.custom ul#tabs li.current_page_item {
		font-weight: bold; 
		padding-bottom: 0px; /* Removes one extra line of color under current nav item */ 
		background: #D7FFCD; /* Changes current page menu background color */
	}
	.custom ul#tabs li.current_page_parent {
		font-weight: bold; 
		background: #D7FFCD; /* Changes current parent page menu background color */
	}
		.custom ul#tabs li ul {
			display: none; 
			position: absolute; 
			list-style: none; 
			z-index: 20; /* z-index pulls our menu out in front of all other elements on the page */
		}
		.custom ul#tabs li:hover ul {
			display: block;
			color: #403031;
		}
			.custom ul#tabs li ul li {
				font-weight: normal; /* Makes non-active submenu stay normal when parent is bold */
				border: none; 
				float: none;
			}
				.custom ul#tabs li ul li a:hover {
					text-decoration: underline; 
				}
				.custom ul#tabs li ul li.current_page_item a:hover {
					text-decoration: none;
				}


/* BODY & PAGE BACKGROUND */
body.custom { 
	background: #C4CDC2; /* Changes background color outside of page */
}
.custom #page { 
	background: #C7ECBE; /* Changes background color on page */
}


/* FONT AND LINK COLORS */
body.custom {
	font-family:"Century Gothic","Apple Gothic",Verdana,sans-serif; 
}
.custom a, .custom a:visited { 
	color: #3B4F2B; 
}
.custom a:hover { 
	color: #403031; 
	text-decoration: underline; 
}
.custom .headline_meta { 
	color: #6B7F66; 
}


/* MULTIMEDIA BOX */
.custom #image_box { 
	background: #ADCDA5; 
	border-bottom: 1px solid #D7FFCD; 
	/* padding-top: 0em; */
}
	.custom #image_box img { 
		display: block; 
		background: #D7FFCD; 
		border-style: solid; 
		border-color: #ADCDA5; 
	}
	/* Video box styles */
	.custom #video_box { 
		background: #000; 
	}
	/* Custom box styles */
	.custom #custom_box { 
		background: #ADCDA5; 
		border-bottom: 1px solid #D7FFCD; 
	}


/* SIDEBARS */
.custom #sidebars { 
	border-style: solid; 
	border-color: #D7FFCD; 
}
.custom #sidebar_1 { 
	border-style: dotted; 
	border-color: #D7FFCD; 
}


/* AUTHOR */
 .custom .headline_area .avatar {
	float:left; border:3px solid #ADCDA5; 
	margin-right:1em;
}


/* FORM INPUTS --- Still refining this section --- */
input, textarea { 
	font-size: 1em; 
	color: #444; 
	background: #D7FFCD; 
	border: 1px solid #AAB2A8; 
	border-right-color: #C4CDC2; 
	border-bottom-color: #C4CDC2; 
}
input:focus, textarea:focus { 
	background: #D7FFCD; 
	border-color: #AAB2A8; 
	border-right-color: #C4CDC2; 
	border-bottom-color: #C4CDC2; 
}
	input.form_submit { 
		font-weight: bold; 
		color: #4C7F3F; 
		background: #ADCDA5; 
		border: 3px double #AAB2A8; 
		border-top-color: #C4CDC2; 
		border-left-color: #C4CDC2; 
		cursor: pointer; 
		width: auto !important; 
		overflow: visible; 
	}
		input.form_submit:hover { 
			color: #403031; 
		}

	
/* AFTER POST ELEMENTS --- Still refining this section --- */
.format_text .to_comments { 
	color: #6B7F66; 
	clear: both; 
}
	.format_text .to_comments span { 
		color: #111; 
		line-height: 1em; 
	}
	.format_text .to_comments span.bracket { 
		color: #C4CDC2;
	}
	.format_text .to_comments a { 
		color: #6B7F66; 
		text-decoration: none; 
	}
	.format_text .to_comments a:hover { 
		color: #111; 
		text-decoration: underline; 
	}

/* COMMENTS --- Still refining this section --- */
.custom .comments_closed p {
  display: none; /* Isn't needed if Thesis Options: Display Options is set to 'Disable comments on all pages' */
}
	.comments_intro p { 
		color: #6B7F66; 
	}
		.comments_intro span.bracket { 
			color: #ADCDA5; 
		}
dl#comment_list { 
	border-top: 1px dotted #D7FFCD; 
}
			dl#comment_list dt a:hover { 
				text-decoration: underline; 
			}
			dl#comment_list dt .comment_author { 
				font-weight: bold; 
			}
			.avatar img { 
				float: right; 
			}
			.comment_time, .edit_comment { 
				color: #6B7F66; 
			}
				.comment_time { 
					white-space: nowrap; 
				}
				.comment_time a, .edit_comment a { 
					color: #6B7F66; 
				}
				.comment_time a:hover, .edit_comment a:hover { 
					color: #6B7F66; 
				}
		.comment_num { 
			float: right; 
		}
			dl#comment_list .comment_num a { 
				font-weight: bold; 
				color: #aaa; 
			}
			dl#comment_list .comment_num a:hover { 
				color: #fff; 
				background: #aaa; 
				text-decoration: none; 
			}
	dl#comment_list .bypostauthor { 
		background: #e7f8fb; 
	}
	dl#comment_list dd { 
		border-bottom: 1px dotted #D7FFCD; 
	}
		dl#comment_list dd p.reply a { 
			color: #6B7F66; 
			text-transform: uppercase; 
			letter-spacing: 1px; 
			text-decoration: none; 
		}
		dl#comment_list dd p.reply a:hover { 
			text-decoration: underline; 
		}
	dl#comment_list dl { 
		border-top: 0; 
	}
		dl#comment_list dl dt, dl#comment_list dl dd { 
			background: none; 
		}
		dl#comment_list dl dd { 
			border-bottom: 0; 
		}
		dl#comment_list dl .bypostauthor { 
			background: none; 
		}
		dl#comment_list dl dt, dl#comment_list dl dd .format_text { 
			border-style: solid; 
			border-color: #ddd; 
		}
		dl#comment_list dl dt.bypostauthor, dl#comment_list dl dd.bypostauthor > .format_text { 
			border-color: #bde0e6; 
		}
		a.comment_link { 
			color: #111; 
			text-decoration: none; 
			font-variant: small-caps; 
			border-bottom: 1px solid #D7FFCD; 
		}
		a.comment_link:hover { 
			color: #111; 
			border-bottom-color: #111; 
		}
	dl#comment_list .odd { 
		background: #C1E5B8; /* Creates alternating comment background colors */
	}
	dl#comment_list .even { 
		background: #B6D8AE; /* Creates alternating comment background colors */
	} 
dl#trackback_list { 
	border-top: 1px dotted #D7FFCD; 
}
		dl#trackback_list dt a { c
		olor: #111; 
		}
		dl#trackback_list dt a:hover { 
			color: #111; 
			text-decoration: underline; 
		}
	dl#trackback_list dd { 
		color: #6B7F66; 
	}
	.comments_closed p { 
		text-transform: uppercase; 
		letter-spacing: 1px; 
		color: #6B7F66; 
	}

/* COMMENT FORMS --- Still refining this section --- */
	#respond_intro p { 
		color: #6B7F66; 
	}
		#respond_intro p a { 
			font-weight: bold; 
		}
		#respond_intro p a:hover { 
			text-decoration: underline; 
		}
		#cancel-comment-reply-link { 
			text-transform: uppercase; 
			letter-spacing: 1px; 
			color: #fff; 
			background: #d00; 
			border-style: solid; 
			border-color: #ac0000; 
			border-top-color: #fa5a5a; 
			border-left-color: #fa5a5a; 
			float: right; 
		}
.login_alert { 
	background: #f5f5f5; 
	border: 1px solid #ddd; 
}
	.login_alert p { 
		font-weight: bold; 
	}
		.login_alert p a:hover { 
			text-decoration: underline; 
		}
.comment_moderated { 
	font-weight: bold; 
}
#commentform { 
	border-top: 1px dotted #D7FFCD; 
}
	#commentform p { 
		margin-bottom: 1em; 
	}
		#commentform p a { 
			text-decoration: underline; 
		}
		#commentform p a:hover { 
			text-decoration: none; 
		}
		#commentform p .required { 
			color: #403031; /* Changes color of asterisk mark denoting required info */
		} 
	#commentform span.allowed { 
		display: block; 
		color: #807e70; 
		background: #ADCDA5; 
		border-style: dotted; 
		border-color: #D7FFCD; 
	}
		#commentform span.allowed span { 
			display: block; 
		}
		/* Support for the highly-recommended Subscribe to Comments Plugin */
		#commentform p.subscribe-to-comments label { 
			font-size: 1em; 
		}

	
/* NAVIGATION LINKS */
.prev_next { 
	border-top: 1px solid #D7FFCD; /* Above 'Previous/Next Post' */
	color: 6B7F66; 
}
#comment_nav_2 { 
	border-bottom: 2px solid #ADCDA5; 
}


/* FOOTER */
.custom #footer { 
	color: #6B7F66; 
	border-top: 3px double #D7FFCD; 
	text-align: right; 
	clear: both; 
}
.custom #footer a { 
	border-bottom: 1px solid #ADCDA5; 
	color: #6B7F66; 
}
.custom #footer a:hover { 
	color: #3B4F2B; 
	text-decoration: none; 
}

.custom #footer img {
	float:right;
	margin-left:1em;
}