/**
 * HEADER & MAIN NAVIGATION
 *
 * Styles for the header/main nav, mobile nav, search, and inner navigation
 *
 */

#header {
  height: 100px;
}
.header-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
  -moz-box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
  box-shadow: 0 2px 10px -3px rgba(16,26,48,0.2);
  z-index: 120;
}
.header-menu .cell {
  padding: 0 20px;
}
.header-menu .cell:first-child {
  width: 250px;
  padding: 0 0 0 20px;
}
.header-menu .cell:last-child {
  text-align: left;
}
.header-menu .logo {
  display: block;
  width: 100%;
}
.header-menu .logo img {
  display: block;
  max-height: 100px;
}
.text-logo {
  position: relative;
  text-align: center;
  font-size: 18px;
}
.header-menu .text-logo {
  width: 230px;	
}
.text-logo i[class*="fa"] {
	display: block;
	margin: -6px 0 4px;
}

span[class*="logo-text"] {
	text-transform: uppercase;
	display: block;
	width: 100%;
	text-align: center;
}
.large-logo-text {
	font-family: 'LatoWeb';
	letter-spacing: 0.06em;
	line-height: 1;
	padding-bottom: 4px;
	font-size: 36px;
}
.header-menu .large-logo-text {
	font-family: 'Lato-Bold' !important;
	font-size: 20px;
}
.small-logo-text {
	font-family: 'LatoWebLight';
	letter-spacing: 0.09em;
	line-height: 1;
	font-size: 20px;
}
.header-menu .small-logo-text {
	font-family: 'LatoWebMedium' !important;
	font-size: 11px;
}
.banner-text .text-logo:after {
	content: "";
	display: block;
	margin: 30px auto 20px;
	width: 100%;
	height: 1px;
	background-color: #FFF;
}


#nav-btn,
#nav-close-btn {
  display: none;
  font-size: 32px;
}
.nav-menu {
  white-space: nowrap;
}
.nav-menu > li {
  display: inline-block;
  margin-right: 5px;
  position: relative;
}
.nav-menu > li:last-child {
  margin-right: 0;
}
.nav-menu > li > a {
  padding: 35px 8px 33px;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.35px;
  font: 16px/32px 'Montserrat-Medium';
}
.nav-menu li:hover > a,
.nav-menu > li > a:hover,
.nav-menu li.active > a {
  font-family: 'Montserrat-Black';
}
.sub-menu {
  position: absolute;
  top: 100%;
  left: -17px;
  min-width: 275px;
  padding: 16px 30px 21px;
  text-align: left;
  background-color: #ededed;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}
.sub-menu:after {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #273246;
}
.sub-menu li a {
  display: block;
  line-height: 32px;
}
.sub-menu li a:hover {
  font-family: 'Montserrat-SemiBold';
}
.nav-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}
.sub-ctrl {
  position: absolute;
  top: 50%;
  right: -3px;
  height: 32px;
  margin-top: -15px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
}
.sub-ctrl:after {
  content: "\f107";
  font: 18px/35px Font Awesome\ 5 Pro;
  font-weight: bold;
}

.search-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -7px;
  font-size: 16px;
  color: #16b0ba;
}
.close-search {
  vertical-align: middle;
  font: 16px 'Montserrat-SemiBold';
  color: #16b0ba;
}
.search-btn:hover,
.close-search:hover {
  color: #e83d30;
}
.search-box {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin-top: -22px;
  opacity: 0;
  visibility: hidden;
}
.search-page.search-box {
	position: relative;
	top: 0;
	margin: auto auto 20px;
	opacity: 1;
	visibility: visible;
}
.search-box form {
  display: inline-block;
  width: calc(100% - 43px);
  margin-right: 20px;
  vertical-align: middle;
}
.search-page.search-box form {
	margin: auto;
	width: 100%;
}
.search-box ::-webkit-input-placeholder {
  color: #273246;
}
.search-box :-moz-placeholder {
  color: #273246;
}
.search-box ::-moz-placeholder {
  color: #273246;
}
.search-box :-ms-input-placeholder {
  color: #273246;
}
.search-box input {
  display: inline-block;
}
.search-box input[type="text"] {
  width: calc(100% - 115px);
  text-align: left;
}
.search-box input[type="submit"] {
  min-width: 110px;
  color: #fff;
}
body.show-search .main-nav,
body.show-search .search-btn {
  opacity: 0;
  visibility: hidden;
}
body.show-search .search-box {
  opacity: 1;
  visibility: visible;
}
.search-box label span {
  font-size: 0;
}

/*=== FIXED & INNER HEADER STYLES ===*/
.fixed .header-menu .cell:first-child,
#inner .header-menu .cell:first-child {
    width: 250px;
    padding: 0 0 0 20px;
    overflow: visible;
}
.fixed .header-menu .cell:last-child,
#inner .header-menu .cell:last-child {
    text-align: left;
}
.fixed .main-nav,
#inner .main-nav {
    margin-right: 40px;
}

/**
 * TOP BANNER, BREADCRUMBS, & QUICK LINKS SECTION
 *
 * Styles for the banner, breadcrumbs and the four circle links on the 
 * home page that are located under the banner
 *
 */

.banner {
  position: relative;
  height: 452px;
  text-align: center;
}
.banner .top-slider {
  height: 100%;
  z-index: 1;
}
.banner .single-banner {
  height: 100%;
  background-attachment: fixed;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner .single-banner .table {
  background: rgba(37,37,38, 0.3);
}
.safari .banner .single-banner {
  background-attachment: scroll;
}
.banner .single-banner:after {
  opacity: 1;
  visibility: visible;
}
.banner .cell {
  padding: 50px 0;
}
.banner .slick-list,
.banner .slick-track {
  height: 100%;
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}
.banner-text {
  display: inline-block;
  max-width: 612px;
  width: 100%;
  color: #fff;
}
.banner-content {
  font: 18px/31px 'Montserrat-Light';
  margin-bottom: 12px;
}
.banner-text .large-text {
	text-transform: uppercase;
	font-size: 38px;
}

.banner-content p {
  margin-bottom: 12px;
  line-height: inherit;
}

/*=== BREADCRUMBS ===*/
.breadcrumbs {
  margin-bottom: 15px;
}
.breadcrumbs li {
  display: inline-block;
  line-height: 18px;
  font-size: 14px;
  transition: all 0.3s ease 0s;
}
.breadcrumbs li:not(:last-child):after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: -1px 3px 0 4px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  vertical-align: middle;
  background-color: #181818;
}

/*=== QUICK LINKS SECTION ===*/
.content-wrapper {
  padding: 35px 0 42px;
}
.quick-links {
  font-size: 0;
}
.quick-links li {
  display: inline-block;
  width: 25%;
  padding: 0 13px;
  vertical-align: top;
}
.quick-links li a {
  display: block;
}
.quick-links li a:hover {
  color: #16b0ba;
}
.quick-links li a:hover svg path {
  fill: #838383;
  transition: all 0.3s ease 0s;
}
.quick-links .icon {
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100px;
	border: solid 5px transparent;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	width: 163px;
	height: 163px;
	margin-bottom: 15px;
	transition: all 0.3s ease 0s;
}
.quick-links li a:hover .icon {
	background-color: #fff;
	border-color: #595959;
}

/**
 * EVENTS SECTION, TOWN INFO
 *
 * Styles events section located on the home page
 * and stlyes for the town info below the events section
 *
 */

/*=== EVENTS SECTION ===*/
.events-wrapper .cell:first-child {
  text-align: right;
}
.events-wrapper .cell:last-child .half-box {
  padding: 0 50px 0 75px;
}
.half-box {
  display: inline-block;
  width: 600px;
  padding: 0 50px;
  text-align: left;
}
.notices-list {
  margin: -3px -50px 0;
}
.notices-list a {
  display: block;
  padding: 14px 50px;
}
.notices-list a:hover {
  background-color: #d5d5d5;
}
.notices-list h4:after {
  content: "";
  display: block;
  width: 89px;
  height: 2px;
  margin: 7px 0 0 -4px;
  background-color: #e83d30;
}
.notices-list span {
  line-height: 20px;
}
.events-list .cell:first-child {
  width: 70px;
  padding-right: 15px;
  text-align: center;
}
.events-list li {
  margin-bottom: 25px;
}
.events-list .date {
	background: transparent url('/assets/theme/global/images/icons/cal-icon.png') no-repeat center center scroll;
	background-size: contain;
	color: #16b0ba;
	position: relative;
	text-transform: uppercase;
	padding: 0 5px 4px;
	font: 15px/1 'Lato-Bold';
	height: 53px;
	width: 55px;
}
.events-list .date > div {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 25px;
}
.events-list .date span {
  display: block;
  line-height: 1;
  font-size: 18px;
}
.events-list p {
  line-height: 24px;
}
.events-list p:last-child {
  margin-bottom: 0;
}
.events-list p:last-child:after {
  content: "\f105";
  display: inline-block;
  margin: 1px 0 0 4px;
  vertical-align: middle;
  font: 16px/18px Font Awesome\ 5 Pro;
  font-weight: bold;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.events-list li a:hover .cell:last-child {
  text-decoration: underline;
}
.events-list li a:hover p:last-child:after {
  opacity: 1;
  visibility: visible;
}
.info-wrapper {
  padding: 75px 0 35px;
}
.info-wrapper h2 {
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1.2px;
  font-size: 38px;
  color: #273246;
}



/**
 * MAIN CONTENT, SIDE NAV, INNER PAGES, BLOG MENU
 *
 * Styles for the main-content section and inner pages layout
 * Styles for the side navigation located on most sub pages
 * and blog menu located on pages with Archives
 *
 */

/*=== MAIN CONTENT ===*/
.main-content {
/*   min-height: 865px; */
  padding: 25px 0 50px;
}
.main-content .container {
  max-width: 1200px;
  padding: 0 0 0 50px;
}
.main-content .col-left {
  padding-top: 40px;
}
.main-content .sidebar {
  width: 405px;
  padding-left: 40px;
}
.main-content .sidebar > *:not(:last-child) {
  margin-bottom: 35px;
}
.main-content .sidebar .bg-box {
  padding: 50px 65px;
}

/*=== SIDE NAV ===*/
.side-nav {
	background-color: #f7f7f7;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	padding: 50px;
	margin-bottom: 25px;
}
.side-nav header a {
  color: #000;
  font: 24px/1.1 'Lato-Bold';
  text-transform: uppercase;
}
.side-nav header a:after {
	content: "";
	background-color: #e83d30;
	display: block;
	width: 89px;
	height: 2px;
	margin: 13px 0 0 -4px;
}
.side-nav > ul {
  padding: 5px 0px 0px 0px;
}
.side-nav > ul,
.side-nav > ul > li,
.side-nav > ul > li > a {
	color: #000;
  list-style: none;
  display: block;
  font: 16px/1 'Montserrat-Regular';
  text-transform: uppercase;
}
.side-nav > ul > li > a {
  padding: 13px 0;
}
.side-nav > ul > li > a:after {
	content: "\f105";
	font: 18px Font Awesome\ 5 Pro;
	padding-left: 8px;
}
.side-nav > ul > li > a:hover,
.side-nav > ul > li > a.active {
  color: #757575;
}
.agendas-archive header {
  color: #000;
  font: 24px/1.1 'Lato-Bold';
  text-transform: uppercase;
}
.agendas-archive {
	padding: 0 50px;
}
.meetings-section thead th {
	font: 15px/1.1 'Montserrat-SemiBold';
	text-transform: uppercase;
}

.sub-nav > li > a {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font: 24px 'Lato-Bold';
}
.sub-nav > li > a:after {
  content: "";
  display: block;
  width: 89px;
  height: 2px;
  margin-top: 7px;
  margin: 7px 0 0 -4px;
  background-color: #e83d30;
}
.sub-nav ul li {
  margin: 11px 0 18px;
}
.sub-nav ul li a {
  display: block;
  font: 16px/24px 'Montserrat-Bold';
}
.sub-nav ul li a:hover,
.sub-nav li.active a {
  color: #6d98a9;
}
.sub-nav ul li a:after {
  content: "\f105";
  display: inline-block;
  margin: -2px 0 0 6px;
  vertical-align: middle;
  font: 16px/24px Font Awesome\ 5 Pro;
  font-weight: bold;
}

/*=== INNER PAGES ===*/
.top-content {
  padding: 44px 0 45px;
  color: #fff;
  background-color: #273246;
}
.top-content .container > *:last-child {
  margin-bottom: 0;
}

/*=== BLOG MENU ===*/
.blog-box {
  width: 222px;
  margin-left: 65px;
}
.blog-box h2 {
  margin-bottom: 3px;
}
.blog-menu {
  font: 18px 'Montserrat-Regular';
  background-color: transparent;
  margin-left: auto !important;
  width: 100% !important;
}
.blog-menu ul {
  margin-bottom: 0;
}
.blog-menu li {
  padding: 0;
  margin: 0;
}
.blog-menu .year-link,
.blog-menu .month-link {
  position: relative;
  display: block;
  padding: 11px 20px 9px 40px;
  border-top: 2px solid #fff;
  letter-spacing: 0.25px;
}
.blog-menu .year-link {
  font-family: 'Montserrat-SemiBold';
  color: #fff;
  background-color: #273246;
}
.blog-menu .year-link.down {
  background-color: #6d98a9;
}
.blog-menu .year-link span,
.blog-menu .month-link span {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 20px;
  width: 8px;
}
.blog-menu .year-link span:after,
.blog-menu .month-link span:after {
  content: "\f105";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin-top: -9px;
  font: 18px Font Awesome\ 5 Pro;
  font-weight: bold;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
.blog-menu a.down span:after,
.blog-menu a:hover span:after {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.blog-menu .month-link {
  text-transform: uppercase;
  color: #1f1f1f;
  background-color: #f8f7f9;
}
.blog-menu .month-link.selected {
	background-color:#1F1F1F;
	color:#fff;
}
.blog-menu ul.year {
  display: none;
}
.blog-menu li ul:target {
	display: block;
}
.blog-menu ul.month {
  display: none;
  padding: 14px;
  border: 1px solid #f8f7f9;
  border-top: 0;
}
.blog-menu .month li + li {
  border-top: 2px solid #a5b9c2;
}
.blog-menu .month li a {
  display: block;
  padding: 8px 4px 9px;
  font-size: 12px;
}



/**
 * STAFF, DOCUMENTS LIST
 *
 * Styles for staff and staff modals. 
 * Styles for the document lists located on the Agendas and Ordinances pages
 *
 */

/*====================================*/
/*============ STAFF PAGE ============*/
/*====================================*/

/* Staff Categories */
.staff-cat-heading:first-child {
	margin-top: 0;
}
.staff-cat-heading {
	border-bottom: 1px solid #1F1F1F;
	font-size: 24px;
	margin: 50px 0 25px;
	padding-bottom: 25px;
}

/* Staff Main Info */
.all-staff > .clearfix {
	background-color: #F7F7F7;
	border-top: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	padding: 15px;
}
.all-staff .staff-details {
	display: block;
}
.staff-heading {
	font-size:19px;
	line-height: 1;
	margin-bottom:15px;
}
.jobTitle {
	margin-bottom: 15px;
}
.staff-details a {
	display: block;
}
.staff-details a + a {
	margin-top: 5px;
}
.all-staff .staff-details .noscript-show { /* js disabled */
	margin-top: 15px;
}
.all-staff a.btn,
.all-staff a.btn:hover {
	display: inline-block;
	margin-top:15px;
	color:#FFF;
}
.all-staff > div + div {
	margin-top:25px;
	padding-top:25px;
	border-top:1px solid #1F1F1F;
}

/* Staff Image */
.all-staff figure {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width:25%;
	height:0;
	padding-bottom:25%;
	float:left;
	margin-right:25px;
}
.all-staff figure span {
	display: block;
	padding:12px 20px 8px;
	background-color:#838383;
	color:#FFF;
	text-align: center;
	position: absolute;
	bottom:0;
	left:0;
	width:100%;
	transition:all 0.1s linear 0s;
}
.all-staff figure:hover span {
	padding:22px 20px 18px;
}

/* --- Staff Modal --- */
.staff-modal {
	position: relative;
	background-color:#FFF;
	padding:20px;
	font-size:18px;
}
.staff-modal .staff-heading {
	font-size: 34px;
	margin-bottom: 10px;
}
.staff-modal .staff-info .jobTitle {
	font-size: 18px;
	margin-bottom: 10px;
}
.staff-modal .staff-info p {
	margin: 0;
}
.staff-modal .staff-info a {
	color: #000;
	font-family: 'Montserrat-Regular';
}
.staff-modal p strong {
	font: bold 15px/1 'Montserrat-Regular';
}
.staff-modal .cell:first-child {
	padding-right: 15px;
	width:200px;
}
.staff-modal .cell:last-child {
	padding-left: 15px;
}
.staff-modal figure {
	background-attachment: scroll;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height:200px;
}

.short-line {
	display: block;
	height:2px;
	background-color:#1F1F1F;
	margin:15px 0;
	border:none;
}

/* --- FAQs --- */
.cat-title {
	display: block;
	position: relative;
	font-size: 22px;
	line-height: 1;
	font-weight: bold;
	padding: 0 35px 0 0;
	margin-bottom: 0;
}
.faq-list + .cat-title {
	border-top: solid 2px #ebebee;
	padding-top: 25px;
	margin-top: 25px;
}
.faq-list + .cat-title span {
	top: 25px;
}
.faq-list {
	display: none;
	padding-top: 15px;
}
.faq-list.no-cats {
	display: block;
	padding-top: 0;
}
.faq-list .faq {
	padding: 10px 35px 10px 15px;
	list-style: none !important;
}
.faq-list .faq .answer {
	padding: 5px 0 15px;
	margin: 0;
}

.answer-drop {
	display: none;
}
.answer-drop ul {
	margin: 15px 0 0 15px;
}
.answer-drop ul li {
	padding-bottom: 10px;
	position: relative;
}
.answer-drop ul li:before {
	content: '';
	background-color: #388989;
	border-radius: 50%;
	position: absolute;
	left: -15px;
	top: 4px;
	height: 7px;
	width: 7px;
}

h3.question {
	color: #858585;
	cursor: pointer;
	position: relative;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: 0;
}
.cat-title span,
h3.question span {
	text-align: center;
	position: absolute;
	top: 5px;
	right: 0;
	margin: auto;
	height: 24px;
	width: 24px;
	transition: all 0.3s ease 0s;
}
h3.question span {
	right: -35px;
}
.cat-title span:before,
h3.question span:before {
	content: "\f105";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 100%;
	font: 24px/1 Font Awesome\ 5 Pro;
	    font-weight: normal;
	font-weight: bold;
	-webkit-transition: all 0.4s ease 0s;
	-moz-transition: all 0.4s ease 0s;
	-ms-transition: all 0.4s ease 0s;
	-o-transition: all 0.4s ease 0s;
	transition: all 0.4s ease 0s;
}
h3.question span:before {
	font-size: 18px;
}
.cat-title span.show:before,
.show h3.question span:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
}

/*=== Document lists ===*/
.posted-date {
	color: #acacac;
	font-size: 14px;
	padding: 5px 0 18px 0;
	margin-bottom: 0px;
}
.filter-reset {
	position: relative;
	padding-right: 55px;
}
.filter-reset a {
	position: absolute;
	right: 0;
}
.doc-list {
	margin:20px auto;
}
.forms-permits-section .doc-list > li,
.doc-list > li,
.doc-list > tr {
	position: relative;
	padding:15px 170px 15px 17px;
	font-size:16px;
}
.doc-list > tr:nth-child(even) {
	background-color: #F7F7F7;
}
.doc-list > li {
	background-color: #F7F7F7;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}
.doc-list > li + li {
	margin-top: 15px;
}
.doc-list > tr td,
.meetings-section thead th {
	padding: 15px 0 15px 0;
}
.doc-list > tr td:first-child,
.meetings-section thead th:first-child {
	padding: 15px 10px 15px 17px;
}
.doc-list > tr td:first-child {
	font-weight: bold;
}
.doc-list h3 {
	font-size: 18px;
}
.news-items-section h2 {
	margin-bottom: 0;
}
.meetings-section thead th {
	background-color: #F7F7F7;
}
.meeting-note {
	font: 14px/1 'Montserrat-Regular';
	padding-top: 10px;
}
.doc-list > li div {
	font-size:14px;
}
.doc-list > li .download {
	color: #000 !important;
	position: absolute;
	top:14px;
	right:30px;
	font: 14px/1 'Montserrat-Regular';
	text-transform: uppercase;
}
.download {
	font: 14px/1 'Montserrat-Regular';
}
.download:before {
	display: inline-block;
	vertical-align: middle;
	margin-top:-3px;
	margin-right:10px;
	font-family:Font Awesome\ 5 Pro;
	font-size:24px;
	line-height: 1;
}
.download:hover,
.download:after {
	color:#838383;
}
.dwnld-link {
  padding-left: 23px;
  line-height: 19px;
  background: url(../images/icons/document.png) no-repeat;
}
.striped {
  width: 92%;
  margin-top: 38px;
}
.striped li {
  font-size: 0;
}
.striped li:nth-child(odd) {
  background-color: #ededed;
}
.striped li:first-child div {
  padding: 11px 25px 9px;
  text-transform: uppercase;
  font: 16px/24px 'Montserrat-SemiBold';
  color: #3b4b6a;
}
.striped div {
  display: inline-block;
  width: 33.3%;
  padding: 16px 25px 15px;
  vertical-align: top;
  line-height: 19px;
  font-size: 14px;
}
.striped div.note {
  width: 100%;
  padding: 7px 25px 9px;
}

.options {
	padding: 0 50px;
}
.options h3 {
	color: #000;
	font: 24px/1.1 'Lato-Bold';
	padding-bottom: 5px;
}
.options .cats-menu {
    background-color: #f7f7f7;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
    padding: 10px;
}
.options .cats-menu li + li {
	border-top: solid 1px #8c8c8c;
}
.options .cats-menu li a {
	font-family: 'Montserrat-SemiBold';
	padding: 10px 0;
	width: 100%;
}
.short-blue-line {
	margin-bottom: 10px;
}

/**
 * AGENDAS AND MINUTES
 *
 * All styles for Agendas and Minutes, Ordinances, Notices, and Forms and Permits
 *
 */
 
/*=== Agendas and Minutes ===*/
.meetings-section table {
	width: 100%;
}
.meetings-section .doc-list > li {
	padding: 15px 290px 15px 17px;
}
.meetings-section .doc-list > li > div {
	position: absolute;
	top: 14px;
	right: 30px;
}
.meetings-section .doc-list > li > div > a {
	position: relative;
	top: auto;
	right: auto;
}
.meetings-section .doc-list > li > div > a + a {
	padding-left: 10px;
}


/**
 * FOOTER
 *
 * Site footer styles
 *
 */

/*=== FOOTER ===*/
.footer-wrapper {
  height: auto;
  padding: 48px 0 30px;
  border-top: 27px solid #6d98a9;
  line-height: 24px;
  color: #dbdbd4;
  background-color: #13151a;
}
.footer-wrapper .cell:first-child {
  width: 315px;
  padding-right: 15px;
}
.footer-wrapper .cell:last-child {
  width: 300px;
  padding: 0 20px;
  text-align: center;
}
.footer-wrapper .logo {
  display: inline-block;
  width: 256px;
  margin: -10px 0 16px;
}
.footer-wrapper .logo.text-logo { 
  margin: 0px 0 16px;
}
#footer .large-logo-text {
	font-family: 'Lato-Bold' !important;
	font-size: 20px;
}
#footer .small-logo-text {
	font-family: 'LatoWebMedium' !important;
	font-size: 11px;
}
.footer-wrapper h3 {
  line-height: 24px;
  color: #dbdbd4;
}
.footer-wrapper p {
  margin-bottom: 24px;
}
.footer-nav li {
  margin-bottom: 5px;
}
.footer-wrapper p.footer-address {
	margin-bottom: 0;
}
.footer-nav a {
  text-transform: uppercase;
  font: 16px/24px 'Montserrat-SemiBold';
  color: #dbdbd4;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.copyright {
  padding-top: 30px;
  text-align: center;
  font: 12px/24px 'OpenSans-Regular';
}
.copyright .jb-logo {
	display: block;
}
.copyright .jb-logo:before {
	content: '';
	background: transparent url('/assets/theme/global/images/layout/logo-JB-Systems.png') no-repeat center center scroll;
	display: inline-block;
	height: 29px;
	width: 74px;
	vertical-align: middle;
	margin-right: 10px;
}
.copyright .jb-logo span {
	line-height: 29px;
}

.view-more, .bio-link {
    display: block;
    margin-top: 25px;
    color: #838383;
    font-weight: bold;
    text-transform: uppercase;
}