<style>
body {
	margin: 0;
}

.big {
	font-size: 18pt;
	font-weight: bold;
}

#nav {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: black;
}

#navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: black;
}

#navbar > li {
   float: left;
}

#navbar > li a, #navbar > .dropbtn {
    display: inline-block;
    color: lightgrey;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
	cursor: pointer;
}

#navbar > li #company {
    position: fixed;
	top: 5px;
	right: 0px;
	height: 36px;
}

#navbar > li a:hover, #navbar > .dropdown:hover .dropbtn {
    background-color: grey;
    color: lightcyan;
}

#navbar > li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: grey;
    min-width: 70px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

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

.dropdown-content a:hover {
	background-color: whitesmoke
}

.dropdown:hover .dropdown-content {
    display: block;
}

.page {
    padding-top: 43px;
	padding-left: 20px;
}

.halfpage {
    width: 50%;
}

#banner {
	font-size: 300%;
	margin-bottom: 60px;
	text-align: left;
}

#contact {
	font-weight: bold;
	font-size: 150%;
	text-align: center;
	padding-top: 100px;
}

#contact  > #copyright {
	font-weight: normal;
	font-size: 70%;
	text-align: center;
	padding-top: 100px;
}

#delivery {
	font-size: 120%;
	text-align: center;
	padding-top: 100px;
}

#home {
	font-size: 120%;
	font-weight: bold;
}

#home > ul {
    list-style-type: square;
}

#home > ul > li {
	margin-bottom: 20px;
	cursor: pointer;
}

#home > #state {
	position: absolute;
	left: 15%;
	top: 650px;
	font-size: 80%;
	font-weight: normal;
}

#buttons {
	float: right;
	width: 600px;
	margin-right: 20px;
}

.button {
	background-color: black;
	color: white;
}

#buttonRight {
	float: right;
}

figure {
	margin-top: 5px;
	margin-right: 20px;
}

table {
	width: 95%;
}

td {
	padding: 3px;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 450px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 1s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
</style>
