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

/*---:[ horizontal dropdown nav menu structure ]:---*/
#mc_menu_1 { position: relative; list-style: none; z-index: 50; }
	#mc_menu_1 li { position: relative; float: left; }
		#mc_menu_1 ul { position: absolute; visibility: hidden; list-style: none; z-index: 110; }
			#mc_menu_1 ul li { clear: both; }
		#mc_menu_1 a { display: block; }
	#mc_menu_1 table { position: absolute; left: 0; border-collapse: collapse; }
		#mc_menu_1 table table { top: 0 !important; }
		#mc_menu_1 ul ul { position: absolute; top: 0; }
	#mc_menu_1 li:hover ul, #mc_menu_1 a:hover ul, #mc_menu_1 :hover ul :hover ul, #mc_menu_1 :hover ul :hover ul :hover ul { visibility: visible; }
	#mc_menu_1 :hover ul ul, #mc_menu_1 :hover ul :hover ul ul { visibility: hidden; }

/*---:[ nav menu styles ]:---*/
#mc_menu_1, #mc_menu_1 a, #mc_menu_1 li ul { border-style: solid; }
	#mc_menu_1 a { text-transform: uppercase; letter-spacing: 2px; }
	#mc_menu_1 .current > a, #mc_menu_1 .current-cat > a { cursor: text; }
		#mc_menu_1 .rss { float: right; }
		#mc_menu_1 .rss a, #mc_menu_1 .rss a:hover { padding-right: 16px; background: url('lib/images/icon-rss.gif') 100% 50% no-repeat; border: none; }
		#mc_menu_1 .rss a:hover { text-decoration: underline; }

.custom input[type='text'], .custom textarea
{
background: #ffffff;
}
.custom input[type='submit']
{

font-weight: bold;
color: #ffffff;
background: #4995d1;
}
.custom h3
{
font-weight: bold;
}
.custom #header
{
	border: none;
}
.floatl
{
	float: left;
}
.padding
{
	padding: 0px 30px 0px 10px;
}
.custom .menu
{
clear: both;
padding-top: 10px;
}
.custom #content
{
width: 595px;
padding-left: 20px;

}
.custom #content_box
{
	background: #fef9e6;
}
.custom #footer
{
	font-size: 1.1em;
background: #763810;
color: #ffffff;
}
.headline_meta, .headline_meta a, .teaser_author, .teaser_date, .teaser .edit_post, .teaser_author a, .teaser_comments, .teaser_category, .teaser .edit_post a { color: #f99929; }
