* {
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #222;
	overflow-x: hidden;
}

main .main {
  display: flex;
  flex-wrap: wrap;
	width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 1rem auto;
  gap: 2rem;
	/*border: 1px solid green;*/
}

main .sidebar {
  flex: 1 1 250px;
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 8px;
}

main .sidebar ul {
  list-style: none;
  padding-left: 0;
}

main .sidebar li {
  margin-bottom: 0.5rem;
}

main .sidebar a {
  text-decoration: none;
  color: #003366;
}

main .sidebar a:hover {
  text-decoration: underline;
}

main > *:not(.sidebar) {
  flex: 3 1 600px;
}

.topImg
{
	position: relative;
	height: auto;
	width: 100%
}

h1, h2, h3 {
  color: #003366;
}

a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.footer
{
	width: 100%;
	border-top: 1px solid #ccc;
	text-align: center;
	padding: 10px;
	font-size: 0.8em;
	color: #555;
}
.breadcrumb {
  font-size: 0.9rem;
  color: #666;
  margin: 1rem 0;
}

.breadcrumb a {
  color: #003366;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}