@charset "utf-8";
/* CSS Document */


body {
	font-family: Verdana, Geneva, sans-serif;
	max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
	
/*	
	margin-left: 20px;
	margin: 0 auto;*/ /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
	
	margin-left: 5%; margin-right: 5%;	
}

h1 {
	text-align: center;
	font-style: italic;
}


figure {
	margin:auto;
	position:relative;
/*	width:400px;*/
	width: var(--w);
	overflow:hidden;
}

figcaption {
	font-size: smaller; 
	margin:auto;
	position:relative;
/*	width:300px;*/
	width: var(--w);
	overflow:hidden;
	text-align: left;	
}

figure.blank {
/*
	margin: auto;
	position:relative;
	*/
	text-align:center;
}
figcaption.wide {
	text-align: left;
	margin-left: 12.5%;
	margin-right: 12.5%;
}

img.center {
    display: block;
    margin: 0 auto;
}

.science {
	font-size: smaller;	
}

aside {
/*following is default blockquote*/
	display: block;
	margin-top: 1em;
	margin-bottom: 1em;
	margin-left: 40px;
	margin-right: 40px;	
/**/
	font-size: smaller;	
}

.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}


.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

