/* basics */

body {
	padding: 1em;

	font: 100%/1.5 "Roboto Slab", serif;
	font-weight: 300;
	-webkit-text-size-adjust: 100%;

	color: black;
	background: url("/images/background.png") white;
}

b, strong {
	font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;

	font-weight: normal;
}

a {
	color: blue;
}

a:visited {
	color: darkblue;
}

blockquote {
	margin: 0em 1em;
	border-left: 1px solid darkgray;
	padding-left: 1em;

	color: darkgray;

	font-size: 90%;
}

ul {
	list-style-type: circle;
}


/* design */

header, article {
	max-width: 35em;
	clear: both;
	overflow: auto;

	margin: 1em auto;
	padding: 1em;

	background: white;
}

header h1 {
	float: left;

	font-size: 80%;
}

header h1 a {
	color: black;
}

nav {
	float: right;
	
	font-size: 80%;
	text-transform: lowercase;
}

nav ul {
	display: inline;
}

nav li {
	display: inline;
}

nav li:before {
	content: " \00B7\ ";
}

nav li:first-child:before {
	content: none;
}

nav a {
	text-decoration: none;
}

article p:last-child {
	margin-bottom: 0em;
}

footer {
	clear: both;
	text-align: center;
}

footer .disclaimer {
	font-size: 80%;
}

/* phone changes */

@media (max-width: 39em) {
	body {
		padding: 0.5em;

		font-size: .9em;
	}

	div#container {
		padding: 0.5em;
	}
}
