@import 'https://fonts.googleapis.com/css?family=Open+Sans';

body {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.75em;
	font-size: 16px;
	background-color: #222;
	color: #aaa;
}

p {
	font-size: 16px;
}

h1 {
	font-size: 30px;
	line-height: 34px;
}

h2 {
	font-size: 20px;
	line-height: 25px;
}

h3 {
	font-size: 16px;
	line-height: 27px;
	padding-top: 15px;
	padding-bottom: 15px;
}

hr {
	height: 1px;
	background-color: #d8d8d8;
	border: none;
	width: 100%;
	margin: 0px;
}

a[href] {
	color: #1e8ad6;
}

a[href]:hover {
	color: #3ba0e6;
}

img {
	max-width: 100%;
}

li {
	line-height: 1.5em;
}

aside,
[class *= "sidebar"],
[id *= "sidebar"] {
	max-width: 90%;
	margin: 0 auto;
	border: 1px solid lightgrey;
	padding: 5px 15px;
}

@media (min-width: 1921px) {
	body {
		font-size: 18px;
	}
}

button,
input[type="button"],
input[type="submit"]
{
	background: linear-gradient(to bottom, #333, #1a1a1a);
	color: white;
	border: none;
	padding: 9px 18px;
	border-radius: 4px;
	cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover
{
    background: linear-gradient(to bottom, #3a3a3a, #222);
}

button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled
{
	opacity: 0.6;
	pointer-events: none;
	user-select: none;
}

@media print
{
	*
	{
		print-color-adjust: exact;
	}
	
	body {
		background-color: white;
		color: black;
	}

	hr {
		background-color: black;
	}

	aside,
	[class *= "sidebar"],
	[id *= "sidebar"] {
		border-color: gray;
	}

	button,
	input[type="button"],
	input[type="submit"]
	{
		background: linear-gradient(to bottom, #ccc, #e5e5e5);
		color: black;
	}

	button:hover,
	input[type="button"]:hover,
	input[type="submit"]:hover
	{
		background: linear-gradient(to bottom, #c5c5c5, #ddd);
	}
}