/* # denotes id and . denotes class label for element */
/* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    background-color:#FE9100;
    overflow: hidden;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 5px 10px;
    text-decoration: none;
    font-size: 12px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    list-style-type: none;
}
/* Change the color of links on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Add a color to the active/current link */
.topnav a:active {
    background-color: #ddd;
    color: white;
}
h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
}
table {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	vertical-align: center;
}
.editText {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}
.adminButton {
    border-radius: 4px;
    border-color: gray;
    font-size: 12px;
    width: 65px;
    height: 20px;
    background-color: white;
    color: black; /* SET COLOR IN WHITE */
}
.adminButton:hover
{
  	background-color: gray;
    color: white;
}
.actionLink a {
    border-style: solid;
    border-width: 1px;
    border-color: gray;
    margin-right: 5px;
    float: left;
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	border-radius: 4px;
	font-size: 12px;
    width: 65px;
    height: 17px;
}
.actionLinkSingle a {
    border-style: solid;
    border-width: 1px;
    border-color: gray;
    margin-right: 5px;
    float: center;
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	border-radius: 4px;
	font-size: 12px;
    width: 65px;
    height: 17px;
}
.actionLink a:hover
{
  	background-color: gray;
    color: white;
}
.exportLink a {
    border-style: solid;
    border-width: 1px;
    border-color: gray;
    margin-right: 5px;
    float: center;
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
    font-family: Verdana, Arial, Helvetica, sans-serif;
	border-radius: 4px;
	font-size: 12px;
    width: 65px;
    height: 17px;
}
.exportLink a:hover
{
  	background-color: gray;
    color: white;
}
.loading-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
}

.spin-loader {
  height: 100px;
  background: url("../images/loaderSpinner.gif") no-repeat center center transparent;
  position: relative;
  top: 25%;
}

.statustable { 
  float: left;
}

.statustable-hide { 
  float: left;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn { 
    border: none;
    outline: none;
    color: #f2f2f2;
    padding: 5px 10px;
    font-size: 12px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background-color: inherit;
    margin: 0;
}

.topnav a:hover, .dropdown:hover .dropbtn {
    background-color: #ddd;
    color: black;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #FE9100;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 5px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

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

