nav {
	position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
	background-color: white;
	height: 48px;
	width: 1024px;
	}

nav p.nav {
	float: left;
	}

nav p.nav a {
	font-family: arial;
	line-height: 0px;
	font-size: 28px;
	color: darkgrey;
	background-color: white;
	text-decoration: none;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
	}

nav h1 a:hover {
	color: darkgrey;
	}

nav ul {
	position: -webkit-sticky;
    position: sticky;
	margin: 0px;
	padding: 0;
	color: darkgrey;
	background-color: white;
	text-decoration: none;
	float: left;
	}

nav ul li {
	float: left;
	list-style: none;
	position: relative;
	}

nav ul li:hover ul {
	display: block;
	}

nav ul li a {
	display: block;
	font-family: arial;
	line-height: 0px;
	font-size: 14px;
	color: darkgrey;
	background-color: white;
	text-decoration: none;
    padding-top: 17px;
    padding-bottom: 17px;
    padding-right: 10px;
    padding-left: 10px;
	}

nav ul li a:hover {
	background-color: darkgrey;
	color: white;
	}

nav ul li ul {
	display: none;
	position: absolute;
	padding: 10px;
	border-radius: 0px 0px 4px 4px;
	}

nav ul li ul li {
	width: 190px;
	}

nav ul li ul li a {
/*	padding: 8px 14px;*/
	}

nav ul li ul li a:hover {
	background-color: darkgrey;
	color: white;
	}