/* Begin Navigation Bar Declarations */
.navbar
		{
		overflow: hidden;
		background-color:#ffd456; /* yellow */
		font-family: Arial, Helvetica, sans-serif;
		width:990px;
		top:141px;
		border-radius: 10px;	/* This give this div rounded corners */
		}

.navbar a 
		{
		float: right;
		font-size: 16px;
		color: black;
		text-align: center;
		padding: 8px 16px;
		text-decoration: none;
		}

.dropdown 
		{
		float: right;
		overflow: hidden;
		}

.dropdown .dropbtn
		{
		cursor: pointer;
		font-size: 16px;    
		border: none;
		outline: none;
		color: black;
		padding: 8px 16px;
		background-color: inherit;
		font-family: inherit;
		margin: 0;
		}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus
		{
		background-color: #9c0006;  /* red */
		color: white;
		}

.dropdown-content 
		{
		display: none;
		position: absolute;
		background-color:#ffd456; /* yellow */
		min-width: 160px;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		z-index: 1;
		}

.dropdown-content a 
		{
		float: none;
		color: black;
		padding: 12px 16px;
		text-decoration: none;
		display: block;
		text-align: left;
		}

.dropdown-content a:hover 
		{
		background-color: #9c0006; /* red */
		}

.show
		{
		display: block;
		}

/* End Navigation Bar Declarations */
