/*******
	CSS file for thetoadoftruth.net
	Some code and ideas borrowed from others and tweaked to suit
	Feel free to borrow anything you like :)
	by Greg Howell
*******/

/******* BODY *******/
body {
	width: 800px;
	margin: 30px auto;
}
/******** HEADINGS ********/
h1,h2,h3 {
	font-family: Georgia, serif;
	color: #7a7a7a;
}
/******** PARAGRAPHS ********/
p {
	font-family: Georgia, serif;
	font-size: 12px;
}
p.rounded {
	border-style: solid;
	border-width: 1px;
	border-radius: 10px;
	border-color: #7a7a7a;
	padding-top: 7px;
	padding-right: 7px;
	padding-bottom: 7px;
	padding-left: 7px;
}
p.linkblock {
	text-align:right;
}
p.info {
	margin: 50px auto 10px auto;
}
/******* LISTS *******/
li {
	font-family: Georgia, serif;
	font-size: 12px;
}
/******* LINKS *******/
a, a:link, a:visited { 
	color: #64ADD0;
	text-decoration: underline;
}
a:hover, a:active {
	color: #64ADD0;
	text-decoration: none;
}
/******* FANCY QUOTE STUFF FOR MAIN PAGE *******/
blockquote {
	font-family: Georgia, serif;
	font-size: 18px;
	font-style: italic;
	width: 500px;
	margin: 0.25em 0;
	padding: 0.25em 40px;
	line-height: 1.45;
	position: relative;
	color: #383838;
}
blockquote:before {
	display: block;
	content: "\201C";
	font-size: 80px;
	position: absolute;
	left: -20px;
	top: -20px;
	color: #7a7a7a;
}
blockquote cite {
	color: #999999;
	font-size: 14px;
	display: block;
	margin-top: 5px;
}
blockquote cite:before {
	content: "\2014 \2009";
}