/*
 *  CSS Reset v2.0
 *  Eric Meyer, 20110126
 *  http://meyerweb.com/eric/tools/css/reset/
 *
 */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
 *  Make body work with repeating backgrounds.
 *
 */

body, html {
	height: 100%;
}

html>body {
    min-height: 100%;
    height: auto;
}

/*
 *  Sane defaults for any site, can be changed
 *
 */

body {
	/* We never want pure black on pure white, do we? */
	background-color: #f1f1f1;
	color: #444;

	/* Make the font size feasible */
	font-size: small;
	line-height: 1.3em;
}

a, a:link, a:visited {
	text-decoration: none;
	/* Prevent any nudging */
	border-bottom: 1px solid transparent;
}

a:hover, a:active, a:focus {
	/* Just a very good guess! */
	border-bottom: 1px solid #777;
}

h1, h2, h3, h4, h5, h6 {
	margin: 1.2em 0 0.7em 0;
	font-weight: normal;
	text-align: left;
}

h1 { font-size: 150%; }
h2 { font-size: 140%; }
h3 { font-size: 130%; }
h4 { font-size: 120%; }
h5 { font-size: 110%; }
h6 { font-size: 105%; }

p, blockquote, pre, address, dl, ol, ul, form, table, article {
	margin-bottom: 1em;
}

blockquote {
	margin-left: 20px;
	padding-left: 20px;
	border-left: 3px solid #ccc;
}

hr {
	margin: 1em 0;
	border-bottom: 1px solid #ccc;
}

/*
 *  Self-clearing float
 *  Tony Aslett, 20040508
 *  http://csscreator.com/attributes/containedfloat.php
 *
 */

.group:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

/*
 *  Small, useful definitions and tweaks
 *  Including WordPress -specific stuff
 *
 */

.hidden { display: none; }
.small { font-size: 85%; }

.post-meta, .post-meta a,
.comment-meta, .comment-meta a {
	color: #666;
}

.alignright { float: right; margin: 1em 0 1em 1em; }
.alignleft { float: left; margin: 1em 1em 1em 0; }
.aligncenter { clear: both; display: block; margin: 1em auto; }

