@charset "utf-8";


/* This removes a preset right margin of 10px on all images in all articles. */
.page-article-show .body img{
	margin-right: auto;
}





/* This is for an image that floats to the right of adjacent content, and becomes full width on narrow screens. */
.asideRight{
	width: 50%;
	margin: 8px 0px 0px 8px;
	float: right;
	text-align: center;
}
/* These styles are applied on narrow screens. */
@media screen and (max-width: 700px){
    .asideRight{
		float: none;
		width: 80%;
		margin: 8px auto;
	}
}

/* This is the image within. */
.asideRight img{
	max-width: 100%;
	max-height: 400px;
}

/* This is the paragraph within which is used as a caption. */
.asideRight p{
	margin: 5px auto;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	color: #696969;
	text-align: left;
}

/* This is necessary to remove the underline around a linked image. */
.asideRight a:link{
	border-bottom: none;
}








/* This is for an image that floats to the left of adjacent content, and becomes full width on narrow screens. */
.asideLeft{
	width: 50%;
	margin: 8px 8px 0px 0px;
	float: left;	
	text-align: center;
}
/* These styles are applied on narrow screens. */
@media screen and (max-width: 700px){
	.asideLeft{
		float: none;
		width: 80%;
		margin: 8px auto;
    }
}

/* This is the image within. */
.asideLeft img{
	max-width: 100%;
	max-height: 400px;
}

/* This is the paragraph within which is used as a caption. */
.asideLeft p{
	margin: 5px auto;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	color: #696969;
	text-align: left;
}

/* This is necessary to remove the underline around a linked image. */
.asideLeft a:link{
	border-bottom: none;
}








/* This is a page-wide image and caption container. */
.fullWidthDiv{
	margin: 20px auto;
	text-align: center;
}

/* This is the image within. */
.fullWidthDiv img{
	max-width: 100%;
	max-height: 400px;
}

/* This is the paragraph within which is used as a caption. */
.fullWidthDiv p{
	margin: 5px auto;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
	color: #696969;
	text-align: left;
}

/* If an image or paragraph is a direct child of a fullWidthDiv, their widths are restricted to create a slight margin. But this does not affect paragraphs within intervening divs in case those divs have their own margins. */
.fullWidthDiv > img, .fullWidthDiv > p{
	max-width: 95%;
}

/* This is necessary to remove the underline on a linked image. */
.fullWidthDiv a:link{
	border-bottom: none;
}






/* This limits content to half-page width, expanding to full width for mobile. */
.halfWidthDiv{
	display: inline-block;
	width: 44%;	
	margin: 10px;
	vertical-align: top;
}
@media screen and (max-width: 700px){
	.halfWidthDiv{
		display: block;
		margin-bottom: 25px;
		width: 95%;		
	}
}







/* This is a pull quote which floats to the right of adjacent content, and becomes full width on narrow screens. */
.quoteRight{
	width: 40%;
	margin-left: 8px;
	margin-bottom: 8px;
	color: #007795;
	float: right;
	font-size: 18px;
	text-align: left;
	font-weight: bold;
}
/* These styles make it page wide on narrow screens. */
@media screen and (max-width: 700px){
	.quoteRight{
		float: none;
		width: 80%;
		margin: 8px auto;
	}
}








/* This is a pull quote which floats to the left of adjacent content, and becomes full width on narrow screens. */
.quoteLeft{
	width: 40%;
	margin-right: 8px;
	margin-bottom: 8px;
	padding: 0px;
	color: #007795;
	float: left;
	font-size: 18px;
	text-align: left;
	font-weight: bold;
}
/* These styles make it page wide on narrow screens. */
@media screen and (max-width: 700px){
	.quoteLeft{
		float: none;
		width: 80%;
		margin: 8px auto;
	}
}





/* This is a page-wide pull quote. */
.fullWidthQuote{
	width: 80%;
	margin: 20px auto;
	padding: 0px;
	color: #007795;
	font-size: 18px;
	text-align: left;
	font-weight: bold;
}





/* This contains links to other articles, keyword pages, or topic pages, near the top of articles. */
.linksDiv{
	margin: 0px 0px 8px 8px;
	float: right;
	text-align: center;
}
@media screen and (max-width: 1200px){
	.linksDiv{
		display: block;
		float: none;
		margin: 8px auto;
	}
}

.linksDiv div{
	display: inline-block;
	margin: 0px auto;
	text-align: left;
	vertical-align: top;
}

.linksDiv p{
	margin: 8px auto 0px auto;
	color: #c41230;
	font-size: 18px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.2;
	text-align: left;
}

.linksDiv p:nth-of-type(1){
	margin-top: 0px;
}

.linksDiv a:link, .linksDiv a:visited{
	color: #007795;
	text-decoration: none;
	border-bottom: none;
}

.linksDiv a:hover{
	color: #c41230;
}





/* This contains a big blue button used for prominent links. */
.buttonContainer{
	margin: 20px auto;
	text-align: center;
}

.buttonContainer a{
	text-decoration: none;
}

/* This is a big blue button. */
.linkButton{
	display: inline-block;
	margin: 0px auto;
	padding: 6px 12px;
	background-color: #007795;
	color: #ffffff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1.2;
}

.linkButton:hover{
	background-color: #179ebe;
}






/* This is the link to the current issue at the bottom of articles. */
.issueLink{
	margin-top: 15px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
}





/* This is the page wide transparent gray background for image modals. */
#imageModalBackground{
	display: none;
	padding-bottom: 40px;
	z-index: 2000000;
	width: 100%; 
	height: 100%; 
	position: fixed; 
	top: 0px; 
	left: 0px;
	background-color: rgba(48,48,48, 0.9);
	overflow: scroll;
	text-align: center;
}



/* This is the image within the modal. */
#imageModalBackground img{
	margin: 0px auto;
	max-width: 95%;
	border: 2px solid #ffffff;
	background-color: #ffffff;
	animation: imageModalZoomIn .25s;
}



/* This is the close icon. */
#imageModalClose{
	margin: 8px auto;
	padding: 5px;
	width: 30px;
	font-size: 18px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.0;
	color: #ffffff;
	background-color: #000000;
	border: 1px solid #ffffff;
	border-radius: 50%;
	cursor: pointer;
}

#imageModalClose:hover{
	background-color: #ffffff;
	color: #000000;
}



/* This contains optional image captions within the modal. */
#imageCaptionContainer{
	display: none;
	margin: 10px auto 0px auto;
	padding: 10px;
	background-color: #ffffff;
	max-width: 90%;
	animation: imageModalZoomIn .25s;
}



/* This applies to the images on the page which are clicked to open the modal. */
.modalImage:hover{
	cursor: pointer;
	opacity: 0.8;
}



/* Apply imageModalZoomIn to the animation property of both "#imageModalBackground img" and "#imageCaptionContainer" for a zoom-in effect. */
@keyframes imageModalZoomIn{
	from{
		transform: scale(0.75);
	}
	to{
		transform: scale(1.0);
	}
}



/* Apply imageModalFadeIn to the animation property of both "#imageModalBackground img" and "#imageCaptionContainer" for a fade-in effect. */
@keyframes imageModalFadeIn{
	from{
		opacity: 0;
	}
	to{
		opacity: 1;
	}
}