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

/*---:[ worldmegan design ]:---*/

body.custom { background: #cb8 url('') 50% 0 no-repeat; }
body.custom { background: #db9 url('') 50% 0 no-repeat; }
body.custom { background: #ea5 url('') 50% 0 no-repeat; }

.custom #container { margin-top: 2em; margin-bottom: 2em; }

	.custom #page { background: #fff; border: 1px solid #999; width: 959px; }
	
	
	
	/* DISQUS CSS */	
	
	#disqus_thread #dsq-content {
	padding: 0 25px;
	padding-bottom: 25px;
	}

	a.dsq-brlink {
	display: none;
	padding: 0 25px;
	}
	
	#dsq-content h3 {
	font-weight: normal;
	font-variant: small-caps;
	margin:10px 0;
	color: #888;
	font-size:1em;
	letter-spacing:2px;
	line-height:1.385em;
	margin-bottom:0.615em;
	}

	.format_text .to_comments a {
		font-weight: normal;
		font-variant: small-caps;
		letter-spacing:2px;
		line-height:1.385em;
		margin-bottom:0.615em;
	}
	
	
	#disqus_thread #dsq-content ul#dsq-references li {
	padding-top: 15px;
	font-size: 1em;
	line-height: 1.571em;
	font-family: Georgia,"Times New Roman",Times,serif;
	color: #555;
	padding-bottom: 0px;
	}
	
	#disqus_thread #dsq-content ul#dsq-references li a {
	color: #888;
	}
	
	
	
	/* END DISQUS CSS */
	
.header_image { border:2px solid #98baff; margin-bottom: 0;}
#header_bar, #worldmegan, #header_bar a, #worldmegan a { color: #010199;}
#header_bar { border: 1px solid #69f; margin-bottom: 5px; margin-top: 0px; padding: 10px 19px;
	 background: #98baff url('http://worldmegan.net/wp-content/themes/thesis_151/custom/images/header_bar.png') top right no-repeat; 
	 font-size: 1.3em; font-weight: bold;}
#header_bar .descrip {
	letter-spacing: 1.0px;
	font-variant: ;
}

#worldmegan { float:right; margin: -4px 12px 10px 0; padding: 0; font-size: 1.5em; font-weight: bold; 
				}


#header {padding: 1px 0 0 0; border-bottom: 1px solid #ddd; }

ul#tabs { margin-top: 15px;}
.text_input {color: #aaa; }
#s { width: 148px;}
	
	
#footer_bar { margin-bottom: 5px; margin-top: 0px; height: 16px; border: 1px solid #69f;
	 background: transparent url('http://worldmegan.net/wp-content/themes/thesis_151/custom/images/footer_image.jpg') 0px 0px no-repeat; 
}

#footer { text-align: center; padding: 2px;}

.rss {  }

hr {
	margin: 10px 0;
}

.entry-content img {
	border: 1px solid #555;
}

/*---:[ end worldmegan design ]:---*/

/* Featured Post Formatting */
.custom #my-feature-box { font-family: Helvetica,Arial,sans-serif; color: #ffffff; background: #bbbbbb; padding: 22px 15px 22px 15px; }
.custom #my-feature-box h2 { font-size: 2.2em; margin: 0 0 15px 0; }
.custom #my-feature-box h2 a { color: #000000; text-decoration: none; }
.custom #my-feature-box h2 a:hover { color: #ffffff; }
.custom #my-feature-box p { font-size: 1.4em; line-height:1.571em; text-align: justify;}
.custom #my-feature-box .featurereadmore { padding: 22px 0 0 0; }
.custom #my-feature-box .featurereadmore a { font-size: 14px; text-decoration: none; }