/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/*basic elements*/
body {
	background-color: #F9F9F9;
	font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	font-size: .8em;
	line-height: 25px;
	color: #333333;
	position: relative;
	-webkit-font-smoothing: antialiased;
}

blockquote {
	font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	font-size: 1em;
	line-height: 25px;
	color: #333333;
	width: 440px;
	margin-left: 60px;
	border: 0;
}

/*headers*/
h1 {
	font: 1.8em 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	letter-spacing: 1px;
	margin: 0;
	padding: 0;
	color: #993300;
	text-shadow: black 1px 1px 2px;
	text-transform: capitalize;
}

h2 {
	font: bold 1.4em 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	margin: 0;
	color: #333333;
}

h3 {
	font: bold 1.3em 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	margin: 0;
	color: #666666;
/*	text-transform: capitalize; */
}

h4 {
	font: bold 1.2em 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	color: #666666;
/*	text-transform: capitalize; */
}

h5 {
	font: oblique small 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	color: #111111;
	text-align: center;
}

/*headlines*/
.headline {
	font-size: 2em;
	line-height: 1.2;
	letter-spacing: -.6px;
	margin: 0 0 30px;
	padding: 0;
}

/*typewriter font*/
.typewriter {
	font-family: prestige, american typewriter, courier new, courier;
	font-size: 1.2em;
	color: #000000;
	line-height: 30px;
}

/* for blockquotes that we want to particularly set apart */
P.topquote {
	font: 12px "Lucida Console", Monaco, monospace;
	color: #333333;
	width: 400px;
	margin-left: 100px;
	border: 0;
}

/* for blockquotes we want to read normally in a story */
.block {
	font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	font-size: 1em;
	line-height: 25px;
	color: #333333;
	width: 440px;
	margin-left: 60px;
	-webkit-font-smoothing: antialiased;
}

/* for articles inset into stories */
P.article-body {
	font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	font-size: .9em;
	line-height: 25px;
	color: #333333;
	width: 500px;
	margin-left: auto;
	margin-right: auto;
/*-webkit-font-smoothing: antialiased;*/
}

P.article-header {
	font: bold 1.2em 'Merriweather', Georgia, 'Times New Roman', Times, serif;
	margin-left: 50px;
	margin-right: 50px;
	text-align: center;
	color: #333333;
}