/* COLORS */
/* COLORS */
/* COLORS */
/*
#ee9800 (orange)
#2ca3ff  (blue)
#6db960  (green)


#ffba00		yellow
#f8dc93		pale yellow (bg)
#f2f2f2		light gray (bg)
#ebebeb		gray (btn)
#394e5f		Slate Blue
#3d3d3d		dark gray (font)
*/

body {
	position: relative;
	background-color: #f2f2f2;
	color: #3d3d3d;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	min-width: 345px;
	/*overflow: -moz-scrollbars-vertical;*/
	overflow-y: scroll;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-overflow-scrolling: auto;
}

h1, h2, h3, h4 {
	border: 0;
	margin: 0;
	margin-bottom: 1em;
	padding: 0;
}
h1 {
	color: #3d3d3d;
	font-size: 28px;
	font-weight: 900;
	line-height: 36px;
}
h2 {
	color: #3d3d3d;
	font-size: 24px;
	font-weight: 600;
	line-height: 30px;
}
h3 {
	color: #3d3d3d;
	font-size: 20px;
	font-weight: 600;
	line-height: 24px;
}
h4 {
	border-bottom: 1px dashed #ccc;
	color: #3d3d3d;
	font-size: 14px;
	font-weight: 900;
	line-height: 18px;
	/*text-transform: uppercase;*/
	padding-bottom: 10px;
}

body>.backdrop {
	position: fixed;
	left: 0;
	top: 0;
	
	/*background-image: url('../images/bg_home_page.jpg');*/
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: 200%;
	height: 100%;
	height: 100vh;
	min-height: 900px;
	min-width: 320px;
	opacity: 1;
	width: 100%;
	width: 100vw;
	z-index: -2;
}
.backdrop:before {
	content: " ";
	
	position: absolute;
	bottom: 0;
	z-index: 10;
	
	display: block;
	height: 300px;
	width: 100%;
	
	background-image: -webkit-linear-gradient(top,rgba(242,242,242,.0001) 0,rgba(242,242,242,1) 100%);
	background-image: -o-linear-gradient(top,rgba(242,242,242,.0001) 0,rgba(242,242,242,1) 100%);
	background-image: -webkit-gradient(linear,right top,right bottom,from(rgba(242,242,242,.0001)),to(rgba(242,242,242,1)));
	background-image: linear-gradient(to bottom,rgba(242,242,242,.0001) 0,rgba(242,242,242,1) 100%);
}

body.seed-1>.backdrop { background-image: url('../images/bg_01.jpg'); }
body.seed-2>.backdrop { background-image: url('../images/bg_02.jpg'); }
body.seed-3>.backdrop { background-image: url('../images/bg_03.jpg'); }
body.seed-4>.backdrop { background-image: url('../images/bg_04.jpg'); }
body.seed-5>.backdrop { background-image: url('../images/bg_05.jpg'); }
body.seed-6>.backdrop { background-image: url('../images/bg_06.jpg'); }
body.seed-7>.backdrop { background-image: url('../images/bg_07.jpg'); }
body.seed-8>.backdrop { background-image: url('../images/bg_08.jpg'); }

@media only screen and (min-width : 480px) {
	body>.backdrop {
		background-size: 150%;
	}
}
@media only screen and (min-width : 768px) {
	body>.backdrop {
		background-size: contain;
	}
}
@media only screen and (min-width : 1200px) {
	body>.backdrop {
		background-size: cover;
	}
	body>.backdrop .backdrop-inner {
		overflow: hidden;
		width: 430px;
		-webkit-filter: blur(4px);
		filter: blur(4px);
	}
	body>.backdrop .backdrop-inner::after {
		content: ' ';
		
		/*background-image: url('../images/bg_home_page.jpg');*/
		background-repeat: no-repeat;
		background-position: 50% 0;
		background-size: cover;
		display: block;
		/*height: 100%;*/
		height: 100vh;
		min-height: 900px;
		min-width: 320px;
		opacity: 0.8;
		/*width: 100%;*/
		width: 100vw;
		z-index: -1;
	}
	body.seed-1>.backdrop .backdrop-inner::after { background-image: url('../images/bg_01.jpg'); }
	body.seed-2>.backdrop .backdrop-inner::after { background-image: url('../images/bg_02.jpg'); }
}

a {
	color: #547ea2;
	font-family: 'Lato', sans-serif;
	/*font-weight: 700;*/
	transition: background-color .2s, color .2s;
}
a:link, a:visited {
	color: #547ea2;
}
a:hover, a:active, a:focus {
	color: #547ea2;
	text-decoration: underline;
}

.btn {
	border-radius: 0;
	border-width: 0;
}


/* MAIN */
main {
	/*background-color: rgba(0, 255, 0, 0.5);*/
	margin: 0 auto;
	max-width: 970px;
	padding: 20px;
}
@media only screen and (min-width : 1200px) {
	main {
		max-width: 1030px;
		padding: 30px 50px;
	}
}

/* FOOTER */
footer {
	color: #888;
	font-size: 16px;
	margin: 0 auto;
	max-width: 970px;
	padding: 0px 20px;
}
@media only screen and (min-width : 1200px) {
	footer {
		max-width: 1030px;
		padding: 0px 50px;
	}
}
footer .footer-links {
	border-top: 1px solid #888;
	padding: 20px 0;
}
footer a, footer a:link, footer a:visited {
	color: #888;
}
footer a:hover, footer a:active, footer a:focus {
	color: #aaa;
	text-decoration: none;
}


/* RELATED LINKS */
.related-links h3 {
	border-bottom: 1px solid #d8d8d8;
	color: #3d3d3d;
	font-size: 30px;
	font-weight: bold;
	margin: -20px -20px 0px;
	padding: 20px;
	text-align: center;
	
	background: #fff;
	background: -webkit-linear-gradient(#fff, #f5f5f5);
	background: -o-linear-gradient(#fff, #f5f5f5);
	background: -moz-linear-gradient(#fff, #f5f5f5);
	background: linear-gradient(#fff, #f5f5f5);

	-webkit-box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.95);
	-moz-box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.95);
	box-shadow: inset 0px -1px 0px 0px rgba(255, 255, 255, 0.95);
}
/*.related-links h3 span {
	font-weight: 900;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}*/
@media (min-width: 768px) {
	.related-links h3 {
		margin: -40px -40px 0;
		padding: 40px;
	}
}
.related-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.related-links ul li a, .related-links ul li a:link, .related-links ul li a:visited {
	color: #394e5f;
	border-bottom: 1px dashed #d8d8d8;
	display: block;
	font-size: 20px;
	font-style: italic;
	line-height: 20px;
	padding: 10px 0;
}
.related-links ul li a:hover, .related-links ul li a:active, .related-links ul li a:focus {
	color: #547ea2;
	text-decoration: none;
}
.related-links ul li:first-child a {
	border-top: 1px dashed #d8d8d8;
	margin-top: 20px;
}
@media (min-width: 768px) {
	.related-links ul li:first-child a {
		margin-top: 40px;
	}
}


/* SUBPAGE */
.page-head {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	
	background-color: rgba(0, 0, 0, .5);
	border-radius: 5px 5px 0 0;
	margin-bottom: 0px;
	padding: 20px 10px 0px;
}
.page-head h1 {
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	line-height: 30px;
	margin: 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
	text-transform: uppercase;
}
/*.page-head::before, .page-head::after {
	content: " ";
	
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
	flex-grow: 1;
	height: 12px;
}*/

/*
Cookie Crumb:   16px,   color: rgba(255,255,255,.65),   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
Cookie Crumb a:hover:  color: rgba(255,255,255,1),
*/
.page-info {
	background-color: rgba(0, 0, 0, .5);
	border-radius: 0 0 5px 5px;
	margin-bottom: 1em;
	padding: 0px 10px 20px;
	text-align: center;
}
.page-info ul {
	color: rgba(255, 255, 255, .65);
	font-size: 16px;
	line-height: 20px;
	list-style: none;
	margin: 0;
	padding: 0;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.page-info ul>li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.page-info .cookie-crumbs li:before {
	content: " / ";
	display: inline;
}
.page-info .cookie-crumbs li:first-child:before {
	display: none;
}
.page-info ul>li a, .page-info ul>li a:link, .page-info ul>li a:visited {
	color: rgba(255, 255, 255, .65);
}
.page-info ul>li a:hover, .page-info ul>li a:active, .page-info ul>li a:focus {
	color: #fff;
	cursor: pointer;
	text-decoration: none;
}


.subpage .content-wrapper {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, .15);
	margin-bottom: 15px;
	padding: 20px;
	overflow: hidden;
}
@media only screen and (min-width : 768px) {
	.subpage .content-wrapper {
		padding: 40px;
	}
}

.subpage .subpage-sidebar {
	background-color: #fff;
	border-radius: 3px;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, .15);
	margin-bottom: 15px;
	padding: 20px;
	overflow: hidden;
}
@media only screen and (min-width : 768px) {
	.subpage .subpage-sidebar {
		padding: 40px;
	}
}

/* "column-count" changed from 2 to 1 */
@media only screen and (min-width : 768px) {
	article.post>.content {
		-webkit-column-count: 1;
		-moz-column-count: 1;
		column-count: 1;
		-webkit-column-gap: 20px;
		-moz-column-gap: 20px;
		column-gap: 20px;
	}
}


.post .embed-responsive {
	margin-bottom: 20px;
}
.recordList .media .embed-responsive {
	margin: 20px;
}

/* bootstrap updates */
.embed-responsive {
	background-color: #f8f8f8;
	position: relative;
	display: block;
	height: 0;
	padding: 0;
	overflow: hidden;
}
/* home-featured image size: 460h / 650w = 0.70769 */
.embed-responsive-feature {
	padding-bottom: 70.75%;
}
.embed-responsive-16by9 {
	padding-bottom: 56.25%;
}
.embed-responsive-4by3 {
	padding-bottom: 75%;
}
.embed-responsive-1by1 {
	padding-bottom: 100%;
}
.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.embed-responsive .video-play-btn {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	
	background-image: url(../images/trans-1by1-play.png);
	background-position: center;
	background-size: cover;
	cursor: pointer;
}

/* plyr overrides */
.plyr .plyr__play-large {
	opacity: 0;
}

.content img {
	max-width: 100%;
    height: auto;
}

.radio-inline, .checkbox-inline {
	margin-top: 0;
}

.btn-primary {
	border: 1px solid #d8d8d8;
	border-radius: 2px;
	font-size: 18px;
	font-weight: normal;
	/*height: 50px;*/
	/*line-height: 50px;*/
	padding: 5px 25px;
	/*text-transform: uppercase;*/
}
a.btn-primary, a.btn-primary:link, a.btn-primary:visited {
	background-color: #ebebeb;
	/*border-color: #d8d8d8;*/
	color: #3d3d3d;
}
a.btn-primary:hover, a.btn-primary:active, a.btn-primary:focus {
	background-color: #394e5f;
	border-color: #394e5f;
	color: #fff;
	text-decoration: none;
}

.navButtons ul li a.btn_assistance, .navButtons ul li a.btn_request-jerrys-assistance { background-image: url('../images/connect_icon_assistance.png'); }
.navButtons ul li a.btn_dc, .navButtons ul li a.btn_visiting-dc { background-image: url('../images/connect_icon_dc.png'); }
.navButtons ul li a.btn_email, .navButtons ul li a.btn_e-mail-senator-moran { background-image: url('../images/connect_icon_email.png'); }
.navButtons ul li a.btn_facebook { background-image: url('../images/connect_icon_facebook.png'); }
.navButtons ul li a.btn_flags, .navButtons ul li a.btn_flag-requests { background-image: url('../images/connect_icon_flags.png'); }
.navButtons ul li a.btn_internships { background-image: url('../images/connect_icon_internships.png'); }
.navButtons ul li a.btn_newsletter, .navButtons ul li a.btn_e-newsletter-signup { background-image: url('../images/connect_icon_newsletter.png'); }
.navButtons ul li a.btn_nominations, .navButtons ul li a.btn_academy-nominations { background-image: url('../images/connect_icon_nominations.png'); }
.navButtons ul li a.btn_rss { background-image: url('../images/connect_icon_rss.png'); }
.navButtons ul li a.btn_scheduling, .navButtons ul li a.btn_scheduling-requests { background-image: url('../images/connect_icon_scheduling.png'); }
.navButtons ul li a.btn_twitter { background-image: url('../images/connect_icon_twitter.png'); }
.navButtons ul li a.btn_youtube { background-image: url('../images/connect_icon_youtube.png'); }


.page_kansas-listening-tour article.past {
   background-color: #f5f5f5;
   padding: 30px;
}
	.pastVisits {
		display: none;
	}
	.page_kansas-listening-tour .pastVisits{
		display: block;
		text-align: center;
   		margin-bottom: -20px;
	}

.post-image { margin: 0 auto 1em; width: 45%; }
/*.post-image img { border-radius: 6px; width: 100%; height:auto; }
.post-image-modal { border-radius: 0; top:10%; }
.post-image-modal img { width: 100%; display:block; }*/


/*Form Footer Buttons*/
.forms .buttonHolder {
    padding-top: 20px;
}
.forms .btn {
  padding: 10px 20px;
  font-size: 18px;
}
.forms .btn-default {
  background-color: #f2f2f2;
}

/*Add bottom margin to field sets*/
.forms fieldset {
  margin-bottom: 30px;
}

/*Modify the Field set headers*/
.forms legend {
  border-bottom: 1px solid #e5e5e5;
  border-bottom: 2px solid #ccc;
  font-weight: 900;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 20px;
}

/*Top button tabs*/
.forms .btn-group-justified>.btn,.btn-group-justified>.btn-group {
  background: #f2f2f2;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: 700;
  color: inherit;
}

.forms .control-label {
	display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}

/*Top button tabs hovers and active tabs*/
.forms .btn-group>.btn:hover,.forms .btn-group-vertical>.btn:hover,.forms .btn-group>.btn:focus,.forms .btn-group-vertical>.btn:focus,.forms .btn-group>.btn:active,.forms .btn-group-vertical>.btn:active,.forms .btn-group>.btn.active,.forms .btn-group-vertical>.btn.active {
  background: #547ea2;
  color: #fff;
}
