	/* element = selector = tag */
	/* properties --> values */

	body {
		/* This moves the text body to the right, leaving a margin */
		padding-left: 11em;
		font-family: Georgia, "Times New Roman", Times, serif;
		color: black;
		/* background-color: #78D1DA; */
		background-color: #AADCE0;

		/* Web pages look a lot nicer with bigger margins. You can set
		the left and right margins with the "margin-left" and
		"margin-right" properties */

		margin-left: 4%;
		margin-right: 4%;
	}
	img.header {
		margin-top: 1em;
		margin-left: -5%;
		margin-right: 0%;
		width: 105%;
	}
	h1 {
		color: blue;
		font-family: Helvetica, Geneva, Arial, SunSans-Regular, 
			sans-serif;
		margin-left: -5%;
	}
	h2,h3,h4,h5,h6 {
		margin-left: -3%;
	}
	ul.navbar {
		list-style-type: none;
		padding: 0;
		margin: 0;
		position: absolute;
		top: 1em;
		left: 1em;
		width: 9em;
	}
	ul.navbar li.pub {
		background: white;
		margin: 0.5em 0;
		padding: 0.3em;
		border-right: 1em solid black
	}
	ul.navbar li.pwd {
		background: red;
		margin: 0.5em 0;
		padding: 0.3em;
		border-right: 1em solid black
	}
	ul.navbar a {
		text-decoration: none
	}
	/* pseudo-classes (:link and :visited) */
	a:link {
		color: blue
	}
	a:visited {
		color: purple
	}
	
	a.plain {
		text-decoration: none;
	}

	address {
		margin-top: 1em;
		padding-top: 1em;
		border-top: thin dotted
	}

	table.center {
		margin-left: auto;
		margin-right: auto;
	}
