@charset "utf-8";
/* -------------------- css reset -------------------- */
/* Eric Meyer css reset 
 *	http://meyerweb.com/eric/tools/css/reset/ 
 *	v2.0 | 20110126
 *	License: none (public domain)
*/

html, body, div, span, applet, object, iframe, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	vertical-align: baseline;
	text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1em;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* end Eric Meyer css reset */

/* Michael Whyte css reset */

/* Set Box Sizing to border box on every element */

* {
	-webkit-box-sizing: border-box;	
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* end Michael Whyte css reset */
/* -------------------- end css reset -------------------- */

h1, h2, h3 {
	text-align: center;
}
h1 {
	font-size: 1.75em;
	line-height: 1.755em;
	margin: 5px;
}
h2 {
	font-size: 1.5em;
	line-height: 1.55em;
	margin: 5px;
}
h3 {
	font-size: 1.1em;
	line-height: 1.35em;
	margin: 3px;
}
article h2 {
	margin: 0 0 10px;	
}
h4 {
	font-size: 1.25em;
	margin: 3px;
}
table {
	margin-left:auto;
	margin-right:auto;
	border-spacing: 20px;
}
th, td {
	text-align: center;
	padding: 10px;
}

/*positioning classes*/
.floatLeft {
	float: left;
}
.floatRight {
	float: right;
}
.floatCenter {
    display: block;
    margin: auto;
}
img.ht250px {
	height: 250px;
	padding: 5px;
}
img.ht200px {
	height: 200px;
	padding: 5px;
}
img.ht150px {
	height: 150px;
	padding: 5px;
}
img.ht100px {
	height: 100px;
	padding: 5px;
}
img.galleryImage {
	margin: 20px 0px 20px;
}
img.percent100 {
	width: 100%;
	padding: 5px;
}
img.percent15 {
	width: 15%;
	padding: 5px;
}
img.percent35 {
	width: 35%;
	padding: 5px;
}
img.percent80 {
	width: 80%;
	padding: 5px;
}
div.percent30 {
	width:30%;
}
div.percent70 {
	width:68%;
}
.imageStack img {
	display:block;
}

/* ----------------------- styling navigation menu ----------------------- */
/* typography styles */

.page_nav {
	height: 40px;
}
.page_nav ul {
	list-style-type: none;
	padding: 0;
}
/*.page_nav a {
	display: block;
	text-decoration: none;
	line-height: 32px;
	color: #FFFFFF;
	text-align: center;
	border-left: 2px;
	border-right: 2px;
}
*/
/*Strip the ul of padding and list styling*/
.page_nav ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	z-index: 20;
}
/*Create a horizontal list with spacing*/
.page_nav li {
	display: inline-block;
	float: left;
	margin-right: 30px;
}
/*Style for top level menu links*/

.page_nav li a {
	display: block;
	min-width: 90px;
	height: 40px;
	text-align: center;
	color: #F5F0E4;
	text-decoration: none;
	padding: 10px 5px;
}

/*Hover state for top level menu links*/
.page_nav li:hover a {
	background: #008700;
	color: #F5F0E4;
}
/*Style for dropdown links*/
.page_nav li:hover ul a {
	background: #F5F0E4;
	color: #4D473B;
	height: 40px;
	line-height: 40px;
}
.page_nav li  ul  a > i {
	color: #333333;
	font-weight: normal;
}
/*Hover state for drop down links*/
.page_nav li:hover ul a:hover {
	background: #008700;
	color: #F5F0E4;
	font-weight: normal;
}
.page_nav li:hover ul a:hover i {
	background: #008700;
	color: #F5F0E4;
	font-weight: normal;
}
/*Hide dropdown links until they are needed*/
.page_nav li ul {
	display: none;
}
/*Make dropdown links vertical*/
.page_nav li ul li {
	display: block;
	float: none;
}
/*Set dropdown anchors width*/
.page_nav li ul li a {
	width: 180px;
	padding: 0 20px;
	font-weight: normal;
}
/*Display the dropdown on hover*/
.page_nav ul li a:hover + .hidden, .hidden:hover {
	display: block;
}
/*Style 'show menu' label button and hide it by default*/
.page_nav .show-menu {
	text-decoration: none;
	color: #F5F0E4;
	background: #4D473B;
	text-align: center;
	padding: 10px 5px;
	display: none;
}
/*Hide checkbox*/
.page_nav input[type=checkbox]{
    display: none;
}
/*Show menu when invisible checkbox is checked*/
.page_nav input[type=checkbox]:checked ~ #menu{
    display: block;
}

/* ------------------- General Elements Styling ----------------------- */
p, li, a, figcaption {
	line-height: 1.1em;
	font-size: 0.95em;
	text-align: left;	
}
em {
	font-style: italic;
}
strong {
	font-weight: bold;	
}
sup { 
	vertical-align: top; 
	position: relative; 
	top: -0.35em; 
}
a {
	color: #008700;
	font-weight: bold;
}
a:hover {
	color: #00ff00;
	font-weight: bold;
}
a i {
	color: #008700;
	font-weight: bold;
}
a:hover i {
	color: #00ff00;
	font-weight: bold;
}
blockquote {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.1em;
	line-height: 1.25em;
	font-weight: bold;
}


/* ------------------- body styles ------------------- */
body {
	margin: 0 auto;
/*	max-width: 1200px; */
	background-color: #FFFFFF;	
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	text-align: left;
}
header {
	margin: 0;
	padding-bottom: 0;
	background-color: #4D473B;
	overflow: hidden;
	border-bottom: 1px solid #4D473B;
	
}
#container {
   min-height:100%;
   position:relative;
}
#body {
	padding: 10px;
}
footer {
	height: 55px;
	clear: both;
	border-top: 1px solid #4D473B;
}
footer p#copyright {
	margin-left: 10px;
}
/* end body styles */

ol.instructions {
	list-style-type: decimal;
	margin: 0 0 0 2em;
}
li.instructions {
	
}
/* ------------------- sidebar styles ------------------- */
div#sidebar {
	width: 15%;
	float: Right;
}
div#sidebar img {
	width: 95%;
	margin: 5px;
}
/* ------------------- figure styles ------------------- */
figure {
	margin: 10px;
}
figure.percent20 {
	width: 20%;
}
figure.percent30 {
	width: 30%;
}
figure.percent40 {
	width: 40%;
}
figure img {
	width:95%;
}
figcaption {
	font-size: 0.75em;
	font-style: italic;	
}

/* ------------------- content styles ------------------- */
.content {
	background-color: #FFFFFF;
}
article {
	position: relative;
	margin-bottom: 0px;
	padding: 10px;
}
p.indent {
	margin-left: 2em;
}
p.center {
	text-align: center;
}
p.bold {
	font-weight: bold;;
}
p.font75 {
	font-size: 0.75em;
	margin: 2px;
}
p.font50 {
	font-size: 0.5em;
	margin: 2px;
}
p.reference {
	margin-left: 30px;
	margin-right: 30px;
}
p.reference a {
	color: #ff5050;
}
p.reference a i {
	font-style: italic;
	color: #ff5050;
}
div#banner img {
	display: block;
	width: 100%;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: auto;
	margin-right: auto;	
}
.mobile_menu {
	display: none;
	text-indent: 150%;
	white-space: nowrap;
	overflow: hidden;	
}

/* general styles */
img {
	font-size: 1.25em;	
	height: auto;	
	margin: 5px;
}



/* ---------------- media queries ---------------- */

/* desktop */
@media only screen and (max-width: 980px){
	.inner_wrapper {
		min-width: 95%;	
	}
	.layout {
		width: 85%;
	}
	.small{
		width: 35%;
	}
	.menu{
		height: 30px;
		width: 40px;
		float: right;
		padding: 0px 5px 10px 5px;
	}
	.float  {
		max-width: 300px;
	}
	/* end page_nav styles */
	
	/*Make dropdown links appear inline*/
	.page_nav ul {
		position: static;
		display: none;
	}
	/*Create vertical spacing*/
	.page_nav li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.page_nav ul li, li a {
		width: 100%;
	}
	/*Display 'show menu' link*/
	.page_nav .show-menu {
		display:block;
		align: right;
	}
	/*Prevent text wrapping*/
	.page_nav li ul li a {
		width: 100%;
		padding: 0 20px;
	}
}

@media only screen and (max-width: 650px){
	.h1 {
		font-family: 'Verdana', sans-serif;
		color: #33333F;
		font-size: 1.0em;	
		line-height: 1.2em;
	}
		
	p, figcaption, blockquote, td, th, li.instructions {
		line-height: 1.25em;
		font-size: 0.75em;
		text-align: left;	
	}
	td.summary_time {
		font-size: 0.75em;
	}
	td.summary_activity {
		text-align: center;
	}
	td.summary_activity a {
		font-size: 0.75em;
	}
	.page_nav ul#menu {
		line-height: 1.5em;
		font-size: 1em;
	}
	
	p.date {
		font-size: 1.1em;
		color: rgb(255,0,0);
	}
	p.session {
		font-size: 1em;
		color: rgb(0,0,0);
		background-color: rgb(210,240,255);
	}
	p.symposium {
		font-size: 1em;
		color: rgb(0,0,0);
		background-color: rgb(220,255,220);
	}
	p.moderator {
		margin: 0.5em 0 0.5em 0;
		font-size: 0.75em;
		color: rgb(0,0,0);
	}
	
	.inner_wrapper {
			min-width: 96%;	
	}
	header .inner_wrapper {
		width: 100%;
	}
	.layout {
	 width: 100%;
	}
	.small{
		width: 50%;
	}
	/*Prevent text wrapping*/
	.page_nav li ul li a {
		width: 100%;
		padding: 0 20px;
	}
	.mediaButton {
		float: left;
		margin: 1px;
	}
	footer p#copyright {
		font-size: 0.65em;
	}
	div.percent30 {
		width:100%;
	}
	div.percent70 {
		width:100%;
	}
}

/* ****** Responsive Picture Gallery ******* */
div.gallery {
  border: 1px solid #ccc;
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
}

div.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
div.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

div.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 96%;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
div.column {
    flex: 50%;
    max-width: 50%;
  }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
div.column {
    flex: 100%;
    max-width: 100%;
  }
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 24.99999%;
}

@media only screen and (max-width: 800px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 600px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

