@charset "utf-8";
/* CSS Document */
body {
    background-color: #007b4c;
}

ul {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
	padding:0 120px 0 120px;
  }

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
	padding:0 100px 0 100px;
}

h1, h2, h3, h4 {
	font-family: Arial, Helvetica, sans-serif;
    padding:50px;
}

div {
	background-color: #FFFFFF;
	margin-left: 10%;
	margin-right: 10%;
	padding:1px 0 0 0; /*eliminates white space between divs */
	/*1px 0 0 0 is padding top 1 px, padding right 0px, bottom 0px, left 0px*/
	/* see www.w3schools.com/css/css_padding.asp */
}

img {  
    max-width: 100%; /* allows image to be reduced in size to fit a page of less width than native size of image */
    height: auto;
}

.expand  {  /* use this class for images that you want to fill all available width, like the header graphic */
width: 100%;	
}

.header1 {
	font-family: "Brush Script MT";
	font-size: 36px;
	font-weight: bold;
	color: #007b4c;
}
@media print {
	body {
    background-color: #FFFFFF;
}
	div {
	margin-left: 0%;
	margin-right: 0%;
	}
	 p  {
		padding:0 50px 0 50px ;
		font-size: 12px;
	}
	ul {
		padding:0 50px 0 70px ;
		font-size: 12px;
	}
	 h1, h2, h3, h4 {
		padding:5px 50px 5px 50px ;
		font-size: 14px;
	}
}

