html, body {
	height: 100%;
}

body {
	margin: 0px;
	font-family: "Roboto Mono", monospace;
	background-color: #f6f6f6;
	background-image: url("/media/background-pattern.png");
	background-position: initial;
	background-repeat: repeat;
	background-size: auto;
	font-size: 20px;
}

#container {
	margin: 0px;
}

.section {
	margin: 0px 0px 45px 0px;
	.content {
		background-color: white;
	}
	.dropdown-disabled {
		color: #BDBDBD; /* Gray 400 */
		background-color: #757575; /* Gray 600 */
	}	
}

#header {
	h1 {
		margin: 0px 0px 10px 0px;
		color: #fff;
		background-color: #424242; /* Gray 800 */
		a {
			color: #E0E0E0; /* Grey 300 */
			background-color: #424242;
		}
		a:hover {
			color: #fff;
			background-color: #424242;
		}			
	}
	a {
		background-color: #E0E0E0; /* Grey 300 */
	}
	a:hover {
		background-color: #BDBDBD; /* Grey 400 */
	}
	.current {
		color: #fff;
		background-color: #424242; /* Gray 800 */
	}	
}

.details {
	p {
		padding-left: 35px;
		position: relative;
	}
	p .bi {
		position: absolute;
		left: 0;
	}
	.sub-details {
		margin: 5px 0px 5px 33px;
		display: none;		
	}
}

a {
	color: #212427;
	text-decoration: none;
}
a:hover {
	color: #212427;
}

h1, h2, h3 {
	font-weight: normal;
	display: inline-block;
}

h1 {
	margin: 0px 0px 10px 0px;
	color: #fff;
	background-color: #424242; /* Gray 800 */
}

h2 {
	margin: 0px 0px 0px 0px;
	sup {
		font-size: 75%;
	}
}

h3 {
	margin: 0px 0px 0px 0px;
}

hr {
	margin: 0px;
	height: 2px;
	border: none;
}

p {
	margin: 0px 5px 5px 10px;
}

.text-disabled {
	color: lightgray;
}

.dropdown, .dropdownActive {
	cursor: pointer;
}

#contact {
	h2 {
		margin: 0px 0px 10px 0px;
		color: #fff;
		background-color: #424242; /* Grey 800 */
	}
	a {
		background-color: #E0E0E0; /* Grey 300 */
	}
	a:hover {
		background-color: #BDBDBD; /* Grey 400 */
	}
}

@media screen and (max-width: 1024px) {
	body {
		background-image: url("/media/background-pattern.png");
		background-position: initial;
		background-repeat: repeat;
		background-size: auto;
		font-size: 14px;
	}
	.section {		
		margin: 0px 0px 30px 0px;
	}
	.details {
		p {
			padding-left: 23px;
			position: relative;
		}
		p .bi {
			position: absolute;
			left: 0;
		}
		.sub-details {
			margin: 5px 0px 5px 22px;		
		}
	}
}