.prose {
	/* Overall layout */
	margin: 2rem auto;
	max-width: 100ch;
	padding: 0 1rem;
	/* Font (Typography defaults) */
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #111827;
}

/* Headings */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
	font-weight: 700;
	line-height: 1.25;
	margin-top: 1.5em;
	margin-bottom: 0.5em;
	color: #000000;
}

.prose h1 {
	font-size: 2.25rem;
	margin-top: 2rem;
}

.prose h2 {
	font-size: 1.75rem;
}

.prose h3 {
	font-size: 1.5rem;
}

.prose h4 {
	font-size: 1.25rem;
}

/* Paragraphs */
.prose p {
	margin-bottom: 1em;
}

/* Links */
.prose a {
	color: #1d4ed8;
	text-decoration: underline;
}

/* Lists */
.prose ul {
	list-style-type: disc;
	padding-left: 1.5rem;
	margin-bottom: 1em;
}

.prose ol {
	list-style-type: decimal;
	padding-left: 1.5rem;
	margin-bottom: 1em;
}

.prose li {
	margin-bottom: 0.5em;
}

/* Miscellaneous */
.prose blockquote {
	border-left: 4px solid #e5e7eb;
	padding-left: 1rem;
	margin: 1em 0;
	color: #374151;
	font-style: italic;
}

.prose strong {
	font-weight: 700;
}

.prose em {
	font-style: italic;
}

.align-center {
  text-align: center; }
  
  
  
footer {
  padding: 40px 0;
  background-color: #eee; }
  footer .socicon {
    margin-top: 1rem; }
  footer .sprites {
    width: 53px;
    height: 55px;
    display: inline-block;
    background-image: url(../../images/icon-sprite.jpg);
    background-repeat: no-repeat;
    background-position: 0 0;
    margin-right: 0.4rem;
    transition: all 200ms ease 0s; }
  footer .facebook:hover {
    background-position: 0 100%; }
  footer .tumblr {
    background-position: -61px 0; }
  footer .tumblr:hover {
    background-position: -61px 100%; }
  footer .pinterest {
    background-position: -121px 0; }
  footer .pinterest:hover {
    background-position: -121px 100%; }
  footer .twitter {
    background-position: -182px 0; }
  footer .twitter:hover {
    background-position: -182px 100%; }
  footer .youtube {
    background-position: -244px 0; }
  footer .youtube:hover {
    background-position: -244px 100%; }
  footer .linkedin {
    background-position: -306px 0; }
  footer .linkedin:hover {
    background-position: -306px 100%; }
  footer .v {
    background-position: -366px 0; }
  footer .v:hover {
    background-position: -366px 100%; }
  footer .googleplus {
    background-position: 100% 0; }
  footer .googleplus:hover {
    background-position: 100% 100%; }

.copy {
  padding: 1rem;
  background: #f5f5f5; }

/*PDF Display CSS START**/
.loader {
	border: 16px solid #f3f3f3;
	border-radius: 50%;
	border-top: 16px solid #3498db;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
}

.popup-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: white;
	width: 90%;
	height: 90%;
	padding: 5px 5px;
}

.close-button {
	float: right;
	background: none;
	border: none;
	font-size: 25px;
	cursor: pointer;
	margin-right : 10px;
	padding: 0 10px;
}

.close-button:hover {
  background-color: #cec9c9;
  border-radius: 50%;
  
}

.anchorTag {
	color: #007bff;
	text-decoration: none;
	font-size: 13px;
	padding: 5px 10px;
	margin: -3px auto;
}

.anchorTag:hover {
	text-decoration: underline;
}

.socicon a {
    display: inline-block;
    position: relative;
    width: 53px; /* Set the width */
    height: 55px; /* Set the height */
    overflow: hidden; /* Hide the overflow */
    border-radius: 50%;
}

.socicon a img {
    display: block;
    width: 100%;
    height: 100%;
    transition: transform 200ms ease, opacity 200ms ease;
    position: absolute;
    top: 0;
    left: 0;
}

.socicon a img.default {
    z-index: 1;
    opacity: 1;
}

.socicon a img.hover {
    z-index: 0;
    opacity: 0;
    transform: translateY(100%);
}

.socicon a:hover img.default {
    opacity: 0;
    transform: translateY(-100%);
}

.socicon a:hover img.hover {
    opacity: 1;
    transform: translateY(0);
}

/*PDF Display CSS END**/
