*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
html body{
    height: 95vh;
    background-color: #111111ff;
    background: linear-gradient( rgb(194, 194, 194), rgb(0, 0, 0));
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-family: "Palatino", "Palatino Linotype", "Palatino LT STD", "Book Antiqua", Georgia, serif;
}
a:link{
    color: #000000ff;
    font-size: 1.35em;
}
a:hover{
    color: #000000ff;
    font-size: 1.35em;
}
a:visited{
    color: #000000ff;
    font-size: 1.35em;
}

dd{
  font-size: 1em;
}

.headlineh2{
  font-size: 3em;
}

#n{
    width: 100%;
    text-align: left;
	color: black;
  background-color: #e4e3d6ff;
  margin-bottom: 25px;
}
#h{
    float: left;
	color: black;
}

footer {
  width: 100%;
  margin: 0 !important;
  margin-top: 25px;
  padding: 10px;
  color: #e4e3d6ff;
  background-color: #2b2b2fff;
  font-size: 1em;
  text-align: left;
  height: 5em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

footer a:link{
  font-size: 1em;
  color: #e4e3d6ff;
}

footer a:hover{
  font-size: 1em;
  color: #e4e3d6ff;
}

footer a:visited{
  font-size: 1em;
  color: #e4e3d6ff;
}

.m{
    margin: auto;
    align-self: center;
    background-color: #e4e3d6ff;
    padding-top:5px;
    padding-bottom: 5px;
    width: 100%;
    text-align: center;
    float: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
#content{
  position: relative;
}
.text{
    min-height: 60vh;
    padding: 2%;
    margin-bottom: 25px;
    color: black;
    background-color: #eeeeeea2;
    font-size: 1.5em;
    text-align: justify;
    width: 70%;
    border-radius: 10px 10px 10px 10px;
    /* hyphens */
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto; 
}

/* Dropdown */
.ul {
  /*background: #e4e3d6ff;*/
  text-align: left;
  display: inline;
  margin: 0px;
  padding: 15px 2px 17px 0; /*top 15 right 2 bottom 17 left 0*/
  list-style: none;
  font-family: 'Lato';
  /*-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);*/
  box-sizing: border-box;
}
  
  ul {
    /*background: #e4e3d6ff;*/
    text-align: left;
    display: inline;
    margin: 0;
    padding: 15px 4px 17px 0;
    list-style: none;
    /*-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);*/
  }
  ul li {
    font: bold 12px/18px sans-serif;
    display: inline-block;
    /*margin-right: -4px;*/
    position: relative;
    padding: 15px 20px;
    /*background: #e4e3d6ff;*/
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  ul li:hover {
    background: #d8cef6ff;
  }

  ul li ul {
    padding: 0;
    position: absolute;
    top: 48px;
    left: 0;
    min-width: 200px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    -webkit-transiton: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -ms-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  ul li ul li { 
    background: #e4e3d6ff; 
    display: block; 
    /*text-shadow: 0 -1px 0 #658542ff;*/
  }

  ul li ul li:hover{ 
    background: #d8cef6ff; 
  }


  ul li:hover ul {
	color: black;
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  ul li a:link{
    font-size: 1.3em;
    color: black;
    text-decoration: none;
  }
  ul li a:visited{
    font-size: 1.3em;
    color: black;
    text-decoration: none;
  }