@charset "utf-8";
/* CSS Document */
*{
    padding: 0px;
    margin: 0px;
}

html{
    font-family: 'Roboto Condensed', sans-serif;
    background-color: #c6f4db;
}

header#masthead{
    background-color: #FDF1E1;
    height: 100px;
    padding-top: 10px;
    padding-left: 10px;
    border-bottom: 5px #007335 solid;
    /*margin-bottom: 20px;*/
}

header#masthead img#mastheadImg{
    height: 90%;
    float: left;
    margin-right: 20px;
    cursor: pointer;
}

header#masthead div#mastheadText{
    float: left;
    margin-top: 10px;
}

header#masthead div#mastheadText h1{
    font-family: 'Lobster', cursive;
}

div#mastheadText h1 a:hover{
	color: red;
}

div#mastheadText h1 a{
	color: black;
	text-decoration: none;
}

/*--- navigation bar --- */
nav{
	float:right;
	margin-right: 20px;
}

nav li{
	display: inline;
	margin-right: 10px;
}

nav li a.currentPage{
	text-decoration: underline;
}

main{
	padding: 20px;
}

a{
	color:#007335;
	text-decoration: none;
	font-weight: bold;
}

li a:hover{
	background-color: #007335;
	color: #FDF1E1;
}

/*--- figures --- */
main div.picInfo{
					margin-top: 10px;
					float: left;
					margin-right: 10px;
					background-color: #FDF1E1;
					width: 25%;
					min-width: 200px;
					padding: 10px;
					border: 1px double green;
					margin-right: 20px;
					margin-bottom: 20px;
				}

				main div.picInfo p{
					margin-top: 5px;
					font-style: italic;
					min-height: 100px;
				}

				main div.picInfo img{
					width: 95%;
					height: auto;
					display: block;
					margin-left: auto;
					margin-right: auto;
				}

				figure figcaption{
					text-align: center;
					font-style: italic;
					margin-top: 5px;
				}

/*--- articles ---*/
article#intro{
					float:left;
					width: 50%;
					max-width: 500px;
				}

/*--- restoration styles for generic tags ---*/

p, h3{
    margin-top: 10px;
    margin-bottom: 10px;
}

ul, ol{
    margin-top: 20px;
    margin-left: 50px;
}

ul li, ol li{
    margin-bottom: 5px;
}

