/* Supress underlines on all links */
a {
  text-decoration: none;
}

/* The sidepanel menu */
.sidepanel {
  width: 0; /* 0 width - change this with JavaScript */
  height: 100%;
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  right: 0;
  background-color: #EEE; /* Grey */
  overflow-x: hidden; /* Disable horizontal scroll */
  overflow-y: auto;
  padding-top: 2em; /* Place content 2 char from the top */
  transition: 0.3s; /* 0.3 second transition effect to slide in the sidepanel */
}

/* The sidepanel links */
.sidepanel a {
  text-decoration: none;
  color: #00E;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidepanel a:hover {
  color: #551A8B;
}

/* Position and style the close button (top right corner) */
.sidepanel .closebutton {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 2.0em;
  margin-left: 50px;
}

/* Style the button that is used to open the sidepanel */
.openbutton {
  font-size: 1em;
  cursor: pointer;
  background-color: #00E;
  color: white;
  padding: 10px;
  border: none;
  position: absolute;
  top: 0;
  right: 0;
}

.openbutton:hover {
  background-color: #551A8B;
}

/* Style the upper-left clickable link to go home */
a.homebutton {
  max-height: 36px;
  font-size: 1em;
  cursor: pointer;
  background-color: #00E;
  color: white;
  text-decoration: none;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
}
  
a.homebutton:hover {
  background-color: #551A8B;
}
  
/* Other WBD settings */
#wbdnav h3 {
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
#wbdnav ul {
  margin: 0;
}

/* Make room for nav widgets */
body {
  margin-top: 3.25em;
}

/* Main banner */
.hero-image {
  background-image: url("/plasma-wave/cluster/Cluster_banner.jpg");
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.hero-text {
  text-align: center;
  color: white;
  text-shadow: 0 0 4px #000, 2px 2px 0 #000;
}

.hero-text a {
  color: white;
  text-decoration: none;
}

.hero-text h1 {
  padding: 0.5em;
}

/* Forms */
.section {
  margin: 4px;
  padding: 4px;
  border: 1px;
  border-radius: 9px;
  border-style: solid;
}

.section h3 {
  background: #FFCD00;
  color: #000;
  margin: 0 0 4px 0;
  padding: 0.5em; border-radius: 9px 9px 0 0;
}

.submit {
  text-align:center
}

.submit input {
  font-size:large;
  background-color:#FFCD00;
}

span.nowrap {
  white-space:nowrap;
}

.blink {
  animation: blinker 2s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
