html {
	font-size: 120%;
}

body {
	background-color: #efefef;
	padding: 0px;
	margin: 0px;
}

.main-grid {
	display: grid;
	grid: 10em auto auto 100px / 100%;
	grid-template-areas: "h" "c" "s" "r" "f";
	min-height: 100vh;
	grid-gap: 10px;
}

.main-grid, .content, pre {
	padding: 20px;
}

pre, code {
	white-space: pre-wrap;
}

.header {
	grid-area: h;
	border: none;
}

.content {
	font-family: "Open Sans", Arial, "Helvetica Neue", Helvetica, sans-serif;
	grid-area: c;
	border: 1px dotted #aaaaaa;
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 5px;
	padding-bottom: 15px;
}

.sidebar {
	grid-area: s;
	display: inline-grid;
	grid-template-rows: 10px auto 10px;
	grid-template-rows: repeat(8, 2em);
	grid-auto-flow: row;
	grid-row-gap: 10px;
	align-items: center;
	text-align: left;
	justify-items: center;
	justify-content: center;
	padding-top: 30px;
	border: 1px dotted #aaaaaa;
	background-color: #009587;
	border-radius: 5px;
}

.sidebar *, .socialbar * {
	padding: 5px;
}

.socialbar {
	grid-area: r;
	display: inline-grid;
	agrid-template-columns: repeat(4, 2em);
	grid-template-rows: repeat(2, 2em);
	grid-auto-flow: column;
	grid-row-gap: 10px;
	align-items: center;
	text-align: left;
	justify-items: center;
	justify-content: center;
	padding-top: 30px;
}

.footer {
	grid-area: f;
	text-align: left;
	color: #444444;
	font-size: 0.7em;
	border-top: 1px solid #C5C0C0;
	margin-top: 1em;
	margin-bottom: 3em;
	padding-top: 10px;
	padding-bottom: 10px;
}

.footer p {
	margin: 0px;
	padding: 0px;
}

.nav-grid {
	display: inline-grid;
	grid-template-columns: repeat(4, minmax(100px, 150px));
	grid-auto-flow: column;
	grid-gap: 1em;
	align-items: center;
	text-align: center;
	justify-items: center;
	justify-content: center;
	width: 100%;
	padding: 0px;
}

@media (min-width: 700px) {
	.main-grid {
		grid: 10em auto auto 100px / 200px repeat(4, 1fr) 4em;
		grid-template-areas: 
		"h h h  h h " 
		"s c c  c c " 
		"s c c  c c " 
		"r c c  c c " 
		"r c c  c c " 
		". f f  f f ";
	}
}

@media (min-width: 1200px) {
	.main-grid {
		grid: 10em auto auto 100px / 2em 200px repeat(4, 1fr) 4em 2em;
		grid-template-areas: 
		"h h h h  h h h h" 
		". s c c  c c r ." 
		". s c c  c c r ." 
		". . f f  f f . .";
	}
	.socialbar {
		grid-template-column: 10px auto 10px;
		grid-template-rows: repeat(8, 2em);
		grid-auto-flow: row;
	}
}

.title {
	font-family: times, 'times new roman', sans-serif;
	text-align: center;
	font-size: 2.75rem;
	font-weight: normal;
	margin: 0px;
	padding: 0px;
	margin-top: 0.5em;
}

.subtitle {
	font-family: "open sans", arial, sans-serif;
	text-align: center;
	font-size: 1.375rem;
	margin-top: 0px;
	color: #b9b9b9;
}

.subtitle:before {
	content: "";
	display: block;
	width: 100px;
	height: 2px;
	background-color: #b9b9b9;
	margin: 10px auto;
	box-sizing: border-box;
}

.icon {
	background: rgba(255, 255, 255, 0.63);
	border-radius: 100%;
	text-align: center;
	line-height: 20px;
	font-size: 20px;
	color: #009688;
	padding: 5px;
	width: 30px;
	height: 30px;
	display: inline-block;
	margin-top: 10px;
}

.icon:hover {
	color: rgba(255, 255, 255, 0.63);
	background: #009688;
}

.mine {
	background-color: red;
}

.download-grid {
	display: inline-grid;
	grid-auto-flow: column;
	grid-gap: 4em;
	align-items: center;
	text-align: center;
	justify-items: center;
	justify-content: center;
	padding: 0px;
}

.well {
	box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	border-radius: 2px;
	border: 0;
	min-height: 20px;
	padding: 19px;
	margin-bottom: 20px;
	margin-right: 15px;
}

.inner-well {
	margin-top: 1.2em;
}

.clear {
	clear: both;
}

.url_list {
	list-style-type: none;
}

.images {
	width: 100%;
	padding-right: 0px;
}

.images img {
	border: 1px solid #888888;
	box-shadow: 2px 2px #888888;
}

.images img:hover {
	background-color: #DDDDDD;
}

.category-nav li {
	display: inline-block;
	margin: 5px; 
	list-style-type: none;
}
.category-nav {
	margin-bottom: 0.5em;
}
hr.invisible {
	border: none;
}

.post-content {
	margin-top: 1.5em;
}

.highlighter-rouge {
	margin-bottom: 1em;
}