@font-face{
  font-family: "liberFont";
  font-style: normal;
  src: url("/fonts/LiberationSans-Regular.ttf");
}

body{
  font-family: "liberFont", liberFont, sans-serif;
  padding-left: 20px;
  padding-right: 20px;
}

#maintop{
  min-height:150px;
  position: relative;
}

#mainTitle{
  position: absolute;
  bottom: 0;
  left: 0;
}

.mainTitle{
  font-size: 24px;
  margin: 0;
  padding-left: 5px;
}
#mainleft{
  float: left;
  width: 49%;
}

#mainright{
  float: right;
  width: 49%;
}


.articleTitle{
  text-align: center;
  margin-top:5px;
  padding: 5px;
  border-style: solid;
  border-width: 2px;
  border-color: rgba(0,0,0,0.5);
  margin-bottom: 0px;
}

.article{
  background-color: rgba(250,250,250, 0.5);
}
.articleBody{
  border-color: rgba(0,0,0,0.5);
  padding: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  border-style: solid;
  border-width: 2px;
  border-top-width: 0px;
  font-size: 14px;
  margin-bottom: 20px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-right: 0px;
  padding-left: 0px;
}

img {
  max-width: 100%;
}

.background {
  position:  fixed;
  display:  block;
  top: 0;
  left: 0;
  z-index: -1;
}

/* Dropdown Button */
.dropbtn {
 background-color: white;
 border-color: #ababab;
 min-width: 160px;
 min-height: 0px;
 padding: 5px;
 padding-left: 10px;
 border-style: solid;
 text-align: left;
 font-size: 16px;
}

/* 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: #f1f1f1;
 min-width: 160px;
 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: #ddd;}

/* 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: #dfdfdf;}

.arrow {
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  float: right;
  padding: 4px;
  margin-right: 5px;
  margin-top: 2px;
}

.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

/*Blinking Cursor*/

.blinking-cursor {
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}

@keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-moz-keyframes blink {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-webkit-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-ms-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}

@-o-keyframes "blink" {
  from, to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
