.smallidcaption {
  font-size: 12px;
}

.entry-content li {
  width: 300px;
}

.entry-content ul {
  position: inherit;
}

.title {
   font-size: 18px;
  color: #555b62;
  font-weight: bold;
  margin: 0 0 0px;
  padding-left: 0px 0px -5px 0px;
}

h1 {
 max-width: 100%
  margin: 0px 5px 15px 0px;
  padding: 5px 5px 5px 15px;
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  background-color: #E4E4E4;
}

h2 {
   max-width: 100%
  	padding: 5px 5px 1px 15px;
		margin: 0px 0px 0px 0px;
  font-size: 16px;
	font-weight: normal;	
}

h3 {
  margin: 2px 15px 2px 2px;
  padding: 0px 15px 0px 15px;
  font-size: 16px;
  font-weight: bold;
  color: #000000;
  background-color: #E4E4E4;
}

h4 {
  max-width: 100%
  margin: 0px 0px 0px 0px;
  padding: 5px 0px 5px 0px;
  font-size: 16px;
  font-weight: bold;
		alignment:center;
  color: #000000;
  background-color: #E4E4E4;
}

h5 {
  color: #000;
  font-size: 14px;
  font-weight: normal;
  margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;

}

h6 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  margin: 0px 0px 0px 0px;
  padding: 5px 0px 3px 0px;
		
}

h7 {
  color: #000;
  font-size: 25px;
  font-weight: bold;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

h8 {
  font-size: 18px;
  color: #555b62;
  font-weight: bold;
  margin: 0 0 7px;
  padding-left: 20px;
}

h9 {
  font-size: 18px;
  color: #555b62;
  font-weight: bold;
  margin: 0 0 7px;
  padding-left: 20px;
  text-align: center;
}

h10 {
  color: #FFFFFF;
  font-size: 10px;
  font-weight: bold;
  margin: 0px 0px 0px 0px;

}

.type-page .entry-title {
  width: 1000px;
}
.boxc {
        border: 2px solid #ccc;      /* Border with light gray color */
        padding: 0px;               /* Space inside the box */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
        border-radius: 8px;          /* Rounded corners (optional) */
        background-color: #fff;      /* Background color */
        max-width: 200px;            /* Box width */
        margin: 0px;                /* Space around the box */text-align: center; 
    }
.box-container {
    display: flex;                   /* Makes the boxes align side by side */
    gap: 20px;                       /* Space between boxes */
    justify-content: space-between;  /* Distribute boxes evenly */
    margin: 0px 0;                  /* Add margin above and below container */
}

.box {
    flex: 1;                         /* Ensures each box takes up equal space */
    padding: 0px;                   /* Space inside each box */
    border: 2px solid #ccc;          /* Border color */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Soft shadow */
    border-radius: 8px;              /* Rounded corners */
    background-color: #fff;          /* Background color */
    text-align: center;              /* Center content */
}
.box img {
    display: block;                  /* Treats image as a block-level element */
    margin: 0 auto 5px;             /* Centers image horizontally and adds space below */
    max-width: 100px;                /* Restricts the width to 150px */
    max-height: 100px;               /* Restricts the height to 150px */
    border-radius: 8px;              /* Optional: rounded corners for image */
    padding: 5px;                   /* Padding inside the image container */
    background-color: #f9f9f9;
}
/* Slideshow Container */
.slideshow-container {
  position: relative;
  max-width: 400px;
  margin: auto;
}

/* Slides */
.slide {
  display: none;
  position: relative;
}

/* Slide Fade Effect */
.fade {
  animation: fadeEffect 1.5s ease-in-out;
}

@keyframes fadeEffect {
  from {opacity: 0.4} 
  to {opacity: 1}
}

/* Caption Text */
.caption {
  color: #fff;
  font-size: 18px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 8px;
}

/* Navigation Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

/* Dots */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
}

.dot.active {
  background-color: #717171;
}