@charset "utf-8";


/* 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 8px 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: 300px;
}

/* This is the paragraph within which is used as a caption. */
.asideRight p{
	margin: 5px auto;
	color: #808080;
	font-size: 14px;
	font-family: Arial, Helvetica, sans-serif;
	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 8px 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: 300px;
}

/* 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;
	color: #808080;
	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{
	width: 95%;
	margin: 20px auto;
	text-align: center;
}

/* This is the image within. */
.fullWidthDiv img{
	max-width: 100%;
	max-height: 300px;
}

/* 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;
	color: #808080;
	text-align: left;
}

/* This is necessary to remove the underline around a linked image. */
.fullWidthDiv a:link{
	border-bottom: none;
}







/* 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 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;
}