	#Logo {
		position:absolute;				/*Removes connections*/
		left:25px;						/*Positions logo vertically connecting it to the left side of screen*/
		top:10px;						/*Positions logo horizontally*/
	}

	#links{
		position:absolute;				/*Removes connections*/
		top:20px;						/*Positions link bar vertically*/
	}

	nav ul{
		font-family: Arial;				/*Sets font*/
		font-size: 18px;				/*Sets font size*/
		z-index: 1;						/*Makes dropdown menu sit ontop of everything else when mousing over it*/
		white-space: nowrap;
	}

	nav ul li {
		display: inline-block;			/*Aligns link bar to horizontal*/
		list-style-type: none;			/*Removes bullet points*/	
	}

	nav ul li:hover ul {
		display: block;					/*Displays dropdown when mouse hovers over*/
		background-color: #383838;		/*Sets all Button color when mouse hovers over any button*/
		border-radius: 0px 5px 5px 5px;	/*Rounds the button corners*/	
	}

	nav ul ul {
		display: none;					/*Hides dropdown when not moused over*/
		position: absolute;				/*Keeps linkbar in same position when dropdown is displayed*/
		min-width: 100px;				/*Sizes dropdown menu's width*/
		padding: 0; 					/*Fixes alignment problem*/
	}

	nav ul ul li {
		display: block;					/*Aligns dropdown */
	}

	nav ul li a,visited {
		text-decoration: none;			/*Removes text underline*/
		display: block;					/*Creates whole button as clickable*/
		color: white;					/*Sets font color of current page*/
		padding: 10px 15px;				/*Sets the size of the buttons*/	
	}

	nav ul ul li:hover > a {
		color: white;					/*Sets font color of current hovered over text in dropdown*/
	}

	nav ul li:hover a{
		display: block;
		background-color: #383838;		/*Sets Button color when mouse hovers over it*/
		color: white;					/*Sets font color when hovered over*/
		border-radius: 5px ;			/*Rounds the dropdown button corners*/
	}	

	nav ul li:hover a0 a{
		border-radius: 5px 5px 0px 0px;	/*Rounds the button corners*/
	}

	nav ul li:hover a1 a{
		border-radius: 5px;				/*Rounds the button corners of non-dropdown menus*/
	}
