.marquee {
   width: auto;/*700px;*/
   margin: 0 auto;
   background:#333;
   white-space: nowrap;
   overflow: hidden;
   box-sizing: border-box;
   color:white;
   padding: 12px;
   font-size:22px;
}

.marquee span {
   display: inline-block;
   padding-left: 100%;
   text-indent: 0;
   animation: marquee 15s linear infinite;
}

.marquee span:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}


.navhead {

    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #333;
      position: fixed;
      top: 0;
      width: 100%;
    }

    li {
      float: left;
    }

    p{color: white;}

    li a {
      display: block;
      color: white;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }

    li a:hover:not(.active) {
      background-color: #111;
    }

    .active {
      background-color: #04AA6D;
    }
}  /* end navhead*/


.basicform{

    table, tr, td{
        text-align: left;
        vertical-align: top;
        padding: 8px;
        border: none;
        }

    /*Custom general elements*/
    .custom-select {
      position: relative;
      font-family: Arial;
      background-color: Black;
    }

    .custom-select select {
      display: none; /*hide original SELECT element: */
    }

    .select-selected {
      background-color: Gray;
    }

        /* Style the arrow inside the select element: */
    .select-selected:after {
      position: absolute;
      content: "";
      top: 14px;
      right: 10px;
      width: 0;
      height: 0;
      border: 6px solid transparent;
      border-color: #fff transparent transparent transparent;
    }

    /* Point the arrow upwards when the select box is open (active): */
    .select-selected.select-arrow-active:after {
      border-color: transparent transparent #fff transparent;
      top: 7px;
    }

    /* style the items (options), including the selected item: */
    .select-items, .select-selected {
      color: #ffffff;
      padding: 8px 16px;
      border: 1px solid transparent;
      border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
      cursor: pointer;
    }

    /* Style items (options): */
    .select-items {
      position: absolute;
      background-color: DodgerBlue;
      top: 100%;
      left: 0;
      right: 0;
      z-index: 99;
    }

    /* Hide the items when the select box is closed: */
    .select-hide {
      display: none;
    }

    .select-items div:hover, .same-as-selected {
      background-color: rgba(0, 0, 0, 0.1);
    }

    fieldset{ border: none;}

    label{ color: white;}

    legend{ color: white;}

    textarea{padding: 6px;}

    h2 { color: white;}
}  /*end basic forms*/

.basictable{
    table, tr, td {
            text-align: left;
            /*vertical-align: top;*/
            padding: 8px;
            border: 1px solid black;
            border-collapse: collapse;
        }
}

.resumeli{
    ul{
    list-style-type: square;
    }
}
.button {
          background-color: #555555;/*#04AA6D Green */
          border: none;
          color: white;
          padding: 15px 32px;
          text-align: center;
          text-decoration: none;
          display: inline-block;
          font-size: 22px;
}

.button1 {border-radius: 4px; background-color: #555555;}
.button2 {border-radius: 4px; background-color: #04AA6D;} /*gray*/
.button3 {border-radius: 4px; background-color: f1f1f1;}

.button2:hover {
    background-color: #3e8e41;
}

.button3:hover {
    background-color: black;
}

/* Styles for mobile devices */
@media only screen and (max-width: 768px)
{
    body {
             font-size: 20px;
             padding: 5px;
         }

            .container {
                width: 96%;
                margin: auto;
                padding: 20px;
            }
}

/* Styles for desktop devices */
@media only screen and (min-width: 769px)
{
    body {
            font-size: 22px;
            padding: 30px;
         }
   .parent {
            margin: 0px;
            width: 500px;
            height: auto;
            min-height:50px;
            padding: 15px;
            background: white;

        }
    .container {
                width: 70%;
                margin: 6px;
                padding: 40px;
        }
}


p.navs{ color: white;}

ul.navs{
  list-style-type: none;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  background-color: #333;
  bottom: 0;
  width: 100%;
}



li.navs{
    float: left;
}
li.cites {
  float: top;

}
ol.cites {
  list-style-type: square;
  margin: 0;
  padding: 24px;
  overflow: hidden;
  background-color: #333;
  bottom: 0;
  width: 100%;
  color: white;
}
p.cites { color: white;
  background-color: #333;
margin-top: 0;
margin-bottom: 0;
padding: 12px;
}



/*id selector*/
#signature{ font-family: Segoe Script, Arial;}

/*universal selector*/
* {  font-family: Segoe ScriptArial, Times, serif;}
