/*
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/
*/

.custom h1, .custom h2 { font-weight: bold; text-align:center; }	

/*---:[ sidebar ]:---*/
li.widget { margin-bottom: 0; background: #efefef; border-bottom: 0; }
	li.widget .widget_box { width: 18.4em; padding: 1.333em 0.8em; border: none; background: none; }
li.toc { background: #efefef url('images/toc-red.gif') 0.8em 50% no-repeat; border-top: 3px solid #ddd; }
	li.toc a { display: block; width: 100%; padding-top: 1.6em; padding-bottom: 1.6em; background: transparent url('images/toc.gif') 0.8em 50% no-repeat; text-indent: -9999px; outline: none; }
	li.toc a:hover { background-image: none; }
li.share { padding: 1.333em 0 0.667em 0; }
.toc li.share { border-top: 3px solid #ddd; }
		li.share ul li { width: 20em; margin-bottom: 0; }
		li.share .twitter { background: url('images/icon-twitter.gif') 0.8em 50% no-repeat; }
			.tweetmeme_button { display: inline-block; margin-top: 0.133em; background: transparent; float: right; }
		li.share .delicious { background: url('images/icon-delicious.gif') 0.8em 50% no-repeat; }
		li.share .stumble { background: url('images/icon-stumbleupon.gif') 0.8em 50% no-repeat; }
		li.share .facebook { background: url('images/icon-facebook.gif') 0.8em 50% no-repeat; }
                li.share .timer { background: none; }
			li.share a { display: block; padding: 0.8em 0.8em 0.8em 3.733em; text-decoration: none; outline: none; }
			li.share a:hover { text-decoration: none; }
			li.share .twitter a:hover { background: #e4e4e4 url('images/icon-twitter-on.gif') 0.8em 50% no-repeat; }
			li.share .delicious a:hover { background: #e4e4e4 url('images/icon-delicious-on.gif') 0.8em 50% no-repeat; }
			li.share .stumble a:hover { background: #e4e4e4 url('images/icon-stumbleupon-on.gif') 0.8em 50% no-repeat; }
			li.share .facebook a:hover { background: #e4e4e4 url('images/icon-facebook-on.gif') 0.8em 50% no-repeat; }
				li.share a:hover span { border-bottom: 1px dotted #666; }


/*---:[ specialty page styles ]:---*/
.definition, .more_info { margin-bottom: 1.5em; margin-left: -0.813em; padding: 0.75em; color: #555; background: #eee; border-left: 1px solid #ccc; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }
	.more_info p { font-weight: bold; font-size: 1.25em; line-height: 1.2em; margin-bottom: 0.6em; color: #111; }
	.more_info ul { margin-bottom: 0; color: #aaa; }
	.more_info a { border-bottom: none; }

.toc .format_text ul, .format_text ol.rules { margin-left: 0; color: #aaa; }
	.toc .format_text ul ol, ol.rules { list-style: lower-roman; }
		ol.rules a { border-bottom: none; }
		ol.rules a:visited { color: #999; }
		ol.rules a:hover { color: #fff; }

/*---:[ specialty button styles ]:---*/
.btnRegister {
  padding: 0.8em 0.8em 0.8em 0.8em;
  color: #B81919;
  background: #eee;
  font-weight: bold;
  border: 6px solid #B81919;
}

.btnRegister:hover {
  border: 6px solid green;
  color: green;
  cursor: pointer;
}


/*---:[ footer ]:---*/
#footer p.attribution { margin-top: 1.667em; }
#footer a { border-bottom: 1px dotted #555; }
#footer a:hover { color: #ddd; }

/*---:[ clear, dammit! ]:---*/
li.pdf .widget_box:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }