/*
Theme Name: Oregon, Illinois
Author: Sam Hermes
Author URI: http://samhermes.com
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: oregon
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

oregon is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: 'Karla', sans-serif;
	font-size: 16px;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

h2,
h3,
h4 {
	margin: 1.5em 0 0.4em;
}

p {
	margin: 0 0 1.2em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background-color: #fff; /* Fallback for when there is no custom background color defined. */
	background: url(img/bg.jpg) top center;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 0;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
}

table td {
	padding-right: 25px;
}
table td:last-child {
	padding-right: 0;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

/*--------------------------------------------------------------
# Structure
--------------------------------------------------------------*/
#page {
	max-width: 1000px;
	margin: 0 auto;
	background: #f3e8d6;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #863335;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Announcement Banner
--------------------------------------------------------------*/
.announcement-banner {
	background: #426b33;
	color: #fff;
	padding: 1.2rem 1.8rem;
	line-height: 1.3;
}
.announcement-banner h2 {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
}
.announcement-banner p {
	margin: 0;
	max-width: 46.875rem;
}
.announcement-banner p a {
	color: inherit;
	text-decoration: underline;
}

/*--------------------------------------------------------------
## Utility Navigation
--------------------------------------------------------------*/
.utility-nav {
	background: #422727;
	padding: 8px 6px 8px 10px;
}
.back-to-home {
	margin: 0 10px -4px 0;
	display: inline-block;
	color: #fff;
	text-decoration: none;
}
.back-to-home svg {
	display: block;
}
.breadcrumb-title {
	display: none;
}
@media screen and (min-width: 800px) {
	.breadcrumb-title {
		margin: 0;
		display: inline-block;
		color: #D0C0B0;
		text-decoration: none;
	}
}
.social-search {
	float: right;
}
ul.social {
	list-style: none;
	margin: -1px 10px 0 0;
	padding: 0;
	float: left;
}
ul.social li {
	display: inline-block;
	margin-left: 3px;
	width: 25px;
	height: 25px;
	text-align: center;
}
ul li.social-profile {
	background: #D0C0B0;
	border-radius: 50%;
}
ul.social li.email {
	margin: 0 4px 0 0;
}
ul.social a {
	text-decoration: none;
	display: block;
}
ul.social svg {
	display: inline-block;
	vertical-align: middle;
}
.social-search .search-form {
	float: right;
	top: -2px;
	position: relative;
}
.social-search .search-form input {
	padding: 4px 6px 2px;
	line-height: 1.4;
	border: none;
	background: #f3e8d6;
	border-radius: 0;
	-webkit-appearance: none;
}
.social-search .search-form input:focus {
	outline: none;
}
.search-form input::-webkit-input-placeholder {
   font-style: italic;
	 color: #AB9D90;
}
.search-form input::-moz-placeholder {
   font-style: italic;
	 color: #AB9D90;
}
.search-form input:-ms-input-placeholder {
   font-style: italic;
	 color: #AB9D90;
}

/*--------------------------------------------------------------
## Site Header
--------------------------------------------------------------*/
.site-title {
	text-align: center;
	margin: 15px 0;
}
.site-title img {
	max-width: 200px;
}
@media screen and (min-width: 400px) {
	.site-title img {
		max-width: 250px
	}
}
@media screen and (min-width: 600px) {
	.site-title img {
		max-width: 300px;
	}
}

/*--------------------------------------------------------------
# Content Structure
--------------------------------------------------------------*/
.site-main {
	padding: 30px 30px 20px;
	min-height: 400px;
}
.home .site-main {
	padding-bottom: 0;
}
@media screen and (min-width: 800px) {
	.visitors .site-main,
	.residents .site-main {
		width: 60%;
		float: left;
	}
	.sidebar {
		float: right;
		width: 40%;
	}
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft,
.alignright {
		display: block;
		margin: 0 0 1.5em;
}

@media screen and (min-width: 600px) {
	.alignleft {
		display: inline;
		float: left;
		margin: 0.4em 1.5em 1em 0;
		max-width: 40%;
	}

	.alignright {
		display: inline;
		float: right;
		margin: 0.4em 0 1em 1.5em;
		max-width: 40%;
	}
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Posts Navigation
--------------------------------------------------------------*/
.nav-previous,
.nav-next {
	float: left;
	width: 45%;
	padding: 20px 0 0;
}
.nav-next {
	float: right;
	text-align: right;
}
.nav-previous a,
.nav-next a {
	color: #422727;
	text-decoration: none;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Homepage
--------------------------------------------------------------*/
@-webkit-keyframes fade-in {
  0%   { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); visibility: visible; }
  100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); visibility: visible; }
}
@keyframes fade-in {
  0%   { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); visibility: visible; }
  100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); visibility: visible; }
}

.video-tour {
	margin-top: 30px;
}

.site-sections > div {
	max-width: 400px;
	margin: 0 auto 30px;
}

@media screen and (min-width: 850px) {
	.site-sections {
		margin: 0 -1%;
	}
	.site-sections > div {
		width: 33.3333%;
		float: left;
		margin: 0;
		padding: 0 1%;
		box-sizing: border-box;
		-webkit-animation: fade-in 1s;
		animation: fade-in 1s;
		-webkit-animation-fill-mode: forwards;
		animation-fill-mode: forwards;
		visibility: hidden;
	}
	.site-sections > div:nth-child(3n+2) {
		animation-delay: 0.25s;
	}
	.site-sections > div:nth-child(3n+3) {
		animation-delay: 0.5s;
	}
}
.section-image {
	display: block;
	overflow: hidden;
	width: 100%;
	height: 250px;
}
.section-image div {
	display: block;
	width: 100%;
	height: 250px;
	background-size: cover;
	background-position: center;
  -webkit-transition: all 1s cubic-bezier(0,.53,.52,.78);
	transition: all 1s cubic-bezier(0,.53,.52,.78);
}
.section-launch:hover div {
	-webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.section-heading {
	font-family: 'Rokkitt', serif;
	text-decoration: none;
	color: #fff;
	margin: 0 auto;
	display: block;
	background: #000;
	-webkit-font-smoothing: subpixel-antialiased;
}
.section-visitors .section-heading {
	background: #426b33;
}
.section-residents .section-heading {
	background: #863335;
}
.section-business .section-heading {
	background: #c3762f;
}
.site-sections h2 {
	margin: 0;
	text-align: center;
	position: relative;
	text-transform: uppercase;
	line-height: 0.9;
	padding: 8px 10px;
	font-size: 24px;
	font-weight: 400;
	color: #f3e8d6;
}
@media screen and (min-width: 850px) {
	.site-sections a + .section-heading {
		position: relative;
		margin-top: -43px;
		width: 80%;
		z-index: 1;
	}
}
@media screen and (min-width: 900px) {
	.site-sections h2 {
		font-size: 30px;
	}
	.site-sections a + .section-heading {
		margin-top: -55px;
	}
}
.site-sections p {
	text-align: center;
	margin: 12px 10px 0;
	-webkit-font-smoothing: subpixel-antialiased;
}
.quick-links {
	margin: 30px 0 0;
	border-top: 1px solid #BFC0BF;
	padding: 15px 0 0;
}
.quick-links h2 {
	margin: 0 0 5px;
	font-family: 'Rokkitt', serif;
	text-transform: uppercase;
	font-weight: normal;
	font-size: 34px;
}
.quick-links ul {
	list-style: none;
	margin: 0 -0.5%;
	padding: 0;
}
.quick-links li {
	float: left;
	width: 50%;
	padding: 0 0.5%;
	box-sizing: border-box;
	overflow: hidden;
	margin-bottom: 10px;
}
@media screen and (min-width: 600px) {
	.quick-links li {
		width: 20%;
		margin: 0;
	}
}
.quick-links a {
	text-decoration: none;
	color: inherit;
}
.quick-links img {
	display: block;
	width: 100%;
	aspect-ratio: 5 / 4;
	object-fit: cover;
}
.quick-links h3 {
	margin: 0;
	font-size: 17px;
	text-align: center;
	line-height: 1.2;
	padding: 5px 10px 11px;
	margin-bottom: -7px;
	color: #f3e8d6;
	text-transform: uppercase;
	font-family: 'Rokkitt', serif;
	font-weight: 400;
	background: #033f7b;
	-webkit-font-smoothing: subpixel-antialiased;
	transition: 0.1s cubic-bezier(0,.53,.52,.78);
	height: 58px;
}
@media screen and (min-width: 1000px) {
	.quick-links h3 {
		height: auto;
	}
}
.quick-links li:hover h3 {
	transform: translateY(-3px);
}
.quick-links li:nth-child(3n+1) h3 {
	background: #426b33;
}
.quick-links li:nth-child(3n+2) h3 {
	background: #033f7b;
}
.quick-links li:nth-child(3n+3) h3 {
	background: #863335;
}

/*--------------------------------------------------------------
## Pages
--------------------------------------------------------------*/
.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	padding: 0;
	margin: 0;
}
.rslides li {
	-webkit-backface-visibility: hidden;
	position: absolute;
	display: none;
	width: 100%;
	left: 0;
	top: 0;
}
.rslides li:first-child {
	position: relative;
	display: block;
	float: left;
}
.rslides img {
	display: block;
	height: auto;
	float: left;
	width: 100%;
	border: 0;
}
.content-area > img {
	display: block;
}
.section-menu .menu {
	display: none;
}
.menu-toggle,
.section-menu.toggled .menu {
	display: block;
}
@media screen and (min-width: 1000px) {
	.menu-toggle {
		display: none;
	}
	.section-menu .menu {
		display: block;
	}
}
.menu-toggle,
.menu-toggle:hover {
	box-shadow: none;
	text-shadow: none;
	border: none;
	border-radius: 0;
	background: none;
	margin: 0 auto;
	font-size: 20px;
	text-transform: uppercase;
	padding: 10px 30px;
	color: #f3e8d6;
	width: 100%;
}
.section-menu .menu {
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: 'Rokkitt', serif;
	width: 100%;
	position: absolute;
	z-index: 10;
}
.section-menu .menu li {
	display: inline-block;
	position: relative;
	color: #f3e8d6;
}
.section-menu .menu a,
.section-menu .menu li.no-link {
	color: #f3e8d6;
	text-decoration: none;
	padding: 10px 15px 7px;
	text-transform: uppercase;
	display: block;
	line-height: 1;
	font-size: 26px;
}
.section-menu .sub-menu .sub-menu {
	padding: 5px 0 10px;
}
.section-menu .sub-menu li {
	display: block;
}
.section-menu .sub-menu a,
.section-menu .sub-menu li.no-link {
	font-size: 20px;
	text-align: left;
	padding: 10px 10px 7px;
	text-transform: none;
	border-radius: 4px;
}
.section-menu .sub-menu a:hover {
	background: rgba(255, 255, 255, 0.1);
}
.menu-visitor-information,
.menu-visitor-information .sub-menu {
	background: #426b33;
}
.menu-resident-information,
.menu-resident-information .sub-menu {
	background: #863335;
}
.menu-economic-development,
.menu-economic-development .sub-menu {
	background: #c3762f;
}
@media screen and (min-width: 500px) and (max-width: 999px) {
	.section-menu .menu {
		left: 50%;
		width: 300px;
		margin-left: -150px;
	}
}
@media screen and (max-width: 999px) {
	.section-menu .menu {
		padding: 10px 0;
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	}
	.section-menu .menu li {
		display: block;
	}
	.section-menu .menu li.no-link {
		padding: 0;
	}
	.no-link > div:first-child {
		cursor: default;
	}
	.section-menu .menu a,
	.section-menu .menu .no-link > div:first-child {
		padding: 10px 25px 7px;
	}
	.section-menu .menu .sub-menu a,
	.section-menu .menu .sub-menu .no-link > div:first-child {
		padding: 10px 10px 7px;
	}
	.section-menu .menu li.menu-item-has-children {
		cursor: pointer;
	}
	.section-menu .menu li.menu-item-has-children .expand {
		position: absolute;
		top: 0;
		right: 0;
		padding: 0 10px 0 20px;
		width: 70px;
		height: 45px;
		background: url('img/expand.svg') no-repeat;
		background-position: center;
		overflow: hidden;
		text-align: center;
	}
	.section-menu .menu .sub-menu li.menu-item-has-children .expand {
		height: 37px;
	}
	.section-menu .menu li.menu-item-has-children.toggled > .expand {
		background: url('img/expand-close.svg') no-repeat;
		background-position: center;
	}
	.section-menu .sub-menu {
		margin: 0;
		padding: 0 0 10px;
		display: none;
	}
	.section-menu .sub-menu > li > a,
	.section-menu .sub-menu > .no-link > div:first-child  {
		margin: 0 50px 0 25px;
	}
	.section-menu .sub-menu .sub-menu li a {
		margin: 0 40px;
	}
	.section-menu li.toggled > .sub-menu {
		display: block;
	}
	.menu-visitor-information .menu {
		background: #426b33;
	}
	.menu-resident-information .menu {
		background: #863335;
	}
	.menu-economic-development .menu {
		background: #c3762f;
	}
}
@media screen and (min-width: 1000px) {
	.section-menu .menu {
		text-align: center;
		position: relative;
	}
	.section-menu .sub-menu {
		box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
		float: left;
		position: absolute;
		left: -999em;
		z-index: 99999;
		width: 240px;
		margin: 0 0 0 -5px;
		padding: 5px 0 10px;
		list-style-type: none;
	}
	.section-menu .menu > li.no-link {
		display: inline-block;
	}
	.section-menu .menu li:hover > .sub-menu,
	.section-menu .menu li.focus > .sub-menu {
		left: 0;
	}
	.section-menu .sub-menu li {
		margin: 0 10px;
	}
	.section-menu .menu .sub-menu li:hover > .sub-menu,
	.section-menu .menu .sub-menu li.focus > .sub-menu {
		left: 100%;
		top: 0;
	}
	.section-menu .expand {
		display: none;
	}
	.section-menu .sub-menu .sub-menu {
		padding: 10px 0 10px;
	}
}

/* Full calendar */
.page .simcal-default-calendar-grid .simcal-calendar-head .simcal-nav {
	padding: 10px 0 30px;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.entry-title {
	margin: 0 0 15px;
	font-family: 'Rokkitt', serif;
	font-size: 2.3em;
	text-transform: uppercase;
	font-weight: normal;
	line-height: 1;
	word-wrap: break-word;
}
.entry-content > h3:first-child {
	margin-top: 0;
}
.entry-content a[href^="http://"]:not([href*="cityoforegon.org"]):after,
.entry-content a[href^="https://"]:not([href*="cityoforegon.org"]):after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background-image: url(img/external.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  margin-top: -4px;
  margin-left: 4px;
}
.heading-alt {
  color: #800000;
}
.entry-content ul {
	overflow: hidden;
}
.site-main.people {
	padding-bottom: 0;
}
.people-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.people-list > li {
	padding: 25px 0;
	border-top: 1px solid #BFC0BF;
}
.people-list > li:last-child {
	padding-bottom: 5px;
}
.person-photo {
	margin: 0 0 20px;
}
.person-photo img {
	max-width: 250px;
	display: block;
}
@media screen and (min-width: 600px) {
	.person-photo {
		float: left;
		width: 33%;
		margin: 5px 0 0;
	}
	.person-photo img {
		width: 100%;
		padding-right: 30px;
	}
	.person-details {
		float: right;
		width: 67%;
	}
}
@media screen and (min-width: 840px) {
	.person-photo {
		width: 25%;
	}
	.person-details {
		width: 75%;
	}
}
.person-details p:last-child,
.person-details ul:last-child {
	margin-bottom: 0;
}
.person-details .name {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.25em;
	margin: 0;
}
.person-details .title {
	font-weight: 700;
}

/* Single Featured Event */
.announcements .event-date,
.featured_events .event-date {
		font-size: 1em;
		margin: 0;
}
.single-featured_events .event-date,
.single-announcements .event-date {
	margin: 0 0 25px;
}
.single-featured_events .entry-content img {
	margin-bottom: 25px;
	max-height: 350px;
	width: auto;
}

/*--------------------------------------------------------------
## Landing pages
--------------------------------------------------------------*/
.visitors-quick-links > a {
	display: block;
	margin-bottom: 15px;
}
.visitors-quick-links div {
	height: 160px;
	margin-bottom: 20px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: cover;
}
.visitors-quick-links div:last-child {
	margin-bottom: 0;
}
.visitors-quick-links p {
	font-size: 33px;
	margin: 98px 0 0;
	width: 100%;
	padding: 15px 18px 0;
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-family: 'Rokkitt', serif;
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5));
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5));
	background-image: -o-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5));
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.5));
}
@media screen and (min-width: 850px) {
	.visitors-quick-links div {
		height: 120px;
	}
	.visitors-quick-links p {
		font-size: 37px;
		margin: 52px 0 0;
		width: 100%;
		padding: 15px 18px 0;
	}
}
.residents-quick-links {
	margin: 20px -1%;
}
.residents-quick-links div {
	float: left;
	width: 50%;
	padding: 0 1% 2%;
	box-sizing: border-box;
	overflow: hidden;
}
.residents-quick-links img {
	display: block;
	width: 100%;
}
.sidebar {
	background: #D0C0B0;
}
.residents .sidebar {
	padding: 0;
}
.residents .city-buttons {
	padding: 35px 30px 0;
}
.events-wrapper {
	padding: 35px 30px;
}
.residents .city-buttons + .events-wrapper {
	padding-top: 25px;
}
.city-button {
	display: inline-block;
	padding: 5px 10px;
	color: #f3e8d6;
	background: #422727;
	text-decoration: none;
	margin-bottom: 10px;
	font-size: 0.9em;
	border-radius: 3px;
}
.sidebar h2 {
	margin: 0 0 15px;
	text-transform: uppercase;
	font-size: 1.5em;
}
.featured-events {
	list-style: none;
	margin: 0;
	padding: 0;
}
.featured-events li {
	border-bottom: 1px solid #b5a799;
	padding: 15px 0;
	position: relative;
}
.featured-events .has-image {
	min-height: 116px;
}
.featured-events li:first-child {
	border-top: 1px solid #b5a799;
}
.event-image {
	width: 85px;
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px 0;
}
.event-image img {
	display: block;
}
.has-image .event-details {
	margin-left: 100px;
}
.event-details p {
	margin: 0;
	line-height: 1.3;
}
p.event-title {
	font-size: 1.2em;
	line-height: 1.2;
	margin-bottom: 2px;
}
.event-title a {
	text-decoration: none;
	color: #404040;
	font-weight: 700;
}
.event-title a:hover {
	text-decoration: underline;
}
p.event-date {
	font-style: italic;
	font-size: 0.9em;
	margin-bottom: 5px;
}

/* Resident Information */
.residents .simcal-calendar {
	padding: 0;
}
.simcal-calendar > .simcal-align-right {
	display: none;
}
.residents .simcal-default-calendar-list ul.simcal-events {
	padding: 0;
	margin: 0;
}
.residents .simcal-day {
	border-bottom: 1px solid #b5a799;
	padding: 15px 0;
}
.residents .simcal-day:first-child {
	border-top: 1px solid #b5a799;
}
.residents .simcal-default-calendar-list ul.simcal-events li.simcal-event {
	margin-bottom: 0;
}
.residents .simcal-default-calendar-list .simcal-event-details p {
	margin: 0;
	font-size: 14px;
	font-style: italic;
}
.residents .simcal-event-title {
	font-size: 19px;
	line-height: 1.2;
	margin-bottom: 2px;
	display: block;
	font-style: normal;
}
.residents .simcal-event-description {
	display: none;
}
.residents .simcal-event-details a {
	font-style: normal;
}
.full-calendar {
	background: #422727;
	color: #fff;
	padding: 10px 20px;
	display: block;
	text-decoration: none;
}
.full-calendar:hover {
	text-decoration: underline;
}

.economic-quick-links {
	margin: 20px -1%;
}
.economic-quick-links div {
	float: left;
	width: 33.3333%;
	padding: 0 1% 2%;
}

/*--------------------------------------------------------------
## Archive
--------------------------------------------------------------*/
.archive .page-header {
	margin-bottom: 35px;
}
.post-type-archive-featured_events .page-header,
.post-type-archive-announcements .page-header {
	margin-bottom: 22px;
}
.archive .site-main {
	padding-bottom: 0;
}
.page-title {
	margin: 0 0 12px;
}
.child-categories {
	margin: 20px 0 0;
}
.page .child-categories {
	margin-bottom: 35px;
}
.child-categories ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline;
}
.child-categories li {
	display: inline-block;
	padding: 0 2px;
}
.archive article {
	border-top: 1px solid #BFC0BF;
	transition: 0.1s ease-in;
	padding: 20px 0;
}
.archive .listing-image a {
	display: block;
}
.archive .listing-image img {
	display: block;
	margin: 0 0 20px;
}
.archive .listing-details {
	color: rgb(64, 64, 64);
}
@media screen and (min-width: 600px) {
	.archive article {
		padding: 0;
	}
	.archive article.announcements {
		padding: 25px 0;
	}
	.archive .listing-image {
		float: left;
		width: 23%;
		padding: 25px 0;
	}
	.archive .listing-image img {
		margin: 0;
	}
	.archive .listing-image a {
		padding-right: 20px;
	}
	.archive .listing-details {
		float: right;
		width: 77%;
		padding: 25px 0;
	}
	.archive .post:last-of-type .listing-image,
	.archive .post:last-of-type .listing-details {
		padding-bottom: 0;
	}
}
@media screen and (min-width: 780px) {
	.archive .listing-image {
		width: 19%;
	}
	.archive .listing-details {
		width: 81%;
	}
}
.archive .post h2,
.archive .featured_events h2,
.archive .announcements h2 {
	text-transform: none;
	font-weight: normal;
	font-size: 2em;
	margin: 0;
}
.archive .post h2 a,
.archive .featured_events h2 a,
.archive .announcements h2 a {
	text-decoration: none;
	color: #422727;
}
.archive .post h2 a:hover,
.archive .featured_events h2 a:hover,
.archive .announcements h2 a:hover {
	text-decoration: underline;
}
.archive .post .address {
	font-style: italic;
	margin: 0;
}
.archive .entry-content p {
	margin: 5px 0 0;
}
.post .learn-more {
	text-transform: uppercase;
	margin: 0;
}
.post .learn-more a {
	text-decoration: none;
	color: #333;
	font-weight: 700;
	font-style: italic;
}

/*--------------------------------------------------------------
## Archive
--------------------------------------------------------------*/
.search-results article {
	margin-bottom: 25px;
}
.search-results .entry-title {
	text-transform: none;
	margin-bottom: 5px;
}

/*--------------------------------------------------------------
## Single
--------------------------------------------------------------*/
.single .site-content {
	margin-bottom: 50px;
}
.single .main {
	padding: 25px 20px 30px;
}
.single .entry-title {
	font-size: 2.5em;
	margin: 0 0 15px;
}
.single .featured-image {
	margin-bottom: 15px;
}
.single .desc p,
.single .desc li {
	font-size: 1.1em;
}
.single .desc h2 {
	margin-top: 0;
}
.single .gallery {
	margin: 0;
}
.gallery ul {
	list-style: none;
	margin: 10px -5px;
	padding: 0;
}
.gallery li {
	float: left;
	width: 25%;
	padding: 0 5px 10px;
	box-sizing: border-box;
}
@media screen and (min-width: 600px) {
	.gallery li {
		width: 20%;
	}
}
.gallery img {
	display: block;
}
.single .side {
	max-width: 400px;
	margin: 0 auto;
}
.side .info {
	padding: 30px 24px 24px;
}
@media screen and (min-width: 800px) {
	.single .main {
		float: left;
		width: 65%;
		padding: 25px 30px 30px;
		box-sizing: border-box;
	}
	.single .side {
		float: right;
		width: 33%;
		background: #D0C0B0;
	}
}
.single .side h3 {
	margin: 0;
}
.single .side p {
	margin-top: 0;
}
.single .side p:last-child {
	margin-bottom: 0;
}
.single .side a {
	word-wrap: break-word;
}
.side .location h3 {
	background: #422727;
	color: #fff;
	padding: 5px 13px;
	margin: 0;
}
.acf-map {
	width: 100%;
	height: 250px;
	border: #ccc solid 1px;
	margin: 0;
	padding: 15px;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin: 35px -15px 20px;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
	margin: 0;
}

.gallery-item img {
	padding: 0 15px 15px;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
## Site Footer
--------------------------------------------------------------*/
.site-footer {
	margin-top: 25px;
}
.site-info {
	text-align: center;
	padding: 20px 0;
	margin: 0 30px;
	border-top: 1px solid #BFC0BF;
}
.site-info p {
	margin: 0;
}
.site-footer .social {
	margin: 8px 0 0;
	float: none;
}
.site-footer .social li {
	width: 33px;
	height: 33px;
}
.site-footer .social li.social-profile {
	background: #422727;
}
.site-footer .social li.social-profile a {
	padding-top: 3px;
}
.site-footer svg {
	width: 25px;
	height: 25px;
}
.site-footer .email svg {
	width: 30px;
	height: 30px;
}
.footer-menu {
	background: #422727;
	padding: 8px 15px;
}
.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}
.footer-menu li {
	display: inline-block;
	margin-right: 10px;
	font-size: 14px;
}
.footer-menu a {
	color: #D0C0B0;
	text-decoration: none;
}
.footer-menu a:hover {
	color: #f3e8d6;
}


/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}
.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}
.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 100%;
	overflow: auto;
	box-sizing: border-box;
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	        transform: scale(1);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	        transform: translateY(0);
}
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	        transform: translateZ(0);
}
/*
 * Nivo Lightbox Default Theme v1.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	background: #666;
	background: rgba(0,0,0,0.6);
}
.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(img/loading.gif) no-repeat 50% 50%; }
.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
	opacity: 1;
	background-color: rgba(0,0,0,0.5);
}
.nivo-lightbox-theme-default .nivo-lightbox-prev {
	background-image: url(img/prev.png);
	border-radius: 0 3px 3px 0;
}
.nivo-lightbox-theme-default .nivo-lightbox-next {
	background-image: url(img/next.png);
	border-radius: 3px 0 0 3px;
}
.nivo-lightbox-theme-default .nivo-lightbox-close {
	display: block;
	background: url(img/close.png) no-repeat 5px 5px;
	width: 16px;
	height: 16px;
	text-indent: -9999px;
	padding: 5px;
	opacity: 0.5;
}
.nivo-lightbox-theme-default .nivo-lightbox-close:hover { opacity: 1; }
.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { bottom: -7%; }
.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 14px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	background: #fff;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}
.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	background: #fff;
	padding: 40px;
  box-shadow: 0px 1px 1px rgba(0,0,0,0.4);
}
@media (-webkit-min-device-pixel-ratio: 1.3),
       (-o-min-device-pixel-ratio: 2.6/2),
       (min--moz-device-pixel-ratio: 1.3),
       (min-device-pixel-ratio: 1.3),
       (min-resolution: 1.3dppx) {
	.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
		background-image: url(img/loading@2x.gif);
		background-size: 32px 32px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-prev {
		background-image: url(img/prev@2x.png);
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-next {
		background-image: url(img/next@2x.png);
		background-size: 48px 48px;
	}
	.nivo-lightbox-theme-default .nivo-lightbox-close {
		background-image: url(img/close@2x.png);
		background-size: 16px 16px;
	}
}
