diff --git a/wp-content/themes/clean-home/comments.php b/wp-content/themes/clean-home/comments.php
new file mode 100644
index 0000000000000000000000000000000000000000..392cfe8a73587ef5db86e24b2947558977857923
--- /dev/null
+++ b/wp-content/themes/clean-home/comments.php
@@ -0,0 +1,109 @@
+<?php // Do not delete these lines
+	if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
+		die ('Please do not load this page directly. Thanks!');
+
+	if (!empty($post->post_password)) { // if there's a password
+		if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
+			?>
+
+			<p class="nocomments">This post is password protected. Enter the password to view comments.</p>
+
+			<?php
+			return;
+		}
+	}
+
+	/* This variable is for alternating comment background */
+	$oddcomment = 'class="alt" ';
+?>
+
+<!-- You can start editing here. -->
+<div id="comments">
+
+<?php if ($comments) : ?>
+
+	<h3><?php comments_number('No Comments', 'One Comment', '% Comments' );?> on &#8220;<?php the_title(); ?>&#8221;</h3>
+
+	<ol class="commentlist">
+
+	<?php $count_pings = 1; foreach ($comments as $comment) : ?>
+
+		<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
+			<div style="float:left;padding-right:5px;"><?php echo get_avatar( $comment, 26 ); ?></div>
+			<span><?php echo $count_pings; $count_pings++; ?></span>
+			<cite><?php comment_author_link() ?>&nbsp;said at <?php comment_time() ?> on <?php comment_date('F jS, Y') ?>:</cite>
+			<?php comment_text() ?>
+			<?php if ($comment->comment_approved == '0') : ?>
+			<p><b>Your comment is awaiting moderation.</b></p>
+			<?php endif; ?>
+		</li>
+
+	<?php
+		/* Changes every other comment to a different class */
+		$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
+	?>
+
+	<?php endforeach; /* end for each comment */ ?>
+
+	</ol>
+
+ <?php else : // this is displayed if there are no comments so far ?>
+
+	<?php if ('open' == $post->comment_status) : ?>
+		<!-- If comments are open, but there are no comments. -->
+
+	 <?php else : // comments are closed ?>
+		<!-- If comments are closed. -->
+		<p class="nocomments">Comments are closed.</p>
+
+	<?php endif; ?>
+<?php endif; ?>
+
+
+<?php if ('open' == $post->comment_status) : ?>
+
+<hr/>
+
+<h4 class="center">Leave a Reply</h4>
+
+<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
+<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p>
+<?php else : ?>
+
+<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
+
+<ul class="formlist">
+
+<?php if ( $user_ID ) : ?>
+
+<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Log out &raquo;</a></p>
+
+
+<?php else : ?>
+
+<li><input type="text" name="author" id="author" value="Name <?php if ($req) echo "(required)"; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> onblur="if(this.value.length == 0) this.value='Name <?php if ($req) echo "(required)"; ?>';" onclick="if(this.value == 'Name <?php if ($req) echo "(required)"; ?>') this.value='';" /></li>
+
+<li><input type="text" name="email" id="email" value="Mail (will not be published) <?php if ($req) echo "(required)"; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> onblur="if(this.value.length == 0) this.value='Mail (will not be published) <?php if ($req) echo "(required)"; ?>';" onclick="if(this.value == 'Mail (will not be published) <?php if ($req) echo "(required)"; ?>') this.value='';" /></li>
+
+<li><input type="text" name="url" id="url" value="Website" size="22" tabindex="3" onblur="if(this.value.length == 0) this.value='Website';" onclick="if(this.value == 'Website') this.value='';" /></li>
+
+<?php endif; ?>
+
+<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
+
+<li><textarea name="comment" id="comment" cols="70%" rows="10" tabindex="4" value="Enter comment here."></textarea></li>
+
+<li class="submitbutton"><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" /></li>
+<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
+
+<?php do_action('comment_form', $post->ID); ?>
+
+</ul>
+
+</form>
+
+<?php endif; // If registration required and not logged in ?>
+
+<?php endif; // if you delete this the sky will fall on your head ?>
+
+</div>
diff --git a/wp-content/themes/clean-home/footer.php b/wp-content/themes/clean-home/footer.php
new file mode 100644
index 0000000000000000000000000000000000000000..a5538d6bd170bcdb39d2073f71a7227c7ac45349
--- /dev/null
+++ b/wp-content/themes/clean-home/footer.php
@@ -0,0 +1,15 @@
+
+	<div id="footer">	
+	<p>&copy; Copyright <?php echo date("Y") ?> | <a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a> <?php if ( "http://".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'] == get_option('home')."/" || "http://www.".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'] == get_option('home')."/" || $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'] == get_option('home')."/" || "www.".$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'] == get_option('home')."/" ) : ?>
+	| Theme by <a href="http://midmodesign.com/">Columbia, MO Web Design</a>
+	<?php endif; ?>| All Rights Reserved</p>
+	<p><?php wp_footer() ?></p>
+	</div>
+
+</div>
+
+<!-- Can put web stats code here -->
+
+</body>
+
+</html>
\ No newline at end of file
diff --git a/wp-content/themes/clean-home/functions.php b/wp-content/themes/clean-home/functions.php
new file mode 100644
index 0000000000000000000000000000000000000000..2701d29dd4222d2f6cd1128de1cfc57835387511
--- /dev/null
+++ b/wp-content/themes/clean-home/functions.php
@@ -0,0 +1,29 @@
+<?php
+if ( function_exists('register_sidebar') )
+    register_sidebar(array(
+		'name' => 'Sidebar',
+        'before_widget' => '<div class="block %1$s %2$s">',
+        'after_widget' => '</div>',
+        'before_title' => '<h3>',
+        'after_title' => '</h3>',
+    ));
+	
+if ( function_exists('register_sidebar') )
+    register_sidebar(array(
+		'name' => 'Blurb',
+        'before_widget' => '',
+        'after_widget' => '',
+        'before_title' => '',
+        'after_title' => '',
+    ));
+	
+if ( function_exists('register_sidebar') )
+register_sidebar(array(
+	'name' => 'Top Navigation',
+	'before_widget' => '',
+	'after_widget' => '',
+	'before_title' => '',
+	'after_title' => '',
+));
+
+?>
\ No newline at end of file
diff --git a/wp-content/themes/clean-home/header.php b/wp-content/themes/clean-home/header.php
new file mode 100644
index 0000000000000000000000000000000000000000..ed6aaf3e5fd234732c8aa8b7bc39fc987f155737
--- /dev/null
+++ b/wp-content/themes/clean-home/header.php
@@ -0,0 +1,43 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
+
+<head profile="http://gmpg.org/xfn/11">
+<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
+
+<title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
+
+<link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/reset.css" type="text/css" media="screen" />
+<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
+<!--[if IE]><link rel="stylesheet" href="<?php bloginfo('stylesheet_directory'); ?>/ie.css" type="text/css" media="screen" /><![endif]-->
+<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
+<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
+
+<?php wp_head(); ?>
+
+</head>
+
+<body>
+
+<div id="wrapper">
+
+	<div id="header">
+		<div id="logo">
+		<h1><a href="<?php echo get_option('home'); ?>"><?php bloginfo('name'); ?></a></h1>
+		<h2><?php bloginfo('description'); ?></h2>
+		</div>
+		<div id="nav">
+		<?php if ( !function_exists('dynamic_sidebar')
+        || !dynamic_sidebar('Top Navigation') ) : ?>
+			<ul>
+				<?php wp_list_pages('title_li='); ?>
+			</ul>
+		<?php endif; ?>
+		</div>
+	</div>
+
+	<div id="blurb">
+		<?php if ( !function_exists('dynamic_sidebar')
+        || !dynamic_sidebar('Blurb') ) : ?>
+		Use your widget sidebars in the admin Design tab to change this little blurb here. Add the text widget to the Blurb Sidebar!
+		<?php endif; ?>
+	</div>
\ No newline at end of file
diff --git a/wp-content/themes/clean-home/ie.css b/wp-content/themes/clean-home/ie.css
new file mode 100644
index 0000000000000000000000000000000000000000..e363ef72eb3a36f8aca727799ec4419f9c19038f
--- /dev/null
+++ b/wp-content/themes/clean-home/ie.css
@@ -0,0 +1,21 @@
+.post .contact li{
+padding:0;
+}
+.post .contact input {
+margin:0;
+}
+.post .contact textarea {
+margin:14px 0 0;
+}
+.post .contact label {
+padding:16px 0 4px;
+}
+#comments span {
+padding:35px 0 50px;
+}
+#content {
+_margin:0;
+}
+#sidebar {
+_margin:0;
+}
\ No newline at end of file
diff --git a/wp-content/themes/clean-home/images/Thumbs.db b/wp-content/themes/clean-home/images/Thumbs.db
new file mode 100644
index 0000000000000000000000000000000000000000..b6f7084142bb6a156382e166346d8e84ed9e5b41
Binary files /dev/null and b/wp-content/themes/clean-home/images/Thumbs.db differ
diff --git a/wp-content/themes/clean-home/images/bullet_black.gif b/wp-content/themes/clean-home/images/bullet_black.gif
new file mode 100644
index 0000000000000000000000000000000000000000..9dd5878b46476d02b379ff54b9fa272ac1c14d7b
Binary files /dev/null and b/wp-content/themes/clean-home/images/bullet_black.gif differ
diff --git a/wp-content/themes/clean-home/images/bullet_red.gif b/wp-content/themes/clean-home/images/bullet_red.gif
new file mode 100644
index 0000000000000000000000000000000000000000..8544a50cbad3d56fd4aa78b320f79c954a51adfe
Binary files /dev/null and b/wp-content/themes/clean-home/images/bullet_red.gif differ
diff --git a/wp-content/themes/clean-home/index.php b/wp-content/themes/clean-home/index.php
new file mode 100644
index 0000000000000000000000000000000000000000..81d6f0e36dcee4aed7006c535cc161f8787938e4
--- /dev/null
+++ b/wp-content/themes/clean-home/index.php
@@ -0,0 +1,36 @@
+<?php get_header(); ?>
+
+	<div id="content">
+	<?php if (have_posts()) : ?>
+
+		<?php while (have_posts()) : the_post(); ?>
+		
+		<div class="post">
+			<h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
+			<small><b>Posted:</b> <?php the_time('F jS, Y') ?> | <b>Author:</b> <?php the_author_posts_link(); ?> | <b>Filed under:</b> <?php the_category(', ') ?> <?php the_tags(' | <b>Tags:</b> ', ', ', ''); ?> <?php if ( $user_ID ) : 
+			?> | <b>Modify:</b> <?php edit_post_link(); ?> <?php endif; ?>| <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></small>
+			<?php the_content('Read the rest of this entry &raquo;'); ?>
+			 <hr/>
+		</div>
+		
+		<?php comments_template(); ?>
+		
+		<?php endwhile; ?>
+
+		<div class="navigation">
+			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
+			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
+		</div>
+
+	<?php else : ?>
+
+		<h2 class="center">Not Found</h2>
+		<p class="center">Sorry, but you are looking for something that isn't here.</p>
+
+	<?php endif; ?>
+
+	</div>
+	
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/clean-home/page.php b/wp-content/themes/clean-home/page.php
new file mode 100644
index 0000000000000000000000000000000000000000..bef21b12aefaa56bd1e4bd7d71e85e21fc7a3632
--- /dev/null
+++ b/wp-content/themes/clean-home/page.php
@@ -0,0 +1,34 @@
+<?php get_header(); ?>
+
+	<div id="content">
+	<?php if (have_posts()) : ?>
+
+		<?php while (have_posts()) : the_post(); ?>
+		
+		<div class="post">
+			<!--uncomment for header tags--  <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1>
+			<small><b>Posted:</b> <?php the_time('F jS, Y') ?> | <b>Author:</b> <?php the_author_posts_link(); ?> | <b>Filed under:</b> <?php the_category(', ') ?> <?php the_tags(' | <b>Tags:</b> ', ', ', ''); ?> <?php if ( $user_ID ) : 
+			?> | <b>Modify:</b> <?php edit_post_link(); ?> <?php endif; ?>| <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></small>   -->
+			<?php the_content('Read the rest of this entry &raquo;'); ?>
+			 <hr/>
+		</div>
+		
+		<?php endwhile; ?>
+
+		<div class="navigation">
+			<div class="alignleft"><?php next_posts_link('&laquo; Older Entries') ?></div>
+			<div class="alignright"><?php previous_posts_link('Newer Entries &raquo;') ?></div>
+		</div>
+
+	<?php else : ?>
+
+		<h2 class="center">Not Found</h2>
+		<p class="center">Sorry, but you are looking for something that isn't here.</p>
+
+	<?php endif; ?>
+
+	</div>
+	
+<?php get_sidebar(); ?>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/clean-home/reset.css b/wp-content/themes/clean-home/reset.css
new file mode 100644
index 0000000000000000000000000000000000000000..002dff9b012bd2a3d17c2d3c4efea354d12e7855
--- /dev/null
+++ b/wp-content/themes/clean-home/reset.css
@@ -0,0 +1,47 @@
+html, body, div, span, applet, object, iframe,
+h1, h2, h3, h4, h5, h6, p, blockquote, pre,
+a, abbr, acronym, big, cite, code,
+del, dfn, em, font, img, ins, kbd, q, s, samp,
+small, strike, sub, sup, tt, var,
+dl, dt, dd, ol, ul, li,
+fieldset, form, label, legend,
+table, caption, tbody, tfoot, thead, tr, th, td {
+	margin: 0;
+	padding: 0;
+	border: 0;
+	outline: 0;
+	font-weight: inherit;
+	font-style: inherit;
+	font-size: 100%;
+	font-family: inherit;
+	vertical-align: baseline;
+	background-color:transparent;
+}
+/* remember to define focus styles! */
+:focus {
+	outline: 0;
+}
+body {
+	line-height: 1;
+	color: black;
+	background: transparent;
+}
+ol, ul {
+	list-style: none;
+}
+/* tables still need 'cellspacing="0"' in the markup */
+table {
+	border-collapse: separate;
+	border-spacing: 0;
+}
+caption, th, td {
+	text-align: left;
+	font-weight: normal;
+}
+blockquote:before, blockquote:after,
+q:before, q:after {
+	content: "";
+}
+blockquote, q {
+	quotes: "" "";
+}
diff --git a/wp-content/themes/clean-home/screenshot.png b/wp-content/themes/clean-home/screenshot.png
new file mode 100644
index 0000000000000000000000000000000000000000..e8d94d10590db58ba872d535d29138abf0eef69d
Binary files /dev/null and b/wp-content/themes/clean-home/screenshot.png differ
diff --git a/wp-content/themes/clean-home/sidebar.php b/wp-content/themes/clean-home/sidebar.php
new file mode 100644
index 0000000000000000000000000000000000000000..3505dc7142f99544b22810057b2dfb2fa3b7c5d2
--- /dev/null
+++ b/wp-content/themes/clean-home/sidebar.php
@@ -0,0 +1,46 @@
+	<div id="sidebar">
+	<?php if ( !function_exists('dynamic_sidebar')
+        || !dynamic_sidebar('Sidebar') ) : ?>
+
+		<div class="block">
+			<h3>Recent Posts</h3>
+				<?php query_posts('showposts=5'); ?>
+				<ul>
+					<?php while (have_posts()) : the_post(); ?>
+					<li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
+					<?php endwhile;?>
+				</ul>
+		</div>
+		
+		<div class="block">
+			<h3>Archives</h3>
+				<ul>
+				<?php wp_get_archives('type=monthly'); ?>
+				</ul>
+		</div>
+		
+		<div class="block">
+			<h3>Categories</h3>
+				<ul>
+					<?php wp_list_categories('title_li='); ?>
+				</ul>
+		</div>
+		
+		<div class="block">
+			<?php wp_list_bookmarks('title_before=<h3>&title_after=</h3>&category_before=&category_after='); ?>
+		</div>
+		
+		<div class="block">
+			<h3>Meta</h3>
+				<ul>
+					<?php wp_register(); ?>
+					<li><?php wp_loginout(); ?></li>
+					<li><a href="<?php bloginfo('rss2_url'); ?>">RSS</a></li>
+					<li><a href="<?php bloginfo('comments_rss2_url'); ?>">Comment RSS</a></li>
+					<li><a rel="nofollow" href="http://validator.w3.org/check/referer">Valid XHTML</a></li>
+					<?php wp_meta(); ?>
+				</ul>
+		</div>
+		
+	<?php endif; ?>
+	</div>
\ No newline at end of file
diff --git a/wp-content/themes/clean-home/style.css b/wp-content/themes/clean-home/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..6fb2de1efc9b3781ed221f16aee4e06e24e59940
--- /dev/null
+++ b/wp-content/themes/clean-home/style.css
@@ -0,0 +1,391 @@
+/*
+Theme Name:Clean Home
+Theme URI:http://midmodesign.com/news/general/our-special-wordpress-theme/
+Description:This WordPress theme is one with a minimal, clean looking design and has full CSS widgetization. Special thanks to <a href="http://bryanhelmig.com/">Bryan Helmig</a> of <a href="http://midmodesign.com/">Mid Mo Web Design</a>.
+Version:1.2.0
+Author:Mid Mo Design
+Author URI:http://midmodesign.com/
+Tags:white, red, fixed-width, two-columns, right-sidebar
+
+	"Clean Home" by http://midmodesign.com/
+
+	This theme was designed and built by Bryan Helmig
+	of Mid Mo Design: http://midmodesign.com/.
+
+	The CSS, XHTML and design is released under the GPL.
+
+*/
+
+body {
+font-family:Arial, serif;
+font-size:13px;
+font-style:normal;
+font-variant:normal;
+font-weight:normal;
+line-height:1.7em;
+}
+a {
+border-bottom:1px dotted #000;
+text-decoration:none;
+color:#000;
+font-weight:600;
+}
+a:hover {
+color:#e12000;
+border-bottom:1px dashed #e12000;
+background-color:#f7f7f7;
+}
+hr{
+margin-top:35px;
+border:0;
+border-top:1px dotted #ccc;
+width:620px;
+color:#fff;
+clear:both;
+}
+#wrapper {
+width:900px;
+margin:40px auto;
+}
+#header {
+float:left;
+width:900px;
+border-bottom:1px dotted #ccc;
+margin:0;
+}
+#logo {
+float:left;
+width:auto;
+padding:18px 0 34px 0;
+}
+#logo a {
+color:#ff2b06;
+font-size:60px;
+font-weight:600;
+text-decoration:none;
+border-bottom:none;
+letter-spacing:-4px;
+background-color:#fff;
+}
+#logo h2 {
+font-size : 18px;
+font-weight : 200;
+padding : 12px 4px 0 0;
+letter-spacing : -1px;
+}
+#nav {
+float:right;
+width:auto;
+padding:12px 0 0;
+}
+#nav ul {
+height:50px;
+float:right;
+}
+#nav li {
+text-align:center;
+float:left;
+display:inline;
+width:auto;
+}
+#nav li a {
+font-size:20px;
+font-weight:400;
+display:block;
+padding:15px;
+border-bottom:none;
+}
+#nav li a:hover {
+background-color:#f7f7f7;
+}
+#blurb {
+font-family:Georgia;
+height:auto;
+border-bottom:1px dotted #ccc;
+width:100%;
+float:left;
+padding:35px 0;
+font-size:32px;
+font-weight:400;
+line-height:120%;
+}
+#blurb:hover {
+color:#e12000;
+}
+#content {
+width:620px;
+float:left;
+border-right:1px dotted #ccc;
+padding:0 0 30px 0;
+min-height:420px;
+}
+.post {
+padding:0 30px 0 0;
+}
+.post p {
+margin:14px 0 14px 0;
+}
+.post em{
+font-style:italic;
+}
+.post h2 {
+font-family:Georgia;
+font-size:24px;
+margin:25px 0 10px 0;
+font-weight:normal;
+}
+.post h1, .post h1 a{
+font-family:Georgia;
+font-size:28px;
+margin:30px 0 10px 0;
+font-weight:normal;
+line-height:32px;
+}
+.post h3, .post h4 {
+font-family:Georgia;
+font-size:20px;
+margin:15px 0 10px 0;
+font-weight:normal;
+}
+.post h4 {
+font-size:18px;
+}
+.post h1:hover, .post h2:hover, .post h3:hover, .post h4:hover {
+color:#e12000;
+}
+.post .indent {
+padding-left:10px;
+}
+.post .indent p {
+padding-left:10px;
+}
+.post small {
+font-size:11px;
+}
+.post small a {
+font-weight:normal;
+}
+.post .alignright {
+float:right;
+margin-left:10px;
+}
+.post .alignleft {
+float:left;
+margin-right:10px;
+}
+.post .aligncenter {
+margin:0 auto;
+display:block;
+}
+.post abbr {
+font-weight:normal;
+}
+.post ul{
+list-style:circle;
+margin:0 0 0 25px;
+}
+.post ol{
+list-style:decimal;
+margin:0 0 0 30px;
+}
+.post .wp-caption {
+background:#f7f7f7;
+border:1px solid #ccc;
+margin:10px;
+text-align:center;
+padding:5px 0 0;
+}
+.post .wp-caption-text {
+margin:0;
+}
+.post .wp-caption a, .post .wp-caption a:hover {
+border-bottom:0;
+}
+.post blockquote {
+color:#777;
+border-left:5px solid #ccc;
+margin:15px 30px 0 10px;
+padding-left:20px;
+}
+.post pre {
+font-family:courier;
+font-size:12px;
+letter-spacing:-1px;
+margin:14px 0 14px 0;
+}
+.post .message ul {
+margin:12px 0 0;
+}
+.post .message {
+display:none;
+background:#0F67A1;
+margin-top:10px;
+padding:20px;
+color:#fff;
+}
+#comments h3, #comments h4{
+font-family:Georgia;
+font-size:24px;
+margin:35px 0 5px;
+font-weight:normal;
+}
+#comments h4{
+font-size:28px;
+}
+#comments cite{
+font-family:Georgia;
+font-size:18px;
+font-weight:normal;
+border-bottom:1px dotted #ccc;
+}
+#comments em {
+font-style:italic;
+text-align:right;
+}
+#comments ol.commentlist li {
+margin-top:20px;
+border:1px dotted #ccc;
+border-right:0;
+padding:10px 5px 20px 10px;
+min-height:110px;
+}
+#comments p {
+margin:10px 0 0 10px;
+width:auto;
+}
+#comments span {
+display:block;
+color:#eee;
+font-family:Georgia;
+font-size:120px;
+font-weight:normal;
+float:right;
+padding-top:25px;
+}
+#comments ul.formlist {
+margin:20px auto;
+width:375px;
+}
+#comments ul.formlist li {
+display:block;
+margin:10px 0 0;
+}
+#comments ul.formlist p{
+margin:10px 0 0;
+text-align:center;
+}
+#comments input {
+font-family:Georgia;
+width:370px;
+font-size:18px;
+font-weight:normal;
+}
+#comments textarea {
+font-family:Georgia;
+width:370px;
+font-size:18px;
+font-weight:normal;
+}
+#comments li.submitbutton input {
+text-align:center;
+background:#fff;
+border:1px solid #aaa;
+color:#000;
+font-family:Georgia;
+font-weight:normal;
+font-size:20px;
+width:374px;
+}
+#comments .center {
+text-align:center;
+}
+#sidebar {
+width:250px;
+float:right;
+margin:0 0 25px 0;
+}
+#sidebar h3 {
+padding:25px 0 3px 0;
+font-size:18px;
+}
+#sidebar .block ul {
+border-bottom:1px dotted #ccc;
+}
+#sidebar .block ul .children{
+border:0;
+padding: 0 0 0 8px;
+}
+#sidebar .block li {
+border-top:1px dotted #ccc;
+}
+#sidebar .block li a {
+background:transparent url(images/bullet_black.gif) no-repeat scroll 6px 52%;
+font-size:13px;
+font-weight:normal;
+padding:2px 0 2px 15px;
+display:block;
+border-bottom:none;
+}
+#sidebar .block li a:hover {
+background:#f7f7f7 url(images/bullet_red.gif) no-repeat scroll 6px 52%;
+}
+#sidebar .widget_search label {
+display:block;
+padding:25px 0 3px 0;
+font-size:18px;
+border-bottom:1px dotted #ccc;
+margin:0 0 5px;
+}
+#sidebar .widget_recent_comments li {
+background:transparent url(images/bullet_black.gif) no-repeat scroll 6px 52%;
+padding:2px 0 2px 15px;
+}
+#sidebar .widget_recent_comments li a,#sidebar .widget_recent_comments li a:hover{
+background:none;
+border-bottom:1px dotted #000;
+text-decoration:none;
+color:#000;
+font-weight:600;
+}
+#sidebar .widget_recent_comments li a:hover {
+color:#e12000;
+border-bottom:1px dashed #e12000;
+background-color:#f7f7f7;
+}
+#sidebar .widget_tag_cloud h3 {
+margin:0 0 8px;
+border-bottom:1px dotted #ccc;
+}
+#sidebar .widget_text h3 , #sidebar .calendar h3{
+border-bottom:1px dotted #ccc;
+}
+#sidebar .calendar h3{
+display:none;
+}
+#sidebar #wp-calendar {
+width:95%;
+text-align:center;
+}
+#sidebar #wp-calendar caption, #sidebar #wp-calendar td, #sidebar #wp-calendar th{
+text-align:center;
+}
+#sidebar #wp-calendar caption {
+font-size:18px;
+padding:25px 0 3px 0;
+}
+#sidebar #wp-calendar th {
+font-weight: bold; 
+border-top:1px dotted #ccc;
+border-bottom:1px dotted #ccc;
+}
+#sidebar #wp-calendar tfoot td{
+border-top:1px dotted #ccc;
+border-bottom:1px dotted #ccc;
+}
+#footer {
+width:900px;
+float:left;
+border-top:1px dotted #cccccc;
+text-align:center;
+padding:30px 0 40px 0;
+}
\ No newline at end of file