.custom .format_text {
	line-height: 1.6em;
}

.custom .format_text p { 
	margin-bottom: 0.571em; 
}

.custom .headline_area h1, .headline_area h2 { 
	font-size:25px;
        font-weight: bold;
        letter-spacing: -0,04em;
        line-height: 1.2em;
}

.custom #header #logo {
	font-size: 18px;
}

.custom #header {
	margin-top: -3em;
}

.custom #tagline {
	border-bottom: 1px solid #CCCCCC;
}

.custom .post_box {
	padding-top: 1em;
        border-bottom: 1px solid #CCCCCC;
        padding-bottom: 35px;
}

.custom .menu {
	display: none;
}

.custom #sidebars {
	display: none;
}

.custom #footer {
	font-size: 12px;
        padding-top: 5px;
        text-decoration: none;  
}

#disqus_thread {
	margin-top: 35px;
        margin-left: 10px;
	width: 600px;
}

.custom .dsq-brlink {
        display: none;
}

body.custom {
    background: #44443f;
}

.custom #container {
    margin-top: 2em;
    margin-bottom: 2em;
    padding: 0.3em;
    background: #33332f;
    border: 0.4em solid #3e3e3a;
}

.custom #page {
    background: #fff;
}

/* Custom 404 Hooks */
function custom_thesis_404_title() {
?>
The Page you requested is somewhere here.
<?php
}

remove_action('thesis_hook_404_title', 'thesis_404_title');
add_action('thesis_hook_404_title', 'custom_thesis_404_title');

function custom_thesis_404_content() {
?>
<p>Can't find what you looking for?</p>

<?php if (smart404_loop()) : ?>
<p>Check out These related posts:</p>
<?php while (have_posts()) : the_post(); ?>
<h4><a href="<?php the_permalink() ?>"
  rel="bookmark"
title="<?php the_title_attribute(); ?>">
<?php the_title(); ?></a></h4>
  <small><?php the_excerpt(); ?></small>
<?php endwhile; ?>
<?php endif; ?>

<?php
}

remove_action('thesis_hook_404_content', 'thesis_404_content');
add_action('thesis_hook_404_content', 'custom_thesis_404_content');
