.header-sub-text p {
	 margin-top:-20px;
}

/* For hiding dropdowns on "News Archive" page */
 #category-select, #tag-select, #year-select, #month-select, .archives-form .umkc-btn {
	 display:none;
}
#page_wrap { padding: 2em 0; }
.select ::-moz-selection {
	background: transparent;
}
.select ::selection {
	background: transparent;
}
.email_sig_item input {
	display: block;
	width: 100%;
	margin: 1rem 0;
	padding: 0.334rem;
	border: solid #DCE3E4 0.125rem;
	border-radius: 0;
	font: 1rem/1 "Roboto", helvetica, arial, sans-serif
	box-sizing: border-box;
	transition: 0.1s border-color ease-in;
}

.email_sig_item input:hover {
	border-color: #0066cc;
	transition: 0.1s border-color ease-out;
}

.email_sig_item input:focus {
	outline: none;
	border-color: #ffd52f;
	transition: 0.1s border-color ease-out;
}

.email_sig_item input::-webkit-input-placeholder {
	color: #63666a;
	font: "Roboto", helvetica, arial, sans-serif
}

.email_sig_item input:-moz-placeholder {
	color: #63666a;
	font: "Roboto", helvetica, arial, sans-serif
}

.email_sig_item input::-moz-placeholder {
	color: #63666a;
	font: "Roboto", helvetica, arial, sans-serif
}

.email_sig_item input:-ms-input-placeholder {
	color: #63666a;
	font: "Roboto", helvetica, arial, sans-serif
}

.email_sig_item .copy_container {
	display: inline-block;
}

.email_sig_item .preview {
	outline: 0.11rem dashed #b2b4b2;
	padding: 1rem;
	background: #fff;
	display: inline-block;
	-webkit-transition: all 500ms ease-in-out;
	transition: all 500ms ease-in-out;
}

.email_sig_item .noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
}

.email_sig_item .select {
	-webkit-touch-callout: all;
	-webkit-user-select: all;
	-moz-user-select: all;
	-ms-user-select: all;
	user-select: all;
	pointer-events: all;
}

.email_sig_item .sig_updated {
	transition: transform 500ms ease-out;
	-webkit-animation: sig_updated_anim 1300ms normal;
	animation: sig_updated_anim 1300ms normal;
}

.email_sig_item .sig_reupdated {
	-webkit-transform: none;
	transform: none;
	-webkit-animation: sig_updated_anim2 1300ms normal;
	animation: sig_updated_anim2 1300ms normal;
}

.email_sig_buttons_row {
	text-align: center;
	margin: 1em auto;
}

/* Animation Classes */
@keyframes sig_updated_anim {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes sig_updated_anim2 {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}