﻿/* Dropdown Button */
.dropbtn {
    display: block;
    text-decoration: none;
    background: url(../images/menu.bmp) center center repeat-x;
    color: #000000;
    width: 80px;
    padding: 2px 0px 2px 0px;
    border: 1px solid #202020;
    font: bold 11px Arial;
}

/* The container <div> - needed to position the drowdown content */
.dropdown {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #000000;
    width: 80px;
    padding: 2px 0px 2px 0px;
    border: 1px solid #202020;
    font: normal 11px Arial;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  text-decoration: none;
  position: absolute;
  background-color: #000000;
  min-width: 80px;
    padding: 2px 0px 2px 0px;
    border: 1px solid #202020;
    font: normal 11px Arial;
  z-index: 1;
  height:16px;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  background: url(../images/menu.bmp) center center repeat-x;
  text-decoration: none;
  display: block;
    width: 80px;
    padding: 2px 0px 2px 0px;
    border: 1px solid #202020;
    font: normal 11px Arial;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    color: black;
    background-color: black;
    background: url(../images/menu-rev.bmp) center center repeat-x;
    text-decoration: none;
    font: normal 11px Arial;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    color: black;
    display: inline;
    background: url(../images/menu.bmp) center center repeat-x;
    text-decoration: none;
    font: normal 11px Arial;
}

/* Change the background color of the dropdown button when dropdown content is shown */
.dropdown:hover .dropbtn {
    color: #000000;
    background: url(../images/menu-rev.bmp) center center repeat-x;
    text-decoration: none;
}