/* ********************************* */
/* HTML tag styles */
/* ********************************* */

body {
   background-color: #006DC0;
   background: url(images/bneback.jpg) no-repeat;
   background-size: 100%;
   margin: 0;
}

p {margin: 15px;
}

td.bordertable {
   border:1px solid #000000;
   padding: 5px 10px 5px 10px;
}

/* ********************************* */
/* Style classes */
/* ********************************* */

.contentfullwide {
   margin: 0 auto;
   height:auto;
   overflow:hidden;
   padding: 0px 40px 0px 40px;
}
.verylargetext {
   margin: 0 auto;
   color: #333333;
   min-height: 50px;
   font-size: 40px;
   font-family: Helvetica, Arial, sans-serif;
   padding: 0px 40px 0px 40px;
}
.largetext {
   color: #333333;
   font-size: 40px;
   font-family: Helvetica, Arial, sans-serif;
}
.linktext {
   font-size: 12px;
   font-family: Helvetica, Arial, sans-serif;
   white-space: nowrap;
}
.normaltext {
   color: #333333;
   font-size: 14px;
   font-family: Helvetica, Arial, sans-serif;
}
.row {
   margin: 0 15;
   height:auto;
   overflow:hidden;
}
.cell {
   margin: 0 15;
   height:auto;
   float: left;
   padding: 0 0 0 0;
}
.onelinecell {
   margin: 0 0 0 0;
   height:auto;
   float: left;
   padding: 0 0 0 0;
}

.nowrap {
  white-space: nowrap;
}

/* ********************************* */
/* Style ids */
/* ********************************* */

#headerborder {
   margin: 0 auto;
   background-color: #000064;
   min-height: 25px;
}    
#footerborder {
   margin: 0 auto;
   background-color: #006400;
   min-height: 25px;
}
#verticalcenter {
    display: table-cell;
    vertical-align: middle;
    display: inline-block;
}


/* ********************************* */
/* Image Slideshow */
/* ********************************* */

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 400px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {opacity: 0.2}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: 0.2}
  to {opacity: 1}
}