/*
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/
*/

.comments_closed p { display: none; }
.custom .format_text .to_comments { display: none; }

.custom #header {
text-align:center;
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#111111 url(images/header.png) no-repeat scroll 100% 0;
border:medium none;
height:164px;
padding:0 0em;
position:relative;
}

.custom #footer {
-moz-background-clip:border;
-moz-background-inline-policy:continuous;
-moz-background-origin:padding;
background:#111111 url(images/footer.png) no-repeat scroll 100% 0;
border:medium none;
height:100px;
padding:0 0em;
position:relative;
}

/* Top Nav bar */
.custom ul#topnav {
border-style: none;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
background:#111111 none repeat scroll 0 0;
width: 100%;
float: left;
}
.custom ul#topnav li { float: right; padding: 3px 10px 3px 0px; }
.custom ul#topnav li a { font-size: 1.1em; color: #E3AF14; }
.custom ul#topnav li a:hover { text-decoration: underline; }

/* MMBOX Ads */
.custom div.adblock img {
  padding: 4px;
  background-color: #FFFFFF;
  display: inline;
}
.custom .cenx {text-align: center;}

/* Add Boarder Around Each Post */
/* Style the First (or Only) Post */
.custom .post.top {
   background:#FFFFFF none repeat scroll 0 0;
/*   border:8px double #e3af14 !important; */
   border:8px double #111111 !important;
   margin:1em;
   padding:2em;
}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post.post_box {
   background:#FFFFFF none repeat scroll 0 0;
/*   border:8px double #e3af14; */
   border:8px double #111111;
   margin:1em;
   padding:2em;
}

/* Custom Background */
body.custom {
    background: #111111 url('images/blackmarble.jpg') repeat;
}

/** Remove MMBOX from sidebar2
.custom #sidebars #multimedia_box {
    display:none;

} */

/* move the mm b0x down 
.custom #multimedia_box { margin-top: 30em;} */ 
