diff --git a/wp-content/themes/neoclassical/404.php b/wp-content/themes/neoclassical/404.php
new file mode 100755
index 0000000000000000000000000000000000000000..31db3ded73a76dabb5d165bd0a37bbd19b5b8adb
--- /dev/null
+++ b/wp-content/themes/neoclassical/404.php
@@ -0,0 +1,33 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="left_box">
+	
+			<div id="content" class="page">
+			
+				<div id="content_inner">
+					<h1>404! Danger, Will Robinson!</h1>
+					<div class="format_text">
+						<p>Somehow, you ended up in the wrong place, but don't worry! Instead, try one of the following:</p>
+						<ul>
+							<li>Hit the "back" button on your browser.</li>
+							<li>Head on over to the <a href="<?php bloginfo('url'); ?>">home page</a>.</li>
+							<li>Use the navigation menu at left.</li>
+							<li>Click on a link in either sidebar.</li>
+							<li>Try searching using the form in the sidebar.</li>
+							<li>Punt.</li>
+						</ul>
+					</div>
+				</div>
+			</div>
+		
+			<?php include (TEMPLATEPATH . '/left_bar.php'); ?>
+		
+		</div>
+
+		<?php get_sidebar(); ?>
+		
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/archive.php b/wp-content/themes/neoclassical/archive.php
new file mode 100644
index 0000000000000000000000000000000000000000..94fa7ba7491eb114160aec5386b6e4d36c3962c3
--- /dev/null
+++ b/wp-content/themes/neoclassical/archive.php
@@ -0,0 +1,47 @@
+<?php $post_count = 1; ?>
+
+<?php get_header(); ?>
+		
+	<div id="content_box">
+
+		<div id="left_box">
+
+			<div id="content" class="archives">
+	
+			<?php if (have_posts()) : ?>
+			
+				<?php if (is_category()) { ?>				
+				<h1>Category &#8212; <span><?php echo single_cat_title(); ?></span></h1>
+				<?php } elseif (is_month()) { ?>
+				<h1>Posts from &#8212; <span><?php the_time('F Y'); ?></span></h1>
+				<?php } ?>
+			
+				<div id="content_inner">
+					<?php while (have_posts()) : the_post(); ?>
+			
+					<h2<?php if ($post_count == 1) echo(' class="top"'); ?>><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
+					<p class="post_author"><em>by</em> <?php the_author(); ?></p>
+					<div class="format_text">
+<?php the_content('[Read more &rarr;]'); ?>
+					</div>
+					<p class="to_comments"><span class="date"><?php the_time('F j, Y') ?></span> &nbsp; <span class="num_comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span></p>
+			
+					<?php $post_count++; endwhile; ?>
+			
+				</div>
+			
+				<?php include (TEMPLATEPATH . '/navigation.php'); ?>
+			
+			<?php endif; ?>
+			
+			</div>
+
+			<?php include (TEMPLATEPATH . '/left_bar.php'); ?>
+		
+		</div>
+	
+		<?php get_sidebar(); ?>
+		
+	</div>
+		
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/archives.php b/wp-content/themes/neoclassical/archives.php
new file mode 100644
index 0000000000000000000000000000000000000000..affe74330e54a6b3a8797025acc07c98f5d50bcd
--- /dev/null
+++ b/wp-content/themes/neoclassical/archives.php
@@ -0,0 +1,40 @@
+<?php
+/*
+Template Name: Archives
+*/
+?>
+
+<?php get_header(); ?>
+		
+	<div id="content_box">
+	
+		<div id="left_box">
+			
+			<div id="content" class="archives">
+					
+				<h1>Browse the Archives</h1>
+					
+				<div id="content_inner">
+					<div class="format_text">
+						<h3 class="top">By Month:</h3>
+						<ul>
+							<?php wp_get_archives('type=monthly'); ?>
+						</ul>
+						<h3>By Category:</h3>
+						<ul>
+							<?php wp_list_categories('title_li=0'); ?>
+						</ul>
+					</div>
+				</div>
+			
+			</div>
+
+			<?php include (TEMPLATEPATH . '/left_bar.php'); ?>
+
+		</div>
+
+		<?php get_sidebar(); ?>
+	
+	</div>
+		
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/comments.php b/wp-content/themes/neoclassical/comments.php
new file mode 100644
index 0000000000000000000000000000000000000000..b7642492e2d80a3e63ebb7ef17eed9ee0b313737
--- /dev/null
+++ b/wp-content/themes/neoclassical/comments.php
@@ -0,0 +1,137 @@
+<?php // Do not delete these lines
+	if ('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="center"><?php _e("This post is password protected. Enter the password to view comments."); ?><p>
+				
+<?php	return; } }
+
+
+	/* Function for seperating comments from track- and pingbacks. */
+	function k2_comment_type_detection($commenttxt = 'Comment', $trackbacktxt = 'Trackback', $pingbacktxt = 'Pingback') {
+		global $comment;
+		if (preg_match('|trackback|', $comment->comment_type))
+			return $trackbacktxt;
+		elseif (preg_match('|pingback|', $comment->comment_type))
+			return $pingbacktxt;
+		else
+			return $commenttxt;
+	}
+
+	$templatedir = get_bloginfo('template_directory');
+	
+	$comment_number = 1;
+	$alt_comment = '';
+?>
+
+<!-- You can start editing here. -->
+
+<?php if (($comments) or ('open' == $post-> comment_status)) { ?>
+
+<div id="comments">
+
+	<p class="comments_intro"><span><?php comments_number('0 comments', '1 comment', '% comments' );?></span></p>
+	
+	<dl id="comment_list">
+
+	<?php if ($comments) { ?>
+
+		<?php foreach ($comments as $comment) { ?>
+	
+		<dt class="comment<?php if (k2_comment_type_detection() != "Comment") { echo(' trackback'); } if ($alt_comment == 'alt') { echo (' alt'); } if ($comment->comment_author_email == get_the_author_email()) { echo (' author'); } ?>" id="comment-<?php comment_ID() ?>">
+			<span class="comment_num"><a href="#comment-<?php comment_ID() ?>" title="Permalink to this comment" rel="nofollow"><?php echo($comment_number); ?></a></span>
+			<strong><?php comment_author_link() ?> </strong><span class="comment_time">{ <?php comment_date('m.d.y') ?> at <?php comment_time() ?> }</span>
+		</dt>
+		<dd class="comment<?php if (k2_comment_type_detection() != "Comment") { echo(' trackback'); } if ($alt_comment == 'alt') { echo (' alt'); } if ($comment->comment_author_email == get_the_author_email()) { echo (' author'); } ?>" id="comment-<?php comment_ID() ?>">
+			<div class="format_text">
+				<?php comment_text() ?> 
+				<?php if ($comment->comment_approved == '0') : ?>
+				<p><strong>Your comment is awaiting moderation.</strong></p>
+				<?php endif; ?>
+			</div>
+		</dd>
+		
+		<?php if ($alt_comment == 'alt') { $alt_comment = ''; } else $alt_comment = 'alt'; ?>
+		
+		<?php $comment_number++; } /* end for each comment */ ?>
+	
+	</dl>
+		
+	<?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. -->
+		<dt class="comment"><strong>There are no comments yet...</strong></dt>
+		<dd class="comment">
+			<div class="format_text">
+				<p>Kick things off by filling out the form below.</p>
+			</div>
+		</dd>
+
+		<?php } else { // comments are closed ?>
+
+		<!-- If comments are closed. -->
+
+		<?php if (is_single) { // To hide comments entirely on Pages without comments ?>
+		<dt class="comment"><strong>Sorry, we're <em>closed</em></strong></dt>
+		<dd class="comment">
+			<div class="format_text">
+				<p>Like gas stations in rural Texas after 10 pm, comments are closed.</p>
+			</div>
+		</dd>
+		<?php } ?>
+	
+		<?php } ?>
+
+	</dl>
+
+	<?php } ?>
+
+
+	<!-- Comment Form -->
+	<?php if ('open' == $post-> comment_status) : ?>
+	
+		<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
+	
+			<p class="unstyled">You must <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>" rel="nofollow">log in</a> to post a comment.</p>
+	
+		<?php else : ?>
+
+			<p id="respond"><span>Leave a Comment</span></p>
+
+			<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="comment_form">
+
+			<?php if ( $user_ID ) { ?>
+	
+				<p class="unstyled">Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php" rel="nofollow"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>" rel="nofollow">Logout &rarr;</a></p>
+	
+			<?php } ?>
+			<?php if ( !$user_ID ) { ?>
+				<p><input class="text_input" type="text" name="author" id="author" value="<?php echo $comment_author; ?>" tabindex="1" /><label for="author">Name</label></p>
+				<p><input class="text_input" type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" tabindex="2" /><label for="email">E-mail</label></p>
+				<p><input class="text_input" type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" tabindex="3" /><label for="url">Website</label></p>
+			<?php } ?>
+				<!--<p><small><strong>XHTML:</strong> You can use these tags: <?php echo allowed_tags(); ?></small></p>-->
+			
+				<p><textarea class="text_input text_area" name="comment" id="comment" rows="7" tabindex="4"></textarea></p>
+			
+				<?php if (function_exists('show_subscription_checkbox')) { show_subscription_checkbox(); } ?>
+			
+				<p class="submit_p">
+					<input name="submit" class="form_submit" type="submit" id="submit" src="<?php bloginfo('template_url') ?>/images/submit_comment.gif" tabindex="5" value="Submit" />
+					<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
+				</p>
+		
+				<?php do_action('comment_form', $post->ID); ?>
+	
+			</form>
+
+		<?php endif; // If registration required and not logged in ?>
+
+<?php endif; // if you delete this the sky will fall on your head ?>
+</div> <!-- Close #comments container -->
+<?php } ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/custom.css b/wp-content/themes/neoclassical/custom.css
new file mode 100644
index 0000000000000000000000000000000000000000..0045ea03309b9ab6345835317f77a0fc6611c6c0
--- /dev/null
+++ b/wp-content/themes/neoclassical/custom.css
@@ -0,0 +1,23 @@
+/*
+File:			custom.css
+Description:	Custom styles for the Neoclassical Theme that you define
+
+Use:
+
+The <body> tag has been appended with the "custom" class, like so: <body class="custom">.
+You can use the "custom" class to overwrite *any* CSS declarations contained in this
+theme's 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!
+*/
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/footer.php b/wp-content/themes/neoclassical/footer.php
new file mode 100644
index 0000000000000000000000000000000000000000..6887ec2c5ea1567c518b2659666d69538dd19e5a
--- /dev/null
+++ b/wp-content/themes/neoclassical/footer.php
@@ -0,0 +1,11 @@
+	<div id="footer">
+		<p>Support <a href="http://www.openeducation.net/about/">open education</a> with the Neoclassical Theme.</p>
+		<?php wp_footer(); ?>
+	</div>
+</div>
+</div>
+<!--[if lte IE 7]>
+<div id="ie_clear"></div>
+<![endif]-->
+</body>
+</html>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/functions.php b/wp-content/themes/neoclassical/functions.php
new file mode 100644
index 0000000000000000000000000000000000000000..b02af9bdf53057503a183aaacf4329c738af58d6
--- /dev/null
+++ b/wp-content/themes/neoclassical/functions.php
@@ -0,0 +1,4 @@
+<?php
+	if (function_exists('register_sidebar'))
+    register_sidebars(2);
+?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/header.php b/wp-content/themes/neoclassical/header.php
new file mode 100644
index 0000000000000000000000000000000000000000..4f3abe75077e58ae42f3f4dbd4bd9f3e43d0cf61
--- /dev/null
+++ b/wp-content/themes/neoclassical/header.php
@@ -0,0 +1,36 @@
+<!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">
+
+<head profile="http://gmpg.org/xfn/11">
+	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
+
+	<title><?php if (is_single() || is_page() || is_archive()) { wp_title('',true); } else { bloginfo('description'); } ?> &#8212; <?php bloginfo('name'); ?></title>
+
+	<meta name="generator" content="WordPress <?php bloginfo('version'); ?>" />
+
+	<link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
+	<link rel="stylesheet" href="<?php bloginfo('template_url'); ?>/custom.css" type="text/css" media="screen" />
+	<!--[if lte IE 7]>
+	<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie7.css" />
+	<![endif]-->
+	<!--[if lte IE 6]>
+	<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/ie6.css" />
+	<![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 class="custom">
+
+<div id="container">
+<div id="page">
+	<div id="masthead">
+		<div id="rss_subscribe"><a href="<?php bloginfo('rss2_url'); ?>" rel="nofollow">Subscribe via RSS</a></div>
+		<div id="logo"><a href="<?php bloginfo('url'); ?>"<?php if (is_home()) echo(' rel="nofollow"'); ?>><?php bloginfo('name'); ?></a></div>
+		<?php if (is_home()) { ?><h1><?php bloginfo('description'); ?></h1><?php } else { ?><div id="tagline"><?php bloginfo('description'); ?></div><?php } ?>
+		
+	</div>
+	<div id="rotating_image">
+<?php include (TEMPLATEPATH . '/rotating_images.php'); ?>
+	</div>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/headers/header_1.jpg b/wp-content/themes/neoclassical/headers/header_1.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..826cf3ade9d75820948793bf38d4d2b48b080323
Binary files /dev/null and b/wp-content/themes/neoclassical/headers/header_1.jpg differ
diff --git a/wp-content/themes/neoclassical/headers/header_2.jpg b/wp-content/themes/neoclassical/headers/header_2.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e29fd060b43fca2957d59785d0463b9bea25df9b
Binary files /dev/null and b/wp-content/themes/neoclassical/headers/header_2.jpg differ
diff --git a/wp-content/themes/neoclassical/headers/header_3.jpg b/wp-content/themes/neoclassical/headers/header_3.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..626df5294f527c9f783422593a77018b331b1e90
Binary files /dev/null and b/wp-content/themes/neoclassical/headers/header_3.jpg differ
diff --git a/wp-content/themes/neoclassical/headers/header_4.jpg b/wp-content/themes/neoclassical/headers/header_4.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..d978719c2c4b4d31833d2648cc508a94659f371f
Binary files /dev/null and b/wp-content/themes/neoclassical/headers/header_4.jpg differ
diff --git a/wp-content/themes/neoclassical/headers/header_5.jpg b/wp-content/themes/neoclassical/headers/header_5.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..fe912fc3c13768933954e9d7643837333c162a7a
Binary files /dev/null and b/wp-content/themes/neoclassical/headers/header_5.jpg differ
diff --git a/wp-content/themes/neoclassical/ie6.css b/wp-content/themes/neoclassical/ie6.css
new file mode 100644
index 0000000000000000000000000000000000000000..159d6674cb272302e9ab4988aa9b77c7124d2a09
--- /dev/null
+++ b/wp-content/themes/neoclassical/ie6.css
@@ -0,0 +1,14 @@
+/*---:[ IE6 styles for the Neoclassical Theme ]:---*/
+/*---:[ ------------------------------------- ]:---*/
+
+
+/*---:[ layout ]:---*/
+
+#content, .sidebar { overflow: hidden; }
+
+
+/*---:[ NOTE: uncomment each of the following definitions if a custom stylesheet is being used ]:---*/
+
+/* .custom #container { padding: 0; margin-bottom: 20px; background: none; border: 3px solid #9f7148; border-top: none; }
+
+.custom #footer_bottom { display: none; }*/
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/ie7.css b/wp-content/themes/neoclassical/ie7.css
new file mode 100644
index 0000000000000000000000000000000000000000..773f85a49b0435e055853721230b5e1fbccd70c0
--- /dev/null
+++ b/wp-content/themes/neoclassical/ie7.css
@@ -0,0 +1,13 @@
+/*---:[ IE 7 styles for the Neoclassical Theme ]:---*/
+/*---:[ -------------------------------------- ]:---*/
+
+/*---:[ layout ]:---*/
+
+#respond { width: 423px; clear: both; }
+
+#ie_clear { height: 1%; }
+
+
+/*---:[ NOTE: uncomment each of the following definitions if a custom stylesheet is being used ]:---*/
+
+/*.custom #footer_bottom { margin-top: -2px; padding-bottom: 0 !important; }*/
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/images/bullet_text.gif b/wp-content/themes/neoclassical/images/bullet_text.gif
new file mode 100644
index 0000000000000000000000000000000000000000..6f995db0e2986742e6a0c921cf06e61cc1f05855
Binary files /dev/null and b/wp-content/themes/neoclassical/images/bullet_text.gif differ
diff --git a/wp-content/themes/neoclassical/images/content_bg.gif b/wp-content/themes/neoclassical/images/content_bg.gif
new file mode 100644
index 0000000000000000000000000000000000000000..4eb6912b6b0a3c253dff4f56030d9b688dfeddc9
Binary files /dev/null and b/wp-content/themes/neoclassical/images/content_bg.gif differ
diff --git a/wp-content/themes/neoclassical/images/icon_comment.gif b/wp-content/themes/neoclassical/images/icon_comment.gif
new file mode 100644
index 0000000000000000000000000000000000000000..22f440fad7bd5e4341418f924660fa048040c9d7
Binary files /dev/null and b/wp-content/themes/neoclassical/images/icon_comment.gif differ
diff --git a/wp-content/themes/neoclassical/images/icon_date.gif b/wp-content/themes/neoclassical/images/icon_date.gif
new file mode 100644
index 0000000000000000000000000000000000000000..eda48ae4354483195e162a82889ee349b3f58ee1
Binary files /dev/null and b/wp-content/themes/neoclassical/images/icon_date.gif differ
diff --git a/wp-content/themes/neoclassical/images/icon_filed.gif b/wp-content/themes/neoclassical/images/icon_filed.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d1b506c2084ec383a9633102d2a5182e8ec35538
Binary files /dev/null and b/wp-content/themes/neoclassical/images/icon_filed.gif differ
diff --git a/wp-content/themes/neoclassical/images/icon_leave_comment.gif b/wp-content/themes/neoclassical/images/icon_leave_comment.gif
new file mode 100644
index 0000000000000000000000000000000000000000..840c32c698af30a30b74e819aed48dc267c39db4
Binary files /dev/null and b/wp-content/themes/neoclassical/images/icon_leave_comment.gif differ
diff --git a/wp-content/themes/neoclassical/images/icon_rss.gif b/wp-content/themes/neoclassical/images/icon_rss.gif
new file mode 100644
index 0000000000000000000000000000000000000000..81419070792706becfce6b0e07b8a9e727772193
Binary files /dev/null and b/wp-content/themes/neoclassical/images/icon_rss.gif differ
diff --git a/wp-content/themes/neoclassical/images/submit_bg.gif b/wp-content/themes/neoclassical/images/submit_bg.gif
new file mode 100644
index 0000000000000000000000000000000000000000..d116e4525e02095431e86a7c85204184beec96ec
Binary files /dev/null and b/wp-content/themes/neoclassical/images/submit_bg.gif differ
diff --git a/wp-content/themes/neoclassical/index.php b/wp-content/themes/neoclassical/index.php
new file mode 100644
index 0000000000000000000000000000000000000000..1db2157e19e71b4d17fcf91fdc7d687a5e3202a3
--- /dev/null
+++ b/wp-content/themes/neoclassical/index.php
@@ -0,0 +1,52 @@
+<?php $post_count = 1; ?>
+
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="left_box">
+
+			<div id="content">
+<?php 		if (have_posts()) : ?>
+		
+				<div id="content_inner">
+<?php 
+				while (have_posts()) : the_post(); ?>
+
+					<h2<?php if ($post_count == 1) echo(' class="top"'); ?>><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
+					<p class="post_author"><em>by</em> <?php the_author(); ?></p>
+					<div class="format_text">
+<?php the_content('[Read more &rarr;]'); ?>
+					</div>	
+					<p class="to_comments"><span class="date"><?php the_time('F j, Y') ?></span> &nbsp; <span class="num_comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span></p>
+<?php
+					$post_count++;
+				endwhile; ?>
+				
+				</div>
+			
+				<?php include (TEMPLATEPATH . '/navigation.php'); ?>
+<?php 
+			else : ?>
+			
+				<div class="content_inner">
+					<h2 class="top">There's nothing here.</h2>
+					<div class="format_text">
+						<p class="center">Sorry, but you are looking for something that isn't here.</p>
+						<?php include (TEMPLATEPATH . "/searchform.php"); ?>
+					</div>
+				</div>
+<?php 
+			endif; ?>
+	
+			</div>
+		
+			<?php include (TEMPLATEPATH . '/left_bar.php')?>
+		
+		</div>
+
+		<?php get_sidebar(); ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/left_bar.php b/wp-content/themes/neoclassical/left_bar.php
new file mode 100644
index 0000000000000000000000000000000000000000..5372d94b46bc06fefc8c2379f082d656e65d7d52
--- /dev/null
+++ b/wp-content/themes/neoclassical/left_bar.php
@@ -0,0 +1,28 @@
+<div id="left_bar" class="sidebar">
+	<ul class="sidebar_list">
+		<li class="widget">
+			<h2>Navigation</h2>
+			<ul>
+<?php include (TEMPLATEPATH . '/nav_menu.php'); ?>
+
+			</ul>
+		</li>
+<?php 
+		if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(1)) : ?>
+		<li class="widget">
+			<h2>Latest Blog Entries</h2>
+			<ul>
+<?php 
+			query_posts('showposts=10');
+			if (have_posts()) : 
+				while (have_posts()) : the_post(); ?>
+				<li><a href="<?php the_permalink() ?>"><?php the_title() ?></a></li>
+<?php
+				endwhile;
+			endif; ?>
+			</ul>
+		</li>
+<?php 
+		endif; ?>
+	</ul>
+</div>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/nav_menu.php b/wp-content/themes/neoclassical/nav_menu.php
new file mode 100644
index 0000000000000000000000000000000000000000..e4b247a4d6287128f00978c7ce6d3843d04c4b5f
--- /dev/null
+++ b/wp-content/themes/neoclassical/nav_menu.php
@@ -0,0 +1,2 @@
+<li><a href="<?php bloginfo('url'); ?>" rel="nofollow">Home</a></li>
+<li><a href="<?php bloginfo('url'); ?>/about/" rel="nofollow">About</a></li>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/navigation.php b/wp-content/themes/neoclassical/navigation.php
new file mode 100644
index 0000000000000000000000000000000000000000..a3c3ba774f4184ce48a0da6b5b9f707db1bae858
--- /dev/null
+++ b/wp-content/themes/neoclassical/navigation.php
@@ -0,0 +1,14 @@
+<?php if (is_single()) : ?>
+
+<div class="navigation">
+	<p class="previous"><?php previous_post_link('&larr; %link') ?></p>
+	<p><?php next_post_link('%link &rarr;') ?></p>
+</div>
+
+<?php else : ?>
+
+<div class="navigation">
+	<p><span class="older"><?php next_posts_link('&larr; Previous Entries') ?></span><?php previous_posts_link('Next Entries &rarr;') ?></p>
+</div>
+
+<?php endif; ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/page.php b/wp-content/themes/neoclassical/page.php
new file mode 100644
index 0000000000000000000000000000000000000000..7290faaa1a7a8675e1d9311cb85d52c3d18764cf
--- /dev/null
+++ b/wp-content/themes/neoclassical/page.php
@@ -0,0 +1,33 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="left_box">
+	
+			<div id="content" class="page">
+
+				<div id="content_inner">
+
+				<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+			
+					<h1><?php the_title(); ?></h1>	
+					<div class="format_text">		
+<?php the_content('<p>Read the rest of this page &rarr;</p>'); ?>
+<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
+					</div>
+				
+				</div>
+				
+				<?php endwhile; endif; ?>
+
+			</div>
+
+			<?php include (TEMPLATEPATH . '/left_bar.php'); ?>
+
+		</div>
+
+		<?php get_sidebar(); ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/page_comments.php b/wp-content/themes/neoclassical/page_comments.php
new file mode 100644
index 0000000000000000000000000000000000000000..612ab805d66b363ef9eb923e1e3919547eea13f0
--- /dev/null
+++ b/wp-content/themes/neoclassical/page_comments.php
@@ -0,0 +1,40 @@
+<?php
+/*
+Template Name: Page with Comments
+*/
+?>
+
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="left_box">
+	
+			<div id="content" class="page">
+
+				<div id="content_inner">
+
+				<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+			
+					<h1><?php the_title(); ?></h1>	
+					<div class="format_text">		
+<?php the_content('<p>Read the rest of this page &rarr;</p>'); ?>
+<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
+					</div>
+				
+				</div>
+				
+				<?php comments_template(); ?>
+				<?php endwhile; endif; ?>
+
+			</div>
+
+			<?php include (TEMPLATEPATH . '/left_bar.php'); ?>
+
+		</div>
+
+		<?php get_sidebar(); ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/rotating_images.php b/wp-content/themes/neoclassical/rotating_images.php
new file mode 100644
index 0000000000000000000000000000000000000000..299534db744aa8b5d0038fbbb6b550c9bcd8e190
--- /dev/null
+++ b/wp-content/themes/neoclassical/rotating_images.php
@@ -0,0 +1,6 @@
+<?php
+
+$random_image = rand(1,5); // the second number should equal the total number of images that you want to rotate
+
+?>
+				<img src="<?php bloginfo('template_url'); ?>/headers/header_<?php echo $random_image; ?>.jpg" alt="Random header image... Refresh for more!" />
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/screenshot.png b/wp-content/themes/neoclassical/screenshot.png
new file mode 100644
index 0000000000000000000000000000000000000000..671d24d773d83f8929569b1c1a7300faf2367ef1
Binary files /dev/null and b/wp-content/themes/neoclassical/screenshot.png differ
diff --git a/wp-content/themes/neoclassical/search.php b/wp-content/themes/neoclassical/search.php
new file mode 100644
index 0000000000000000000000000000000000000000..c37cf7e998805327b66ba0e2611600c91b1a7caf
--- /dev/null
+++ b/wp-content/themes/neoclassical/search.php
@@ -0,0 +1,53 @@
+<?php $post_count = 1; ?>
+
+<?php get_header(); ?>
+		
+	<div id="content_box">
+
+		<div id="left_box">
+
+			<div id="content" class="archives">
+	
+			<?php if (have_posts()) : ?>
+
+				<h1>Search Results for "<span><?php echo $s; ?></span>"</h1>
+
+				<div id="content_inner">
+					
+					<?php while (have_posts()) : the_post(); ?>
+			
+					<h2<?php if ($post_count == 1) echo(' class="top"'); ?>><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
+					<p class="post_author"><em>by</em> <?php the_author(); ?></p>
+					<div class="format_text">
+<?php the_content('[Read more &rarr;]'); ?>
+					</div>
+					<p class="to_comments"><span class="date"><?php the_time('F j, Y') ?></span> &nbsp; <span class="num_comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span></p>
+			
+					<?php $post_count++; endwhile; ?>
+			
+				</div>
+			
+				<?php include (TEMPLATEPATH . '/navigation.php'); ?>
+			
+			<?php else : ?>
+		
+				<div id="content_inner">
+					<h1>Welp, we couldn't find that...try again?</h1>
+					<div class="format_text">
+						<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+					</div>
+				</div>
+		
+			<?php endif; ?>
+			
+			</div>
+
+			<?php include (TEMPLATEPATH . '/left_bar.php'); ?>
+		
+		</div>
+	
+		<?php get_sidebar(); ?>
+		
+	</div>
+		
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/searchform.php b/wp-content/themes/neoclassical/searchform.php
new file mode 100644
index 0000000000000000000000000000000000000000..31e4b93ff7c20f4120f75bfb69f6e6ff52be896f
--- /dev/null
+++ b/wp-content/themes/neoclassical/searchform.php
@@ -0,0 +1,4 @@
+<form method="get" id="search_form" action="<?php bloginfo('home'); ?>/">
+	<input type="text" class="search_input" value="To search, type and hit enter" name="s" id="s" onfocus="if (this.value == 'To search, type and hit enter') {this.value = '';}" onblur="if (this.value == '') {this.value = 'To search, type and hit enter';}" />
+	<input type="hidden" id="searchsubmit" value="Search" />
+</form>
diff --git a/wp-content/themes/neoclassical/sidebar.php b/wp-content/themes/neoclassical/sidebar.php
new file mode 100644
index 0000000000000000000000000000000000000000..e8a1aef9dd0f92adc5723e74c4e72e239637a843
--- /dev/null
+++ b/wp-content/themes/neoclassical/sidebar.php
@@ -0,0 +1,19 @@
+<div id="right_bar" class="sidebar">
+	<ul class="sidebar_list">
+<?php 
+		if (!function_exists('dynamic_sidebar') || !dynamic_sidebar(2)) : ?>
+		<li class="widget">
+			<h2>Search This Site</h2>
+			<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+		</li>
+		<li class="widget">
+			<h2>Categories</h2>
+			<ul>
+				<?php wp_list_categories('title_li=0'); ?>
+			</ul>
+		</li>
+<?php get_links_list('id'); ?>
+<?php 
+		endif; ?>
+	</ul>
+</div>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/single.php b/wp-content/themes/neoclassical/single.php
new file mode 100644
index 0000000000000000000000000000000000000000..b34bff537a56758b9113712e3f2a3bee7e889c23
--- /dev/null
+++ b/wp-content/themes/neoclassical/single.php
@@ -0,0 +1,48 @@
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="left_box">
+	
+			<div id="content">
+		
+				<div id="content_inner">
+<?php 
+				if (have_posts()) : 
+					while (have_posts()) : the_post(); ?>
+		
+					<h1><?php the_title(); ?></h1>
+					<p class="post_author"><em>by</em> <?php the_author(); ?></p>
+					<div class="format_text">
+<?php the_content('<p>Read the rest of this entry &raquo;</p>'); ?>
+<?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
+					</div>
+		
+				</div>
+		
+				<?php comments_template(); ?>
+<?php 
+					endwhile;
+				else: ?>
+	
+					<h1>Uh oh.</h1>
+					<div class="format_text">
+						<p>Sorry, no posts matched your criteria. Wanna search instead?</p>
+<?php include (TEMPLATEPATH . '/searchform.php'); ?>
+					</div>
+				
+				</div>
+<?php 
+				endif; ?>
+		
+			</div>
+		
+			<?php include (TEMPLATEPATH . '/left_bar.php')?>
+	
+		</div>
+	
+		<?php get_sidebar(); ?>
+		
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/sitemap.php b/wp-content/themes/neoclassical/sitemap.php
new file mode 100644
index 0000000000000000000000000000000000000000..43f3d041a5b04aa87f0a1b89186a0b246bec1c2c
--- /dev/null
+++ b/wp-content/themes/neoclassical/sitemap.php
@@ -0,0 +1,61 @@
+<?php
+/*
+Template Name: Sitemap
+*/
+?>
+
+<?php get_header(); ?>
+
+	<div id="content_box">
+	
+		<div id="left_box">
+	
+			<div id="content" class="archives">
+				<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
+			
+				<h1><?php the_title(); ?></h1>
+			
+				<div id="content_inner">
+					<div class="format_text">
+						<h3 class="top">All internal pages:</h3>
+						<ul>
+							<?php wp_list_pages('title_li='); ?>
+						</ul>
+						<h3>All internal blog posts:</h3>
+						<ul>
+							<?php $archive_query = new WP_Query('showposts=1000');
+								while ($archive_query->have_posts()) : $archive_query->the_post(); ?>
+							<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>" rel="nofollow"><?php the_title(); ?></a> <strong><?php comments_number('0', '1', '%'); ?></strong></li>
+							<?php endwhile; ?>
+						</ul>
+						<h3>Monthly archive pages:</h3>
+						<ul>
+							<?php wp_get_archives('type=monthly'); ?>
+						</ul>
+						<h3>Topical archive pages:</h3>
+						<ul>
+							<?php wp_list_categories('title_li=0'); ?>
+						</ul>
+						<h3>Available RSS Feeds:</h3>
+						<ul>
+							<li><a href="<?php bloginfo('rdf_url'); ?>" alt="RDF/RSS 1.0 feed" rel="nofollow"><acronym title="Resource Description Framework">RDF</acronym>/<acronym title="Really Simple Syndication">RSS</acronym> 1.0 feed</a></li>
+							<li><a href="<?php bloginfo('rss_url'); ?>" alt="RSS 0.92 feed" rel="nofollow"><acronym title="Really Simple Syndication">RSS</acronym> 0.92 feed</a></li>
+							<li><a href="<?php bloginfo('rss2_url'); ?>" alt="RSS 2.0 feed" rel="nofollow"><acronym title="Really Simple Syndication">RSS</acronym> 2.0 feed</a></li>
+							<li><a href="<?php bloginfo('atom_url'); ?>" alt="Atom feed" rel="nofollow">Atom feed</a></li>
+						</ul>
+					</div>
+				</div>
+				
+				<?php endwhile; endif; ?>
+
+			</div>
+
+			<?php include (TEMPLATEPATH . '/left_bar.php'); ?>
+
+		</div>
+
+		<?php get_sidebar(); ?>
+
+	</div>
+
+<?php get_footer(); ?>
\ No newline at end of file
diff --git a/wp-content/themes/neoclassical/style.css b/wp-content/themes/neoclassical/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..efe05db449a50fe11b973932bd9ee1db03d561af
--- /dev/null
+++ b/wp-content/themes/neoclassical/style.css
@@ -0,0 +1,332 @@
+/*
+Theme Name:		Neoclassical
+Theme URI:		http://openeducation.net
+Description:	A 3-column design with an emphasis on typography and whitespace.
+Version:		1.1
+Author:			Chris Pearson
+Author URI:		http://pearsonified.com/
+*/
+
+body { background: #fff; color: #333; font: 62.5% Georgia, "Times New Roman", Times, serif; }
+
+* { padding: 0; margin: 0; }
+	
+
+
+/*---:[ core layout elements ]:---*/
+
+#container { width: 885px; margin: 0 auto; padding: 20px 0; }
+
+	#page { } /* for use with custom styles */
+	
+		#masthead { width: 865px; margin: 0 0 20px 0; padding: 0 10px; text-align: left; }
+		
+		#rotating_image { width: 885px; margin: 0 0 20px 0; }
+		
+			#rotating_image img { display: block; border: 10px solid #eee; }
+
+		#content_box { width: 865px; padding: 0 10px; background: url('images/content_bg.gif') 50% 0 repeat-y; text-align: left; }
+
+			#left_box { width: 665px; float: left; }
+
+				#content { width: 463px; padding: 0 1px; float: right; }
+			
+					#content_inner { width: 445px; padding: 0 9px; }
+	
+			.sidebar { width: 190px; float: left; }
+		
+			#left_bar { padding: 0 10px 0 0; }
+		
+			#right_bar { padding: 0 0 0 10px; }
+		
+		#footer { padding: 1.0em 0; border-top: 1px double #ddd; }
+
+
+
+/*---:[ headlines ]:---*/
+
+h1, h2, h3, h4 { font: bold 1.0em Georgia, "Times New Roman", Times, serif; }
+
+h1 { font-size: 1.8em; line-height: 1.11111em; padding: 0 10px; color: #111; }
+	
+	.archives h1 { font-size: 1.1em; line-height: 1.81818em; text-transform: uppercase; letter-spacing: 2px; margin: 0 0 1.81818em 0; padding: 0.36364em 10px 0.36364em 10px; background: #eee; border-top: 1px solid #ddd; border-bottom: 1px dotted #ddd; text-align: center; }
+
+	.page h1 { margin: 0 0 1.11111em 0; }
+
+h2 { font-size: 1.8em; line-height: 1.11111em; padding: 1.11111em 10px 0 10px; border-top: 1px dotted #ddd; color: #111; }
+
+	h2 a, h2 a:visited { color: #333; }
+
+	h2 a:hover { color: #237fa1; text-decoration: none; }
+	
+	h2.top { padding-top: 0; border-top: none; }
+	
+	.sidebar h2 { font-size: 0.83333em; margin: 0 0 0.9em 0; line-height: 1.9em; padding: 0; text-transform: uppercase; letter-spacing: 2px; border-top: 0; border-bottom: 1px solid #ddd; }
+
+h3 { font-size: 1.23077em; line-height: 1.25em; color: #999; }
+
+	.format_text h3 { margin: 1.875em 0 0.625em 0; }
+
+	.format_text h3.top { margin: 0 0 0.625em 0 !important; }
+
+h4 { font-size: 0.84615em; line-height: 1.81818em; text-transform: uppercase; letter-spacing: 2px; }
+
+
+
+/*---:[ global elements ]:---*/
+
+hr { display: none; }
+
+a, a:visited { color: #237fa1; text-decoration: none; }
+
+a:hover { color: #c00; text-decoration: underline; }
+
+a img { border: none; }
+
+blockquote { font-family: Georgia, "Times New Roman", Times, serif; color: #555; margin: 0 0 1.53846em 10px; padding: 0 0 0 10px; border-left: 1px solid #eee; }
+
+abbr, acronym { font-size: 0.84615em; border-bottom: 1px dotted #888; letter-spacing: 1px; text-transform: uppercase; line-height: 1.0em; cursor: help; }
+
+sub, sup { line-height: 1.0em; }
+	
+code { font: 0.92308em Consolas, "Andale Mono", Courier, "Courier New"; color: #050; }
+
+pre { margin: 0 0 1.66667em 0; padding: 0.75em; font: 0.92308em/1.66667em Consolas, "Andale Mono", Courier, "Courier New"; background: #eee; border: 1px solid #ddd; overflow: auto; clear: both; }
+
+p.center { text-align: center !important; }
+
+p.bottom { margin: 0 !important; }
+
+p.unstyled { padding: 0 20px; font-size: 1.3em; }
+
+
+
+/*---:[ #masthead styles ]:---*/
+
+#masthead #rss_subscribe { width: 40px; height: 40px; float: right; }
+
+	#masthead #rss_subscribe a { display: block; width: 40px; height: 40px; background: url('images/icon_rss.gif') no-repeat; text-indent: -9999px; outline: none; }
+
+#masthead #logo { font: bold 3.2em Georgia, "Times New Roman", Times, serif; letter-spacing: -1px; }
+
+	#masthead #logo a, #masthead #logo a:visited { color: #111; }
+
+	#masthead #logo a:hover { color: #237fa1; text-decoration: none; }
+	
+#masthead h1, #masthead #tagline { font: normal 1.4em/1.42857em Verdana, serif; padding: 0; color: #999; text-align: left; }
+
+
+
+/*---:[ content styles ]:---*/
+
+.post_author { font-size: 1.2em; line-height: 1.66667em; margin: 0 0 1.66667em 0; padding: 0 10px; color: #999; }
+
+	.post_author a, .post_author a:visited { color: #999; text-decoration: none; }
+	
+	.post_author a:hover { color: #999; text-decoration: underline; }
+
+.format_text { font-size: 1.3em; line-height: 1.53846em; padding: 0 10px; }
+		
+	.format_text a { text-decoration: underline; }
+	
+	.format_text a:visited { color: #333; background: #e8e8e8; text-decoration: none; }
+	
+	.format_text a:hover { text-decoration: underline; }
+		
+	.format_text blockquote { }
+	
+		.format_text blockquote.right { width: 180px; font-size: 1.2308em; line-height: 1.25em; margin: 0 0 0 10px; padding: 0.4375em 0 0.4375em 10px; border: none; float: right; }
+		
+		.format_text blockquote.left { width: 180px; font-size: 1.2308em; line-height: 1.25em; margin: 0 10px 0 0; padding: 0.4375em 10px 0.4375em 0; background: none; border: none; float: left; }
+	
+			.format_text blockquote.right p, .format_text blockquote.left p { margin: 0 !important; }
+	
+	.format_text p { margin: 0 0 1.53846em 0; }
+	
+	.format_text p.note { padding: 0.76923em 10px; background: #ffffa0; border: 1px solid #d3d35d; }
+	
+	.format_text ul { list-style: none; margin: 0 0 1.53846em 0; }
+
+	.format_text ol { margin: 0 0 1.53846em 20px; }
+	
+		.format_text li { }
+	
+		.format_text ul li { padding: 0 0 0 14px; background: url('images/bullet_text.gif') 0 0.38462em no-repeat; }
+		
+			.format_text ul li ul, .format_text ul li ol, .format_text ol li ul, .format_text ol li ol { margin: 0 0 0 10px; }
+	
+		.format_text li code { line-height: inherit; } /* This is basically a Safari hack :( */
+	
+	.format_text dl { margin: 0 0 1.53846em 0; }
+			
+		.format_text dt { font-weight: bold; }
+		
+		.format_text dd { margin: 0 0 1.53846em 1.53846em; }
+		
+	.format_text .ad { margin: 0 0 0 10px; float: right; clear: right; }
+	
+		.format_text .ad_left { margin: 0 10px 0 0; float: left; clear: left; }
+
+	.format_text img { }
+
+		.format_text img.left { margin: 0 10px 1.53846em 0; float: left; clear: left; }
+		
+		.format_text img.right { margin: 0 0 1.53846em 10px; float: right; clear: right; }
+		
+		.format_text img.center { display: block; margin: 0 auto 1.53846em auto; float: none; clear: both; }
+		
+		.format_text img.block { display: block; margin: 0 auto 1.53846em 0; float: none; clear: both; }
+	
+		.format_text img.frame { padding: 9px; border: 1px solid #ddd; background: #eee; }
+		
+		.format_text img.stack { clear: none !important; }
+
+.to_comments { margin: 0 0 1.81818em 0; padding: 0 10px; font: normal 1.1em/1.81818em Verdana, serif; color: #999; clear: both; }
+	
+	.to_comments .date { padding: 0 0 0 14px; background: url('images/icon_date.gif') 0 50% no-repeat; }
+	
+	.to_comments .filed { padding: 0 0 0 14px; background: url('images/icon_filed.gif') 0 50% no-repeat; }
+	
+	.to_comments .num_comments { padding: 0 0 0 14px; background: url('images/icon_comment.gif') 0 50% no-repeat; }
+
+.navigation { width: 425px; padding: 0.69231em 19px 0.76923em 19px; background: #efefef; border-top: 1px solid #ddd; font-size: 1.3em; line-height: 1.53846em; clear: both; }
+
+	.navigation p { text-align: right; }
+
+	.older { padding: 0 20px 0 0; float: left; }
+
+	.previous { text-align: left; }
+
+
+
+/*---:[ sidebar styles ]:---*/
+
+ul.sidebar_list { list-style: none; }
+
+	ul.sidebar_list li.widget, ul.sidebar_list li.linkcat { width: 190px; margin: 0 0 2.5em 0; font: normal 1.2em/1.33333em Verdana, serif; float: left; }
+
+		li.widget p { margin: 0 0 1.33333em 0; }
+		
+		li.widget ul, li.linkcat ul { list-style: none; }
+		
+		li.widget ol { margin: 0 0 0 20px; }
+		
+			li.widget li, li.linkcat li { margin: 0 0 0.75em 0; }
+			
+				li.widget li br { display: none; }
+			
+				li.widget li ul, li.linkcat li ul { margin: 0.75em 0 0 20px; }
+
+			/*---:[ calendar widget ]:---*/
+
+			#calendar_wrap { width: 182px; margin: 0 0 0.83333em 0; padding: 0 8px 0 0; font-family: Georgia, "Times New Roman", Times, serif; }
+
+			table#wp-calendar { width: 182px; border-collapse: collapse; }
+
+				table#wp-calendar caption { font-weight: normal; font-size: 0.91667em; line-height: 1.72727em; text-transform: uppercase; letter-spacing: 2px; background: #e5e5e5; border-bottom: 1px dotted #ddd; }
+
+				table#wp-calendar th { width: 26px; font-size: 0.91667em; line-height: 1.72727em; background: #f2f2f2; border-bottom: 1px dotted #ddd; text-align: center; }
+
+				table#wp-calendar td { width: 26px; line-height: 1.66667em; color: #999; text-align: center; }
+
+				table#wp-calendar td#next, table#wp-calendar td#prev { width: 78px; font-size: 0.83333em; letter-spacing: 1px; text-transform: uppercase; }
+				
+			/*---:[ search widget ]:---*/
+
+			#search { padding: 0.83333em 0; border: 1px dotted #ddd; border-width: 1px 0; text-align: right; }
+
+				#search #s { width: 184px; padding: 2px; color: #333; background: #f2f2f2; font: normal 0.91667em Verdana, sans-serif; border: 1px solid #aaa; border-right-color: #eee; border-bottom-color: #eee; text-align: left; }
+
+				#search #s:focus { background: #fff; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }
+
+				#search input[type="submit"] { margin: 0.25em 0 0 0; padding: 2px 3px; color: #333; font: bold 1.0em Georgia, "Times New Roman", Times, serif; background: url('images/submit_bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; cursor: pointer; }
+
+				#search input[type="submit"]:hover { color: #237fa1; }
+				
+			/*---:[ default search form styles ]:---*/
+
+			#search_form { }
+
+				#search_form .search_input { width: 184px; padding: 2px; color: #333; background: #f2f2f2; font: normal 0.91667em Verdana, sans-serif; border: 1px solid #aaa; border-right-color: #eee; border-bottom-color: #eee; }
+
+				#search_form .search_input:focus { background: #fff; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }
+
+
+
+/*---:[ footer styles ]:---*/
+
+#footer p { font: normal 1.1em/1.63636em Verdana, sans-serif; color: #999; text-align: right; }
+
+	#footer a, #footer a:visited { color: #999; border-bottom: 1px solid #ddd; text-decoration: none; }
+
+	#footer a:hover { color: #333; text-decoration: none; }
+
+
+
+/*---:[ comment styles ]:---*/
+
+#comments { width: 463px; margin: 4.0em 0 2.0em 0; }
+
+	.comments_intro { padding: 0 20px; font: normal 1.2em/1.66667em Verdana, sans-serif; border-bottom: 1px dotted #bbb; }
+
+		.comments_intro span { padding: 0 0 0 14px; background: url('images/icon_comment.gif') 0 50% no-repeat; }
+
+	dl#comment_list { margin: 0 0 3.0em 0; }
+
+		dl#comment_list dt.comment { width: 445px; padding: 1.42857em 9px 0.71429em 9px; background: #f8f8f8; font-size: 1.4em; line-height: 1.42857em; }
+
+			.comment_num { padding: 0 0 0 20px; font: bold 0.85714em/1.66667em Verdana, sans-serif; float: right; }
+
+				.comment_num a, .comment_num a:visited { color: #999; text-decoration: none; }
+
+				.comment_num a:hover { color: #237fa1; text-decoration: none; }
+				
+			.comment_time { font: normal 0.78571em Verdana, sans-serif; color: #999; }
+				
+		dl#comment_list dd.comment { width: 445px; padding: 0 9px 0.8em 9px; background: #f8f8f8; border-bottom: 1px dotted #bbb; }
+		
+		dl#comment_list dt.alt, dl#comment_list dd.alt { background: #fff; }
+
+		dl#comment_list dt.author, dl#comment_list dd.author { background: #e7f8fb !important; }
+		
+			.comment .format_text { padding: 0 10px; }
+			
+			.comment a.comment_link, .comment a.comment_link:visited { font-style: italic; font-weight: bold; color: #333; background: none; text-decoration: none; }
+			
+			.comment a.comment_link:hover { color: #333; text-decoration: underline; }
+			
+			
+
+/*---:[ comment form styles ]:---*/
+
+#respond { margin: 0 0 0.83333em 0; padding: 0 20px; border-bottom: 1px dotted #ddd; font: normal 1.2em/1.66667em Verdana, sans-serif; }
+
+	#respond span { padding: 0 0 0 14px; background: url('images/icon_leave_comment.gif') 0 50% no-repeat; }
+
+#comment_form { width: 425px; padding: 0 19px; }
+
+	#comment_form p { padding: 0.69231em 0 0.76923em 0; font-size: 1.3em; line-height: 1.53846em; }
+	
+	#comment_form p.submit_p { padding-bottom: 1.30769em; }
+	
+		#comment_form label { padding: 0 0 0 10px; }
+
+		#comment_form .text_input { width: 206px; padding: 2px; color: #333; font: normal 1.0em Georgia, "Times New Roman", Times, serif; background: #f2f2f2; border: 1px solid #aaa; border-right-color: #eee; border-bottom-color: #eee; }
+		
+		#comment_form .text_input:focus { background: #fff; border-color: #777; border-right-color: #ccc; border-bottom-color: #ccc; }
+		
+		#comment_form .text_area { width: 419px !important; height: 6.15385em; line-height: 1.53846em; }
+	
+		#comment_form .form_submit { padding: 0.35714em 4px; background: url('images/submit_bg.gif'); border: 3px double #999; border-top-color: #ccc; border-left-color: #ccc; color: #333; font: bold 1.07692em Georgia, "Times New Roman", Times, serif; cursor: pointer; }
+		
+		#comment_form .form_submit:hover { color: #237fa1; }
+		
+		#comment_form p.subscribe-to-comments { font-size: 1.3em; }
+		
+			#comment_form p.subscribe-to-comments label { font-size: 1.0em; }
+	
+	
+
+/*---:[ self-clearing floats from Dan Cederholm at simplebits.com ]:---*/
+
+#container:after, #content_box:after, #nav ul:after, #footer_bottom:after, .navigation:after, #comments:after, dl#comment_list:after, dl#comment_list dd:after, #comment_form:after, #search_form:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
\ No newline at end of file