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

/* The following lines control the whitespace at the very top of the page (i.e., above the header image). If you set the padding-top property value to 0 (zero), your header image will be flush with the top of the page.
*/

.custom #page {
padding-top: 0;
}

#bandfaces {
 position:relative;
 overflow:visible;
 top:-46px;
 left:552px;
 height:0;
 width:auto;
 z-index:101;
}

#adblocker {
 position:relative;
 overflow:visible;
 top:-90px;
 left:52px;
 height:0;
 width:auto;
 z-index:102;
}

/*Style Gigya Login*/
.custom #gigya-socialize-widget-content h3, .custom #gigya-socialize-widget-content p {
   display: none;
}

/* Re-style the author and children comments */
.custom dl#comment_list .bypostauthor { background: transparent; } 

/* Reset Thesis default */
.custom dl#comment_list dd { padding-top: 0; } 

/* Reset Thesis default */
.custom dl#comment_list dd,
   .custom dl#trackback_list dd { padding-left: 0; } 

/* Reset Thesis default */
.custom dl#comment_list dl dd .format_text { margin-bottom: 0; } 

/* Reset Thesis default */
.custom dl#comment_list dd div,
   .custom dl#trackback_list dd div { padding-left: 0.9em; }
.custom dl#comment_list dl dd div { padding-left: 1.5em; }
.custom dl#comment_list dt.bypostauthor,
   .custom dl#comment_list dd.bypostauthor>div { background: #000 none repeat scroll 0 0; }
.custom dl#comment_list dl.children { background: #OOO; padding-left: 1em; padding-top: 1em; }
.custom dl#comment_list dl.children dt { padding-top: 1em; }
.custom dl#comment_list p.reply { margin-bottom: 1em; }

.custom .comments_closed p {
  display: none;
}

/* Style Comments Intro */
.custom .comments_intro p {
  font-size: 12pt; color: #71C259;
}

/* Style Bracket */
.comments_intro p span.bracket {
  color: #FFF;
}

/* Style "Add One" link */
.custom .comments_intro a {
 color: #71C259;
 text-decoration: underline;
}

/* Style Widgets with consistent fonts */

.custom li.widget_archive select {
   font: Verdana;
}


/*Style "Be the first to post" link*/
.custom .format_text .to_comments { color: #3399CC; clear: both; font-size: 12pt; }
.custom	.format_text .to_comments span { color: #fff; line-height: 1em; }
.custom	.format_text .to_comments span.bracket { color: #ccc; }
.custom	.format_text .to_comments a { color: #3399CC; text-decoration: none; }
.custom	.format_text .to_comments a:hover { color: #71C259; text-decoration: underline; }


.custom .comments_intro p { color: #fff; }
		.custom .comments_intro a { text-decoration: underline; }
		.custom .comments_intro a:hover { text-decoration: none; }
		.custom .comments_intro span { color: #fff; line-height: 1em; }
		.custom.comments_intro span.bracket { color: #000; }

.custom .comment_time, .edit_comment { color: #fff; }
				.custom .comment_time { white-space: nowrap; }
				.custom .comment_time a, .edit_comment a { color: #fff; }
				.custom .comment_time a:hover, .edit_comment a:hover { color: #fff; }

.custom #respond_intro p { color: #555; }
	.custom	#respond_intro p a { font-weight: bold; }
	.custom	#respond_intro p a:hover { text-decoration: underline; }
	.custom	#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; }
.custom .login_alert { background: #f5f5f5; border: 1px solid #ddd; }
	.custom .login_alert p { font-weight: bold; }
	.custom	.login_alert p a:hover { text-decoration: underline; }
.custom .comment_moderated { 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 p .required { color: #d00; }
.custom	#commentform span.allowed { display: block; color: #807e70; background: #000000; border-style: dotted; border-color: #bbb; }
	.custom	#commentform span.allowed span { display: block; }

.custom .format_text .to_comments span.bracket {color: #71C259;}

/* Style comment entry form*/

.custom input, textarea { font-size: 1em; color: #000000; background: #666; border: 1px solid #aaa; border-right-color: #ddd; border-bottom-color: #ddd; 
}
.custom input:focus, textarea:focus { color: #000000; background: #666; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; 
}
	.custom .sidebar .text_input { width: 95%; 
}
.custom input.form_submit { 
  font-weight: bold; 
  color: #fff; 
  background: url('lib/images/submit-bg.gif'); 
  border: 3px double #999; 
  border-top-color: #ccc; 
  border-left-color: #ccc; 
  cursor: pointer; 
  width: auto !important; 
  overflow: visible; 
}
	.custom #commentform input.form_submit { border-width: 3px;}
	.custom input.form_submit:hover { color: #090; }

/* Styles name of logged in user */

.custom li.widget ul li .num_comments { color: #E54836; }