/* Add a black background color to the top navigation */
.subnav {
	background-color: #0000ff;
	overflow: hidden;
}

/* Style the links inside the navigation bar */
.subnav a {
	float: left;
	color: #ff5800;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	margin-left: 0px; 
	background-color: #555555;
	font-weight: bold;
}

/* Change the color of links on hover */
.subnav a:hover {
	background-color: #ddd;
	color: black;
	text-decoration-line: underline;
	border-bottom-width: 1px; 
	border-bottom-style: solid;
}

/* Add a color to the active/current link */
.subnav a.active {
	background-color: #0000FF;
	color: white;
	text-decoration-line: underline;
}
