/*
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 styles ]:---*/
.custom #header #logo {
    font-size: 1.0em;
    line-height: .5em; }

.custom #header #tagline {
    font-size: .9em;
    line-height: .45em; }

.custom #header {
    height: 175px;
    border-bottom:0px none #ddd;
    clear: both;
	padding:0 0 5px 0;
	background:transparent url(images/logo.png) repeat-x 0 0;}

.custom .header_bg {
    height: 175px;
    margin-left: -15px;
    background: transparent url(images/mlm-thewholetruth-banner_no-logo.png) no-repeat; }

.custom .headerleft {
	width: 660px;
	/*float: left;*/
    margin-left: -24px;
	margin-top: -175px;
	padding: 0px;
	overflow: hidden;
    clear: both; }

.custom .headerleft a img {
	border: none;
	margin: 0px;
	padding: 0px; }

.custom .headerright {
	width: 350px;
    height: 175px;
	float: right;
	margin: -175px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
    font-size: 14px;
	font-weight: bold;
    /*border: #304463 solid thin;*/
    clear: both; }

.custom .headerright a img {
	border: none;
	margin: 0px 0px 3px 0px;
	padding: 0px;
	border: 1px solid #FFFFFF; }

/* Content Area Styling */
.custom .full_width .page{width:100%}
.custom #content_box {width:1050px; margin:0 auto; padding-bottom:20px;}

/*---:[ headlines and bylines ]:---*/

.custom h1, .custom h2, .custom h3, .custom h4 { font-weight: normal; }

	.custom h2 a { color: #111; }

	.custom h2 a:hover { text-decoration: underline; color: #880203; }
	
	.custom #content #archive_info h1 { font-size: 1.8em; line-height: 1em; font-weight: normal; }
	
	.custom #content h3 { font-size: 14px; font-weight: bold; }


/*---:[ h3 and h4 sizes are calculated relative to the base font size of the content or sidebar ]:---*/
	
.custom .sidebar h3 { color: #880203; font-weight: bold;}

.custom h4 { font-size: 1em; font-weight: bold; }

/*---:[ rotating image styles ]:---*/

.custom #multimedia_box { width: 100%; }

.custom #image_box { padding: 1.1em; background: #eee; border-bottom: 1px solid #ddd; }

.custom #image_box img { display: block; padding: 0.1em; background: #fff; border: 0.1em solid #bbb; }



/*---:[ video box styles ]:---*/

.custom #video_box { padding: 1em; background: #000; }

.custom #video_box p { color: #ffffff; }

.custom #video_box a { color: #E5E5E5; }
.custom #video_box a:hover { color: #AAFFFF; }




/*---:[ custom box styles ]:---*/

.custom #custom_box { padding: 1.1em; background: #eee; border-bottom: 1px solid #ddd; }



/*---:[ sidebar styles ]:---*/

.custom .sidebar a:hover { text-decoration: underline; }

.custom ul.sidebar_list { list-style: none; }

.custom li.widget { width: 100%; }

.custom li.centered { text-align: center; }
	
.custom li.widget p { text-decoration: none; font-size: 12px; }
		
.custom li.widget p a { text-decoration: underline; font-size: 12px; }
		
.custom li.widget p a:hover { text-decoration: none; font-size: 12px; }

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


/*---:[ widget box styles ]:---*/
		
.custom li.widget .widget_box { background: #e3f0f2; border-style: solid; border-color: #addde6; }



/*---:[ subscriptions widget ]:---*/
		
.custom .thesis_widget_subscriptions .sub_rss a { padding-left: 20px; background: url('images/icon-rss.gif') 0 50% no-repeat; }

.custom .thesis_widget_subscriptions .sub_email a { padding-left: 20px; background: url('images/icon-email.gif') 0 50% no-repeat; }


/*---:[ google custom search ]:---*/

.custom li.thesis_widget_google_cse form input[type="text"] { width: 95%; }

.custom li.thesis_widget_google_cse form input[type="submit"] { font-weight: bold; color: #111; background: url('images/submit-bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; }

.custom li.thesis_widget_google_cse form input[type="submit"]:hover { color: #2361a1; }
		

/*---:[ calendar widget ]:---*/

.custom #calendar_wrap { width: 98%; padding: 0 1%; }

.custom #calendar_wrap a { font-weight: bold; }

.custom #calendar_wrap a:hover { background: #ddd; text-decoration: none; }

.custom table#wp-calendar { width: 98%; border-collapse: collapse; }

.custom table#wp-calendar caption { font-weight: normal; text-transform: uppercase; letter-spacing: 2px; background: #e5e5e5; }

.custom table#wp-calendar th { width: 14%; background: #f2f2f2; border-bottom: 1px solid #ddd; text-align: center; }

.custom table#wp-calendar td { width: 14%; color: #888; text-align: center; }

.custom table#wp-calendar td#next, table#wp-calendar td#prev { width: 45%; text-transform: uppercase; letter-spacing: 1px; }

.custom table#wp-calendar td#next { text-align: right; }

.custom table#wp-calendar td#prev { text-align: left; }



/*---:[ comment styles ]:---*/

.custom .comments_intro p { color: #666; }
		
.custom .comments_intro a { text-decoration: underline; }
		
.custom .comments_intro a:hover { text-decoration: none; }

.custom .comments_intro span { color: #111; }

.custom .comments_intro span.bracket { color: #ccc; }

.custom dl#comment_list { border-top: 1px dotted #bbb; }
			
.custom dl#comment_list dt a:hover { text-decoration: underline; }

.custom dl#comment_list dt .comment_author { font-weight: bold; }
				
.custom .avatar img { float: right; }

.custom .comment_time,.custom .edit_comment { color: #888; }
			
.custom .comment_time a, .custom .edit_comment a { color: #888; }
				
.custom .comment_time a:hover, .custom .edit_comment a:hover { color: #888; }

.custom .comment_num { float: right; }

.custom dl#comment_list .comment_num a { font-weight: bold; color: #aaa; }

.custom dl#comment_list .comment_num a:hover { color: #fff; background: #aaa; text-decoration: none; }

.custom dl#comment_list dd { border-bottom: 1px dotted #bbb; }

.custom a.comment_link { color: #111; text-decoration: none; font-variant: small-caps; border-bottom: 1px solid #bbb; }

.custom a.comment_link:hover { color: #111; border-bottom-color: #111; }
			


/*---:[ author comment and alternating comment colors ]:---*/
	
.custom .author_comment { background: #e7f8fb; }

/*
	dl#comment_list dt, dl#comment_list dd { background: #f5f5f5; }

	dl#comment_list .alt { background: #fff !important; }
	*/
	


/*---:[ end author comment and alternating comment colors ]:---*/
	
.custom dl#trackback_list { padding-left: 1.1em; border-top: 1px dotted #bbb; }
	
.custom dl#trackback_list dt a { color: #111; }
	
.custom dl#trackback_list dt a:hover { color: #111; text-decoration: underline; }
	
.custom dl#trackback_list dd { color: #888; }

.custom .comments_closed p { text-transform: uppercase; letter-spacing: 1px; color: #888; display:none; }



/*---:[ comment form styles ]:---*/

.custom #respond p { color: #555; }

.custom .login_alert { background: #f5f5f5; border: 1px solid #ddd; }

.custom .login_alert p { font-weight: bold; }

.custom #commentform { border-top: 1px dotted #bbb; }

.custom #commentform p { margin-bottom: 1em; }
	
.custom #commentform p a { text-decoration: underline; }
		
.custom #commentform p a:hover { text-decoration: none; }

.custom #commentform textarea { width: 100%; }

.custom #commentform p.allowed { width: 100%; font-size: 1em; padding: 0.6em 0.4em; background: #f9f7e4; border: 0.1em dotted #bbb; border-top: 0; }

.custom #commentform p.allowed span { color: #807e70; }
	

/* Support for the highly-recommended Subscribe to Comments Plugin */

.custom #commentform p.subscribe-to-comments label { font-size: 1em; }



/*---:[ footer styles ]:---*/
.custom #footer {padding-top:20px;}
.custom #footer p{text-align:center;}
.custom #footer a { color: #066da2; border-bottom: 1px solid #ccc; }

.custom #footer a:hover { color: #880203; }

/*---:[ nav menu styles ]:---*/
.custom .menu { list-style: none; border:none; width:100%;}
.custom .menu li { margin-bottom: 0; background: none; border-right: 1px solid #ddd; float: left; padding:2px 10px 1px 10px;}
.custom .menu .current_page_item, .custom .menu .current-cat { padding-bottom: 0.1em; background: #fff; border-bottom: 0; }
.custom .menu a { display: block; line-height: 1em; font-size:12px; border:none!important; color: #111; text-transform: uppercase; letter-spacing: 2px; background:none!important; }
.custom .menu a:hover { color: #111; text-decoration: underline; }
.custom .menu li.current, .custom .menu .current-cat a { background-image: url(images/nav-tab-link.png); cursor: text;}
.custom .menu .current_page_item a:hover, .custom .menu .current-cat a:hover {text-decoration: none; }
.custom .menu li.rss { padding-right: 0; background: none; border: none; float: right; margin-right:20px; background:transparent url(images/icon-rss.gif) no-repeat 100% 50%;}
.custom .menu li.rss a { padding-right: 16px;  float: left; }
