
body {
	font-family: 'Segoe UI', 'Lucida Grande', 'Bitstream Vera Sans', sans-serif;
	font-size: 21px;
	background-image: url(https://compasstech.com.au/compass.gif);
	background-repeat: no-repeat;
	background-position: 120% -120px;
	background-color: rgb(240,240,250);
	margin-top: 4em;
}

#Header h3, #Header h1 {
	margin: 0;
}

div#PersonalDetails,
div#Order {
	float: left;
}

.clear {
	clear: both;
}

#OrderForm table tr th,
#OrderForm table tr td {
	vertical-align: top;
	white-space: nowrap;
	padding-right: 1em;
}

table#OrderTable {
	background-color: white;
	border-collapse: collapse;
}

table#OrderTable tr th {
	text-align: left;
	padding-right: 1em;
	border-bottom: 1px solid #ccc;
}

table#OrderTable tr td {
	vertical-align: bottom !important;
	padding: 1em;
	border-bottom: 1px solid #eee;
}

table#OrderTable tr td#TotalAll,
table#OrderTable tr td#TotalAllCell {
	text-align: right;
}

table#OrderTable select {
	width: 16em;
}

#HeaderBar {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: black;
	color: #eee;
	padding: 0.4em 0.8em 0.4em 0.8em;
	font-size: 12px;
	font-family: 'Segoe UI', 'Lucida Grande', 'Bitstream Vera Sans', sans-serif;
	letter-spacing: 0.2em;
}

#HeaderBar strong {
	font-size: 120%;
}

#HeaderBar a {
	padding-bottom: 0;
	margin-bottom: 0;
	color: white;
	text-decoration: none;
	border-bottom: 1px dotted #999;
}

#HeaderBar a:hover {
	border-bottom-color: white;
}

/* Style The Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

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

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}


