@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,600,300italic);

html {

}

body {
	background-color : white;
	color : black;
	margin: 0;
	font-family: "Source Sans Pro"; sans-serif;
	font-weight: 300;
	font-size: normal;
	line-height: 1.6em;
}

#content {
	max-width : 48em;	
	margin: 4em;
}

#mugshot {
	height: 256px;
}

h1 {
	font-weight: bold;
	display: inline;
}

a {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba(177, 223, 235, 1);
}

a:hover {
	background-color: rgba(177, 223, 235, 0.25);
	color: inherit;
}


/* Media Queries */

@media only screen and (max-device-width: 736px) {

	#content {
		position: relative;
		margin: 2em;
	}

}

@media print {

	#content {
		margin: 2em;
		font-size: 10pt;
	}
	
	a {
		color: #000;
	}
	
	a:link:after, a:visited:after {
		content:" [" attr(href) "] ";
	}

}