/* WMR CSS */

* {box-sizing: border-box;}

body { 
  min-height: 100vh;
  margin: 0;
  font-family: Book Antiqua, Times New Roman;
  text-align: justify;
  background-color: #eeeeff
}

html {
  height: auto;
}

img {
  border-radius: 10px;
}

.navbar {
  overflow: hidden;
  background-color: #49383A;
  padding: 5px 10px;
}

.navbar a {
  float: left;
  color: white;
  text-align: center;
  padding: 8px;
  text-decoration: none;
  font-size: 16px; 
  line-height: 20px;
  border-radius: 4px;
}

.navbar a:hover {
  background-color: #E0D3CC;
  color: black;
  text-decoration: none;
}

.navbar a.active {
  background-color: #FFFFFF;
  color: black;
  text-decoration: none;
}

.navbar-left {
  float: left;
}

.footer {
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  background: #49383A;
  color: white;
  position: fixed;
  line-height: 10px;
  bottom: 0;
  width: 100%;
}

.links a {
  color: #FFFFFF;
  text-shadow: 2px 2px 5px #000000;
}

.links a:hover {
  color: #FF5E00;
  text-decoration: none;
  text-shadow: 2px 2px 5px #000000;
}

h1 {
   font-family:"Book Antiqua";
    text-shadow: 2px 2px 5px #909090;
}

h2 {
   font-family:"Book Antiqua";
    text-shadow: 2px 2px 5px #909090;
}

h3 {
   font-family:"Book Antiqua";
    text-shadow: 2px 2px 5px #909090;
}


.center {
  text-align: center;
  font-family: Book Antiqua, Times New Roman;
  color: #333333;
  padding: 30px;
  text-shadow: 2px 2px 5px #909090;
}

.center1 {
  text-align: justify;
  font-family: Book Antiqua, Times New Roman;
  color: #333333;
  padding: 30px;
  text-shadow: 2px 2px 5px #909090;
}

.center2 {
  text-align: center;
  padding:5px 30px 5px 30px;
}
  
.responsive {
  max-width: 90%;
  height: auto;
  display: block;
  margin: auto;
}

.img_left {
  max-width: 50%;
  float: left;
  height: auto;
  display: block;
  border: 1px dotted black;
  margin: 5px 15px 5px 0px; 
}

.img_right {
  max-width: 50%;
  float: right;
  height: auto;
  display: block;
  border: 1px dotted black;
  margin: 5px 0px 5px 15px; 
}

.img_center {
  max-width: 60%;
  float: center;
  height: auto;
  margin: 15px; 
}

.mySlides1 {
  max-width: 90%;
  height: auto;
  display: none;
  margin: auto; 
}
  
.mySlides2 {
  max-width: 90%;
  height: auto;
  display: none;
  margin: auto; 
}

.column4 {
  float: left;
  width: 25%;
  padding: 5px;
}

.column3 {
  float: left;
  width: 33.33%;
  padding: 5px;
}

.column2 {
  float: left;
  width: 50%;
  padding: 5px;
}

.row::after {
  content: "";
  clear: both;
  display: table;
}

.glow {
  text-align: center;
  animation: glow 1s ease-in-out infinite alternate;
}

.bg {
  background: url("index_files/background.jpg") no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;;
  overflow: hidden;
  color: white;
}

p.blocktext {
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
	max-width: 70%;
}	
	

#overlay {
  position: float;
  display: block;
  width: auto%;
  height: auto%;
  text-align: center;
}

/* Begin CSS table */
 td { font-size: 8pt; padding: 2px }
 hr { color: black }
  a { color: #0026ff; text-decoration: none }
  a:hover { color: #7f0000; text-decoration: underline }
 .theader { background : #475C7B ; color: #fff; font-weight: bold }
 .tmaintable { background : none }
 .teven { background : #eeeeff; color : #000 }
 .todd { background : #ffffff; color : #000 }
 .digits { color: #7f0000 ; font-weight: bold }
/* End CSS table */  

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #0081CC, 0 0 20px #0081CC, 0 0 25px #0081CC, 0 0 30px #0081CC, 0 0 35px #0081CC;
  }

  to {
    text-shadow: 0 0 10px #fff, 0 0 15px #FF5E00, 0 0 20px #FF5E00, 0 0 25px #FF5E00, 0 0 30px #FF5E00, 0 0 35px #FF5E00, 0 0 40px #FF5E00;
  }
}
 
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    text-align: left;
  }
  
  .navbar-left {
    float: none;
  }
 }