		BODY { font-family: Arial, Helvetica, sans-serif;
		color: #333333;}
		a:link { color:#333333; text-decoration: none;}
		a:visited { color:#333333; text-decoration: none;}
		a:active { color:#333333; text-decoration: none;}
		TD {font-family: Arial, Helvetica, sans-serif; font-size:10pt; color: #333333; }
#locationField, #controls {
        position: relative;
        width: 400px;
      }
      #autocomplete {
        position: absolute;
        top: 0px;
        left: 0px;
        width: 99%;
      }
      .label {
        text-align: right;
        font-weight: bold;
        width: 60px;
              }
      #address {
        width: 400px;
        padding-right: 2px;
      }
      #address td {
        font-size: 10pt;
      }
      .field {
        width: 99%;
      }
      .slimField {
        width: 80px;
      }
      .wideField {
        width: 180px;
      }
      #locationField {
        height: 20px;
        margin-bottom: 2px;
      }
.btn-style {
   -webkit-border-radius: 6px;
   -moz-border-radius: 6px;
   border-radius: 6px;
   color: #FFFFFF;
   font-family: Arial;
   font-size: 12px;
   font-weight: 150;
   padding: 4px;
   background-color: #008811;
   text-decoration: none;
   display: inline-block;
   cursor: pointer;
}

.btn-style:hover {
   background: #010205;
   text-decoration: none;
}
span:hover {
    background-color: white;
    color: green;
    font-weight: bold;
}
.dropbtn {
    background-color: Green;
    color: white;
    padding: 4px;
    font-size: 12px;
    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: 140px;
    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: black;
}
.btn-group2 .button {
    background-color: green; /* Green */
    border: 1px solid green;
    color: white;
    padding: 5px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    width: 140px;
    display: block;
}

.btn-group2 .button:not(:last-child) {
    border-bottom: none; /* Prevent double borders */
}

.btn-group2 .button:hover {
    background-color: black;
    text-color: white;
}
.btn-style2{
	border : solid 2px #c7c7c7;
	border-radius : 5px 5px 20px 20px ;
	moz-border-radius : 5px 5px 20px 20px ;
	font-size : 16px;
	color : #ffffff;
	padding : 1px 12px;
	background-color : #008102;

}
.btn-style2:hover {
   background: #010205;
   text-decoration: none;
}
/* Popup container */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}