body { font-family: "Verdana"; color: #5b4749; }
a { color: #99699b }
a:hover, a:active { color: red }
a:visited { color: #5c483b }

p { text-align: justify }
p.dgmc { font-size: 80%; color: blue }

*.lg  { font-size: large }
*.med { font-size: medium }
*.sm  { font-size: small }
*.xl  { font-size: x-large }
*.xs  { font-size: x-small }
*.xxl { font-size: xx-large }
*.xxs { font-size: xx-small }
*.lgc { font-size: large; text-align: center }
*.xlc { font-size: x-large; text-align: center }
*.lgred { font-size: large; color: red }
*.xlcpink { font-size: x-large; font-weight: bold; text-align: center; color: #deb8ce }

*.ital { font-style: italic }
*.oblq { font-style: oblique }
*.reg  { font-style: normal }
*.quot { font-family: "Courier New" }
*.menu { font-family: "Courier New"; font-size: 24pt; font-weight: bold }
*.menu2 { font-family: "Verdana"; font-size: 12pt; font-weight: bold }

*.reg_caps { font-variant: normal }
*.small_caps { font-variant: small_caps }

*.bold { font-weight: bold }
*.less { font-weight: lighter }
*.more { font-weight: bolder }
*.norm { font-weight: normal }

*.bot  { vertcal-align: bottom }
*.down { vertcal-align: sub }
*.mid  { vertcal-align: middle }
*.top  { vertcal-align: top }
*.up   { vertcal-align: super }

*.center { text-align: center }
*.left   { text-align: left }
*.justfy { text-align: justify }
*.right  { text-align: right }

*.color1 { color: #ffb04e }
*.color2 { color: #f6f6b7 }
*.colorgreen { color: green }

*.border ( border: 1px solid black; border-collapse: collapse; )

.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #3e8e41;
}

.dropdown {
  float: right;
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  right: 0;
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}

