/*
File:			custom.css
Description:	Custom styles for the Thesis Theme that you define

Use:

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

body.custom { background: #392d23 url(../images/bg.jpg); }

	.custom #container { margin-top: 2em; margin-bottom: 2em; padding: 0.3em; background: #2b251e; border: 0.3em solid #382f26; }

		.custom #page { background: #fff url(../images/page-bg.jpg) 100% 100% no-repeat; }
		
.custom p#logo a { display: block; width: 367px; height: 92px; background: url(../images/neo-masculinity-logo.gif); text-decoration: none; text-indent: -8299px; }
.custom h1#tagline,
.custom p#tagline { position: absolute; margin-left: 102px; margin-top: -30px; }

p.to_comments { margin-top: -2em; }

/* FRONT PROMO BOX */
.custom .on_sale { margin:0 0 2em 0; padding: 0.571em 3em 0.571em 0.786em; background: #f7f3e2 url(../images/confused.jpg) 100% 100% no-repeat; border: 1px solid #ddce93; }
	.custom .on_sale p a, .custom .on_sale p a:visited { font-weight: bold; text-decoration: none; }
	.custom .on_sale p a:hover { text-decoration: underline; }

/* Format Text */	
.custom .format_text p { margin-bottom: 1.2em; }
.custom .format_text .more-link { display: inline; }
.format_text .drop_cap { color: #d96a1c; }
.custom p.to_comments { margin-top: 1em; }

.custom #footer p.copyright a, .custom #footer p.copyright a:visited { border: 0; }

body.home div.p1 div.headline_area { display: none; }
body.home div.post_box { margin-bottom: 2.5em; }
body.home div.p1 { margin-bottom: 1em; }
body.archive div.p1 { padding-top: 2.2em !important; }

.custom .sidebar h3 { font-size: 0.846em; font-weight: bold; line-height: 1.455em; margin-bottom: 1em; padding: 0.636em 0.455em 0.545em 0.455em; text-transform: uppercase; font-variant: normal; letter-spacing: 2px; color: #d96a1c; border-top: 1px solid #ddd; border-bottom: 1px dotted #ddd; }
.custom li.thesis_widget_search h3 { display: none; }

/* Disqus */
.custom div#disqus_thread { margin: 0 3em 0 1em; }
.custom div.dsq-by,
.custom a.dsq-brlink { display: none; }

/* Zemanta */
div.zemanta-img { display: block; margin:0.5em 2em 1em; color: #666; font-size: 70%; }
div.zemanta-img a { display: block; }
span.zemanta-img-attribution a { display: inline; color: #666; text-decoration: none; }
span.zemanta-img-attribution a:hover { color: #000; }
div.zemanta-pixie, div.entry-social-links { display: inline; padding: 0 1em; float: right; }

/* sIFR */
.headline_area .flash-replaced { font-size: 167%; }
div.dsq-auth-header .flash-replaced, li.widget .flash-replaced  { font-size: 150%; }
.drop_cap { padding-right: 0; }



/* =Site Meta
-------------------------------------------------------------- */

/* sliding panel fixed to top of browser window when logged-in */

#site-meta {
    position:fixed;
    width:100%;
    z-index:1000;
    margin-top: -2em;
}
#site-meta li {
    display:inline;
}
#meta-panel {
    background:#464646 url(../images/meta-panel.png);
    border-bottom:1px solid #1e1e1e;
}
#meta-panel ul {
    width:950px;
    margin:0 auto;
    padding:1em 0;
    text-align:center;
}
#meta-anchor {
    display:block;
    margin:0 auto;
    width:74px;
    height:16px;
    text-indent:-999em;
    outline:0;
    background:url(../images/meta-anchor-trans.png) no-repeat;
}
#meta-panel a {
    color:#999999;
    font-size: 133%;
    margin:0 5px;
}
#meta-panel a:hover,#meta-panel a:focus {
    color:#FFF;
}
.active {
}
