html, body {
	background: #202326;
	font-family: Helvetica,Arial,Verdana,sans-serif;
	color: #FFF;
	margin: 0;
	padding: 0;
}

/* layout elements*/
#hd {
	margin-bottom: 2em;
	margin-top: 0.5em;

}

#hd a {
	padding-left: 1em;
	color: #fff;
}

#hd a:hover {
	text-decoration: none;
	color: #A5DA94;
}

#ft {
	text-align: center;
	font-size: 11px;

	margin-top: 1em;

	color: #535B61;
}

#ft a {
	color: #535B61;
}

.logo {
	background: #282C2F;
	padding: 7px;

	/* make that CSS3 final already! */
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-bottom-left-radius: 3px;
	border-bottom-left-radius: 3px;

	-moz-border-radius-bottomright: 3px;
	-webkit-border-bottom-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

a.neutral {
	color: #fff;
	text-decoration: none;
}

a {
	color: #6AC7EA;
	text-decoration: none;
}

.navigation ul {
	margin-left: 0;	
	padding-left: 0;	
}

.navigation li {
	list-style-type: none;
	float: left;
	margin-right: 1em;
}

.button a {
	background: #282C2F;

	-moz-border-radius: 3px;	
	-webkit-border-radius: 3px;	
	border-radius: 3px;	

	padding: 7px;
	color: #fff;
}

.button a:hover {
	color: #A5DA94;
}

/* that dumb black thing that serves no purpose */
#upthere {
	height: 10px;
	background: #000;
}


/* post styles */
.post {
	margin-bottom: 4em;
	text-align: justify;
}

.post h1 {
	color: #ccc;
	font-size: 30px;
	margin-top: 1em;
	margin-bottom: 0.7em;
}

.post-title {
	color: #BCD442;
	font-size: 40px;
	padding: 0;
	margin: 0;
}

.post-title a {
	color: #BCD442;
}

.post-meta {
	color: #535B61;
	margin-bottom: 0.4em;
}

.post-content {
	line-height: 1.5em;
	font-size: 14px;
}

.post-content ul, .post-content li {
	list-style-type: disc;
	margin-left: 1em;
}
.post-content ul {
	margin-bottom: 1.2em;
}

.post-content p {
	margin-bottom: 1.2em;
}

/* comments */
#comments {
	color: #ccc;
}

ul.commentlist {
	padding-left: 0;
}
.commentlist li {
	list-style-type: none;
}

.comment {
	background: #282C2F;
	margin-bottom: 1em;
	padding: 1em;

	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.comment-meta {
	color: #535B61;
	font-size: 10px;
}

.vcard img {
	width: 16px;
	height: 16px;
}

/* post content elements */
blockquote p {
/*	background: #303538; */
/*	border-left: 3px solid #fff;*/
	color: #ccc;
	font-size: 13px;
	font-style: italic;
	margin: 10px;
	padding: 5px;
}

/* images, from default theme */
p img {
	padding: 0;
	max-width: 100%;
	}

/*	Using 'class="alignright"' on an image will (who would've
	thought?!) align the image to the right. And using 'class="centered',
	will of course center the image. This is much better than using
	align="center", being much more futureproof (and valid) */

img.centered {
	display: block;
	margin-left: auto;
	margin-right: auto;
	}

img.alignright {
	padding: 4px;
	margin: 0 0 2px 7px;
	display: inline;
	}

img.alignleft {
	padding: 4px;
	margin: 0 7px 2px 0;
	display: inline;
	}

.alignright {
	float: right;
	}

.alignleft {
	float: left;
	}
/* End Images */

