@charset "utf-8";

/* CSS Document */

:root {
	--darkblue: #437197;
	--lightblue: #88a3b9;
	--lightgray: #f1f1f1;
}

body, p {
	font-family: 'Roboto Slab', serif;
}

html, body {
	height: 100%;
	padding: 0;
	margin: 0;
	color: black;
	background-color: var(--darkblue);
}

.grid-x {
	background-color: white;
}

.is-header {
	background-color: var(--darkblue);
	text-align: center;
}

.is-header img {
	padding-top: .5em;
	padding-bottom: .5em;
}

.is-top-menu {
	text-align: center;
	position: relative;
	padding-top: 1em;
	padding-bottom: 2em;
	color: black;
	background-color: var(--darkblue);
}

.is-top-menu-nav {
	float: none;
	position: absolute;
	text-align: center;
	margin: 0 auto;
	bottom: 0;
	width: 100%;
	font-family: 'Arial', sans-serif;
}

.is-top-menu-nav li {
	float: none;
	display: inline-block;
}

.is-top-menu-nav li a {
	padding: 0.9rem 1rem;
	font-size: 0.75rem;
	color: white;
	text-transform: uppercase;
	display: block;
	font-weight: bold;
	letter-spacing: 1px;
	transition: all 0.35s ease-in-out;
}

.is-top-menu-nav li a.is-active, li a:hover {
	background: rgba(250, 250, 250, 0.15);
	color: white;
}

.is-top-menu-nav a:hover {
	background-color: rgba(250, 250, 250, 0.15);
}

.is-subheader {
	background-image: url('/img/header.jpg');
	background-size: cover;
	background-position: left top;
	border-top: 1px solid white;
	border-bottom: 1px solid white;
}
a.is-contact-link {
	color: var(--darkblue);
}

a.is-contact-link:hover, a.is-contact-link:visited {
	color:var(--lightblue);
}

p img {
	float: left;
	margin-right: 1em;
	border: 1px solid var(--darkblue);
	border-radius: 5px;;
}

@media screen and (max-width: 39.9375em) {
	.is-subheader, .is-subheader-secondary {
		height: 10em;
	}
	
	p img {
		width: 100px;
	}
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
	.is-subheader, .is-subheader-secondary {
		height: 15em;
	}

	p img {
		width: 100px;
	}
}

@media screen and (min-width: 64em) and (max-width: 74.9375em) {
	.is-subheader, .is-subheader-secondary {
		height: 25em;
	}

	p img {
		width: 150px;
	}
}

@media screen and (min-width: 75em) {
	.is-subheader, .is-subheader-secondary {
		height: 30em;
	}

	p img {
		width: 150px;
	}
}

.is-subheader-title {
	background-color: var(--lightblue);
	text-align: center;
	text-transform: uppercase;
	font-weight: bold;
	color: white;
	font-size: 1.5em;
}

.is-subheader-title p {
	margin-top: .2em;
	margin-bottom: .2em;
}

.is-content {
	padding-top: .5em;
	text-align: justify;
	text-justify: auto;
}

.is-grid-layout {
	margin-top: 15px;
}

.is-organization {
	padding-top: 1em;
	text-align: center;
	font-weight: bold;
	font-size: .8em;
}

.is-organization p {
	padding-top: 1em;
}

.is-form-title {
	text-align: center;
	text-transform: uppercase;
	color: var(--darkblue);
	font-size: .8em;
	padding-top: 15px;
	margin-bottom: 0px;
}

.is-minutes-header {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.is-minutes-date {
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}

.callout {
	border-radius: 5px;;
}
.is-callout-header {
	text-transform: uppercase;
	text-align: center;
	font-size: 1.2em;
	font-weight: bold;
}

.is-callout-footer {
	text-align: center;
	font-style: italic;
}

.is-coming-soon, .is-council-member {
	margin-top: 18px;;
}

.is-bottom-menu-full {
	padding-top: .5em;
	border-top: 1px solid var(--darkblue);
	text-align: center;
}

.is-bottom-menu-nav {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.is-bottom-menu-nav li a, a {
	background: none;
	color: var(--lightgray);
}

.is-bottom-menu-nav li a:hover, a:hover {
	color: var(--lightblue);
}

.is-footer {
	text-align: center;
	font-size: .8em;
	padding-top: 10px;
	padding-bottom: 10px;
}

.is-bottom-menu-left, .is-bottom-menu-right, .is-bottom-menu-full, .is-footer {
	background-color: var(--darkblue);
	color: var(--lightgray);
}