body {
    background-color: #FFFFFF;
    color: #000000;
}

#site-container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border-left: 1px solid blue;
    border-right: 1px solid blue;
    margin-top: -10px;
    margin-bottom: -10px;
    background-color: #ffffff;
    background-image: url("../images/containerbg.png");
}

#site-navigation {
    width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;

}

.navigation-item {
    width: 150px;
    height: 25px;
    line-height: 25px;
    float: left;
    text-align: center;
    font-weight: bold;
}

#site-logo {
    width: 100%;
    text-align: center;
}

/* #site-logo img {
    margin-top: -50px;
} */

#site-content {
  width: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.content-area {
  border-radius: 5px;
  border: 1px solid blue;
  margin: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fcfcfc;
  opacity: 0.8;
  font-family: 'Arima Madurai', cursive;
  font-size: 14pt;
}

.content-area h1 {
  font-family: 'Arima Madurai', cursive;
  color: #013dff;
}


.membershiprow:hover {
  background-color: #cccccc;
  border-radius: 10px;
}

.membership-table-branch-header {
  width: 25%;
  padding-left:10px;
  float: left;
  font-weight: bold;
  font-family: 'Arima Madurai', cursive;
  font-size: 14pt;
}

.membership-table-guild-header {
  width: 75%;
  float: left;
  font-weight: bold;
  font-family: 'Arima Madurai', cursive;
  font-size: 14pt;
}

.membership-table-server-header {
  width: 25%;
  float: left;
  font-weight: bold;
  font-family: 'Arima Madurai', cursive;
  font-size: 14pt;

}
.membership-table-branch {
  width: 25%;
  padding-left:10px;
  float: left;
  font-family: 'Arima Madurai', cursive;
  font-size: 14pt;
}

.membership-table-guild {
  width: 75%;
  float: left;
  font-family: 'Arima Madurai', cursive;
  font-size: 14pt;
}

.membership-table-server {
  width: 25%;
  float: left;
  font-family: 'Arima Madurai', cursive;
  font-size: 14pt;
}

.serverbutton-join {
  border: solid #000000 1px;
  border-radius: 5px;
  width: 50px;
  text-align: center;
  background-color: #009900;
  font-size: 10pt;
  margin-top: 4px;
}

.serverbutton-soon {
  border: solid #000000 1px;
  border-radius: 5px;
  width: 50px;
  text-align: center;
  color: #ffffff;
  background-color: #013dff;
  font-size: 10pt;
  margin-top: 4px;
}

.serverbutton-closed {
  border: solid #ffffff 1px;
  color: #ffffff;
  border-radius: 5px;
  width: 50px;
  text-align: center;
  background-color: #000000;
  font-size: 10pt;
  margin-top: 4px;
}

.serverbutton-private {
  border: solid #000000 1px;
  border-radius: 5px;
  width: 50px;
  text-align: center;
  background-color: #ff0000;
  font-size: 10pt;
  margin-top: 4px;
}

#site-footer {
  width: 100%;
  text-align: center;
  font-size: 12pt;
  padding-top: 15px;
  padding-bottom: 15px;
}



/* hero image css */

* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1200px;
  position: relative;
  margin: auto;
  border-top: 1px solid blue;
  border-bottom: 1px solid blue;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

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

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

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}