/* * { margin: 0; padding: 0;}*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, 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,
article, 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-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
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 of Meyer Resets*/




a:focus { outline: 0;
		  }

body {	background-color: /*#fff*/ #959595;
		color: black;
		line-height: 130%;
		font-family: Helvetica, Arial, Verdana,  san-serif;
		font-size: medium;
		}

body > p {color: white;
		font-weight: bold;
		background-color: #929fa6;}

#wrapper { width:41em;
			margin: 20px auto;
			background-color: /*#F7FFD6*/ #fff;
			border:2px solid black;
			padding: 10px 50px 30px 50px;
			}
			
header img {   border: 2px solid black;
				width: 40.75em;
				  }


/*This navigation code is from W3C Schools: https://www.w3schools.com
/howto/howto_css_dropdown_navbar.asp*/
	
 /* Navbar container */
nav {
  overflow: hidden;
  background-color: #333;
  font-family: Arial;
}

/* Links inside the navbar */
nav a {
  float: left;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a green background color to navbar links on hover */
nav a:hover, .dropdown:hover .dropbtn {
  background-color: green;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a light green background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #cee8d7;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
} 						

/* End of navigation code */

article h1 {	padding-top: 30px;
				font-weight: bold;

				}
				

article p {    padding-bottom: 5px;
			    margin-bottom: 0px;
			    padding-top: 20px;
			    font-size: 110%;
				}	
				
/*article p:last-child { color: red;
						}	*/
						
article p:nth-child(4) { color: green;
							}						
			
/*article h2 {	font-size: 140%;
				margin-bottom: 30px;
				margin-top: 30px;
				}	*/

footer ul { margin-top: 61px;
			}			

footer ul li { display: inline;
				font-size: 80%;
				color: black;
				margin: 4px;
				}
												
footer p {	margin-top: 30px;
			font-size: 90%;
			color: red;
			}
				
 footer p:nth-child(2) {
			margin-top: 0px;
			font-size: 90%;
			}
