/*
-----------------------------------------------
webgraph.com - minimal green
author: dan rubin
edited: 2011-03-18
----------------------------------------------- */

html {
	font-size:12px;
	-webkit-font-smoothing:antialiased; /* may produce unexpected results */
}
body {
	background:#62b627;
	color:#fff;
	font-size:100%;
	
	text-shadow:.1em .1em 0 rgba(0,0,0,.1);
}
section {
	position:absolute;
	width:38em;
	height:42em;
	top:50%;
	left:50%;
	margin-top:-20em;
	margin-left:-19em;
}
h1 {
	position:relative;
	width:8.75em;
	padding:5em 0 .25em 2.1em;
	font-style:normal;
	font-size:1em;
	border-right:.1em solid rgba(255,255,255,.2);
}
h1 .word1 {
	font-weight:600;
}
h1 .word2 {
	font-weight:300;
	margin-left:-.225em;/* kerning, natch */
}
h1:before {
	content:' ';
	position:absolute;
	left:0;
	top:0;
	width:5.5em;
	height:5.25em;
	background:url(images/webgraph-icon-white-shadow.svg) no-repeat;
}

h2 {
	position:absolute;
	top:0;
	left:6.25em;
	font-size:2em;
	font-weight:300;
	white-space:nowrap;
}

h3 {
	position:absolute;
	top:2.2em;
	left:10em;
	font-size:1.25em;
	font-weight:400;
}
h3 a {
	color:#fff;
	font-weight:600;
	text-decoration:none;
	border-bottom:.1em solid rgba(255,255,255,.2);
}
h3 a:hover {
	border-color:rgba(255,255,255,.4);
}

h4,
p,
ul {
	font-size:1.15em;
	margin-left:11em;
	padding-left:0;
}
h4 {
	margin-bottom:.25em;
}
ul {
	margin-top:0;
}
.footnote {
	font-size:.7em;
	vertical-align:super;
}
p:last-of-type {
	font-size:.9em;
	margin-left:13.1em;
	line-height:1.4;
}

a {
	color:#fff;
	text-decoration:none;
	border-bottom:.1em solid rgba(255,255,255,.2);
	
	-webkit-transition: border-color .2s;
	-moz-transition: border-color .2s;
	-o-transition: border-color .2s;
	transition: border-color .2s;
}
a:hover {
	border-color:rgba(255,255,255,.4);
}