/********************************************************************************
 * Default Screen Styles
 ********************************************************************************/


@media screen {
	
	/* Reset some defaults
	 ****************************************************************************/
	/* redefine headers */
	h1, h2, h3, h4, h5, h6 {
		color: #333333;
		font-family: 'Lato', sans-serif;
		font-weight: 700;
		margin: .5em 0;
	}

	h1 {
		font-size: 2.5em;
	}

	h2 {
		font-size: 2.0em;
	}

	h3 {
		font-size: 1.5em;
	}

	h4 {
		font-size: 1.3em;
	}

	h5 {
		font-size: 1.2em;
	}

	h6 {
		font-size: 1.0em;
	}

	img {
		max-width: 100%;
		height: auto !important; 
		-ms-interpolation-mode: bicubic;
		border: 0;
	}


	/* Site-wide Links
	 ****************************************************************************/
	a:link {
		color: #245889;
		text-decoration: none;

		transition: color 2s;
		-moz-transition: color .2s;
		-webkit-transition: color .2s;
		-o-transition: color .2s;
	}

	a:link:visited, a:visited {
		color: #4985bc;
	}

	a:link:hover, 
	a:active, 
	a:visited:hover {
		color: #4985bc;
		text-decoration: none;
	}
	


	body {
		background: #262626;
		color: #000;
		font-family: 'Lato', sans-serif;
		margin: 0;
		padding: 0;
	}
	
	/* Let's do this thing
	 ****************************************************************************/
	.wrap {
		margin: 0 auto;
		max-width: 1100px;
		box-sizing: border-box;
	}


	/* Header
	 ****************************************************************************/
	.header {
		position: absolute;
		z-index: 8;
		left: 0;
		right: 0;
	}
	
	.header h2 {
		display: none;
	}
	
	.header > .wrap {
		position: relative;
	}

	div.siteTitleContainer {
		background: rgba(1,23,64,.9);
		border-bottom: 3px solid #000;
		margin: 0 auto;
	}
		
	.siteTitle {
		padding-top: 1px;
		margin: -1px 0 0 0;
	}

	.siteTitle a {
		background: url('/images/header/site-title.png') center top no-repeat;
		-webkit-background-size: contain;
		background-size: contain;
		display: block;
		height: 140px;
		width: 218px;
		text-indent: -3500px;
		margin: 12px auto;

		/*-ms-behavior: url(/include/css/backgroundsize.min.htc);*/
		filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(
		src='/images/header/site-title.png',
		sizingMethod='scale');	
	}
	
	
	.skipLink {
		left: -3500px;
		position: absolute;
	}
	

	/* Search
	 ****************************************************************************/
	.searchWrapper {
		position: absolute;
		top: -60px;
		right: 0;
		background: #fff;
		border: 0;
		overflow: hidden;
		height: auto;
		width: 260px;
	}

	.searchForm {
		overflow: hidden;
		position: relative;
	}
	
		.searchForm label {
			height: 0;
			left: -35000px;
			position: absolute;
			width: 0;
		}

	.searchInputWrapper {
		overflow: hidden;
		padding: 0 26px 0 0;
	}

	.searchInput {
		background: #fff
		border-radius: 0;
		border: 0;
		color: #000;
		font-size: 13px;
		height: 40px;
		padding: 0 36px 0 10px;
		text-transform: uppercase;
		width: 100%;
		
		box-sizing: content-box;
		-webkit-box-sizing: content-box;
		-moz-box-sizing: content-box;
		-webkit-appearance: none;
		-moz-appearance: none;
	}

	.searchSubmit {
		background: none;
		border: none;
		color: #4B8FCE;
		display: block;
		font-family: 'FontAwesome';
		font-size: 20px;
		height: 40px;
		line-height: 20px;
		padding: 0;
		position: absolute;
		right: 0;
		top: 0;
		width: 40px;
	}

	.searchInput:focus {
		outline: none;
		border-color: #fff;
	}

	.searchInput:focus.searchSubmit { color: #000; }

	.searchSubmit:hover {
		background: #4B8FCE;
		color: #fff;
		cursor: pointer;
	}

	::-webkit-input-placeholder { /* WebKit, Blink, Edge */
		color: #000;
	}

	:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
		color: #000;
		opacity: 1;
	}

	::-moz-placeholder { /* Mozilla Firefox 19+ */
		color: #000;
		opacity: 1;
	}

	:-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #000
	}


	/* Weather Social
	 ****************************************************************************/
	.weatherSocial {
		position: absolute;
		top: -75px;
	}

	.weatherSocial img {
		display: inline-block;
		margin-right: 10px;
		position: relative;
		top: .9em;
	}

	/* Weather
	 ****************************************************************************/
	.weatherContainer {
		display: inline-block;
		color: #fff;
		font-size: 1.01em;
		text-align: center;
		text-transform: uppercase;
	}
	
	.weatherContainer .weatherIcon {
		font-size: 1.4em;
	}
	
	.weatherContainer .temperature {
		border-right: 1px solid #fff;
		font-size: .9em;
		margin-right: 3px;
		padding-right: 7px;
	}
	
	.weatherContainer a:link, 
	.weatherContainer a:link:hover, 
	.weatherContainer a:visited, 
	.weatherContainer a:visited:hover {
		color: #fff;
		font-size: .9em;
		margin-right: 8px;
	} 
	

	/* Home Main Content
	 ****************************************************************************/
	.bodyHome .mainContent {
		background: #fff;
		position: relative;
		padding-top: 1px;
		margin-top: -1px;
		padding-bottom: 10px;
	}

	.bodyHome .mainContent #descContainer {
		margin: 30px 0 12px 0;
	}

	.bodyHome .mainContent #descContainer:after {
		content: ' ';
		display: block;
		background: url('/images/misc/shadow.png') center top no-repeat;
		background-size: 100% 18px;
		margin-top: 30px;
		height: 30px;
	}


	/* Breaking News
	 ****************************************************************************/
	.breakingNewsContainer {
		background: #be0000;
		margin: 0 0 30px 0;
	}

	.breakingNews {
		min-height: 85px;
		position: relative;
	} 
	
	.breakingNews .col1 {
		width: 15.8em;
		left: 0;
		position: absolute; 
		top: 0; 
	}
	
	.breakingNews .col1 .cwHeader {
		background: none;
		color: #fff;
		font-size: 1.5em;
		margin-top: 15px;
		padding: 10px 12px;
		text-transform: uppercase;
	}
	
	.breakingNews .col1 .cwHeader span {
		display: block;
	}
	
	.breakingNewsContainer .col2 { 
		margin-left: 16em; 
		padding: 15px 20px;
		color: #fff;
	}
	
	.breakingNews .col2 .cwBreakingNewsList a { 
		color: #fff;
		font-size: 1em;
		font-weight: bold;
		text-decoration: underline;
	}

	.breakingNews .col2 a.moreLink { 
		color: #fff;
		text-decoration: underline;
	}
	
	.breakingNews .col2 a:hover { 
		color: #fff;
		text-decoration: none;
	}
	
	.breakingNews a.moreLink {
		color: #fff;
		text-decoration: underline;
	}
	
	.breakingNews a.moreLink:hover {
		color: #fff;
		text-decoration: none;
	}
	


	/* Service Icons
	 ****************************************************************************/
	.serviceIconsContainer {
		max-width: 1100px;
		margin: 0 auto 30px auto;
	}

	.serviceIcons {
		position: relative;
		margin: 0 auto;

		display: flex;
		flex-wrap:nowrap;
		justify-content: space-between;

	}
	
	.serviceIcons a {
		background: #245889;
		box-sizing: border-box;
		color: #fff;
		display: inline-block;
		margin: 0 5px 10px 5px;
		padding: 12px 5px 10px 5px;
		text-align: center;		
		text-decoration: none;
		min-width: 100px;
		max-width: 115px;

		flex: 1 0 0;

		/*-webkit-align-self: center;
		-ms-flex-item-align: center;
		align-self: center;*/

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
		

		transition: all .3s;
		-moz-transition: all .3s; /* Firefox 4 */
		-webkit-transition: all .3s; /* Safari and Chrome */
		-o-transition: all .3s; /* Opera */
	}

	.serviceIcons a:first-of-type {
		margin-left: 0;
	}
	
	.serviceIcons a:last-of-type {
		margin-right: 0;
	}


		/*.serviceIcons a:nth-of-type(4) {
			break-after: always;
		}*/

		.serviceIcons a:hover {
			color: #fff;
		}

		.serviceIcons a:hover span {
			-webkit-transform: scale(1.2); /* Chrome, Opera 15+, Safari 3.1+ */
			-ms-transform: scale(1.2); /* IE 9 */
			transform: scale(1.2); /* Firefox 16+, IE 10+, Opera */
			/*text-shadow: 0px 2px 2px #332d1e;*/
		}

	.serviceIcons a span {
		color: #fff;
		display: block;
		font-size: 45px;
		margin: 0 0 8px 0;
		
		transition: all .3s;
		-moz-transition: all .3s; /* Firefox 4 */
		-webkit-transition: all .3s; /* Safari and Chrome */
		-o-transition: all .3s; /* Opera */
	}

	.serviceIcons a span.nixle {
		background: url('/images/misc/nixle.png') center top no-repeat;
		height: 45px;
		margin: 0 auto 8px auto;
	}
	



	/* Home Columns
	 ****************************************************************************/
	.homeColumns {
		display: table;
		width: 100%;
		margin-bottom: 30px;
	}

	.homeColumnsInner {
		display: table-row;
	}
	
	.homeColumnsInner > div {
		display: table-cell;
		vertical-align: top;
	}
	
	.homeColumnsInner > div:nth-of-type(even) {
		padding-left: 15px;
		width: 50%;
	}
	
	.homeColumnsInner > div:nth-of-type(odd) {
		padding-right: 15px;
		width: 50%;
	}
	
	.bodyHome .cwHeader {
		margin: 25px 0 15px 0;
	}

	/* Programs and Projects
	 ****************************************************************************/		
	.projectsContainer {
		background: url('/images/home/projects-bg.jpg') center center;
		background-size: cover;
		border-right: 5px solid #fff;
		padding: 0 !important;
		position: relative;
		width: 50%;
	}

	.projects {
		color: #fff;
		margin-left: 50%;
		padding: 20px;
		position: relative;
		z-index: 3;

		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
	}

	.projects .cwHeader {
		color: #fff;
	}

	.projectsBackground {
		background: rgba(1,23,64,.80);
		bottom: 0;
		left: 50%;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 0;
	}

	.programsContainer {
		background: url('/images/home/programs-bg.jpg') center center;
		background-size: cover;
		border-left: 5px solid #fff;
		padding: 0 !important;
		position: relative;
		width: 50%;
	}

	.programs {
		color: #fff;
		margin-left: 50%;
		padding: 20px;
		position: relative;
		z-index: 3;

		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
	}


	.projects .cwHeader,
	.programs .cwHeader {
		color: #fff;
	}

	.projects a, .projects a:visited,
	.programs a, .programs a:visited {
		color: #fff;
		text-decoration: underline;
	}

	.projects a:hover, .projects a:visited:hover,
	.programs a:hover, .programs a:visited:hover {
		color: #fff;
		text-decoration: none;
	}

	.programsBackground {
		background: rgba(1,23,64,.80);
		bottom: 0;
		left: 50%;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 0;
	}


	/* Home Page Events
	 ****************************************************************************/		
	.cwEventsHome .col1 {
		float: left;
		width: 52%;
	}


	.cwEventsHome .col2 {
		float: right;
		width: 46%;
	}

	.bodyHome .cwHeader {
		margin-top: 0;
	}


	/* Secondary Structure
	 ****************************************************************************/
	.bodySecondary .mainContent {
		padding-bottom: 10px;
	}

	.secondaryHeaderContainer {
		max-height: 560px;
		overflow: hidden;
		position: relative;
		z-index: 5;
	}

	.secondaryHeader {
		background: url('/images/secondary/secondary-header.jpg') center center no-repeat;
		background-size: cover;
		height: 0;
		padding-top: 31%;
		position: relative;
		
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
	}

	.bodySecondary .mainContent {
		background: #fff;
		padding-top: 30px;
	}

	.bodySecondary .mainContent > .wrap {
		position: relative;
	}
	
	
	/* columns */
	.secondaryColumns {
		display: table;
		margin: 15px 0 0 0;
	}
	
	.secondaryColumnsInner {
		display: table-row;
	}

	.secondaryColumnsInner .colFull {
		width: 100%;
	}

	.secondaryColumnsInner .col1 {
		display: table-cell;
		width: 100%;
		padding: 0 30px 15px 0;
	}

	.secondaryColumnsInner .col2 {
		background: #fff;
		display: table-cell;
		vertical-align: top;
	}

		.secondaryColumnsInner .col2 .cwHEader {
			margin-bottom: 10px;
		}

		.secondaryColumnsInner .col2 .cwContainer {
			background: #fff;
			min-width: 270px;
			margin-bottom: 20px;
			vertical-align: top;

			box-sizing: border-box;
			-webkit-box-sizing: border-box;
			-moz-box-sizing: border-box;
		}

		.secondaryColumnsInner .col2 .cwContainer:after {
			content: '';
			display: block;
			height: 1px;
			width: auto;
			margin-top: 30px;
			background: -moz-linear-gradient(left,  rgba(255,255,255,0) 0%, rgba(127,127,127,1) 50%, rgba(255,255,255,0) 100%);
			background: -webkit-linear-gradient(left,  rgba(255,255,255,0) 0%,rgba(127,127,127,1) 50%,rgba(255,255,255,0) 100%);
			background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(127,127,127,1) 50%,rgba(255,255,255,0) 100%);
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#00ffffff',GradientType=1 );
		}

		.secondaryColumnsInner .col2 .cwContainer:last-of-type:after {
			background: none;
		}

	/* lower columns */
	.secondaryColumnsLower {
		display: table;
		margin-bottom: 50px;
		margin-top: 50px;
		width: 100%;
	}

	.secondaryColumnsLower > div {
		display: table-row;
	}

	.secondaryColumnsLower > div .cwContainer {
		border-right: 15px solid #fff;
		display: table-cell;
		margin: 0;

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	
	.secondaryColumnsLower .cwContainer:last-of-type {
		border: none;
	}

	/* one item */
	.secondaryColumnsLower .cwContainer:first-child:nth-last-child(1) {
		width: auto;
	}

	/* two items */
	.secondaryColumnsLower .cwContainer:first-child:nth-last-child(2),
	.secondaryColumnsLower .cwContainer:first-child:nth-last-child(2) ~ .cwContainer {
		width: 50%;
	}

	/* three items */
	.secondaryColumnsLower .cwContainer:first-child:nth-last-child(3),
	.secondaryColumnsLower .cwContainer:first-child:nth-last-child(3) ~ .cwContainer {
		width: 33.3333%;
	}

	/* four items */
	.secondaryColumnsLower .cwContainer:first-child:nth-last-child(4),
	.secondaryColumnsLower .cwContainer:first-child:nth-last-child(4) ~ .cwContainer {
		width: 25%;
	}


	/* nav menus */
	.cwNavContainerMenu {
		display: none;
		margin-bottom: 20px;
	}
	
	.jumpLabel {
		position: absolute;
		left: -35000px;
	}

	.navSelectWrap {
		font-size: 1em;
		position: relative;
		display: inline-block;
		width: calc(100% - 4.1em);
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
	}

	.navSelectWrap select {
		outline: none;
		-webkit-appearance: none;
		display: block;
		padding: .3em 3em .4em .6em;
		margin: 0;
		transition: border-color 0.2s;
		border: 2px solid #245889;
		background: #fff;
		color: #555;
		line-height: normal;
		font-family: inherit;
		font-size: inherit;
		line-height: inherit;
		cursor: pointer;
		width: 100%;
	}

	.navSelectWrap .navSelectReplace {
		background: #fff;
		bottom: 2px;
		position: absolute;
		right: 2px;
		top: 2px;
		width: 50px;
		pointer-events: none;
	}

	.navSelectWrap .navSelectReplace:before {
		content: '';
		position: absolute;
		top: 50%;
		right: 8px;
		margin-top: -5px;
		pointer-events: none;
		border-top: 10px solid #245889;
		border-left: 10px solid transparent;
		border-right: 10px solid transparent;
	}

	.cwNavContainerMenu input[type='button'],
	.meetingMenuContainer input[type='button'] {
		outline: none;
		-webkit-appearance: none;
		display: inline-block;
		padding: .4em .6em .5em .6em;
		background: #245889;
		color: #fff;
		border: 0;
		margin-left: 12px;
		font-size: 1.1em;
		cursor: pointer;
		position: relative;
		top: 1px;
	}

		
	/* Meeting Portal
	 ****************************************************************************/		
	.agendaGroup {
		margin-bottom: 30px;
	}

	.meetingButtons {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 30px;
	}

	a.meetingButton {
		background: #3D6C3F;
		color: #fff;
		font-size: 1.5em;
		margin: 0 15px;
		padding: 6px 8px;
		text-align: center;
		
		flex-grow: 1;
		flex-shrink: 0;
		flex-basis: auto;
	}

	a.meetingButton:first-of-type {
		margin-left: 0;
	}

	a.meetingButton:last-of-type {
		margin-right: 0;
	}

	a.meetingButton:hover {
		color: #fff;
		background: #39933c;
	}
	
	.meetingButton .fal {
		margin-right: 8px;
		font-size: .9em;
	}

	.cwEventsDate ul.cwList div.bigDate {
		display: table-cell;
		padding-right: 4px;
		position: relative;
		text-align: center;
		vertical-align: center;
	}
	
	.cwEventsDate ul.cwList div.bigDate .month {
		line-height: 1;
		margin: 0;
		padding: 0;
		text-align: center;
		text-transform: uppercase;
		font-size: .9em;
	}
		
	.cwEventsDate ul.cwList li {
		margin: 0 0 20px 0;
	}

	.cwEventsDate ul.cwList li:last-of-type {
		margin: 0 0 0 0;
	}

	.cwEventsDate ul.cwList li .titleLink {
		display: table-cell;
		padding: 0 0 0 8px;
		vertical-align: center;
		width: 100%;
		margin-bottom: 30px;
	}

	.cwEventsDate ul.cwList li .titleLink a {
		text-decoration: underline;
	}

	.cwEventsDate ul.cwList li .titleLink a:hover {
		text-decoration: none !important;
	}

	.cwEventsList li i.fa {
		color: #919191;
	}

	#documentList table th:first-of-type {
		text-align: left;
	}

	table.sortable {
		border: 1px solid #dfdfdf;
	}

	table.sortable th {
		padding: 4px;
		border-bottom: 2px solid #dfdfdf;
		background: #fff;
	}

	table.sortable th:first-of-type{
		text-align: left;
	}

	table.sortable th:nth-of-type(2),
	table.sortable tr td:nth-of-type(2),
	table.sortable th:nth-of-type(3),
	table.sortable tr td:nth-of-type(3)  {
		text-align: center;
	}

	table.sortable th {
		font-size: 1.1em;
		font-weight: normal;
	}

	table.sortable .sort {
		cursor: pointer;
	}

	table.sortable .sort:after {
		font-family: 'FontAwesome';
		font-size: 1em;
		color: #333;
		font-weight: 300;
		content: "\f0dc";
		padding-left: 0.2em;
	}

	table.sortable .sort.asc:after {
		content: "\f0de";
		color: #d46e0c;
		font-weight: 700;
	}

	table.sortable .sort.desc:after {
		content: "\f0dd";
		color: #d46e0c;
		font-weight: 700;
	}

	table.sortable tr {
		border-bottom: 1px solid #dfdfdf;
	}


	table.sortable tr:nth-of-type(even) {
		background: #fff;
	}
	
	table.sortable tr:nth-of-type(odd) {
		background: #f7f7f7;
	}

	table.sortable tr:hover {
		background: #ffffc9 !important;
	}

	table.sortable td {
		padding: 4px;
	}

	table.sortable td .fa-file-pdf-o {
		color: #8c0000;
	}

	table.sortable td .fa-link {
		color: #2071c1;
	}

	table.sortable td .fa-file-word-o {
		color: #2b579a;
	}

	.pagination {
		display: inline-block;
		margin: 0;
		padding: 0;
	}

	.pagination li {
	  display:inline-block;
	  padding:5px;
	}

	.pagination li:first-child:nth-last-child(1) {
	    display: none;
	}

	.pagination li:first-of-type:before {
		content: 'Page: ';
		display: inline-block;
		margin-right: .5em;
	}



	/* Tabs
	 ****************************************************************************/
	#tabContainer, .meetingTabs {
		margin-top: 15px;
	}

	.tabReturn {
		display: none;
	}

	ul.tabs {
		display: flex;
		list-style-type: none;
		margin: 0;
		padding: 0;
	}

	li.tab {
		background: #1a2e53;
		color: #fff;
		cursor: pointer;
		font-size: 1.1em;
		list-style-type: none;
		margin: 0 4px 0 0;
		padding: 10px 15px;
		text-align: center;

		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: 0;
				
		transition: background .2s, color .2s;
		-moz-transition: background .2s,color .2s;
		-webkit-transition: background .2s, color .2s;
		-o-transition: background .2s, color .2s;
	}

		li.tab:last-of-type { 
			margin-right: 0;
		}

	li.tab:hover {
		background: #245889;
		color: #fff;
		
		transition: background .2s, color .2s;
		-moz-transition: background .2s,color .2s;
		-webkit-transition: background .2s, color .2s;
		-o-transition: background .2s, color .2s;
	}

	li.tab:hover span:before {
		color: #fff;
		
		transition: color .2s;
		-moz-transition: color .2s;
		-webkit-transition: color .2s;
		-o-transition: color .2s;
	}

	li.tab.active:hover span:before {
		color: #1a2e53;
	}

	#tabsContent, .meetingTabsContent {
		background: #f6f6f6;
		padding: 15px;
		position: relative;
		vertical-align: top;
		z-index: 10;
	}

	li.tab.active {
		background: #f6f6f6;
		color: #1a2e53;
		cursor: default;
	}

	div.content {
		padding: 0 15px 15px 15px;
		margin: 0;
	}

	.splitTab {
		float: left;
		width: 49%;
	}

	div.content .cwHeader {
		color: #333;
		display: none;
		font-size: 1.2em;
		font-weight: normal;
		padding-left: 0;
	}
	
	
	.tab span:before {
		color: #fff;
		display: inline-block;
		font-family: 'FontAwesome';
		font-size: 1.3em;
		display: block;
		margin: 0 auto;
		text-align: center;
		font-size: 1.8em;
	}
	
	.tab.active span:before {
		color: #1a2e53;
	}

	.tabEvents span:before {
		content: '\f133';
	}
	
	.tabServices span:before {
		content: '\f013';
	}
	
	.tabLinks span:before {
		content: '\f0c1';
	}
	
	.tabNews span:before {
		content: '\f1ea';
	}
	
	.tabAgendas span:before {
		content: '\f0f6';
	}

	.tabMinutes span:before {
		content: '\f0c5';
	}
	

	/* Footer
	 ****************************************************************************/
	.footer {
		background: url('/images/footer/aerial.jpg') center top no-repeat;
		background-size: cover;
		color: #fff;
		font-size: .8em;
		padding: 30px 0;
		position: relative;
	}	

	.footer h3 {
		color: #fff;
		margin-bottom: 0;
		text-transform: uppercase;
	}
	
	.footer a:link, .footer a:link:hover, .footer a:visited {
		color: #fff;
		text-decoration: underline;
	}
	
	.footer .fa {
		display: inline-block;
		margin-right: 4px;
	}

	.footer .footerColumn:nth-of-type(1) {
		float: left;
		width: 50%;
	}

	.footer .footerColumn:nth-of-type(1) img {
		float: left;
		margin-right: 20px;
	}

	.footer .footerColumn:nth-of-type(1) p {
		overflow: hidden;
	}

	.footer .footerColumn:nth-of-type(2) {
		float: right;
		text-align: right;
		width: 50%;
	}
	
	.footer .footerColumn:nth-of-type(2) p {
		text-align: right;
		margin-bottom: 0;
	}

	.footer .footerColumn:nth-of-type(2) p:last-of-type {
		font-size: 1.1em;
		margin: 25px 0 0 0;
	}
	
	#coreLogo {
		float: right;
		height: 45px;
		margin: 8px 0 0 8px;
		width: 100px;
		top: 0ex;
	}

	.footerColumn ul, .footerColumn ul li {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	.footerColumn ul li {
		border-right: 1px solid #fff;
		display: inline;
		margin: 0 4px 0 0;
		padding: 0 4px 0 0;
	}
	
	.footerColumn ul li:last-of-type {
		border: none;
		margin: 0;
		padding: 0;
	}
	
	
	
	
	/* Content Windows
	 ****************************************************************************/
	.cwHeader  {
		color: #333;
		font-size: 1.6em;
		margin-bottom: 10px;
	}

	.subtext {
		color: #444c54;
		font-size: .9em;
	}

	.secondaryColumns .column2 .cwHeader,
	.secondaryColumnsLower .cwHeader {
		background: #1e395b;
		color: #fff;
		font-family: "Lato";
		font-size: 1.35em;
		margin: 0 0 20px 0;
		padding: 10px;
		text-align: left;
	}

	.cwContainer .cwLink {
		font-weight: bold;
		text-transform: uppercase;
	}

	.cwList {
		list-style-type: none;
		margin: 0 0 0 0;
		padding: 0;
	}

	.cwNewList li, .cwList li {
		margin: 0 0 15px 0;
		padding: 0;
	}

	.secondaryColumns .column2 .cwList li,
	.secondaryColumns .column2 .cwNavList li {
		margin: 0 ;
		padding: 0 0 5px 0;
	}
	
	.cwColumns .cwColumnHalf:nth-of-type(odd) {
		float: left;
		width: 48%;
	}
	
	.cwColumns .cwColumnHalf:nth-of-type(even) {
		float: right;
		width: 48%;
	}
	
	.descContainer {
		margin-bottom: 20px;
	}
	
	/* Contact Content Window
	 ****************************************************************************/
	.cwContactHead {
		margin-bottom: 12px;
	}

	.cwContactHead .headPhoto {
		float: left;
		margin-right: 10px;
	}

	.cwContactHead .headPhoto img {
		max-width: 75px;
	}

	.cwContactHead .nameTitle {

	}

	.cwContactAddress {
		margin-bottom: 12px;
	}

	.cwContactList {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.cwContactList li {
		margin: 0 0 6px 0;
		padding: 0;
	}

	.cwContactList li:before,
	.cwDirectionsLink:before {
		color: #1a2e53;
		float: left;
		font-family: 'FontAwesome';
		font-size: 1.4em;
		height: 16px;
		margin: 0 13px 0 0;
		position: relative;
		text-align: center;
		text-decoration: none;
		top: -3px;
		width: 16px;
	}

	.cwAddressLabel {
		margin: 0;
	}

	.cwDirectionsLink {
		display: inline-block;
		margin-top: 6px;
	}

	.cwDirectionsLink:before {
		content: "\f041";
	}

	.tty:before {
		content: "\f1e4";
	}

	.telephone:before {
		content: "\f095";
	}
	.mobile:before {
		content: "\f10b";
	}
	.fax:before {
		content: "\f1ac";
	}

	.email:before {
		content: "\f0e0";
	}
	.staff:before {
		content: "\f0c0";
	}
	.hours:before {
		content: "\f017";
	}
	
	

	/* Meeting Portal
	 ****************************************************************************/		
	.meetingButtons {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-bottom: 30px;
	}

	a.meetingButton {
		background: #245889;
		color: #fff;
		font-size: 1.5em;
		margin: 0 15px;
		padding: 6px 8px;
		text-align: center;
		
		flex-grow: 1;
		flex-shrink: 0;
		flex-basis: auto;
	}

	a.meetingButton:first-of-type {
		margin-left: 0;
	}

	a.meetingButton:last-of-type {
		margin-right: 0;
	}

	a.meetingButton:hover {
		color: #fff;
		background: #123E91;
	}
	
	.meetingButton .fa {
		margin-right: 8px;
		font-size: .9em;
	}

	.cwEventsDate ul.cwList div.bigDate {
		display: table-cell;
		padding-right: 4px;
		position: relative;
		text-align: center;
		vertical-align: center;
	}
	
	.cwEventsDate ul.cwList div.bigDate .month {
		line-height: 1;
		margin: 0;
		padding: 0;
		text-align: center;
		text-transform: uppercase;
		font-size: .9em;
	}

	.cwEventsDate ul.cwList div.bigDate .day {
		font-size: 1.8em;
		font-weight: bolder;
		line-height: 1;
		font-size: 1.4em;
	}
	
	.cwEventsDate ul.cwList li {
		margin: 0 0 20px 0;
	}

	.cwEventsDate ul.cwList li:last-of-type {
		margin: 0 0 0 0;
	}

	.cwEventsDate ul.cwList li .titleLink {
		display: table-cell;
		padding: 0 0 0 8px;
		vertical-align: center;
		width: 100%;
		margin-bottom: 30px;
	}

	.cwEventsDate ul.cwList li .titleLink a {
		text-decoration: underline;
	}

	.cwEventsDate ul.cwList li .titleLink a:hover {
		text-decoration: none !important;
	}

	.eventTime {
		margin-top: 5px;
	}

	.eventTime:before, 
	.eventLocation:before {
		float: left;
		font-family: 'FontAwesome';
		font-size: 1.2em;
		height: 16px;
		margin: 0 10px 0 0;
		position: relative;
		text-align: center;
		text-decoration: none;
		width: 16px;
	}

	.eventTime:before {
		content: '\f017';
	}

	.eventLocation:before {
		content: '\f041';
	}

	.eventTime > div, 
	.eventLocation > div {
		overflow: hidden;
	}

	
	/* More Links
	 ****************************************************************************/
	a.feedLink {
		color: #FF6600;
		display: inline-block;
		font-family: 'FontAwesome';
		height: 1.5em;
		line-height: 1.5em;
		position: relative;
		text-align: center;
		text-decoration: none;
		top: 1px;
		width: 1.5em;
	}
	
	a.feedLink:hover {
		background-color: #FF6600;
		color: #fff;
	}

	.moreContainer {
		text-align: left;
	}

	a.moreLink {
		color: #fff;
		background: #245889;
		display: inline-block;
		font-size: .8em;
		padding: 6px 8px;
		display: inline-block;
		text-transform: uppercase;
	}
	
	a.moreLink:hover {
		color: #fff;
		background: #123E91;
	}
	

	/* Breadcrumbs
	 ****************************************************************************/
	#breadcrumbs {
		color: #333;
		font-size: .8em;
		margin: 0 0 30px 0;
	}

	#breadcrumbsInner a {
		text-decoration: none;
	}

	#breadcrumbsInner a:visited {
		/*color: #721010;*/
	}

	#breadcrumbsInner a:hover {
		text-decoration: none;
	}

	#breadcrumbsInner strong:last-of-type {
		font-size: 1.5em;
		text-transform: uppercase;
	}

	.breadStart {
		font-weight: bolder;
		margin-right: 8px;
	}

	.breadArrow {
		position: relative;
		margin: 0 8px;
	}

		
	.mainContent > .wrap { /* fix for margin on breadcrumbparent in egov applications */
		padding-top: 1px;
		margin-top: -1px;
	}

		
	/* Content Window Headers and Special Headers
	 ****************************************************************************/
	.sectionTitle {
		color: #fff;
		font-size: 1.9em;
		background: rgba(1,23,64,.75);
		text-align: center;
		font-weight: normal;
		margin: 0;
		margin-top: -2em;
		position: relative;
		z-index: 7;
		padding: .4em 10px;
	}
	
		.sectionTitle span {
			margin: 0;
		}

	
	/* Section List
	 ****************************************************************************/
	.cwSectionList {
		border: 1px solid #dfdfdf;
		display: table;
		margin-bottom: 15px;
		width: 100%;
		
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
		
	.cwSectionItem {
		display: table-row;
	}
	
	.cwSectionItem:nth-of-type(even) {
		background: #f7f7f7;
	}
	
	.cwSectionItem:nth-of-type(odd) {
		background: #fff;
	}

	.cwSectionItem:hover, .cwSectionItem:nth-of-type(odd):hover {
		background: #ffffc9;
	}
	
	.cwSectionLink, .cwSectionPhone, .cwSectionEmail, .cwSectionContentLink {
		border-bottom: 1px solid #dfdfdf;
		display: table-cell;
		padding: 5px;
	}
	
	.cwSectionItem:last-of-type .cwSectionLink, 
	.cwSectionItem:last-of-type .cwSectionPhone, 
	.cwSectionItem:last-of-type .cwSectionEmail,
	.cwSectionItem:last-of-type .cwSectionContentLink {
		border-bottom: none;
	}
	
	.cwSectionLink {
		text-align: left;
		width: 100%;
	}
	
	.cwSectionPhone, .cwSectionContentLink {
		white-space: nowrap;
	}
	
	.cwSectionPhone, .cwSectionEmail {
		text-align: right;
	}
	
	.cwSectionEmail a:link {
		font-family: 'FontAwesome';
		text-decoration: none;
	}

		
	
	/* Content Window Navigation Lists
	 ****************************************************************************/
	ul.cwNavList {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}
	
	ul.cwNavList li {
		padding: 5px 0 5px 0;
	}
	
	ul.cwNavList li:last-of-type {
		border-bottom: none;
	}
	
	/* nav menus */
	.cwNavContainerMenu {
		display: none;
		margin-bottom: 20px;
	}
	
	.jumpLabel {
		position: absolute;
		left: -35000px;
	}

	.cwNavContainerMenu select {
		width: 100%;
	}

	
	/* Special Classes
	 ****************************************************************************/
	a[href*=".pdf"]:after,
	.pdfLink:after {
		content: '\f1c1';
		font-family: "FontAwesome";
		margin-left: .7ex; 
		margin-right: 1ex;
		position: relative;
		color: #8c0000;
	}

	.projects a[href*=".pdf"]:after,
	.programs a[href*=".pdf"]:after {
		color: #fff;
		text-decoration: none;
	}

	/*external links*/
	.bodySecondary .mainContent a[href*="//"]:not([href*="www.boonegov.com"]):after {
		color: #b4bab8;
		content: "\f08e";
		font-family: "FontAwesome";
		font-size: .7em;
		margin-left: .4em;
		position: relative;
		top: .1em;
	}


	.socialLinkText {
		display: none;
	}

	/* link list */
	.linkSearchContainer {
		position: relative;
	}

	.linkSearchContainer:after {
		font-family: "FontAwesome";
		content: "\f002";
		color: #d6d6d6;
		font-size: 1.7em;
		position: absolute;
		right: 8px;
		top: -2;
		z-index: 5;
	}

	#linkList .search {
		border: 1px solid #d6d6d6;
		color: #686868;
		font-size: 1.3em;
		margin-bottom: 15px;
		padding: 5px 10px;
		width: 100%;
		position: relative;
		z-index: 4;

		box-sizing: border-box;
	}

	#linkList .search::-webkit-input-placeholder { /* WebKit, Blink, Edge */
		color: #686868;
		opacity: 1;
	}

	#linkList .search:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
		color: #686868;
		opacity: 1;
	}

	#linkList .search::-moz-placeholder { /* Mozilla Firefox 19+ */
		color: #686868;
		opacity: 1;
	}

	#linkList .search:-ms-input-placeholder { /* Internet Explorer 10-11 */
		color: #686868;
	}

	

	#linkList .list {
		list-style-type: none;
		margin: 0;
		padding: 0;
	}

	#linkList .list .linkGroup {
		background: ##6E8132 !important;
		color: #fff;
		font-weight: bold;
	}

	#linkList .list li {
		padding: 5px 10px;
		border: 1px solid #ccc;
		border-bottom: 0;
		font-size: 1.1em;
	}

	#linkList .list li:nth-of-type(odd):hover,
	#linkList .list li:nth-of-type(even):hover {
		background: #ffffc9;
	}

	#linkList .list li a {
		display: block;
	}

	#linkList .list li a:after {
		color: #999999;
		content: "\f138";
		float: right;
		font-family: "FontAwesome";
		font-size: 1.1em;
	}

	#linkList .list li:nth-of-type(even) {
		background: #f2f2f2;
	}

	#linkList .list li:nth-of-type(odd) {
		background: #fff;
	}


	#linkList .list li:last-of-type {
		border: 1px solid #d6d6d6;
	}

}


/********************************************************************************
 * Reposition Secondary Header
 ********************************************************************************/
@media screen and (max-width: 1550px) {

	/* Secondary Structure
	 ****************************************************************************/
	.secondaryHeader {
		height: 471px;
		padding-top: 0;

	}
}

/********************************************************************************
 * Reposition Header
 ********************************************************************************/
@media screen and (max-width: 1099px) {

	 /* Header
	 ****************************************************************************/
	.header {
		position: relative;
		margin-top: 40px;
	}

	.wrap {
		margin: 0 10px;
	 }

	/* Secondary Structure
	 ****************************************************************************/
	.secondaryHeader {
		height: 0;
		padding-top: 31%;
	}

	.serviceIcons {
		flex-wrap: wrap;
	}

	.serviceIcons a {
		max-width: 98%;
	}

}



/********************************************************************************
 * simple adjustment for 950px
 ********************************************************************************/
@media screen and (max-width: 950px) {

	/* Tabs
	 ****************************************************************************/
	.tabReturn {
		display: block;
	}
	

	/* Footer
	 ****************************************************************************/
	.footer .footerColumn:nth-of-type(1) img {
		display: block;
		float: none;
		margin: 0 auto;
	}

	.footer .footerColumn:nth-of-type(1),
	.footer .footerColumn:nth-of-type(2) {
		float: none;
		text-align: center;
		position: static;
		width: auto;
	}
	
	.footer .footerColumn:nth-of-type(2) p {
		text-align: center;
	}
	
	#coreLogo {
		display: block;
		float: none;
		margin: 15px auto 0 auto;
		top: 0;
	}
	
	.footerColumn ul li {
		text-align: center;
	}
	
}

/********************************************************************************
 * Simple change for column layout
 ********************************************************************************/
@media screen and (max-width: 850px) {

	/* Home Columns
	 ****************************************************************************/
	.homeColumns {
		display: block;
		padding: 0;
		width: auto;
	}

	.homeColumnsInner {
		display: block;
	}
	
	.homeColumnsInner > div:nth-of-type(even),
	.homeColumnsInner > div:nth-of-type(odd) 
	{
		display: block;
		margin-bottom: 30px;
		width: auto;
		padding: 0;
	}

	/* Projects and Programs
	 ****************************************************************************/
	.projects, .programs {
		margin-left: 0;
	}
	
	.projectsBackground, .programsBackground {
		left: 0;
	}

	/* columns lower */
	.secondaryColumnsLower, .secondaryColumnsLower > div {
		display: block;
	}

	.secondaryColumnsLower .cwContainer {
		border-right: none;
		display: block;

		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

}


/********************************************************************************
 * Content Break
 ********************************************************************************/
@media screen and (max-width: 750px) {
	.sectionTitle {
		margin-top: 0;
	}


	/* Search
	 ****************************************************************************/
	.searchWrapper {
		position: static;
		float: right;
		margin: 0;
		width: auto;
		position: relative;
		top: 3px;
	}

	/* Weather Social
	 ****************************************************************************/
	.weatherSocial {
		position: relative;
		float: left;
		top: -12px;
	}


	/* Secondary Structure
	 ****************************************************************************/
	/* columns */
	.secondaryColumns {
		display: block;
	}

	.secondaryColumns .col1 {
		display: block;
		width: auto;
		padding-right: 0;
	}

	.secondaryColumns .col2 {
		display: block;
		width: auto;
		margin-bottom: 10px;
	}

	.cwNavContainerList {
		display: none;
	}

	.cwNavContainerMenu {
		display: block;
	}

	.bodySecondary .serviceIconsContainer {
		width: auto;
	}


}


/********************************************************************************
 * small tablet portrait (600x800)
 ********************************************************************************/
@media screen and (max-width: 600px) {


	/* Breaking News
	 ****************************************************************************/	
	.breakingNewsContainer {
		padding: 10px;
	}
	
	.breakingNews {
		padding: 0;
	}
	
	.breakingNews .col1 {
		position: static;
		width: auto;
	}
	
	.breakingNews .col1 .cwHeader {
		margin: 0;
		padding: 0;
	}
	
	.breakingNews .col2 {
		margin-left: 0;	
		background: none;
		padding: 0;
	}


	/* Projects and Programs
	 ****************************************************************************/
	.projectsContainer, .programsContainer {
		border-right: none;
	}


	/* Home Page Events
	 ****************************************************************************/		
	.cwEventsHome .col1 {
		float: none;
		width: auto;
		margin-bottom: 30px;
	}

	.cwEventsHome .col2 {
		float: none;
		width: auto;
	}

}


/********************************************************************************
 * mobile landscape (480x320)
 ********************************************************************************/
@media screen and (max-width: 480px) {

	/* Search
	 ****************************************************************************/
	.searchWrapper {
		position: static;
		float: none;
		margin: 0;
		width: 100%;
		top: 3px;
		margin-top: 3px;
	}

	/* Weather Social
	 ****************************************************************************/
	.weatherSocial {
		margin: 0 auto;
		float: none;
		text-align: center;
		margin-top: 3px;
		margin-bottom: 3px;
	}


	/* Service Icons
	 ****************************************************************************/
	.serviceIcons a {
		margin: 0 0 10px 0;
		-webkit-flex: 0 1 48%;
		-ms-flex: 0 1 48%;
		flex: 0 1 48%;
	}
	

	/* Section List
	 ****************************************************************************/
	.cwSectionList {
		border: none;
		display: block;
	}
		
	.cwSectionItem {
		border: 1px solid #ddd;
		display: block;
		margin-bottom: 10px;
		padding: 10px;
	}
	
	.cwSectionItem:nth-of-type(odd) {
		background: #f9f9f9;
	}
	
	.cwSectionLink > a {
		font-size: 1.3em;
	} 
	
	.cwSectionLink, .cwSectionPhone, .cwSectionEmail, .cwSectionContentLink {
		border: none;
		display: block;
		padding: 0;
		text-align: left;
	}
	
	.cwSectionPhone {
		white-space: nowrap;
		padding: 5px 0;
	}
	
	.cwSectionPhone, .cwSectionEmail {
		text-align: left;
	}
	
	.cwSectionEmail a:link {
		font-family: 'FontAwesome';
		font-size: 1.6em;
	}
	

	/* Tabs
	 ****************************************************************************/
	#tabContainer, .tabContainerInner {
		display: block;
		width: auto;
	}

	.tabReturn {
		display: none;
	}

	ul.tabs {
		display: block;
	}

	ul.tabs li.tab {
		width: auto;
		margin-right: 0;
	}

	#tabsContent#tabsContent {
		display: block;
		padding: 5px;
	}

	div.content {
		padding: 0;
		margin: 0;
		position: relative;
		z-index: 10;
	}

	div.content .cwHeader {
		display: block;
	}

	.splitTab {
		float: none;
		width: auto;
	}


	/* Footer
	 ****************************************************************************/
	.footer .footerColumn:nth-of-type(odd) {
		float: none;
		min-width: 100%;
		text-align: center;
		
	}
	
	.footer .footerColumn:nth-of-type(even) {
		float: none;
		text-align: center;
	}
	
	
	.footer .footerColumn:nth-of-type(even) p {
		float: none;
		margin-top: 3px;
		text-align: center;
	}
	
	#coreLogo {
		display: block;
		float: none;
		height: 45px;
		margin: 1em auto 0 auto;
		width: 100px;
	}
	
	.footerColumn ul, .footerColumn ul li {
		margin: 0;
		padding: 0;
		list-style-type: none;
	}
	
	.footerColumn ul li {
		margin: 0 4px 0 0;
		padding: 0 4px 0 0;
		display: inline;
		border-right: 1px solid #364a5f;
	}
	
	.footerColumn ul li:last-of-type {
		border: none;
		margin: 0;
		padding: 0;
	}
		
}

/* Clear Fix
 ********************************************************************************/
.clearfix:before,
.clearfix:after {
	/* content: " "; /* 1 */ 
	display: table; /* 2 */
}

.clearfix:after {
	clear: both;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
	*zoom: 1;
}

.printOnly {
	display: none;
}
