body {
  background: #e4e4e4;
  color: #333333;
  padding: 0;
  margin:0;
  font-family: 'Ubuntu','Roboto','Open Sans',sans-serif;
}
a {
  color: #9359fa;
}
a:visited {
  color: #9359fa;
}
h3 {
  margin-top:0px;
  margin-bottom: 15px;
  color: #333333;
}
input, button {
  border-radius: 2px;
  border: 1px solid #dddddd;
  padding: 5px;
  margin:5px;
}
input::-moz-focus-inner,button::-moz-focus-inner {
  border: 0;
}
button:focus,input:focus {
  border: 1px solid #bbaaff;
  outline: none;
}
button{
  background: #f4f4f4;
  color: #333333;
}
button[disabled],button[disabled]:hover  {
  background: #ffffff;
  color: #aaaaaa;
}
button:hover {
  background: #ffffff;
}
button:active {
  background: #ffffff;
  border: 1px solid #dddddd;
}
input[type="text"]{
  color:  #666666;
}

textarea {
  width: calc(100% - 20px);
  height: 200px;
  resize: vertical;
  padding: 10px;
}

u {
  font-weight: bold;
  color: red;
}

.header {
  color: white;
  background: #9359fa;
  border-bottom: 1px solid #452775;
  height: 20px;
  padding:12px;
  padding-top:6px;
}
.header h3 {
  color: white;
  font-size:18px;
  font-weight: bold;
  display: inline-block;
  padding: 0;
  margin: 0;
}
.header a {
  color: white;
}
.header a:visited {
  color: white;
}
.header-shadow {
  height: 3px;
  border-top: 1px solid #727630;
  background: #f6ff72;
  border-bottom: 1px solid #bbbbbb;
  margin-bottom: 20px;
}
.content {
  background: white;
  color: #333333;
  border-radius: 5px;
  border: 1px solid #dddddd;
  margin: auto;
  padding: 20px;
  padding-top:15px;

  box-shadow: 0px 2px 2px 0px #00000040;
  margin-bottom: 1rem;
}
.content.splash {
  max-width: 800px;
}

#search-results {
  display: none;
  border-radius: 5px;
  border: 1px solid #dddddd;
  margin: 5px;
  padding: 1rem;
}

#search-results a {
  display: block;
  line-height: 2em;
}

.modal-container {
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(230,230,230,0.7);
  z-index: 100;
}
.modal {
  margin-top: 100px;
  max-width: 500px;
}
.loader,
.loader:before,
.loader:after {
  background: rgba(0,0,0,0.4);
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: '';
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader {
  color: rgba(0,0,0,0.4);
  text-indent: -9999em;
  margin: 160px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
