body {
	background-color: white;
}

h1 {
	color: navy;
	margin-left: 20px;
}

ol {
    display: block;
    list-style-type: decimal;
    list-style-position: inside;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-padding-start: 20px;    
    line-height: 100%;
    margin-bottom: 20px;
    
}

ul {
    display: block;
    list-style-position: inside;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-padding-start: 20px;    
    line-height: 130%;
    margin-bottom: 20px;
}

p {
	line-height: 1.5; 
}

   a:link {text-decoration: none; color: rgb(0, 0, 190)}
   a:visited {text-decoration: none; color: rgb(0, 0, 190)}
   a:hover {text-decoration: underline; color: rgb(0, 0, 190)}
   tbody td {font-size: inherit;}


/* Style the navigation bar */
.navbar { 
	width: 100%;
	background-color: #555;
	overflow: auto;
}

/* Navbar links */
.navbar a {
	float: left;
	color: white;
	text-align: center;
	padding: 12px;
	text-decoration: none;
	font-size: 17px;
}

/* Navbar links on mouse-over*/
.navbar a:hover {
	background-color: #000;
}

/* Current/active navbar link */
.topnav a.active{
	background-color: #4CAF50;
}

/* Add responsiveness - will automatically display the navbar vertically instead of horizontally
on screens less than 500 pixels */
@media screen and (max-widthL 500px) {
	.navbar a {
	float: none;
	display: block;
	}
}
