/*
* multi-line comment
*/
p{ line-height: 1em; }
h1, h2, h3, h4{
    color: blue;
	font-weight: normal;
	line-height: 1.1em;
	margin: 0 0 .5em 0;
}
h1{ font-size: 1.7em; }
h2{ font-size: 1.5em; }
a{
	color: blue;
	text-decoration: none;
}
	a:hover,
	a:active{ text-decoration: underline; }

/* you can structure your code's white space so that it is as readable for when you come back in the future or for other people to read and edit quickly */

body{
    font-family: arial; font-size: 80%; line-height: 1.2em; width: 100%; margin: 0; background: #eee;
}
/* you can put your code all in one line like above */
#page{ margin: 20px; }


/* but try and be as concise as possible */
#navbar{
	width: 20%;
	position: fixed;
	text-align: center;
	float: left;
}
#navbar img{
	display: block;
	margin-left: auto;
	margin-right: auto;
	width: 65%;
}
#nav li{
	margin-left: auto;
	margin-right: auto;
	}
	
#nav li a {
	display: block;
	width: 65%;
	margin-left:17.5%;
	}
	
	#nav a:link, a:visited {
	background-color: gray;
	text-decoration: bold;
}
	
#nav ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
	
}


#content{
	position: fixed;
	float: center;
	width: 50%;
	margin: auto;
	margin-left: 20%;
	margin-right: 20%;
	background: white;
	padding: 20px;
	clear: both;
}
	#content p{
		text-align: justify;
		font-size: 16px;
	}


	#footer p{
		text-align: center;
		text-transform: uppercase;
		font-size: 80%;
		color: grey;
		
	}
	#footer ul{
		list-style-type: none;
	}
	
	#footer ul li{
		display: inline;
		padding: 3px;
	}
	
	#footer ul li img{
		width:30px;
		height: 25px;
	}

/* multiple styles seperated by a , */
#content,
ul li a{ box-shadow: 0px 1px 1px #999; }
