@charset "utf-8";
 
/**********
** Global
**********/

body {
	font-family: Verdana, Arial, sans-serif;
	font-size: 12px;
}

h1, h2, h3, h4 {
	color: #205;
	display: block;
	font-weight: bold;
}

h1 {	/* Page Titles */
	font-size: 2.4em;
}

h2 {	/* Subheadings */
	font-size: 1.4em;	
}

h3 {
	font-size: 1em;	
}

h4 {
	font-size: 1em;	
	font-weight: normal;
}

p {
	text-align: justify;
}

/*Spacing*/
h1, h2, h3, h4, p {
	margin-bottom: 0.5em;
}

p+h1, p+h2, p+h3, p+h4 {
	margin-top: 1.5em;
}

/*Links*/
a {
	color: #50C;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

a[href^="http://"]:after {
	content: "⇡";
	font-size: 120%;
}

ul {
	margin-left: 1.5em;
}

/*Tables*/
th {
	color: #07B;
}

code[type="bash"]:before {
	font-weight: bold;
	content: "$ ";
	
}
code[type="bash"] {
	display: inline-block;
	padding: 1px;
	
	background: #000;
	color: #fff;
}