/*
 *  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;
}

/*
 *  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;
}

a {
	outline: none;
}

strong, b {
	font-weight: bold;
}

em, i {
	font-style: italic;
}

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

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

blockquote {
	margin-left: 2em;
}

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

sub, sup {
	position: relative;
	font-size: 75%;
}
	sub {
		bottom: -0.3em;
	}
	sup {
		top: -0.3em;
	}

table tr {
	border-top: 1px dotted rgba( 0, 0, 0, 0.15 );
}
	table tr:last-child {
		border-bottom: 1px dotted rgba(0,0,0,0.15);
	}


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

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

/*
 *  Border box model everywhere
 *  Pasi Lallinaho, 2016-04-09
 *
 */

* {
	box-sizing: border-box;
}

/*
 *  Within a container, remove top margin from the first item and bottom margin from the last item
 *  Pasi Lallinaho, 2016-08-25
 *
 */

.container :first-child {
	margin-top: 0 !important;
}

.container :last-child {
	margin-bottom: 0 !important;
}


/*
 *  Selection style
 *
 */

::selection { background-color: #111; color: #fff; }
::-moz-selection { background-color: #111; color: #fff; }
::-webkit-selection { background-color: #111; color: #fff; }

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

.hidden, .screen-reader-text { display: none; }
.small { font-size: 85%; }

.post-meta, .post-meta a,
.comment-meta, .comment-meta a {
	color: #aaa !important;
}

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

/*
 *  Some template-specific defaults
 *
 */

#title a { border-bottom: none; }

