@import url("hilite.css");
@import url(http://fonts.googleapis.com/css?family=Rock+Salt);
@import url(http://fonts.googleapis.com/css?family=Lato);
@import url(http://fonts.googleapis.com/css?family=Droid+Sans+Mono);

body {
	max-width: 1000px;
	margin: 20px auto;
	padding: 1em;
	font-family: 'Lato', sans-serif;
	color: #333;
}

code {
	background: #f9f9f9;
	font-family: monospace;
	font-family: 'Droid Sans Mono', monospace;
	padding: 0 5px;
	margin: 0 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: 1px 2px 4px #C2C2C2;
	-moz-box-shadow: 1px 2px 4px #C2C2C2;
	box-shadow: 1px 2px 4px #C2C2C2;
}

.codehilite pre {
	padding: 15px 30px;
	background: #f9f9f9;
	overflow: auto;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	-webkit-box-shadow: 1px 2px 4px #C2C2C2;
	-moz-box-shadow: 1px 2px 4px #C2C2C2;
	box-shadow: 1px 2px 4px #C2C2C2;
	font-family: 'Droid Sans Mono', monospace;
}

a {
	text-decoration: none;
	border-bottom: 1px solid #ccc;
	color: inherit;
}

a:hover {
	text-decoration: none;
	border-bottom: 1px solid black;
	color: black;
}

li {list-style-type: square;}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Rock Salt', cursive;
	color: #666;
}

h2:before {
	content: counter(section) ". ";
}

h2 {
	counter-increment: section;
	margin-top: 2em;
}

img {
	max-width: 100%;
}