
body
{
  font-family: Arial;
  margin: 0;
    color: #555;
  background: #fff;
  font: 1em/1.2 helvetica, arial, sans-serif;
  
}

h1
{
  margin: 0;
  font-size: 1.5em;
  font-weight: 500;
  color: black;
}

h2
{
  margin: 0 0 .5em;
  font-size: 1.3em;
  font-weight: 500;
  color: black;
}
h3
{
  color: black;
  margin: 0 0 .5em;
  font-size: 1.1em;
  font-weight: 300;
  text-decoration: underline;
}

h4
{
  color: black;
  margin: 0 0 .5em;
  font-size: 1.1em;
  font-weight: 300;
  
}
p
{
  color: #555;
  margin: 0 0 .5em;
  line-height: 1.2;
  font-size: 1em;
}

.header
{
  background-color: white;
  padding: .5em;
   text-align: center;
  margin-top: 45px;
  
}
.center
{text-align: center;

}


em
{ 
color: #347c2c;
font-size: 1em;
font-style: normal;
 }

 strong {
color: #347c2c;
font-size: 1em;
font-style: normal;
 }
.highlight {
    background-color: #9999ff;
    background-image: linear-gradient(to right, #ffe359 0%, #fff2ac 100%);
}
mark {
  background-color: #E6E6FA;
}

.content { padding: 1em; }
.main { margin-bottom: 1em; }
.aside { margin-bottom: 1em; }

.footer
{
  clear: both;
  padding: 1em;
  background-color: #F5F5F5;
}

* {
  box-sizing: border-box;
}

img {
  vertical-align: middle;
}


hr {
  width: 80%;
border: 3px solid #8842d5;
  
}
ul {
    list-style-type: none;
    margin: 1px;
    padding: 1px;
    
    background-color: #8842d5;
}
ul.plain {
  background-color: white;
  text-align: left;

  max-width: 800px;
border: 6px double #8842d5;
}

ol.plain {
  background-color: white;
  text-align: left;
clear:left 
 
}


li {
    float: left;
  margin: 6px 0;
}

li a {
    display: block;
    color: white;
    text-align: left;
    padding: 15px 17px;
    text-decoration: none;
}

/* Links will change color when hovered over */
li a:hover {
    background-color: #7300ff;
}
/* Position the image container (needed to position the left and right arrows) */
.container {
  
  position: relative;
  max-width: 600px;

  margin: auto;
}
.nav {
  overflow: hidden;
  background-color: #8842d5;
}

.nav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.nav a:hover {
  background-color: #7300ff;
  color: #E6E6FA;
}
.form{
  
  position: relative;
  max-width: 700px;
border: 6px solid #8842d5;
  margin: auto;
}



.ex1 {
  max-width: 800px;
  margin: auto;
  border: 6px double #8842d5;
  margin-top: 12px;
padding: 5px;
text-align: center;
}

.address{
  background-color: #F5F5F5;
  clear: both;
  font-weight: bolder;
}
.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed;
  top: 0;
  width: 100%;
}

.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px ;
  text-decoration: none;
  font-size: 17px;
}

.navbar a:hover {
  background: #ddd;
  color: black;
}

.main {
  padding: 16px;
  margin-top: 30px;
 
}
.thumbnail:hover { 
  position:relative; top:-25px; left:-35px; width:400px; 
  height:auto; display:block; z-index:999; }

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 8px;
  color: white;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

/* 12 columns side by side */
.column {
  float: left;
  width: 8.33%;

}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}


/* Make the container relative */
.swap-on-hover {
  position: relative; 
  margin:  0 auto;
  max-width: 300px;
}

/* Select the image and make it absolute to the container */
.swap-on-hover img {
  position: absolute;
  top:0;
  left:0;
  overflow: hidden;
  /* Sets the width and height for the images*/
  width: 300px;
  height: 300px;
}

/* 
  We set z-index to be higher than the back image, so it's alwyas on the front.

We give it an opacity leaner to .25s, that way when we hover we will get a nice fading effect. 
*/
.swap-on-hover .swap-on-hover__front-image {
  z-index: 9999;
  transition: opacity .5s linear;
  cursor: pointer;
}

/* When we hover the figure element, the block with .swap-on-hover, we want to use > so the front-image is going to have opacity of 0, which means it will be hidden, to the back image will show */
.swap-on-hover:hover > .swap-on-hover__front-image{
  opacity: 0;
}







/* --------------------------
wide screen 
-------------------------- */

@media (min-width:800px)
{
  .header { padding: 1em 5%; }
  
  .content
  {
    overflow: hidden;
    padding: 2em 0 1em;
  }
  
  .main
  {
    float: left;
    
    margin: 0 30px 1em 30px;
  }
  
  .aside
  {
    float: left;
    width: 160px;
    margin-bottom: 1em;
  }
  







/*  GO FULL WIDTH BELOW 480 PIXELS */
@media only screen and (max-width: 380px) 
  {


  .content
  {
    overflow: hidden;
    padding:  0;
    width: 366px;
  }
  
