﻿body {
  background-color: #000000;
 } 
  p {
  font-family: Verdana;
  color: white
}

p.normal {
  font-style: normal;
}

p.italic {
  font-style: italic;
}

p.oblique {
  font-style: oblique;
}

h1 {
font-family: Verdana;
  font-size: 30px;
  color: red
}

h2 {
font-family: Verdana;
  font-size: 30px;
  color: white
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

.style1 {
	text-align: center;
}
.style2 {
	background-color: #FF0000;
}
.style3 {
	background-image: url('img/topnav_bg.gif');
}
.style4 {
	color: #FFFFFF;
}
.style5 {
	text-decoration: none;
}
a {
	color: #FF0000;
}

//start of drop down menu

/* Dropdown Button 1*/
.dropbtn {
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:focus {
 
}

.dropbtn:hover {
  background-color: #2980B9;
}

/* 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: #f1f1f1;*/
 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: #ddd}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

.dropbtn {
  background-color: #FF0000; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 8px;
}

/* Dropdown Button 2*/
.dropdown2 {
  position: relative;
  display: inline-block;
}

.dropdown2-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
  font-family: Verdana;
  color: white
   
}

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

.desc {
  padding: 15px;
  text-align: left;
}